I have homework in c#. I have to make a game (such as checkers, chess or something else, but not tic tac toe - and I choose checkers/draughts) with using minimax and alphabeta, but I don't even know how to start :( And I have a tight deadline. I worked with c# a little bit at school, but I'm not a programmer. Now I'm trying to make an array, that will be represent a board and positions of its pieces. What is better? If the information about positions of pieces and their values will be saved with the board or if these informations will be saved for each piece separately. And how to make the best array for this.

Basically what i need is an advice how to start, how to represent the game state - the basic structure of the program etc.

link|improve this question
1  
Well, tic tac toe would have been easier... – Carra Aug 26 '10 at 13:47
Yes, but the Tic tac toe I couldn't choose :( – Washa Aug 26 '10 at 14:31
WOW! Draughts driven by minimax and alpha-beta pruning as homework, on a tight deadline...Its a bit difficult to see where to start answering this question. You say you want 'the' answer in C# but you yourself are not a c# programmer. I assume you've read and understood the WikiP articles on minimax? Also I just googled "Draughts Programming", first answer was a very reasonable codeproject link...Also there are major papers on Draughts as it was recently 'Solved' - in a computer v computer match will always end in a draw. – Adrian Aug 26 '10 at 15:14
4 Adrian: Yes, as I said, I'm not programmer... maybe beginner programmer... And I studied minimax and alphabeta algorithms on wiki and on other websites... I have a little idea, what I have to do, but it is very hard for me :D now I have a little part of code and I'm trying to move next... – Washa Aug 26 '10 at 15:40
that's kind of my point - this homework sounds incredibly hard! The complexities of the game, there's so many permutations of the board ( hence the need for prunning!) You say your on a tight deadline and yet your at the basic stage of how to represent the board in memory. of the two shown below Dans is probably more suited to C# as long as your searches don't have to go so deep that memory becomes a problem. – Adrian Aug 26 '10 at 16:15
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

Hint: use a 2 dimensional array to represent your game board:

int[,] board = new int[8, 8];
link|improve this answer
Thanks, I already started with the same array and now I'm making the generating of pieces on board... – Washa Aug 26 '10 at 14:42
1  
does it need to be 8x8 in memory? the Men can only stand on 32 squares...... – Adrian Aug 26 '10 at 16:17
1  
It's a homework assignment, so I wouldn't go for the most optimized solution. Keep it understandable. So, when you are coding checkers, and you are on location 2,0, you know that you can move to 1,1 or 3, 1. If you keep it 4x4, then you have to remember which row is shifted which direction and you can make a mistake much easier. Use the int in each space so you know what is there. For example, 0 is empty. 1 is red, 2 is red king, 11 is black, 12 is black king. – Dan Aug 27 '10 at 13:21
Adrian, Dan, thanks, I choose 8x8 model, because it's more understandable, as You said... – Washa Sep 9 '10 at 12:18
feedback

The standard method for storing the board state is to use bitboards.

public class Board
{
  private UInt64 m_RedPieces = 0x0000000000559955; // Initial position;
  private UInt64 m_BlackPieces = 0x9955990000000000; // Initial position;
}

The cool thing about bitboards aside from the fact that they are super fast is that it makes generating legal successor positions much easier. It is still hard mind you, but with bitboards you can reduce the move geneneration to a series of bit operations (shifts, ANDs, ORs, XORs, etc.).

I am sure there are a lot of resources already out there on the internet that have the formulas for working with the bitboards.

link|improve this answer
thanks, but I think this is too much difficult for me and my skills :( – Washa Aug 26 '10 at 14:37
@Washa: Not necessarily. I think you may actually find it easier. For example, to generate all successor positions from the initial position you start by shifting m_RedPieces left 7 bits and XORing m_RedPieces to remove the squares already occupied by red pieces. There are a couple of more details involved here, but you get the idea. You will add more and more bit operations to catch the other scenarios including jumps, not moving into a square occupied by opponent pieces, etc. I think you will actually find this easier than crafting a series of if-else blocks. – Brian Gideon Aug 26 '10 at 14:56
Brian, yes, You're definitely right, but I'm afraid about this... I never use these operations as XOR, OR etc in c# or anywhere else. Maybe long time ago and only in theory (lesson at school but not programming subject) :( – Washa Aug 26 '10 at 15:50
I'm not sure this is a good option - how would you have Kings? – Adrian Aug 27 '10 at 7:52
You would have to have a king bitfield as well. – Brian Gideon Aug 27 '10 at 12:00
feedback

Your Answer

 
or
required, but never shown

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