06-09-2023, 05:05 PM
(This post was last modified: 06-09-2023, 05:07 PM by TerryRitchie.)
(06-09-2023, 04:27 PM)bplus Wrote:These are called minmax algorithms: https://en.wikipedia.org/wiki/Minimax(06-09-2023, 03:05 AM)a740g Wrote: Nicely done. I had to see the video and the PDF to understand the game.+1 I've been saying this all along with Donald's board games.
Probably you can do an AI player for this next.
If just 20% of them had AI, theyd be a really great hit! Multi-player board games might work on Internet?
@Donald Foster Allot of AI is about analysing "the state of a board" and assigning a numerical score. Then for AI it would try all possible moves and see which came back with highest score. Before that would be a subroutine that sees a player has won. Try it on Tic Tac Toe or Connect 4.
They are a bear to implement because of their recursive nature but work very well for board games.