From 3032623f70b5aa4769965403bee214db13082148 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 14 Mar 2023 12:53:56 +0100 Subject: [PATCH] suse --- Amogulator.csproj | 4 - AmogulatorVM.cs | 20 +- MainWindow.xaml | 2 + MainWindow.xaml.cs | 19 +- Suslang/AST.cs | 85 +++++++ Suslang/Bytecode.cs | 41 ++++ Suslang/Compiler.cs | 72 ++++++ Suslang/Lexer.cs | 135 +++++++++++ Suslang/Parser.cs | 155 ++++++++++++ Suslang/Suslang.cs | 575 -------------------------------------------- Suslang/Token.cs | 32 +++ Suslang/VM.cs | 75 ++++++ 12 files changed, 611 insertions(+), 604 deletions(-) create mode 100644 Suslang/AST.cs create mode 100644 Suslang/Bytecode.cs create mode 100644 Suslang/Compiler.cs create mode 100644 Suslang/Lexer.cs create mode 100644 Suslang/Parser.cs delete mode 100644 Suslang/Suslang.cs create mode 100644 Suslang/Token.cs create mode 100644 Suslang/VM.cs diff --git a/Amogulator.csproj b/Amogulator.csproj index 196bb0d..57cda42 100644 --- a/Amogulator.csproj +++ b/Amogulator.csproj @@ -7,10 +7,6 @@ true - - - - diff --git a/AmogulatorVM.cs b/AmogulatorVM.cs index d2422ac..3e35364 100644 --- a/AmogulatorVM.cs +++ b/AmogulatorVM.cs @@ -1,6 +1,8 @@ using Amogulator.Suslang; using CommunityToolkit.Mvvm.ComponentModel; using CommunityToolkit.Mvvm.Input; +using System; +using System.Linq; namespace Amogulator; public partial class AmogulatorVM : ObservableObject { @@ -10,13 +12,17 @@ public partial class AmogulatorVM : ObservableObject { [RelayCommand] private void run() { - var ast = new Parser(this.Input, new Lexer(this.Input)).parseExpr(); - var compiler = new Compiler(); - compiler.compileExpr(ast); - var bytecode = compiler.result(); - var vm = new VM(bytecode); - vm.evaluate(); - this.Output = ast.astString(0) + "\n\nresult = " + ((IntValue) vm.stack.Peek()).value; + try { + var ast = new Parser(this.Input, new Lexer(this.Input)).parseExpr(); + var compiler = new Compiler(); + compiler.compileExpr(ast); + var bytecode = compiler.result(); + var vm = new VM(bytecode); + vm.evaluate(); + this.Output = $"ast = {ast.astString(0)}\n\nbytecode = [\n{string.Join("", bytecode.Select((op) => " " + op.operationString() + "\n"))}]\n\nresult = {vm.stack.Peek().valueString()}"; + } catch (Exception e) { + this.Output = $"error = {e.Message}"; + } } } diff --git a/MainWindow.xaml b/MainWindow.xaml index b4b8011..67772d8 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -39,6 +39,8 @@ FontFamily="Consolas monospace" Background="Black" Foreground="White" + TextWrapping="Wrap" + AcceptsReturn="True" />