コード例 #1
0
ファイル: Computer.cs プロジェクト: srakowski/MI-83
        private void Interpret(Instruction instruction)
        {
            switch (instruction)
            {
            case Instruction.DispHome:
                DisplayMode = DisplayMode.Home;
                break;

            case Instruction.DispGraph:
                DisplayMode = DisplayMode.Graphics;
                break;

            case Instruction.RunPrgm runPrgm:
                ExecuteProgram(LoadPythonProgram(runPrgm));
                break;

            case Instruction.GetKey getKey:
                ReturnImmediate(InputBuffer.GetLastKeyUp());
                break;

            case Instruction.Pause pause:
                ExecuteProgram(new Programs.PausePrgm(this));
                break;

            case Instruction.GetSuppDispRes:
                ReturnImmediate(Display.GetSuppDispRes());
                break;

            case Instruction.GetDispRes:
                ReturnImmediate(Display.GetDispRes());
                break;

            case Instruction.SetDispRes setDispRes:
                Display.SetDispRes(setDispRes.DispResIdx);
                Home.Resize(Display.Resolution.Height / SysFont.CharHeight, Display.Resolution.Width / SysFont.CharWidth);
                break;

            case Instruction.GetFG:
                ReturnImmediate(ActiveProgram.FG);
                break;

            case Instruction.SetFG setFG:
                ActiveProgram.FG = setFG.PaletteIdx;
                break;

            case Instruction.GetBG:
                ReturnImmediate(ActiveProgram.BG);
                break;

            case Instruction.SetBG setBG:
                ActiveProgram.BG = setBG.PaletteIdx;
                break;

            case Instruction._CreatePrgm createPrgm:
                Disk.WritePrgm(createPrgm.PrgmName, null);
                break;

            case Instruction._EditPrgm editPrgm:
                ExecuteProgram(new Programs.EditorPrgm(this, editPrgm.PrgmName));
                break;

            case Instruction._ExitPrgm exitPrgm:
                ExitProgram(exitPrgm.Value);
                break;

            case Instruction._BeginText:
                InputBuffer.BeginTextInput();
                break;

            case Instruction._GetText:
                ReturnImmediate(InputBuffer.GetTextInput());
                break;

            case Instruction._EndText:
                InputBuffer.EndTextInput();
                break;

            case Instruction.ClrHome:
                DisplayMode = DisplayMode.Home;
                Home.Clear((byte)ActiveProgram.FG, (byte)ActiveProgram.BG);
                break;

            case Instruction.Output output:
                DisplayMode = DisplayMode.Home;
                Home.Output(output.Row, output.Col, output.Text, (byte)ActiveProgram.FG, (byte)ActiveProgram.BG);
                break;

            case Instruction.Disp disp:
                DisplayMode = DisplayMode.Home;
                Home.Disp(disp.Value, (byte)ActiveProgram.FG, (byte)ActiveProgram.BG);
                break;

            case Instruction.Input input:
                ExecuteProgram(new Programs.InputPrgm(this, input.Prompt));
                break;

            case Instruction.Menu menu:
                ExecuteProgram(new Programs.MenuPrgm(this, menu.Tabs));
                break;

            case Instruction._Prompt prompt:
                ReturnImmediate(Home.Prompt(prompt.Text, (byte)ActiveProgram.FG, (byte)ActiveProgram.BG));
                break;

            case Instruction._Scroll:
                Home.Scroll((byte)ActiveProgram.FG, (byte)ActiveProgram.BG);
                break;

            case Instruction._GetHomeDim:
                ReturnImmediate((Home.Rows, Home.Cols));
                break;

            case Instruction._Cursor cursor:
                Home.RenderCursor(cursor.Row, cursor.Col, cursor.On);
                break;

            case Instruction.ClrDraw:
                DisplayMode = DisplayMode.Graphics;
                Graphics.ClrDraw((byte)ActiveProgram.BG);
                break;

            case Instruction.Pixel pixel:
                DisplayMode = DisplayMode.Graphics;
                Graphics.Pixel(pixel.X, pixel.Y, (byte)ActiveProgram.FG);
                break;

            case Instruction.Line line:
                DisplayMode = DisplayMode.Graphics;
                Graphics.Line(line.X1, line.Y1, line.X2, line.Y2, (byte)ActiveProgram.FG);
                break;

            case Instruction.Horizontal horizontal:
                DisplayMode = DisplayMode.Graphics;
                Graphics.Horizontal(horizontal.Y, (byte)ActiveProgram.FG);
                break;

            case Instruction.Vertical vertical:
                DisplayMode = DisplayMode.Graphics;
                Graphics.Vertical(vertical.X, (byte)ActiveProgram.FG);
                break;
            }
        }
コード例 #2
0
ファイル: Computer.cs プロジェクト: srakowski/MI-83
        private Program LoadPythonProgram(Instruction.RunPrgm runPrgm)
        {
            var code = Disk.ReadPrgm(runPrgm.PrgmName);

            return(new Programs.PythonPrgm(this, code));
        }