Ejemplo n.º 1
0
 public Map(Coordinate x, Coordinate y, IEnumerable<Cell> aliveCells)
 {
     X = x.Value();
     Y = y.Value();
     Factory = new StateFactory();
     Cells = new List<Cell>((X+1) * (Y+1));
     for (var i = 0; i < X+1; i++)
         for (var j = 0; j < Y+1; j++)
         {
             var coordinateX = new Coordinate(i);
             var coordinateY = new Coordinate(j);
             var cell = new Cell(coordinateX, coordinateY);
             cell.State = (aliveCells.Contains(cell)) ? (State) new Alive(cell) : new Dead(cell);
             Cells.Add(cell);
         }
 }
Ejemplo n.º 2
0
 public Cell(Coordinate x, Coordinate y)
 {
     Position = new Position(x.Value(),y.Value());
 }