that works for now but I don't deserve to title of genius yet
continuous-integration/drone/push Build is passing Details

test_old_branch
Jules LASCRET 12 months ago
parent a49f7ff23b
commit 33992b636d

@ -207,101 +207,6 @@ namespace QwirkleClassLibrary
return true;
}
// public bool IsMoveCorrect(Tile t, int x, int y, Board b)
// {
// if (b.HasOccupiedCase() == false)
// {
// return true;
// }
//
// var surroundingCells = new List<Cell?>();
//
// surroundingCells.Add(b.GetCell(x + 1, y));
// surroundingCells.Add(b.GetCell(x - 1, y));
// surroundingCells.Add(b.GetCell(x, y + 1));
// surroundingCells.Add(b.GetCell(x, y - 1));
//
// foreach (var cell in surroundingCells.ToList())
// {
// if (cell?.GetTile == null)
// {
// surroundingCells.Remove(cell);
// continue;
// }
//
// if (cell?.GetTile.GetColor != t.GetColor && cell?.GetTile.GetShape != t.GetShape)
// {
// return false;
// }
// }
//
// if(surroundingCells.Count == 0) return false;
//
// foreach (var cell in surroundingCells.ToList())
// {
// var extendedCells = new List<Cell?>();
//
// if (cell?.GetX == x && cell?.GetY == y + 1)
// {
// for (int i = 1; i < 7; i++)
// {
// if (b.GetCell(x, y + i)?.GetTile != null)
// {
// extendedCells.Add(b.GetCell(x, y + i));
// }
// }
// }
//
// else if (cell?.GetX == x && cell?.GetY == y - 1)
// {
// for (int i = 1; i < 7; i++)
// {
// if (b.GetCell(x, y - i)?.GetTile != null)
// {
// extendedCells.Add(b.GetCell(x, y - i));
// }
// }
// }
//
// else if (cell?.GetX == x + 1 && cell?.GetY == y)
// {
// for (int i = 1; i < 7; i++)
// {
// if (b.GetCell(x + i, y)?.GetTile != null)
// {
// extendedCells.Add(b.GetCell(x + i, y));
// }
// }
// }
//
// else if (cell?.GetX == x - 1 && cell?.GetY == y)
// {
// for (int i = 1; i < 7; i++)
// {
// if (b.GetCell(x - i, y)?.GetTile != null)
// {
// extendedCells.Add(b.GetCell(x - i, y));
// }
// }
// }
//
// foreach (var e in extendedCells)
// {
// if (e?.GetTile?.GetColor != t.GetColor && e?.GetTile?.GetShape != t.GetShape)
// {
// return false;
// }
// }
//
// if (extendedCells.Count == 6)
// {
// return false;
// }
// }
//
// return true;
// }
public bool IsMoveCorrect(Tile t, int x, int y, Board b)
{
if (!b.HasOccupiedCase())

Loading…
Cancel
Save