Exemple #1
0
            public ParseState(SExpression cur, FontStyle curS, String curStr)
            {
                current       = cur;
                curStyle      = curS;
                current.style = new FontStyle(curStyle); // Copy, not the same object
                curString     = curStr;

                initialName  = null;
                initialColor = 0;
            }
Exemple #2
0
        public SWithArgs(FormatType type, SExpression baseExp, List <SExpression> args) : base(type)
        {
            if (type != FormatType.Function && type != FormatType.Index)
            {
                throw new EsoException("Malformed SWithArgs type");
            }

            this.baseExp = baseExp;

            foreach (SExpression arg in args)
            {
                AddChild(arg);
            }
        }
Exemple #3
0
        // Recursively removes "childless" nodes
        // All branches should terminate with SString tokens,
        //  not with formatting notes
        // Only likely to occur when whitespace is erroneously formatted
        public void cullBachelors()
        {
            // Loop backwards to allow removal of loop items
            for (int i = children.Count - 1; i >= 0; i--)
            {
                SExpression child = children[i];

                child.cullBachelors(); // recurse

                // Only remove childless non-SString
                if (!(child is SString) && child.isEmpty())
                {
                    children.Remove(child);
                }
            }
        }
Exemple #4
0
        // Builds an SExpression subtree representing a single Statement
        // Traverses each character in turn, looking for style differences
        //  and opening or closing sub-branches based on the types of changes
        private SExpOpenXML(List <Tuple <String, FontStyle> > statement) : base(FormatType.Statement)
        {
            // Initialize the read state
            ParseState state = new ParseState(this, new FontStyle(), "");

            // Read each character individually, consecutively
            foreach (Tuple <String, FontStyle> section in statement)
            {
                SExpression.handleCharacter(state, section.Item2, section.Item1);
            }

            // Flush any remaining tokens, appending them to the current node
            if (state.curString.Length > 0)
            {
                state.current.AddString(state.curString);
            }

            // Clear any bad formatting (childless nodes)
            this.cullBachelors();
        }
Exemple #5
0
        public SExpression(FormatType t, FontStyle s = null, object innerVal = null)
        {
            type  = t;
            style = s;

            if (innerVal is string)
            {
                value = 0;
                name  = (string)innerVal;
            }
            else if (innerVal is uint)
            {
                value = (uint)innerVal;
                name  = "";
            }
            else
            {
                value = 0;
                name  = "";
            }

            children = new List <SExpression>();
            parent   = null;
        }
Exemple #6
0
 // Add the child and ensure it links back up to its parent
 // Returns the passed child object
 public SExpression AddChild(SExpression child)
 {
     children.Add(child);
     child.parent = this;
     return(child);
 }
Exemple #7
0
        // Pre-parse on the current level for functions, indexing, sequences
        // Convert from raw style-form to interprettable expression tree
        public static ExprC parse(SExpression rawExpr)
        {
            SExpression expr = preParse(rawExpr);

            ExprC result;

            // Check arg counts and expr object classes for errors
            // Convert to appropriate expression tree (w/ correct subtree)
            switch (expr.type)
            {
            case SExpression.FormatType.Document:
                if (expr.children.Count < 1)
                {
                    throw new ParseException("Incorrect Child Number: Document");
                }
                foreach (SExpression child in expr.children)
                {
                    if (child.type != SExpression.FormatType.Statement)
                    {
                        throw new ParseException("Document with non-Statement children");
                    }
                }
                result = new SeqC(parseEach(expr.children));
                break;

            case SExpression.FormatType.Statement:
                if (expr.children.Count > 1)
                {
                    throw new ParseException("Incorrect Child Number: Statement");
                }
                else if (expr.children.Count == 0)
                {
                    throw new ParseException("Empty statement");
                }
                result = parse(expr.children[0]);
                break;

            case SExpression.FormatType.Bold:
                if (expr.children.Count != 3)
                {
                    throw new ParseException("Incorrect Child Number: Conditional");
                }
                result = new IfC(parse(expr.children[0]),
                                 parse(expr.children[1]),
                                 parse(expr.children[2]));
                break;

            case SExpression.FormatType.Italic:
                if (expr.children.Count < 2)
                {
                    throw new ParseException("Incorrect Child Number: Addition");
                }
                result = new AddC(parseEach(expr.children));
                break;

            case SExpression.FormatType.Under:
                if (expr.children.Count != 2)
                {
                    throw new ParseException("Incorrect Child Number: Binding");
                }
                result = new BindC(parse(expr.children[0]), parse(expr.children[1]));
                break;

            case SExpression.FormatType.Strike:
                if (expr.children.Count != 1)
                {
                    throw new ParseException("Incorrect Child Number: Negation");
                }
                result = new NegC(parse(expr.children[0]));
                break;

            case SExpression.FormatType.Size:
                if (expr.children.Count != 1)
                {
                    throw new ParseException("Incorrect Child Number: Grouping");
                }
                result = parse(expr.children[0]);
                break;

            case SExpression.FormatType.Color:
                if (expr.children.Count != 1)
                {
                    throw new ParseException("Incorrect Child Number: Integer Literal");
                }
                result = new NumC(expr.value);
                break;

            case SExpression.FormatType.String:
                if (expr.children.Count != 0)
                {
                    throw new ParseException("Incorrect Child Number: Identifier");
                }
                if (!(expr is SString))
                {
                    throw new ParseException("String type on non-SString");
                }
                result = new IdC(((SString)expr).str);
                break;

            case SExpression.FormatType.Function:
                if (expr.children.Count < 1)
                {
                    throw new ParseException("Incorrect Child Number: Function");
                }
                if (!(expr is SWithArgs))
                {
                    throw new ParseException("Function type on non-SWithArgs");
                }
                result = new FuncC(parse(((SWithArgs)expr).baseExp), parseEach(expr.children));
                break;

            case SExpression.FormatType.Index:
                if (expr.children.Count < 1)
                {
                    throw new ParseException("Incorrect Child Number: Index");
                }
                if (!(expr is SWithArgs))
                {
                    throw new ParseException("Index type on non-SWithArgs");
                }
                result = new IndexC(parse(((SWithArgs)expr).baseExp), parseEach(expr.children));
                break;

            case SExpression.FormatType.Sequence:
                if (expr.children.Count < 1)
                {
                    throw new ParseException("Incorrect Child Number: Sequence");
                }
                result = new SeqC(parseEach(expr.children));
                break;

            case SExpression.FormatType.Font:
                if (expr.children.Count != 1)
                {
                    throw new ParseException("Incorrect Child Number: String Literal");
                }
                if (!(expr.children[0] is SString))
                {
                    throw new ParseException("String Literal with non-string identifier");
                }
                result = new StrC(((SString)expr.children[0]).str);
                break;

            default:
            case SExpression.FormatType.Sub:
            case SExpression.FormatType.Super:
                throw new ParseException("Impossible SExpression type");
            }

            return(result);
        }
Exemple #8
0
        // Converts language forms into more parse-friendly structures
        // Only acts on current level (not recursive)
        private static SExpression preParse(SExpression expr)
        {
            SExpression result = expr;

            // Replace token+super with Function, token+sub with Index
            for (int i = expr.children.Count - 1; i >= 0; i--)
            {
                SExpression tmp = expr.children[i];

                if (tmp.type == SExpression.FormatType.Super ||
                    tmp.type == SExpression.FormatType.Sub)
                {
                    // Ensure a token/expression exists as a base for the SWithArgs
                    if (i == 0)
                    {
                        throw new ParseException("Super/Sub first child");
                    }

                    SExpression.FormatType replaceType = (tmp.type == SExpression.FormatType.Super ?
                                                          SExpression.FormatType.Function : SExpression.FormatType.Index);
                    SWithArgs newExpr = new SWithArgs(replaceType, expr.children[i - 1], tmp.children);
                    newExpr.parent = expr;

                    // Replace the two children with a single "newExpr"
                    expr.children[i - 1] = newExpr;
                    expr.children.RemoveAt(i);
                    i--;
                }
            }

            // Replace comma-separated statements with Sequence
            bool containsCommas = false;

            foreach (SExpression child in expr.children)
            {
                if (child is SString && ((SString)child).str.Contains(","))
                {
                    containsCommas = true;
                    if (((SString)child).str != ",")
                    {
                        throw new ParseException("Comma in token");
                    }
                    break;
                }
            }

            if (containsCommas)
            {
                result = new SExpression(SExpression.FormatType.Sequence);

                bool expectComma = false;
                foreach (SExpression child in expr.children)
                {
                    // Ensure proper comma-separated list of expressions
                    // E.g. "a,b,c" not ",a,b" or ",a b"
                    if ((expectComma && !(child is SString && ((SString)child).str == ",")) ||
                        (!expectComma && child is SString && ((SString)child).str == ","))
                    {
                        throw new ParseException("Sequencing with improper commas");
                    }

                    if (!expectComma)
                    {
                        result.AddChild(child);
                    }

                    expectComma = !expectComma;
                }

                // Ensure proper comma-separated list of expressions
                // E.g. "a,b,c" not "a,b," or ",a,b,"
                SExpression lastChild = expr.children[expr.children.Count - 1];
                if (lastChild is SString && ((SString)lastChild).str == ",")
                {
                    throw new ParseException("Sequencing with trailing comma");
                }
            }

            return(result);
        }