Mozliwosc resetowania
This commit is contained in:
parent
d6435fc7c9
commit
7567254130
@ -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();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -11,5 +11,6 @@ namespace Life.Automaton
|
|||||||
void Advance();
|
void Advance();
|
||||||
|
|
||||||
void ReplaceField(IField field);
|
void ReplaceField(IField field);
|
||||||
|
void Reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -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>
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user