My take mini sdk libs for creating the 2048 game in C#. Suitable for any engine from console app to Unity game. Only
2048 game logic. A very simple customizable core for initialization game with params:
Board by your generic type with height, width and initialized function.RandomCellGenerator, set the check to an empty cell and add a list of cells to the pool to generate with a specified percentage probability (Or you can create your own generator by implementing IElementGenerator).ICellBehavior interface to define base cells and behavior for merging cells.BoardBehavior with Board, class implementing ICellBehavior, and CellGenerator.AddNew for generating and add new element on board.Update with arguments:isAlongRow - true when movement left and right if render from up to down;isIncreasing - true when movement left and up (if board render from up to down) or down (if board render from down to up);Updated action to see if cells moved after ant action.AddNew method when need add new value at board.Render method in your engine. In Core class has methods for base iteration and there is updating map with movement info for easier implementation of interaction with external object.Sample console project in ConsoleOut directory.
var board = new Board<ulong>(4, 4, () => 0);
var elementGenerator = new RandomCellGenerator<ulong>(element => element == 0);
elementGenerator.AddToPool(2, 95);
elementGenerator.AddToPool(4, 5);
var app = new BoardBehavior<ulong>(board, elementGenerator, new BaseCellBehavior());
app.AddNew();
app.AddUpdatedListener(elements =>
{
app.AddNew();
Render(board);
});
Render(board);
while (true)
{
var direction = Input();
if (direction == null)
{
continue;
}
var isAlongRow = direction == Direction.Left || direction == Direction.Right;
var isIncreasing = direction == Direction.Left || direction == Direction.Up;
app.Update(isAlongRow, isIncreasing);
}

