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 @@ - +