Conquest

An easy round-based strategic board game. To win, destroy or circle the enemy, so he/she has no chance to move. Two players can play against each other, but you can also play against the computer (and choose between two strategies), or you can even just watch the computer playing against itself.

Part of the fun is that the game offers different topologies with different neighboring relations between the fields. And this influences the strategy you should apply.

How to start the program

  1. You need a Java Runtime Environment on your computer. The easiest way is to get it from www.java.com. There you can also check if you already have it installed.
  2. Download the program Conquest.
  3. Start it by double-clicking the downloaded file.

A word to the programmers among you

If you want, you can download the source code.

Feel free to use the files in your own projects, as long as you name me and all other contributors to the files you took in use from me.
If you apply changes to my files, please inform me of the result, maybe there are more interested in your improvements.


And here's the manual:

Conquest

A round based strategy game.

Table of Content

The Rules

Two players play against each other on a board. The board contains fields, which could be holes (black), free (gray), or occupied by one of the players (red or green).

The goal is to circle the opponent player in a way that he can't move. The players move in turns. A move can be:

Grow:
Starting from a field owned by the player, the neighboring field (distance 1) is taken by the player. The destination field has to be free. The player keeps the starting field.
Jump:
Starting from a field owned by the player, the player moves to a field in distance 2. The destination field has to be free. The player loses the starting field, it becomes free.

No matter if growing or jumping—all fields in the direct neighborhood of the destination field owned by the opponent are conquered and then belong to the current player.

A player has to do a move. If he cannot move, he has lost the game.

Operation

The current player is displayed below. The last half-move of the opponent is displayed by a cirle and a line. If the current player is human, the move can be entered the following way:

  1. The user clicks into a field that is owned by him. That's the starting field. The board marks all fields that can be reached from there by growing or jumping.
  2. The user clicks on one of the marked destination fields.

To clear the selection of the starting field, click somewhere else on the board.

If a human player plays against a computer strategy, the computer player moves automatically.

If two computer strategies play against each other, the user has to click somewhere onto the board for each move of each player. So you can watch the game at your own pace.

Meaning of Colors

Field colors
Background
Free (empty) field
Field owned by player red
Field owned by player green
Field decorations
Potential start field of a move
Selected start field of the move
Potential end field of a growing move for the selected start field
Potential end field of a jumping move for the selected start field
The end field of the latest move of the opponent

Topologies

In this game the neighborhood relationship between fields is important. That's why there are several boards with different topologies.

Rule of thumb: The more neighbors, the harder it is to circle the opponent.

  Hexagons

A field has the six fields with shared edges as neighbors.

  Triangles

A field has the three fields with shared edges as neighbors.

  Squares 4

A field has the four fields with shared edges as neighbors. (That is above, below, left and right.)

  Squares 8

A field has the eight fields with shared corners as neighbors. (That is above, below, left, right, but also the diagonals above left, above right, below left and below right.)

The Menu

Game

Actions for the whole game or program.

  New...

Exits the current game and starts a new one.

  Languages

Switches the language for the whole program.

  Deutsch (Deutschland)

  English (United States)

  Quit

Quits the program.

?

Some information about the program.

  Help...

Displays some help about this program.

  About Conquest...

Displays information about this program.

Start a new game

When you start a new game, you have several options to adapt the game to your needs.

Board

Chooses the board (including topology).

Squares 4 neighbors, 6x6

Squares 8 neighbors, 10x10 with hole

Hexagons, hexagon board size 5 with hole

Hexagons, Conquest 1.0

Triangles, 7x6

Training board: Victory is yours

Training board: Win in one move

Training board: Squares 4 neighbors, 2x3

Test board: Hexagons horizontal

Player red

Selects the player type for player red.

Player green

Selects the player type for player green.

Player types

The player type defines how a player is part of the game.

Human

A human player in front of the computer, playing by mouse.

Computer strategy random

A very easy, but unforeseeable computer player.

Computer strategy greedy

An easy computer player, looking mainly for short term gains of controlled area.

Computer strategy minimax

A still beatable computer player, able to look ahead some moves.