Ejemplo n.º 1
0
 //mxd
 internal StateStructure(string spritename)
 {
     this.gotostate = null;
     this.sprites   = new List <FrameInfo> {
         new FrameInfo {
             Sprite = spritename
         }
     };
 }
Ejemplo n.º 2
0
        // Constructor
        internal StateStructure(ActorStructure actor, DecorateParser parser)
        {
            string lasttoken = "";

            this.gotostate = null;
            this.parser    = parser;
            this.sprites   = new List <FrameInfo>();

            // Skip whitespace
            while (parser.SkipWhitespace(true))
            {
                // Read first token
                string token = parser.ReadToken().ToLowerInvariant();

                // One of the flow control statements?
                if ((token == "loop") || (token == "stop") || (token == "wait") || (token == "fail"))
                {
                    // Ignore flow control
                }
                // Goto?
                else if (token == "goto")
                {
                    gotostate = new StateGoto(actor, parser);
                    if (parser.HasError)
                    {
                        return;
                    }
                }
                // Label?
                else if (token == ":")
                {
                    // Rewind so that this label can be read again
                    if (!string.IsNullOrEmpty(lasttoken))
                    {
                        parser.DataStream.Seek(-(lasttoken.Length + 1), SeekOrigin.Current);
                    }

                    // Done here
                    return;
                }
                //mxd. Start of inner scope?
                else if (token == "{")
                {
                    int bracelevel = 1;
                    while (!string.IsNullOrEmpty(token) && bracelevel > 0)
                    {
                        parser.SkipWhitespace(false);
                        token = parser.ReadToken();
                        switch (token)
                        {
                        case "{": bracelevel++; break;

                        case "}": bracelevel--; break;
                        }
                    }
                }
                // End of scope?
                else if (token == "}")
                {
                    // Rewind so that this scope end can be read again
                    parser.DataStream.Seek(-1, SeekOrigin.Current);

                    // Done here
                    return;
                }
                else
                {
                    // First part of the sprite name
                    token = parser.StripTokenQuotes(token);                     //mxd. First part of the sprite name can be quoted
                    if (string.IsNullOrEmpty(token))
                    {
                        parser.ReportError("Expected sprite name");
                        return;
                    }

                    // Frames of the sprite name
                    parser.SkipWhitespace(true);
                    string spriteframes = parser.StripTokenQuotes(parser.ReadToken());                     //mxd. Frames can be quoted
                    if (string.IsNullOrEmpty(spriteframes))
                    {
                        parser.ReportError("Expected sprite frame");
                        return;
                    }

                    // Label?
                    if (spriteframes == ":")
                    {
                        // Rewind so that this label can be read again
                        parser.DataStream.Seek(-(token.Length + 1), SeekOrigin.Current);

                        // Done here
                        return;
                    }

                    // No first sprite yet?
                    FrameInfo info = new FrameInfo();                     //mxd
                    if (spriteframes.Length > 0)
                    {
                        //mxd. I'm not even 50% sure the parser handles all bizzare cases without shifting sprite name / frame blocks,
                        // so let's log it as a warning, not an error...
                        if (token.Length != 4)
                        {
                            parser.LogWarning("Invalid sprite name \"" + token.ToUpperInvariant() + "\". Sprite names must be exactly 4 characters long");
                        }
                        else
                        {
                            // Make the sprite name
                            string spritename = (token + spriteframes[0]).ToUpperInvariant();

                            // Ignore some odd ZDoom things
                            if (!spritename.StartsWith("TNT1") && !spritename.StartsWith("----") && !spritename.Contains("#"))
                            {
                                info.Sprite = spritename;                                 //mxd
                                sprites.Add(info);
                            }
                        }
                    }

                    // Continue until the end of the line
                    parser.SkipWhitespace(false);
                    string t = parser.ReadToken();
                    while (!string.IsNullOrEmpty(t) && t != "\n")
                    {
                        //mxd. Bright keyword support...
                        if (t == "bright")
                        {
                            info.Bright = true;
                        }
                        //mxd. Light() expression support...
                        else if (t == "light")
                        {
                            if (!parser.NextTokenIs("("))
                            {
                                return;
                            }

                            if (!parser.SkipWhitespace(true))
                            {
                                parser.ReportError("Unexpected end of the structure");
                                return;
                            }

                            info.LightName = parser.StripTokenQuotes(parser.ReadToken());
                            if (string.IsNullOrEmpty(info.LightName))
                            {
                                parser.ReportError("Expected dynamic light name");
                                return;
                            }

                            if (!parser.SkipWhitespace(true))
                            {
                                parser.ReportError("Unexpected end of the structure");
                                return;
                            }

                            if (!parser.NextTokenIs(")"))
                            {
                                return;
                            }
                        }
                        //mxd. Inner scope start. Step back and reparse using parent loop
                        else if (t == "{")
                        {
                            // Rewind so that this scope end can be read again
                            parser.DataStream.Seek(-1, SeekOrigin.Current);

                            // Break out of this loop
                            break;
                        }
                        //mxd. Function params start (those can span multiple lines)
                        else if (t == "(")
                        {
                            int bracelevel = 1;
                            while (!string.IsNullOrEmpty(token) && bracelevel > 0)
                            {
                                parser.SkipWhitespace(true);
                                token = parser.ReadToken();
                                switch (token)
                                {
                                case "(": bracelevel++; break;

                                case ")": bracelevel--; break;
                                }
                            }
                        }
                        //mxd. Because stuff like this is also valid: "Actor Oneliner { States { Spawn: WOOT A 1 A_FadeOut(0.1) Loop }}"
                        else if (t == "}")
                        {
                            // Rewind so that this scope end can be read again
                            parser.DataStream.Seek(-1, SeekOrigin.Current);

                            // Done here
                            return;
                        }

                        // Read next token
                        parser.SkipWhitespace(false);
                        t = parser.ReadToken().ToLowerInvariant();
                    }
                }

                lasttoken = token;
            }
        }
Ejemplo n.º 3
0
 // Constructor
 internal StateStructure()
 {
     this.gotostate = null;
     this.sprites   = new List <FrameInfo>();
 }
Ejemplo n.º 4
0
        // Constructor
        internal StateStructure(ActorStructure actor, DecorateParser parser, string statename)
        {
            string lasttoken = "";

            this.gotostate = null;
            this.parser    = parser;
            this.sprites   = new List <string>();

            // Skip whitespace
            while (parser.SkipWhitespace(true))
            {
                // Read first token
                string token = parser.ReadToken();
                token = token.ToLowerInvariant();

                // One of the flow control statements?
                if ((token == "loop") || (token == "stop") || (token == "wait") || (token == "fail"))
                {
                    // Ignore flow control
                }
                // Goto?
                else if (token == "goto")
                {
                    gotostate = new StateGoto(actor, parser);
                    if (parser.HasError)
                    {
                        return;
                    }
                }
                // Label?
                else if (token == ":")
                {
                    // Rewind so that this label can be read again
                    parser.DataStream.Seek(-(lasttoken.Length + 1), SeekOrigin.Current);

                    // Done here
                    return;
                }
                // End of scope?
                else if (token == "}")
                {
                    // Rewind so that this scope end can be read again
                    parser.DataStream.Seek(-1, SeekOrigin.Current);

                    // Done here
                    return;
                }
                else
                {
                    // First part of the sprite name
                    if (token == null)
                    {
                        parser.ReportError("Unexpected end of structure");
                        return;
                    }

                    // Frames of the sprite name
                    parser.SkipWhitespace(true);
                    string spriteframes = parser.ReadToken();
                    if (spriteframes == null)
                    {
                        parser.ReportError("Unexpected end of structure");
                        return;
                    }
                    // Label?
                    else if (spriteframes == ":")
                    {
                        // Rewind so that this label can be read again
                        parser.DataStream.Seek(-(token.Length + 1), SeekOrigin.Current);

                        // Done here
                        return;
                    }

                    // No first sprite yet?
                    if (spriteframes.Length > 0)
                    {
                        // Make the sprite name
                        string spritename = token + spriteframes[0];
                        spritename = spritename.ToUpperInvariant();

                        // Ignore some odd ZDoom thing
                        if (!IGNORE_SPRITE.StartsWith(spritename))
                        {
                            sprites.Add(spritename);
                        }
                    }

                    // Continue until the end of the line
                    string t = "";
                    while ((t != "\n") && (t != null))
                    {
                        parser.SkipWhitespace(false);
                        t = parser.ReadToken();
                    }
                }

                lasttoken = token;
            }
        }