How to Play

Game Instructions

The gameplay is simple. There are two players: white and black. There is also one neutral color: red. The board consists of a 4x4 grid of stacks. Pieces can be placed (pushed) and removed (popped) from any stack. For each turn, there are three possible moves:

The game ends when either white or red has four of their color in a row, diagonal, or column.

Strategy

Our game is designed so that thinking about the stack data structure is a significant part of the gameplay and strategy. The three fundamental operations on a stack are part of the gameplay. To guide us through the main philosophy motivating the game rules, we have two concepts: offense and defence. Offense corresponds to advancing the player towards a win. Defense corresponds to preventing the opponents advancement. While this is what we envision the general strategy of our game to be, it is very possible that there are unknown features of our rules. Please let us know if you have any observations!