Files
minesweeper-coop/CoopSweeper/GameTypes/Game.cs
Tim Wundenberg f29beae0fa some changes
2018-05-25 10:58:07 +02:00

136 lines
3.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
namespace CoopSweeper.GameTypes
{
class Game
{
private readonly Random _random = new Random();
public IField[,] Map { get; protected set; }
private bool IsBomb(int bombratePercent)
{
int r = _random.Next(0, 100);
return r < bombratePercent;
}
public void GenerateGame(int x, int y, int bombratePercent)
{
Map = new IField[x, y];
for (int i = 0; i < x; i++)
{
for (int j = 0; j < y; j++)
{
var field = new Field
{
ContainsBomb = IsBomb(bombratePercent)
};
Map[i, j] = field;
}
}
UpdateSorroundingBombs();
}
private void UpdateSorroundingBombs()
{
for (int i = 0; i < Map.GetLength(0); i++)
{
for (int j = 0; j < Map.GetLength(1); j++)
{
var field = Map[i, j];
}
}
}
private List<Point> GetSorroundedFields(int x, int y)
{
var points = new List<Point>();
points.Add(new Point(x - 1, y - 1));
points.Add(new Point(x, y - 1));
points.Add(new Point(x + 1, y - 1));
points.Add(new Point(x + 1, y));
points.Add(new Point(x - 1, y));
points.Add(new Point(x - 1, y + 1));
points.Add(new Point(x, y + 1));
points.Add(new Point(x + 1, y + 1));
return points;
}
public void GenerateGame(int x, int y)
{
GenerateGame(x, y, 10);
}
private void CheckMap()
{
if (Map == null)
throw new ArgumentNullException("The Map isn't created yet!");
}
public delegate void GameFinishedHandler(bool isGameWon);
public event GameFinishedHandler GameFinished;
private bool CheckGameFinished()
{
for (int i = 0; i < Map.GetLength(0); i++)
{
for (int j = 0; j < Map.GetLength(1); j++)
{
var field = Map[i, j];
if (!field.ContainsBomb && field.State != FieldState.REVEALED)
return false;
}
}
return true;
}
public void Reveal(int x, int y)
{
CheckMap();
var field = Map[x, y];
if (field.State != FieldState.REVEALED)
{
field.State = FieldState.REVEALED;
if (field.ContainsBomb)
GameFinished?.Invoke(false);
}
if (CheckGameFinished())
GameFinished?.Invoke(true);
}
public void ToggleMark(int x, int y)
{
CheckMap();
var field = Map[x, y];
switch (field.State)
{
case FieldState.NONE:
field.State = FieldState.FLAG;
return;
case FieldState.FLAG:
field.State = FieldState.QUESTIONMARK;
return;
case FieldState.QUESTIONMARK:
field.State = FieldState.NONE;
return;
}
}
}
}