diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-24 07:50:14 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-24 07:50:14 +0000 |
commit | ce65ce37e0e5a758b180a3b117c18bef953c8551 (patch) | |
tree | e77919f65d1b461dca5553034d6a3d7236442533 /games/blokish/files | |
parent | c5a4de3c1d59efa7c6c86c3c4d1cd5ccee93aea6 (diff) | |
download | ports-ce65ce37e0e5a758b180a3b117c18bef953c8551.tar.gz ports-ce65ce37e0e5a758b180a3b117c18bef953c8551.zip |
Clone of the strategy board game 'Blokus'. Four players must place
as many of their 21 pieces on the board as possible while preventing
others from doing the same.
This is made difficult by the fact that a piece played by a player
must touch another of the player's pieces, but only at their corners
(a player's first piece must touch a board corner).
The game is over when no player can play any new pieces. The winner
is the player with the fewest & smallest pieces remaining. Bonus
points are awarded for playing all pieces.
Features a tweakable AI to take the place of any human players.
WWW: http://blokish.sourceforge.net/
PR: ports/91961
Submitted by: Dmitry Marakasov <amdmi3@mail.ru>
Notes
Notes:
svn path=/head/; revision=154323
Diffstat (limited to 'games/blokish/files')
-rw-r--r-- | games/blokish/files/extra-patch-src-ai.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/blokish/files/extra-patch-src-ai.h b/games/blokish/files/extra-patch-src-ai.h new file mode 100644 index 000000000000..f614e9e41dbc --- /dev/null +++ b/games/blokish/files/extra-patch-src-ai.h @@ -0,0 +1,11 @@ +--- src/ai.h.orig Wed Jan 4 13:39:31 2006 ++++ src/ai.h Wed Jan 18 17:27:15 2006 +@@ -25,6 +25,8 @@ + #ifndef AI_H + #define AI_H + ++#include <time.h> ++#include <algo.h> + #include "piece.h" + #include "player.h" + #include "board.h" |