diff --git a/Life/Automaton/GameOfLife.cs b/Life/Automaton/GameOfLife.cs index 57beb4b..5699119 100644 --- a/Life/Automaton/GameOfLife.cs +++ b/Life/Automaton/GameOfLife.cs @@ -68,5 +68,15 @@ namespace Life.Automaton { Field = field; } + + public void Reset() + { + Iteration = 0; + + foreach (var cell in Field.Cells) + cell.IsAlive = false; + + Field.Notify(); + } } } \ No newline at end of file diff --git a/Life/Automaton/IAutomaton.cs b/Life/Automaton/IAutomaton.cs index df23428..8f0fe81 100644 --- a/Life/Automaton/IAutomaton.cs +++ b/Life/Automaton/IAutomaton.cs @@ -11,5 +11,6 @@ namespace Life.Automaton void Advance(); void ReplaceField(IField field); + void Reset(); } } \ No newline at end of file diff --git a/Life/MainWindow.xaml b/Life/MainWindow.xaml index 0fd2741..a02313c 100644 --- a/Life/MainWindow.xaml +++ b/Life/MainWindow.xaml @@ -10,9 +10,11 @@ + + diff --git a/Life/MainWindow.xaml.cs b/Life/MainWindow.xaml.cs index 0abbfe5..f23a629 100644 --- a/Life/MainWindow.xaml.cs +++ b/Life/MainWindow.xaml.cs @@ -1,5 +1,4 @@ using System.Windows; -using System.Windows.Input; using Life.Automaton; using Life.ViewModel; diff --git a/Life/ViewModel/AutomatonViewModel.cs b/Life/ViewModel/AutomatonViewModel.cs index 26ea3e4..8357a4d 100644 --- a/Life/ViewModel/AutomatonViewModel.cs +++ b/Life/ViewModel/AutomatonViewModel.cs @@ -127,6 +127,11 @@ namespace Life.ViewModel Action = HandleLoadCommand }; + public ICommand ResetCommand => new DelegateCommand + { + Action = HandleResetCommand + }; + public ICommand SaveCommand => new DelegateCommand { Action = HandleSaveCommand @@ -178,5 +183,12 @@ namespace Life.ViewModel _formatter.Serialize(file, Automaton); } } + + private void HandleResetCommand(object _) + { + Automaton.Reset(); + + OnPropertyChanged(nameof(Iteration)); + } } } \ No newline at end of file