コード例 #1
0
ファイル: BytecodeProgram.cs プロジェクト: l0nley/pololu.usc
 internal void OpenBlock(BlockType blocktype, string filename, int line_number, int column_number)
 {
     AddInstruction(BytecodeInstruction.NewLabel("block_start_" + maxBlock.ToString(), filename, line_number, column_number));
     openBlocks.Push(maxBlock);
     openBlockTypes.Push(blocktype);
     ++maxBlock;
 }
コード例 #2
0
 private static void ParseSubroutine(string s, BytecodeProgram bytecodeProgram, string filename, int line_number, int column_number)
 {
     if (LooksLikeLiteral(s))
     {
         throw new Exception("The name " + s + " is not valid as a subroutine name (it looks like a number).");
     }
     if (dictionary.ContainsKey(s))
     {
         throw new Exception("The name " + s + " is not valid as a subroutine name (it is a built-in command).");
     }
     foreach (string name in Enum.GetNames(typeof(Keyword)))
     {
         if (name == s)
         {
             throw new Exception("The name " + s + " is not valid as a subroutine name (it is a keyword).");
         }
     }
     bytecodeProgram.AddInstruction(BytecodeInstruction.NewSubroutine(s, filename, line_number, column_number));
     mode = Mode.NORMAL;
 }
コード例 #3
0
ファイル: BytecodeProgram.cs プロジェクト: l0nley/pololu.usc
 internal void AddInstruction(BytecodeInstruction instruction)
 {
     instructionList.Add(instruction);
 }
コード例 #4
0
ファイル: BytecodeProgram.cs プロジェクト: l0nley/pololu.usc
 private static void GenerateInstructionException(BytecodeInstruction instruction, string message)
 {
     throw new InstructionException($"{instruction.FileName}:{instruction.LineNumber}:{instruction.ColumnNumber}: {message}");
 }
コード例 #5
0
ファイル: BytecodeProgram.cs プロジェクト: l0nley/pololu.usc
 internal void CloseBlock(string filename, int line_number, int column_number)
 {
     AddInstruction(BytecodeInstruction.NewLabel("block_end_" + openBlocks.Pop().ToString(), filename, line_number, column_number));
     int num = (int)openBlockTypes.Pop();
 }
コード例 #6
0
 public static void WriteListing(BytecodeProgram program, string filename)
 {
     using (FileStream fileStream = new FileStream(filename, FileMode.Create))
     {
         using (StreamWriter streamWriter = new StreamWriter((Stream)fileStream))
         {
             int index1 = 0;
             int num1   = 0;
             BytecodeInstruction bytecodeInstruction = (BytecodeInstruction)null;
             if (program.Count != 0)
             {
                 bytecodeInstruction = program[index1];
             }
             for (int line = 1; line <= program.GetSourceLineCount(); ++line)
             {
                 int num2 = 0;
                 streamWriter.Write(num1.ToString("X4") + ": ");
                 for (; bytecodeInstruction != null && bytecodeInstruction.LineNumber == line; bytecodeInstruction = index1 < program.Count ? program[index1] : (BytecodeInstruction)null)
                 {
                     foreach (byte num3 in bytecodeInstruction.ToByteList())
                     {
                         streamWriter.Write(num3.ToString("X2"));
                         ++num1;
                         num2 += 2;
                     }
                     ++index1;
                 }
                 for (int index2 = 0; index2 < 20 - num2; ++index2)
                 {
                     streamWriter.Write(" ");
                 }
                 streamWriter.Write(" -- ");
                 streamWriter.WriteLine(program.GetSourceLine(line));
             }
             streamWriter.WriteLine("");
             streamWriter.WriteLine("Subroutines:");
             streamWriter.WriteLine("Hex Decimal Address Name");
             string[] strArray = new string[128];
             foreach (KeyValuePair <string, ushort> subroutineAddress1 in program.subroutineAddresses)
             {
                 string key = subroutineAddress1.Key;
                 if (program.subroutineCommands[key] != (byte)54)
                 {
                     byte   num2 = (byte)((uint)program.subroutineCommands[key] - 128U);
                     ushort subroutineAddress2 = program.subroutineAddresses[key];
                     strArray[(int)num2] = num2.ToString("X2") + "  " + num2.ToString("D3") + "     " + subroutineAddress2.ToString("X4") + "    " + key;
                 }
             }
             for (int index2 = 0; index2 < strArray.Length && strArray[index2] != null; ++index2)
             {
                 streamWriter.WriteLine(strArray[index2]);
             }
             foreach (KeyValuePair <string, ushort> subroutineAddress1 in program.subroutineAddresses)
             {
                 string key = subroutineAddress1.Key;
                 if (program.subroutineCommands[key] == (byte)54)
                 {
                     ushort subroutineAddress2 = program.subroutineAddresses[key];
                     streamWriter.WriteLine("--  ---     " + subroutineAddress2.ToString("X4") + "    " + key);
                 }
             }
         }
     }
 }
コード例 #7
0
        private static void ParseString(string s, BytecodeProgram bytecodeProgram, string filename, int lineNumber, int columnNumber, bool isMiniMaestro)
        {
            try
            {
                if (LooksLikeLiteral(s))
                {
                    Decimal num;
                    if (s.StartsWith("0X"))
                    {
                        num = (Decimal)long.Parse(s.Substring(2), NumberStyles.HexNumber);
                        if (num > new Decimal((int)ushort.MaxValue) || num < new Decimal(0))
                        {
                            throw new Exception("Value " + s + " is not in the allowed range of " + (object)(ushort)0 + " to " + (object)ushort.MaxValue + ".");
                        }
                        if ((Decimal)(ushort)num != num)
                        {
                            throw new Exception("Value " + s + " must be an integer.");
                        }
                    }
                    else
                    {
                        num = Decimal.Parse(s);
                        if (num > new Decimal((int)short.MaxValue) || num < new Decimal((int)short.MinValue))
                        {
                            throw new Exception("Value " + s + " is not in the allowed range of " + (object)short.MinValue + " to " + (object)short.MaxValue + ".");
                        }
                        if ((Decimal)(short)num != num)
                        {
                            throw new Exception("Value " + s + " must be an integer.");
                        }
                    }
                    int literal = (int)(short)(long)(num % new Decimal((int)ushort.MaxValue));
                    bytecodeProgram.AddLiteral(literal, filename, lineNumber, columnNumber, isMiniMaestro);
                    return;
                }
            }
            catch (Exception ex)
            {
                throw new Exception("Error parsing " + s + ": " + ex.ToString());
            }
            if (s == Keyword.GOTO.ToString())
            {
                mode = Mode.GOTO;
            }
            else if (s == Keyword.SUB.ToString())
            {
                mode = Mode.SUBROUTINE;
            }
            else
            {
                Match match = Regex.Match(s, "(.*):$");
                if (match.Success)
                {
                    bytecodeProgram.AddInstruction(BytecodeInstruction.NewLabel("USER_" + match.Groups[1].ToString(), filename, lineNumber, columnNumber));
                }
                else if (s == Keyword.BEGIN.ToString())
                {
                    bytecodeProgram.OpenBlock(BlockType.BEGIN, filename, lineNumber, columnNumber);
                }
                else if (s == Keyword.WHILE.ToString())
                {
                    if (bytecodeProgram.GetCurrentBlockType() != BlockType.BEGIN)
                    {
                        throw new Exception("WHILE must be inside a BEGIN...REPEAT block");
                    }
                    bytecodeProgram.AddInstruction(BytecodeInstruction.NewConditionalJumpToLabel(bytecodeProgram.GetCurrentBlockEndLabel(), filename, lineNumber, columnNumber));
                }
                else if (s == Keyword.REPEAT.ToString())
                {
                    try
                    {
                        if (bytecodeProgram.GetCurrentBlockType() != BlockType.BEGIN)
                        {
                            throw new Exception("REPEAT must end a BEGIN...REPEAT block");
                        }
                        bytecodeProgram.AddInstruction(BytecodeInstruction.NewJumpToLabel(bytecodeProgram.GetCurrentBlockStartLabel(), filename, lineNumber, columnNumber));
                        bytecodeProgram.CloseBlock(filename, lineNumber, columnNumber);
                    }
                    catch (InvalidOperationException)
                    {
                        throw new Exception(filename + ":" + (object)lineNumber + ":" + (object)columnNumber + ": Found REPEAT without a corresponding BEGIN");
                    }
                }
                else if (s == Keyword.IF.ToString())
                {
                    bytecodeProgram.OpenBlock(BlockType.IF, filename, lineNumber, columnNumber);
                    bytecodeProgram.AddInstruction(BytecodeInstruction.NewConditionalJumpToLabel(bytecodeProgram.GetCurrentBlockEndLabel(), filename, lineNumber, columnNumber));
                }
                else if (s == Keyword.ENDIF.ToString())
                {
                    try
                    {
                        if (bytecodeProgram.GetCurrentBlockType() != BlockType.IF && bytecodeProgram.GetCurrentBlockType() != BlockType.ELSE)
                        {
                            throw new Exception("ENDIF must end an IF...ENDIF or an IF...ELSE...ENDIF block.");
                        }
                        bytecodeProgram.CloseBlock(filename, lineNumber, columnNumber);
                    }
                    catch (InvalidOperationException)
                    {
                        throw new Exception(filename + ":" + (object)lineNumber + ":" + (object)columnNumber + ": Found ENDIF without a corresponding IF");
                    }
                }
                else if (s == Keyword.ELSE.ToString())
                {
                    try
                    {
                        if (bytecodeProgram.GetCurrentBlockType() != BlockType.IF)
                        {
                            throw new Exception("ELSE must be part of an IF...ELSE...ENDIF block.");
                        }
                        bytecodeProgram.AddInstruction(BytecodeInstruction.NewJumpToLabel(bytecodeProgram.GetNextBlockEndLabel(), filename, lineNumber, columnNumber));
                        bytecodeProgram.CloseBlock(filename, lineNumber, columnNumber);
                        bytecodeProgram.OpenBlock(BlockType.ELSE, filename, lineNumber, columnNumber);
                    }
                    catch (InvalidOperationException)
                    {
                        throw new Exception(filename + ":" + (object)lineNumber + ":" + (object)columnNumber + ": Found ELSE without a corresponding IF");
                    }
                }
                else
                {
                    try
                    {
                        OperationCode op = dictionary[s];
                        switch (op)
                        {
                        case OperationCode.LITERAL:
                        case OperationCode.LITERAL8:
                        case OperationCode.LITERAL_N:
                        case OperationCode.LITERAL8_N:
                            throw new Exception(filename + ":" + (object)lineNumber + ":" + (object)columnNumber + ": Literal commands may not be used directly in a program.  Integers should be entered directly.");

                        case OperationCode.JUMP:
                        case OperationCode.JUMP_Z:
                            throw new Exception(filename + ":" + (object)lineNumber + ":" + (object)columnNumber + ": Jumps may not be used directly in a program.");

                        default:
                            if (!isMiniMaestro && (byte)op >= (byte)50)
                            {
                                throw new Exception(filename + ":" + (object)lineNumber + ":" + (object)columnNumber + ": " + op.ToString() + " is only available on the Mini Maestro 12, 18, and 24.");
                            }
                            bytecodeProgram.AddInstruction(new BytecodeInstruction(op, filename, lineNumber, columnNumber));
                            break;
                        }
                    }
                    catch (KeyNotFoundException)
                    {
                        bytecodeProgram.AddInstruction(BytecodeInstruction.NewCall(s, filename, lineNumber, columnNumber));
                    }
                }
            }
        }
コード例 #8
0
 private static void ParseGoto(string s, BytecodeProgram bytecodeProgram, string filename, int lineNumber, int columnNumber)
 {
     bytecodeProgram.AddInstruction(BytecodeInstruction.NewJumpToLabel("USER_" + s, filename, lineNumber, columnNumber));
     mode = Mode.NORMAL;
 }