92 lines
2.8 KiB
C#
92 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
using System.Windows.Shapes;
|
|
using Life.Automaton;
|
|
using Life.ViewModel;
|
|
|
|
namespace Life
|
|
{
|
|
public partial class AutomatonField : UserControl
|
|
{
|
|
#region Dependency Property Wrappers
|
|
public int Size
|
|
{
|
|
get { return (int) GetValue(SizeProperty); }
|
|
set { SetValue(SizeProperty, value); }
|
|
}
|
|
|
|
public int Separation
|
|
{
|
|
get { return (int) GetValue(SeparationProperty); }
|
|
set { SetValue(SeparationProperty, value); }
|
|
}
|
|
|
|
public IField Field
|
|
{
|
|
get { return (IField) GetValue(FieldProperty); }
|
|
set { SetValue(FieldProperty, value); }
|
|
}
|
|
#endregion
|
|
|
|
public FieldViewModel ViewModel { get; set; } = new FieldViewModel();
|
|
|
|
public AutomatonField()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private static void OnFieldChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|
{
|
|
var field = d as AutomatonField;
|
|
|
|
field.ViewModel.Field = e.NewValue as IField;
|
|
}
|
|
|
|
private static void OnSizeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|
{
|
|
var field = d as AutomatonField;
|
|
|
|
field.ViewModel.Size = (int)e.NewValue;
|
|
}
|
|
|
|
private static void OnSeparationChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|
{
|
|
var field = d as AutomatonField;
|
|
|
|
field.ViewModel.Separation = (int)e.NewValue;
|
|
}
|
|
|
|
#region Dependency Properties
|
|
public static readonly DependencyProperty SizeProperty = DependencyProperty.Register(
|
|
"Size",
|
|
typeof(int), typeof(AutomatonField),
|
|
new PropertyMetadata(OnSizeChanged)
|
|
);
|
|
|
|
public static readonly DependencyProperty SeparationProperty = DependencyProperty.Register(
|
|
"Separation",
|
|
typeof(int), typeof(AutomatonField),
|
|
new PropertyMetadata(OnSeparationChanged)
|
|
);
|
|
|
|
public static readonly DependencyProperty FieldProperty = DependencyProperty.Register(
|
|
nameof(Field),
|
|
typeof(IField), typeof(AutomatonField),
|
|
new PropertyMetadata(OnFieldChanged)
|
|
);
|
|
#endregion
|
|
|
|
private void Cell_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
var vm = (sender as Button).DataContext as CellViewModel;
|
|
var cell = Field[vm.Position.X, vm.Position.Y];
|
|
|
|
cell.IsAlive = !cell.IsAlive;
|
|
|
|
ViewModel.Sync();
|
|
}
|
|
}
|
|
} |