2 stratego - Interface to manage games of stratego between AI programs and/or human players
7 stratego {[-gpirb] [-o output_file ] [-t stall_time] [-T timeout_time] [-m max_turns] [-I image_directory] {red_player blue_player | -f input_file} | {-h | --help} }
9 QUICK EXAMPLE - Play against a sample AI, using graphics, hiding the AI's pieces
10 stratego -g -b @human ../../agents/vixen/vixen.py
12 QUICK EXAMPLE - Play two sample AI, using graphics, and a delay of 1 second between moves
13 stratego -g -t 1 ../../agents/vixen/vixen.py ../../agents/basic_python/basic_python.py
16 stratego manages a game of Stratego. It stores the state of the board, and uses a simple protocol to interface with AI programs.
17 By itself, stratego does not "play" the game. An external AI program must be used. stratego is intended to be used for the testing of
18 various AI strategies, written in any programming language. It will be used for the UCC Programming Competition 2012.
20 Unless the -h (--help) or -f switch is given, both red_player and blue_player must be supplied.
23 Should be either a path to an executable file which will control the Red player, or "@human" or "@network[:IP_ADDRESS]"
25 If player is @human, then control will be given to a human, via stdin if graphics is disabled, or via "point and click" if graphics is enabled.
27 If player is @network, then commands will be read from another copy of stratego accross the network.
28 In addition, commands from the other player will be sent accross the network to the connected stratego program.
30 If no IP_ADDRESS is given, the program acts as the server, and accepts the first connection it receives.
31 If an IP_ADDRESS is given, the program attempts to connect as the client to the specified address.
33 Each player uses a different port; both players may be network controlled.
36 As red_player, except for controlling the Blue player.
38 A WARNING ABOUT BUFFERING
39 The AI programs must unbuffer their stdin and stdout streams, otherwise it will be seen to be non-responsive.
40 If you C and you know a way to force the process started by exec() to have unbuffered stdin/stdout, please email the author.
42 In C or C++, unbuffering is accomplished with the following lines, which should appear near the start of main()
45 In python, unbuffering is accomplished by passing the -u switch to the interpreter, ie: The first line of a script reads:
51 NOTE: This switch only functions if stratego is built with graphics enabled. See BUILDING for more information.
53 By default, graphics are disabled. If the -g switch is present, stratego will draw the game as it is played using SDL/OpenGL
56 By default, even if graphics are disabled, the board state is not printed. If -p is present, the board will be printed to stdout.
57 If the system supports colour, the characters will be in colour.
58 Yes, If -p and -g are both present you will see both behaviours (overkill)!
60 By default, stratego will exit if a move which is deemed "illegal" is made. If the -i switch is present, illegal moves will be ignored.
61 That is, the move will not be made (effectively the player making the illegal move loses a turn).
63 NOTE: If -i is not given and a human player accidentally(?) makes an illegal move, they will be asked to make a different move. The game will continue.
64 This is intended to prevent fits of rage due to the horrible graphical interface causing humans to make illegal moves.
66 By default, the identities of all pieces are shown. If the -r switch is present, and graphics are enabled, red pieces will be disguised.
67 If graphics are disabled, the -r switch has no effect.
69 Pieces which have previously taken part in combat (and survived) will be revealed.
71 As -r, except blue pieces will be disguised.
72 NOTE: Both -r and -b may be used together.
74 By default, stratego does not log moves. If the -o switch is present, the result of each move is printed to a file.
75 If output_file is "stdout" then stdout will be used instead of a text file.
77 By default, stratego executes moves as fast as they are recieved. If the -t switch is present, a delay of stall_time will be introduced
80 If stall_time is negative or "inf", stratego will wait for the user to press enter before moving to the next move.
82 It is tentatively planned to allow the user to enter various commands to alter the game or proceed to specified turns.
83 However this is slightly complicated. So it might never be done.
86 By default, stratego allows AI programs 2 seconds to respond before declaring their move ILLEGAL due to a timeout.
87 If the -T switch is present, AI programs will be allowed timeout_time to respond before their move is declared ILLEGAL.
89 If timeout_time is negative or "inf", stratego will never declare moves illegal due to timeouts.
91 Human players are never subject to timeouts.
94 By default, the game is declared a Draw after 5000 turns have ellapsed.
95 Use this option to change the maximum number of turns.
96 To play for an infinite number of turns, supply "inf" as max_number. This is not recommended for obvious reasons.
99 By default, stratego requires red_player and blue_player to enact a game.
100 If this option is supplied, a file previously produced by using the -o switch is read, and the game reenacted.
101 All switches function as normal with -f.
102 NOTE: It is recommended that -g is used with -f.
105 stratego can output image files in the BMP format, when built with graphics.
106 If this option is supplied, a directory indicated will be used, and a .bmp image will be saved to the directory after each move.
107 The images will be numbered from 0.bmp (before the game starts) with increasing integers for each move.
108 Note that the image number corresponds to the move number, not the turn number.
109 The move number is odd after RED has moved, and even after BLUE has moved.
111 NOTE: The -I switch will automatically enable graphics, even if the -g switch is not supplied.
114 If you have ffmpeg on your system, you can use this to quickly create a video.
115 When this option is supplied, stratego first outputs image files to a temporary directory in BMP format.
116 After the game is finished, these files are used to create an mp4 movie with the specified name:
118 $ ffmpeg -r 10 -b 1024k -i tmp/%d.bmp filename
120 The temporary images will then be deleted.
123 If the -h switch is used, this page will be printed and stratego will exit.
128 Each player controls up to 40 pieces on the Board. The pieces are represented by the following characters:
130 Piece Name Rank Number Abilities
131 1 Marshal 1 1 Dies if attacked by Spy
138 8 Miner 8 5 Destroys Bombs
139 9 Scout 9 8 May move more through multiple empty squares
140 s Spy 10 1 If the Spy attacks the Marshal, the Marshal dies
141 B Bomb NA 6 Immobile. If any piece (except a Miner) attacks an enemy Bomb, that piece is destroyed.
142 F Flag NA 1 Immobile. If any piece attacks the enemy Flag, the controlling player wins.
144 Additional pieces, not controlled by the player:
145 Piece Name Number Notes
146 + Obstacle 8 Immobile. Do not belong to either player. Can't be passed through.
147 # Enemy Piece 0 - 40 Indicates that the position on the board is occupied by an enemy piece.
148 . Empty NA Indicates that the position on the board is empty.
150 Players take turns to move their pieces. RED begins the game.
152 Pieces may only move one square horizontally or vertically unless otherwise stated.
153 Pieces may not move through squares occupied by allied pieces, or Obstacle (+) pieces.
154 Pieces may move into squares occupied by Enemy Pieces (#), in which case the piece with the lower rank (higher number) is destroyed.
156 Each player's pieces are hidden from the other player. When two pieces encounter each other, the ranks will be revealed.
158 The objective is to either destroy all enemy pieces except the Bombs and Flag, or to capture the Flag.
160 Since 20/12 Bombs reflect the traditional rules; they are only destroyed by Miners.
161 In previous versions contact of an attacker other than a Miner with a Bomb destroyed the Bomb as well as the attacking piece.
166 WARNING: This is quite a wordy section. To avoid being scared off, try just copying a sample AI program. They obey the protocol already.
168 In order to interface with stratego, an AI program must satisfy the following protocol.
169 The protocol has been grouped into several sections. It is suggested that you read and implement the below sections in order.
171 In the "Synopsis" of each section, a line beginning with the three characters ">> " indicates information sent to the AI.
172 a line beginning with the three characters "<< " indicates the form of the expected response.
173 Each line is always terminated with a new line character '\n'.
175 A vertical bar '|' indicates that the line may have the form shown either to the left, or the right.
176 Fields in square brackets '[' and ']' are optional. The default value will be shown within the brackets after a '=' character.
178 Any words preceeded by a '$' character are not to be interpreted literally; in the actual protocol, these words are replaced with information.
179 The information will not contain any whitespace unless otherwise stated.
180 The meaning of these words is explained below the "Synopsis" under the "Explanation" subheading for each section of the protocol.
182 Words not preceeded by a '$' character should be interpreted literally;
184 Means that "START", followed by a new line, is printed to the AI.
188 ---------------------------------------------------
190 ---------------------------------------------------
191 Setup only occurs once; during the setup phase, AI are provided with information about their colour and opponent.
192 They must then respond with four lines detailing their setup.
194 Setup occurs before the first move; your AI should expect to recieve and respond to Setup messages immediately after starting.
195 Immediately after the setup phase, the AI should expect to recieve messages desribed by the Turn section of the protocol.
196 ---------------------------------------------------
198 ---------------------------------------------------
199 >> $COLOUR $OPPONENT $WIDTH $HEIGHT
204 ---------------------------------------------------
206 ---------------------------------------------------
208 COLOUR - The colour assigned to the AI. Will be either "RED" or "BLUE"
209 - Colour is important, because "RED" is always at the top of the board, and "BLUE" at the bottom.
211 OPPONENT - Your AI may identify its opponents through this string
213 WIDTH - The width of the board. This will always be 10
214 HEIGHT - The height of the board. This will always be 10
216 ROW1 - The highest row on the board of the AI's setup.
217 - For RED, this is the back row, but for BLUE, it is the front row.
218 ROW2 - The next highest row
219 ROW3 - The next highest row
220 ROW4 - The lowest row on the board of the AI's setup
221 - For RED, this is the front row, but for BLUE, it is the back row.
223 Each row, ROW1 -> ROW4, should consist of WIDTH characters. Each character identifies a piece, as shown under "GAME RULES" above.
225 An AI program does not have to place all 40 pieces, but must at least place the flag ('F').
226 However, note that an AI program with no mobile pieces will immediately lose.
227 ---------------------------------------------------
229 ---------------------------------------------------
230 >> RED ../../agents/vixen/vixen.py 10 10
236 In this example, the AI will be playing as "RED". It's opponent is the "vixen" sample AI.
237 The board width and height will always be 10.
239 The AI responds with a sensible setup for the "RED" player, putting the flag in the back corner.
242 ---------------------------------------------------
244 ---------------------------------------------------
245 After the Setup phase, a number of Turns occur, until the game ends.
247 Warning: The game may end between turns, in which case a "QUIT" message is sent.
248 The "QUIT" message will be sent in place of the first line in the synopsis shown below.
249 Read "3. End Game" below.
250 ---------------------------------------------------
252 ---------------------------------------------------
253 For the AI with colour "RED" only, and only on the very first turn:
265 << $X $Y $DIRECTION [$MULTIPLIER=1]
266 >> $X $Y $DIRECTION [$MULTIPLIER=1] $OUTCOME
268 For the AI with colour "RED" on every subsequent turn, and the AI with colour "BLUE" on all turns:
269 >> $LASTMOVE $OUTCOME
280 << $X $Y $DIRECTION [$MULTIPLIER=1]
281 >> $X $Y $DIRECTION [$MULTIPLIER=1] $OUTCOME | QUIT [$RESULT]
282 ---------------------------------------------------
284 ---------------------------------------------------
288 LASTMOVE - The last move made
289 - That is, the move made by the opponent AI, immediately before this move
290 - It is a direct copy of the opponent AI's response
291 - On the very first turn, since no move has been made, "START" is printed to the RED AI
293 OUTCOME - The interpretation of the move by the manager program; will be one of the following
294 - Successful, uneventful move: "OK"
295 - Illegal move: "ILLEGAL"
296 - The moved piece attacked and destroyed an opponent piece: "KILLS $ATTACKER_RANK $DEFENDER_RANK"
297 - ATTACKER_RANK and DEFENDER_RANK are the ranks of the attacking and defending piece respectively
298 - The moved piece was destroyed by an opponent piece that it attacked: "DIES $ATTACKER_RANK $DEFENDER_RANK"
299 - ATTACKER_RANK and DEFENDER_RANK are the ranks of the attacking and defending piece respectively
300 - The moved piece attacked an opponent piece, and both pieces were destroyed: "BOTHDIE $ATTACKER_RANK $DEFENDER_RANK"
301 - ATTACKER_RANK and DEFENDER_RANK are the ranks of the attacking and defending piece respectively
303 ROW1 -> ROW10 - The state of the board will be printed
304 - Each line represents a row on the board, from the top downwards
305 - The characters are as desribed above in "GAME RULES"
306 - Enemy pieces will NOT be revealed, even if they have been involved in combat. They are always shown as '#'.
307 - It is recommended that AI's rely on the LASTMOVE and OUTCOME results to keep state
308 - Interpreting these lines is not necessary, or recommended
309 - They still exist because I say so. GET OVER IT.
313 X - The x coordinate of the piece to be moved. Ranges from 0 (zero) to 9 (nine) (left to right)
314 Y - The y coordinate of the piece to be moved. Ranges from 0 (zero) to 9 (nine) (top to bottom)
315 DIRECTION - The direction to move the piece in. May be either "LEFT", "RIGHT", "UP" or "DOWN"
316 MULTIPLIER - Scouts may move more than one square.
317 - To move a scout multiple spaces, print an integer indicating the number of spaces immediately after DIRECTION
321 The manager program will check the validity of the move, and respond by repeating it back to the AI, followed by OUTCOME.
322 OUTCOME is as described above.
323 ---------------------------------------------------
325 ---------------------------------------------------
343 Continuing from the Setup example, the RED AI is told to start, and then the board is printed.
344 Note that only RED's pieces are revealed. The obstacles are always in the same place, as shown.
345 Refer to the "GAME RULES" section for an explanation of each piece character.
347 The AI decides to move its scout (9) at (0,3) downwards by one place.
349 The manager reports that this move was successful.
353 >> 9 6 UP 3 BOTHDIE 9 9
367 The next message recieved by the RED AI tells it that BLUE has moved its piece at (9,6) up by 3.
368 This brought the piece into contact with RED's scout (9) at (9,3)
369 Since BLUE's piece was also a scout (9), both pieces die, indicated by "BOTHDIE" followed by their ranks (9 and 9)
371 The board is printed again. Note that RED's first move is reflected
372 (the scout (9) at (0,4)), and BLUE's last move (both (9,6) and (9,3) are now empty).
374 The RED AI decides to move its major (4) at (9,2) downwards. This move is OK, because there is now nothing occupying (9,3).
375 ---------------------------------------------------
377 ---------------------------------------------------
378 It is recommended that you ignore the board state lines, except for the first turn.
379 Remember that an AI may not place all its pieces, so assuming its initial setup is a bad idea.
380 On subsequent turns, the board state lines provide no information that can't be processed from the move confirmation lines.
381 ---------------------------------------------------
384 ---------------------------------------------------
386 ---------------------------------------------------
387 A message of "QUIT" at any time signals to an AI that the game is about to end.
388 This will be sent immediately after an AI makes a move of the form "$X $Y $DIRECTION [$MULTIPLIER=1]" which ends the game
389 It may also be sent at any time in case of errors
391 The AI should immediately exit if a QUIT message is recieved.
392 ---------------------------------------------------
394 ---------------------------------------------------
396 ---------------------------------------------------
398 ---------------------------------------------------
399 RESULT - Usually not present; it may contain debug information if it is.
400 ---------------------------------------------------
403 ---------------------------------------------------
405 ---------------------------------------------------
406 If a program fails to respond to a query, the game will end and that AI will be sent the ILLEGAL result.
407 Human players are not subject to the timeout restriction.
408 ---------------------------------------------------
409 Please see the information on the -T switch, and the "End Game" section above.
414 If the game ends due to a player either winning, or making an illegal move, stratego will print one the following result message to stdout.
416 $NAME $COLOUR $OUTCOME $TURN $RED_PIECE_VALUE $BLUE_PIECE_VALUE
419 NAME is the name of the player on whose turn the game ended,
421 COLOUR is the colour of that player,
423 OUTCOME is one of the following:
424 VICTORY - The indicated player won
425 DEFEAT - The indicated player lost
426 SURRENDER - The indicated player surrendered
427 DRAW - The game ended in a draw because neither player moved
428 DRAW_DEFAULT - The game ended in a draw because the maximum number of moves was exceeded
429 ILLEGAL - The indicated player loses due to an Illegal move/response
430 DEFAULT - The indicated player wins by default due to the other player making an Illegal move/response
431 BOTH_ILLEGAL - Both players made an Illegal move/response. Usually occurs due to simultaneous setup errors.
432 - May occur due to bad AI path names
433 INTERNAL_ERROR - The game ended, even though it shouldn't have.
435 TURN is the number of turns that elapsed before the game ended
437 RED_PIECE_VALUE and BLUE_PIECE_VALUE are the summed piece values of the pieces of RED and BLUE respectively.
438 Bombs and Flags are worth zero, and the ranked pieces (Spys -> Marshal) are worth (11 - rank).
439 So the Spy is worth 1 point, ... the Marshal is worth 10.
441 (The initial piece values can be determined by running with -m 0)
444 stratego will then return exit code 0.
446 If an error occurs within stratego itself, an error message will be printed to stderr and return exit code 1.
447 If possible, stratego will print the message "QUIT" to both AI programs, and they should exit as soon as possible.
450 To build from source, simply run make in the source directory.
451 You will need the C pthread library (which should come with gcc)
453 stratego can be built with or without graphics enabled. By default, graphics are disabled.
456 1. Ensure that the first line of the source file "graphics.h" reads:
457 #define BUILD_GRAPHICS
458 2. In "Makefile", uncomment the line "LIBRARIES = -lSDL -lGL -lpthread"
459 and comment out the line "LIBRARIES = -lpthread"
462 1. Comment out the first line of "graphics.h" i.e ensure that it reads:
463 //#define BUILD_GRAPHICS
464 2. In "Makefile", uncomment the line "LIBRARIES = -lpthread"
465 and comment out the line "LIBRARIES = -lSDL -lGL -lpthread"
467 If you intend to build with graphics enabled, you will need the SDL and OpenGL developement libraries installed first.
468 If you intend to use graphics, please ensure the "images" directory is located in the executable's run directory.
474 Occasionally the result is not printed at the end of the game.
475 So far this has only been observed to occur when RED wins the game by Flag capture.
477 stratego is still a work in progress. Report another bug to the AUTHOR (see below).
484 0. This program is still a work in progress and subject to changes.
486 1. UCC Programming Competition 2012 Description
487 http://progcomp.ucc.asn.au
489 2. UCC Programming Competition 2012 Git repository
490 git://git.ucc.asn.au/progcomp2012.git
494 irc://irc.ucc.asn.au #progcomp
496 THIS PAGE LAST UPDATED