Exemple #1
0
        public void Visit(BackgroundStmt backgroundStmt, object[] args)
        {
            //TODO: 参数字串
            bool imgDefined;

            if (imgDefined = reader.MoveToAttribute("img"))
            {
                backgroundStmt.Img = reader.Value;
            }

            //FINISH: 存在性
            bool assetDefined;

            if (assetDefined = reader.MoveToAttribute("asset"))
            {
                backgroundStmt.Asset = reader.Value;
            }

            if (imgDefined && assetDefined)
            {
                kernel.IssueError(ErrorType.BothSrcAndAsset, new Location(file, reader.LineNumber, reader.LinePosition));
            }

            if (!imgDefined && !assetDefined)
            {
                kernel.IssueError(ErrorType.SrcAndAssetMissed, new Location(file, reader.LineNumber, reader.LinePosition));
            }
        }
Exemple #2
0
        public override void Visit(BackgroundStmt backgroundStmt, object[] args)
        {
            if (backgroundStmt.Img != null && !StrVarRefProcessor.IsVariableIncluded(backgroundStmt.Img))
            {
                CheckContent(backgroundStmt.Img, ContentType.Texture, backgroundStmt.Location);
            }

            if (backgroundStmt.Asset != null)
            {
                CheckAsset(backgroundStmt.Asset, typeof(CGAsset), backgroundStmt.Location);
            }
        }
 public void Visit(BackgroundStmt backgroundStmt, object[] args)
 {
     parentStack.Peek().Add("id", backgroundStmt.ID)
     .Add("img", new BsonString(backgroundStmt.Img))
     .Add("asset", new BsonString(backgroundStmt.Asset));
 }
Exemple #4
0
        private void visitMainContent(ASTNode parent, List <Statement> content)
        {
            bool endWithBr = false;

            while (reader.Read())
            {
                reader.MoveToContent();
                Location location = new Location(file, reader.LineNumber, reader.LinePosition);
                switch (reader.NodeType)
                {
                case XmlNodeType.Text:
                    string   text  = reader.Value;
                    string[] lines = text.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
                    foreach (string line in lines)
                    {
                        string trimed = line.Trim();
                        if (trimed.Length == 0)
                        {
                            continue;
                        }

                        if (endWithBr && content.Count > 0 && content[content.Count - 1] is DialogStmt)
                        {
                            DialogStmt dialog = content[content.Count - 1] as DialogStmt;
                            dialog.Text += Environment.NewLine + trimed;
                        }
                        else
                        {
                            DialogStmt dialog = new DialogStmt();
                            dialog.Parent   = parent;
                            dialog.Location = location;

                            dialog.Text = trimed;
                            content.Add(dialog);
                        }
                        endWithBr = false;
                    }
                    break;

                case XmlNodeType.Element:
                    Statement statement = null;
                    switch (dic[reader.Name])
                    {
                    case "br":
                        endWithBr = true;
                        continue;

                    case "expr":
                        statement = new ExpressionStmt();
                        break;

                    case "return":
                        statement = new ReturnStmt();
                        break;

                    case "include":
                        statement = new IncludeStmt();
                        break;

                    case "actor":
                        statement = new ActorStmt();
                        break;

                    case "bg":
                        statement = new BackgroundStmt();
                        break;

                    case "echo":
                        statement = new EchoStmt();
                        break;

                    case "select":
                        statement = new SelectStmt();
                        break;

                    case "selectWithValue":
                        statement = new SelectStmt();
                        break;

                    case "if":
                        statement = new IfStmt();
                        break;

                    case "else":
                        return;

                    case "elseif":
                        return;

                    case "switch":
                        statement = new SwitchStmt();
                        break;

                    case "break":
                        statement = new BreakStmt();
                        break;

                    case "continue":
                        statement = new ContinueStmt();
                        break;

                    case "loop":
                        statement = new LoopStmt();
                        break;

                    case "music":
                        statement = new MusicStmt();
                        break;

                    case "musicStop":
                        statement = new MusicStopStmt();
                        break;

                    case "musicVol":
                        statement = new MusicVolStmt();
                        break;

                    default:
                        statement = new FunctionCallStmt();
                        break;
                    }
                    statement.Parent   = parent;
                    statement.Location = location;
                    statement.Accept(this);
                    content.Add(statement);
                    break;

                case XmlNodeType.EndElement:
                    //reader.Read();  //MainContent结束
                    return;
                }
            }
        }
Exemple #5
0
 public void Visit(BackgroundStmt backgroundStmt, object[] args)
 {
     kernel.Behave(kernel.FuncCaller.Background(
                       varRefProcessor.Replace(backgroundStmt.Img),
                       backgroundStmt.Asset));
 }