
Engineer thesis
Project Description
Title of the thesis was Implementation of a Deterministic Zero-Sum Game
The objective of this project was to develop a zero-sum game application that supports gameplay in three modes: computer vs. computer, computer vs. human, and human vs. human. The author successfully created an original game named "Dollar." The project begins with an analysis of available board games of a similar nature. Following this, the author provides a comprehensive presentation of the game's rules, including the organization of the board and the two-step point calculation method, which is a notable strength. The formal description of the game engine or territory size calculator is particularly commendable. The choice of production technologies used in the project is appropriate and leaves no doubts.
In summary, the reviewed project fully meets the requirements set for engineering projects in the field of computer science.
Novelty and Innovation: The novel elements of this project include the concept and implementation of an original game.
General Game Playing (GGP) Context
The General Game Playing (GGP) project is primarily developed at Stanford University. For more information about the project, visit GGP's website. This work utilized the GGP-Base package, available on (href="https://github.com/ggp-org/ggp-base") GitHub. In the terminology of this package, an agent playing the game is called a "gamer," distinguishing them from regular "players." A description of gamers can be found in source. The author intends to adopt this terminology in this work to avoid confusion with another playing agent, the engine, which they developed themselves.
The GGP project focuses on playing games that have never been seen before. The player must learn to make correct moves based on the goal function without knowing the game's rules. The goal can be calculated for any position that can occur in a game using a state machine running on a server or the player's computer. This state machine only uses a rule sheet. A player can be an agent written in any programming language, but Java is recommended due to support from the GGP-Base library. Such an engine is universal and will play any game equally well because it is independent of the game's rules.
Game Play
The game "Dollar" is played on a 9x9 board by two players, who alternately place pieces (e.g., X and O or stones of different colors). In a single move, a player can place only one piece on the board. A piece can be placed if and only if there is already a friendly piece on an adjacent square and the square is empty. The objective of the game is to score more points than the opponent. Scoring occurs at the end of the game when both players pass because they have no good moves left or there are no legal moves available for both.
Points can be scored in two ways:
- Having a piece in the opponent's camp (a 4x4 corner area of the board).
- Capturing territory by surrounding it with one's pieces (similar to the game of Go). One point is awarded for each captured square.
A square is considered captured territory if the opponent cannot reach it after any number of moves, given passive play from the player. Passive play means making passing moves. In the figure, the camps are marked with bold lines.
Points scored by one player are subtracted from the other player's score: g = p0- p
This makes it a zero-sum game because the total gain (g) is always zero: g0+ g = (p0- p) + (p - p0) = 0
The game is also deterministic, as it involves no random elements. Furthermore, the game possesses the following characteristics: it is finite—there is no infinite sequence of moves; it is discrete—the game can be described as a state machine with positions as states and moves as transitions; and it is a game of perfect information—each player is aware of every element of the position and the moves of the opponent. Therefore, it meets the necessary requirements to be described by the Game Description Language (GDL) rule sheet.
Technologies Used
- Java
- JavaFX
- TDD, General Game Playing, Game Description Language
- Git, multi-threading, concurrency