2019-03-13 16:45:38 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
2019-03-14 16:24:37 +01:00
|
|
|
|
using System.Windows.Controls.Primitives;
|
2019-03-13 16:45:38 +01:00
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
2019-03-20 16:02:05 +01:00
|
|
|
|
using CzokoŚmieciarka.DataModels.GeneralModels.Models;
|
|
|
|
|
using CzokoŚmieciarka.DataModels.Interfaces;
|
|
|
|
|
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
|
2019-03-20 12:34:03 +01:00
|
|
|
|
using CzokoŚmieciarka.DataModels.Models;
|
2019-03-13 16:45:38 +01:00
|
|
|
|
using CzokoŚmieciarka.WPF.Models;
|
|
|
|
|
|
|
|
|
|
namespace CzokoŚmieciarka.WPF
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
2019-03-20 12:34:03 +01:00
|
|
|
|
public List<IObject> Objects = new List<IObject>();
|
2019-03-20 16:02:05 +01:00
|
|
|
|
public GarbageCollector garbageCollector = new GarbageCollector(new Coords(0,0), new List<AGarbageCollectorContainer>());
|
2019-03-20 12:34:03 +01:00
|
|
|
|
|
|
|
|
|
|
2019-03-13 16:45:38 +01:00
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
|
|
|
|
|
2019-03-20 12:34:03 +01:00
|
|
|
|
InitializeComponent();
|
2019-03-20 16:02:05 +01:00
|
|
|
|
Objects.Add(new House()
|
2019-03-20 12:34:03 +01:00
|
|
|
|
{
|
2019-03-20 16:02:05 +01:00
|
|
|
|
ImagePath = AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png",
|
|
|
|
|
Image = new ImageBrush(new BitmapImage(new Uri(AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png"))),
|
|
|
|
|
Location = new Coords(3, 2),
|
|
|
|
|
Data = "House"
|
2019-03-20 12:34:03 +01:00
|
|
|
|
});
|
2019-03-20 16:02:05 +01:00
|
|
|
|
Objects.Add(new House()
|
|
|
|
|
{
|
|
|
|
|
ImagePath = AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png",
|
|
|
|
|
Image = new ImageBrush(new BitmapImage(new Uri(AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png"))),
|
|
|
|
|
Location = new Coords(5, 8),
|
|
|
|
|
Data = "House"
|
|
|
|
|
});
|
|
|
|
|
Objects.Add(new House()
|
|
|
|
|
{
|
|
|
|
|
ImagePath = AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png",
|
|
|
|
|
Image = new ImageBrush(new BitmapImage(new Uri(AppDomain.CurrentDomain.BaseDirectory + @"..\..\Images\house.png"))),
|
|
|
|
|
Location = new Coords(7, 5),
|
|
|
|
|
Data = "House"
|
|
|
|
|
});
|
|
|
|
|
garbageCollector.Position.X += 1;
|
|
|
|
|
this.DataContext = new Board(9, 9, Objects, garbageCollector);
|
|
|
|
|
|
2019-03-13 16:45:38 +01:00
|
|
|
|
}
|
2019-03-20 16:02:05 +01:00
|
|
|
|
|
2019-03-13 16:45:38 +01:00
|
|
|
|
}
|
|
|
|
|
}
|