i'm trying to develop Pentago-game in c#.

right now i'm having 2 players mode which working just fine.

the problem is, that i want One player mode (against computer), but unfortunately, all implements of minimax / negamax are for one thing calculated for each "Move" (placing marble, moving game-piece).

butin Pentago, every player need to do two things (place marble, and rotate one of the inner-boards)

I didn't figure out how to implement both rotate part & placing the marble, and i would love someone to guide me with this.

if you're not familiar with the game, here's a link to the game.

if anyone want's, i can upload my code somewhere if that's relevant.

thank you very much in advance

link|improve this question
What have you done so far? any specific issues you are having? – Arkain Dec 30 '10 at 18:24
as for what have i done so far - i tried to start implementing minimax, but i didnt understand how to "represent" one move (while it's suppose to be two) and save a List<Moves> – itsho Dec 31 '10 at 6:28
feedback

2 Answers

up vote 1 down vote accepted

If a single legal moves consists of two sub-moves, then your "move" for game algorithm purposes is simply a tuple where the first item is the marble placement and the second item is the board rotation e.g.:

var marbleMove = new MarbleMove(fromRow, fromCol, toRow, toCol);
var boardRotation = new BoardRotation(subBoard, rotationDirection);
var move = new Tuple<MarblMove, BoardRotation>(marbleMove, boardRotation);

Typically a game playing algorithm will require you to enumerate all possible moves for a given position. In this case, you must enumerate all possible pairs of sub-moves. With this list in hand you can move on to using standing computer game playing approaches.

link|improve this answer
i guess you ment to var marblePlace = new MarblePlace(onRow,onCol) anyway, is that mean i need to instance all possabile pairs ? isn't that gonna be VERY slow ? – itsho Dec 31 '10 at 6:36
1  
Yes, it could be slow and game algorithms often have to cope with the exponential explosion of game positions. Your first friend to help with this problem is the transposition table: en.wikipedia.org/wiki/Transposition_table – Rick Sladkey Dec 31 '10 at 6:54
feedback

Rick suggested tuples above, but you might want to actually just have each player make two independent moves, so it remains their turn twice in a row. This can make move ordering easier, but may complicate your search algorithm, depending on which one you are using.

In an algorithm like UCT (which is likely to outperform minimax for simple implementations) breaking into two moves can be more efficient because the algorithm can first figure out what moves placements are good, and then figure out what rotation is best. (Googling UCT doesn't give much. The original research paper isn't very insightful, but this page might be better: http://senseis.xmp.net/?UCT)

link|improve this answer
UCT looks like "Monte-Carlo" to me. if not, i didnt got it. can you provide a short example of the UCT algorithm? – itsho Dec 31 '10 at 6:34
Monte-Carlo can mean a lot of things; UCT is in the broader class of Monte-Carlo Tree Searching (MCTS) algorithms. UCT has an exploration rule, that tell you where to sample next. Usually the UCT tree grows in the areas that are being sampled, and random or pseudo-random samples are performed to get from the end of the UCT tree to the end of the game. This avoids the need for a complicated evaluation function. – Nathan S. Dec 31 '10 at 21:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.