Skip to content

An API to support the playing and analysis of games of The Royal Game of Ur.

License

Notifications You must be signed in to change notification settings

RoyalUr/RoyalUr-Java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RoyalUr-Java Logo

This library provides a Java API for the play and analysis of games of The Royal Game of Ur!

What is The Royal Game of Ur?

The Royal Game of Ur is one of the longest-living games in history, with evidence of it being enjoyed by people who lived over 5,000 years ago! This library aims to bring this ancient board game into the modern age by supporting digital versions of the game, statistical analysis of its rules, and the use of AI to play the game. A board used to play The Royal Game of Ur is shown below, which was excavated by Sir Leonard Woolley in the 1930s. It is currently on display at the British Museum!

British Museum game board excavated by Sir Leonard Woolley

Photo of an excavated board of the Royal Game of Ur that is dated to 2500 BC.
© The Trustees of the British Museum.

Resources

🔧 Installation

Currently, the RoyalUr-Java library is only available through building the source code using Maven. We plan to release the library into the central library as well, but we have had issues with that process that we still need to work out. You can manually install from the source code by running mvn install in the root directory of the source code.

🚀 Example

The following is a small example that shows the basics of creating a game, autonomously playing through it by making random moves, and reporting what happens in the game as it progresses.

// Create a new game using the Finkel rules.
Game game = Game.createFinkel();

// Play through a game making random moves.
Random rand = new Random();

while (!game.isFinished()) {
    String turnPlayerName = game.getTurn().getName();

    if (game.isWaitingForRoll()) {
        // Roll the dice!
        Roll roll = game.rollDice();
        System.out.println(turnPlayerName + ": Roll " + roll.value());
    } else {
        // Make a random move.
        List<Move> moves = game.findAvailableMoves();
        Move randomMove = moves.get(rand.nextInt(moves.size()));
        game.move(randomMove);
        System.out.println(turnPlayerName + ": " + randomMove.describe());
    }
}

// Report the winner!
System.out.println("\n" + game.getWinner().getName() + " won the game!");

Here is a snippet from the end of the output from running the example above:

Dark: Score a piece from C7
Light: Roll 2
Light: Score a piece from A8
Dark: Roll 1
Dark: Move C4 to C3
Light: Roll 1
Light: Score a piece from A7

Light won the game!

📜 Supported Rulesets

This library supports a wide range of rulesets for the Royal Game of Ur. You may use standard sets of rules that are commonly played, or create your own custom rulesets.

Provided Rulesets:

  • Rules proposed by Irving Finkel (simple version).
  • Rules proposed by James Masters.
  • Rules for Aseb (using a different game board).

⚙️ Custom Rulesets

The rulesets are created by selecting several component pieces that make up the ruleset. This includes selecting the board shape, the path that pieces take around the board, the dice that are used, alongside other features such as whether rosette tiles are safe from capture. The provided values of these components are given below, but new values can also be created and used instead (e.g., for a new path around the board).

Board Shapes:

  • Standard Royal Game of Ur.
  • Aseb.

Supported Board Shapes

Paths:

  • Bell's path.
  • Masters' path.
  • Murray's path.
  • Skiriuk's path.
  • Aseb path proposed by Murray.

Supported Paths

Dice:

  • Four binary die.
  • Three binary die where a roll of zero is treated as a four.
  • N binary die.
  • N binary die where a roll of zero is treated as a roll of N+1.

Features:

  • Number of starting pieces for each player.
  • Whether rosettes are safe tiles.
  • Whether landing on a rosette grants an extra roll.
  • Whether capturing a piece grants an extra roll.

📝 License

This library is licensed under the MIT license. Read the license here.

About

An API to support the playing and analysis of games of The Royal Game of Ur.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages