Chess Ai

hi all!!!

i just started my ISU for my programming class and i decided i want to make a chess game… i was wondering how i should go about programming the AI (no specific code required, just general steps to take etc.)

I was thinking of using the minimax algorithm to determine the next move for the computer and using the bitboard method of storing all the positions of the peices on the board.

any help would be appreciated,

mike

Basically what Marz said. You have to try all the possible moves, and assess the situation after each move. And then play the best move.