Mozliwosc resetowania

This commit is contained in:
Kacper Donat 2019-10-28 21:29:41 +01:00
parent d6435fc7c9
commit 7567254130
5 changed files with 25 additions and 1 deletions

View File

@ -68,5 +68,15 @@ namespace Life.Automaton
{ {
Field = field; Field = field;
} }
public void Reset()
{
Iteration = 0;
foreach (var cell in Field.Cells)
cell.IsAlive = false;
Field.Notify();
}
} }
} }

View File

@ -11,5 +11,6 @@ namespace Life.Automaton
void Advance(); void Advance();
void ReplaceField(IField field); void ReplaceField(IField field);
void Reset();
} }
} }

View File

@ -10,9 +10,11 @@
<Window.InputBindings> <Window.InputBindings>
<KeyBinding Key="O" Modifiers="Control" Command="{Binding LoadCommand}"/> <KeyBinding Key="O" Modifiers="Control" Command="{Binding LoadCommand}"/>
<KeyBinding Key="S" Modifiers="Control" Command="{Binding SaveCommand}"/> <KeyBinding Key="S" Modifiers="Control" Command="{Binding SaveCommand}"/>
<KeyBinding Key="N" Modifiers="Control" Command="{Binding ResetCommand}"/>
</Window.InputBindings> </Window.InputBindings>
<DockPanel> <DockPanel>
<Menu DockPanel.Dock="Top"> <Menu DockPanel.Dock="Top">
<MenuItem Command="{Binding ResetCommand}" Header="Reset" />
<MenuItem Command="{Binding LoadCommand}" Header="Load" /> <MenuItem Command="{Binding LoadCommand}" Header="Load" />
<MenuItem Command="{Binding SaveCommand}" Header="Save" /> <MenuItem Command="{Binding SaveCommand}" Header="Save" />
</Menu> </Menu>

View File

@ -1,5 +1,4 @@
using System.Windows; using System.Windows;
using System.Windows.Input;
using Life.Automaton; using Life.Automaton;
using Life.ViewModel; using Life.ViewModel;

View File

@ -127,6 +127,11 @@ namespace Life.ViewModel
Action = HandleLoadCommand Action = HandleLoadCommand
}; };
public ICommand ResetCommand => new DelegateCommand<object>
{
Action = HandleResetCommand
};
public ICommand SaveCommand => new DelegateCommand<object> public ICommand SaveCommand => new DelegateCommand<object>
{ {
Action = HandleSaveCommand Action = HandleSaveCommand
@ -178,5 +183,12 @@ namespace Life.ViewModel
_formatter.Serialize(file, Automaton); _formatter.Serialize(file, Automaton);
} }
} }
private void HandleResetCommand(object _)
{
Automaton.Reset();
OnPropertyChanged(nameof(Iteration));
}
} }
} }