Skip to main content
Email Password   helpLost your password?

Sample Image - hexomania.jpg

Introduction

Hexomania is a strategy game that I've made and wanted to share with you. It contains a good AI for the computer play. I think this is a good example of what you can do with C#. It took 2 days for programming.

How to play

Every player has a lot of pieces and some targets (circles) with the same color. The game is played in turns. Targets move randomly one step, every turn. You win if all his targets are imprisoned (can't move). You play by moving any of your pieces to an empty hex that is adjacent to another one of your pieces.

Click a piece to move. Click an empty hex to put the piece. You can change the board size (and number of pieces and targets of course). You can change number of players.

I Hope you enjoy the Game.

The game classes consists of

The Computer AI

The AI is simple enough. It consists of the function Board.Cost(team) which calculates the cost for the current position of the board for a certain player. Based on the sum of free spaces around every target of the player. This means that the player wins when the Cost returns 0.

The Cost function works by creating a tmp array with the same size of the board, that is initially contains zeros. Then searching around every target of the player and adding for every free space a certain amount of cost in the tmp array. This amount is big when the position is near the target, and small when far from it. Because we want the computer to fill the free space around the target. Then the Cost function returns the sum of all the tmp array.

For the computer to play its turn, it searches for the piece that can be removed producing the minimum cost. Then searches for the best position to put that piece in, based on (again) the minimum cost produced.

The search is done on all the available pieces to remove, then on all the free spaces that are adjacent to another pieces, to select a place to put on.

How to save a hex grid in an array

It is done by a normal 2 dimensional array. But the y positions are spaced by a half grid below, every Xindex mod 2 = 1, to create the hex shape. The next shape shows how we calculate the x,y index of the array:

Sample screenshot

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
Generalthank's for code and demo Pin
Dan_4ugust
23:55 12 Jun '09  
General[Message Deleted] Pin
Danny Rodriguez
10:12 27 Jan '08  
GeneralGreat work Pin
Riku-Juhani Niemlä
21:43 3 Jul '04  
GeneralGood. Pin
acontoli
22:34 16 Jun '04  
GeneralGreat Game But.. Pin
klexys
14:30 12 May '04  
GeneralGood work Pin
Christian Graus
16:22 15 Apr '04  
GeneralRe: Good work Pin
Nishant S
22:57 27 Apr '04  
GeneralNo code at ALL ? Pin
Christian Graus
16:05 14 Apr '04  
GeneralGame cool, article not Pin
Dave Loeser
15:27 14 Apr '04  


Last Updated 13 Apr 2004 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009