From 181250cd0173ad4cb3f5cfeb3e25ee1e074af7aa Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 14 Mar 2023 12:02:39 +0100 Subject: [PATCH] sus --- AmogulatorVM.cs | 17 ++- MainWindow.xaml | 14 ++- MainWindow.xaml.cs | 4 + Suslang/Suslang.cs | 267 ++++++++++++++++++++++++++++++++++++--------- 4 files changed, 245 insertions(+), 57 deletions(-) diff --git a/AmogulatorVM.cs b/AmogulatorVM.cs index cd89959..d2422ac 100644 --- a/AmogulatorVM.cs +++ b/AmogulatorVM.cs @@ -1,9 +1,22 @@ -using CommunityToolkit.Mvvm.ComponentModel; +using Amogulator.Suslang; +using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; namespace Amogulator; public partial class AmogulatorVM : ObservableObject { [ObservableProperty] - private string output = "test"; + private string output = "test", input = "2 + 3"; + + [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; + } } diff --git a/MainWindow.xaml b/MainWindow.xaml index 6df8fbd..b4b8011 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -5,6 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:vm="clr-namespace:Amogulator" mc:Ignorable="d" + Background="Black" Title="MainWindow" Height="450" Width="800"> @@ -15,7 +16,7 @@ - +