Tworzenie Mapy
This commit is contained in:
parent
163afa21d9
commit
cc9ccd26ba
@ -13,6 +13,7 @@ using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using CzokoŚmieciarka.DataModels.Enums;
|
||||
using CzokoŚmieciarka.DataModels.GeneralModels.Models;
|
||||
using CzokoŚmieciarka.DataModels.Interfaces.TrashCans;
|
||||
using CzokoŚmieciarka.DataModels.Models;
|
||||
@ -33,10 +34,32 @@ namespace CzokoŚmieciarka.WPFv2
|
||||
private WPFGarbageCollector garbageCollector;
|
||||
|
||||
public MainWindow()
|
||||
{
|
||||
|
||||
InitializeComponent();
|
||||
BoardInitialize();
|
||||
}
|
||||
|
||||
private void MainWindow_OnKeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
|
||||
if (e.Key == Key.Space)
|
||||
{
|
||||
garbageCollector.Position = garbageCollector.MoveRight();
|
||||
}
|
||||
|
||||
CollectorBoard.Children.Clear();
|
||||
Grid.SetRow(garbageCollector.Image, garbageCollector.Position.Y);
|
||||
Grid.SetColumn(garbageCollector.Image, garbageCollector.Position.X);
|
||||
CollectorBoard.Children.Add(garbageCollector.Image);
|
||||
|
||||
}
|
||||
|
||||
|
||||
private void BoardInitialize()
|
||||
{
|
||||
ColumnDefinition column;
|
||||
RowDefinition row;
|
||||
InitializeComponent();
|
||||
for (int i = 0; i < Rows; i++)
|
||||
{
|
||||
column = new ColumnDefinition();
|
||||
@ -64,32 +87,40 @@ namespace CzokoŚmieciarka.WPFv2
|
||||
Board.Children.Add(Objects[i, i].Image);
|
||||
|
||||
}
|
||||
Objects[2,7] = new WPFDump(new TypeOfGarbage(GarbageType.Glass,1,1), 10000,new Coords(2,7));
|
||||
Grid.SetColumn(Objects[2, 7].Image, 2);
|
||||
Grid.SetRow(Objects[2, 7].Image, 7);
|
||||
Board.Children.Add(Objects[2, 7].Image);
|
||||
Objects[3,7] = new WPFDump(new TypeOfGarbage(GarbageType.Organic,1,1),10000, new Coords(3,7));
|
||||
Grid.SetColumn(Objects[3, 7].Image, 3);
|
||||
Grid.SetRow(Objects[3, 7].Image, 7);
|
||||
Board.Children.Add(Objects[3, 7].Image);
|
||||
Objects[2,8] = new WPFDump(new TypeOfGarbage(GarbageType.Paper,1,1), 10000, new Coords(2,8));
|
||||
Grid.SetColumn(Objects[2, 8].Image, 2);
|
||||
Grid.SetRow(Objects[2, 8].Image, 8);
|
||||
Board.Children.Add(Objects[2, 8].Image);
|
||||
Objects[3,8] = new WPFDump(new TypeOfGarbage(GarbageType.PlasticMetal, 1,1), 10000, new Coords(3,8));
|
||||
Grid.SetColumn(Objects[3, 8].Image, 3);
|
||||
Grid.SetRow(Objects[3, 8].Image, 8);
|
||||
Board.Children.Add(Objects[3, 8].Image);
|
||||
|
||||
GarbageCollectorContainers = new List<AGarbageCollectorContainer>();
|
||||
|
||||
GarbageCollectorContainers = new List<AGarbageCollectorContainer>()
|
||||
{
|
||||
new GarbageCollectorContainer(new TypeOfGarbage(GarbageType.Glass,1,1), 500),
|
||||
new GarbageCollectorContainer(new TypeOfGarbage(GarbageType.Organic,1,1), 500),
|
||||
new GarbageCollectorContainer(new TypeOfGarbage(GarbageType.PlasticMetal, 1,1),500),
|
||||
new GarbageCollectorContainer(new TypeOfGarbage(GarbageType.Paper, 1,1), 500)
|
||||
};
|
||||
garbageCollector = new WPFGarbageCollector(new Coords(2, 1), GarbageCollectorContainers);
|
||||
Grid.SetRow(garbageCollector.Image, garbageCollector.Position.Y);
|
||||
Grid.SetColumn(garbageCollector.Image, garbageCollector.Position.X);
|
||||
CollectorBoard.Children.Add(garbageCollector.Image);
|
||||
CollectorBoard.ShowGridLines = true;
|
||||
CollectorInfo.ItemsSource = garbageCollector.TrashContainers;
|
||||
//CollectorInfo.ItemsSource = garbageCollector.TrashContainers;
|
||||
//CollectorInfo.Items.Add(garbageCollector);
|
||||
//CollectorInfo.Columns.Add(new DataGridTextColumn {Header="X", Binding = new Binding("Position.X")});
|
||||
//CollectorInfo.Columns.Add(new DataGridTextColumn { Header = "Y", Binding = new Binding("Position.Y") });
|
||||
}
|
||||
|
||||
private void MainWindow_OnKeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
|
||||
if (e.Key == Key.Space)
|
||||
{
|
||||
garbageCollector.Position = garbageCollector.MoveRight();
|
||||
}
|
||||
|
||||
CollectorBoard.Children.Clear();
|
||||
Grid.SetRow(garbageCollector.Image, garbageCollector.Position.Y);
|
||||
Grid.SetColumn(garbageCollector.Image, garbageCollector.Position.X);
|
||||
CollectorBoard.Children.Add(garbageCollector.Image);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -20,9 +20,8 @@ namespace CzokoŚmieciarka.WPFv2.Models
|
||||
public string ImagePath { get; set; }
|
||||
public Image Image { get; set; }
|
||||
|
||||
public WPFDump(ITypeOfGarbage typeofGarbage, int maxVolume, Coords localization, string imagePath) : base ( typeofGarbage, maxVolume, localization)
|
||||
public WPFDump(ITypeOfGarbage typeofGarbage, int maxVolume, Coords localization) : base ( typeofGarbage, maxVolume, localization)
|
||||
{
|
||||
ImagePath = imagePath;
|
||||
Image = new Image();
|
||||
switch (typeofGarbage.GarbageType)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user