My Project
Enumerations | Functions
game.c File Reference
#include "bit.h"
#include "board.h"
#include "const.h"
#include "game.h"
#include "search.h"
#include "util.h"
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

Enumerations

enum  { PARSE_OK = 0 , PARSE_END_OF_FILE = 1 , PARSE_INVALID_TAG = 2 , PARSE_INVALID_VALUE = 3 }
 

Functions

int move_from_wthor (int x)
 Coordinates conversion from wthor to edax. More...
 
static int move_to_wthor (int x)
 Coordinates conversion from edax to wthor. More...
 
static int move_from_oko (int x)
 Coordinates conversion from oko. More...
 
void game_init (Game *game)
 Create an empty game. More...
 
void game_copy (Game *dest, const Game *src)
 Game copy. More...
 
bool game_equals (const Game *game_1, const Game *game_2)
 Test if two games are equal. More...
 
bool wthor_equals (const WthorGame *game_1, const WthorGame *game_2)
 Test if two Wthor games are equal. More...
 
bool game_update_board (Board *board, int x)
 update a board. More...
 
static bool game_update_player (Board *board, int x)
 update a player. More...
 
bool game_get_board (const Game *game, const int ply, Board *board)
 Get the board after 'ply' move. More...
 
bool game_check (Game *game)
 Check a game. More...
 
int game_score (const Game *game)
 Compute the final score of the game, for the initial player. More...
 
void text_to_game (const char *line, Game *game)
 Convert a text (ascii) game to a Game. More...
 
void game_to_text (const Game *game, char *line)
 Convert game to a text (ascii). More...
 
void oko_to_game (const OkoGame *oko, Game *game)
 convert an allinf.oko game to a Game. More...
 
void wthor_to_game (const WthorGame *thor, Game *game)
 convert a Wthor game to a Game. More...
 
void game_to_wthor (const Game *game, WthorGame *thor)
 convert a Game to a Whor game. More...
 
void game_append_line (Game *game, const Line *line, const int from)
 Build a game from an initial position and a move sequence. More...
 
void line_to_game (const Board *initial_board, const Line *line, Game *game)
 Build a game from an initial position and a move sequence. More...
 
void game_read (Game *game, FILE *f)
 Read a game from a binary file. More...
 
void game_write (const Game *game, FILE *f)
 Write a game to a binary file. More...
 
void game_import_text (Game *game, FILE *f)
 Read a game from a text file. More...
 
void game_export_text (const Game *game, FILE *f)
 Write a game to a text file. More...
 
void game_import_wthor (Game *game, FILE *f)
 Read a game from a Wthor file. More...
 
void game_export_wthor (const Game *game, FILE *f)
 Write a game to a Wthor file. More...
 
void game_import_oko (Game *game, FILE *f)
 Read a game from the "allinf.oko" file. More...
 
static int game_parse_ggf (FILE *f, char *tag, char *value)
 Parse a ggf game. More...
 
void game_import_ggf (Game *game, FILE *f)
 Read a game from the Generic Game Format (ggf) file. More...
 
static const char * parse_tag (const char *string, char *tag, char *value)
 Parse a Tag/value ggf pair from a string. More...
 
char * parse_ggf (Game *game, const char *string)
 Parse a ggf game from a string. More...
 
void game_export_ggf (const Game *game, FILE *f)
 Write a game to the Generic Game Format (ggf) file. More...
 
static int game_parse_sgf (FILE *f, char *tag, char *value)
 Parse a Smart Game Format (sgf) game. More...
 
void game_import_sgf (Game *game, FILE *f)
 Read a game from a sgf file. More...
 
void game_save_sgf (const Game *game, FILE *f, const bool multiline)
 Write a game to the Generic Game Format (ggf) file. More...
 
void game_export_sgf (const Game *game, FILE *f)
 
void game_import_pgn (Game *game, FILE *f)
 Read a game from a pgn file. More...
 
void game_export_pgn (const Game *game, FILE *f)
 Write a game to a pgn file. More...
 
void game_export_eps (const Game *game, FILE *f)
 Write a game to an eps file. More...
 
void game_export_svg (const Game *game, FILE *f)
 
void game_rand (Game *game, int n_ply, Random *r)
 Fill a game with some random moves. More...
 
int game_analyze (Game *game, Search *search, const int n_empties, const bool apply_correction)
 Analyze an endgame. More...
 
int game_complete (Game *game, Search *search)
 Terminate an unfinished game. More...
 

Detailed Description

Game management

Date
1998 - 2017
Author
Richard Delorme
Version
4.4

Enumeration Type Documentation

◆ anonymous enum

anonymous enum

error values

Enumerator
PARSE_OK 
PARSE_END_OF_FILE 
PARSE_INVALID_TAG 
PARSE_INVALID_VALUE 

Function Documentation

◆ game_analyze()

int game_analyze ( Game game,
Search search,
const int  n_empties,
const bool  apply_correction 
)

Analyze an endgame.

Count how many mistakes occured in the last moves.

Parameters
gameGame to analyze.
searchSearch analyzer.
n_emptiesMove stage to analyze.
apply_correctionFlag to correct or not a game.

◆ game_append_line()

void game_append_line ( Game game,
const Line line,
const int  from 
)

Build a game from an initial position and a move sequence.

Parameters
gameGame.
lineMove sequence.
fromGame stage from where to append the line.

◆ game_check()

bool game_check ( Game game)

Check a game.

Parameters
gameGame.
Returns
false if an error occurred.

◆ game_complete()

int game_complete ( Game game,
Search search 
)

Terminate an unfinished game.

Parameters
gameGame to analyze.
searchSearch analyzer.
Returns
number of iterations to terminate the game.

◆ game_copy()

void game_copy ( Game dest,
const Game src 
)

Game copy.

TODO: check if parameter's order is consistant all over the program

Parameters
destDestination Game.
srcSource Game.

◆ game_equals()

bool game_equals ( const Game game_1,
const Game game_2 
)

Test if two games are equal.

Parameters
game_1First Game.
game_2Second Game.

◆ game_export_eps()

void game_export_eps ( const Game game,
FILE *  f 
)

Write a game to an eps file.

Parameters
gameThe input game.
fThe file stream.

◆ game_export_ggf()

void game_export_ggf ( const Game game,
FILE *  f 
)

Write a game to the Generic Game Format (ggf) file.

Parameters
gameThe output game.
fThe file stream.

◆ game_export_pgn()

void game_export_pgn ( const Game game,
FILE *  f 
)

Write a game to a pgn file.

Parameters
gameThe input game.
fThe file stream.

◆ game_export_sgf()

void game_export_sgf ( const Game game,
FILE *  f 
)

◆ game_export_svg()

void game_export_svg ( const Game game,
FILE *  f 
)

◆ game_export_text()

void game_export_text ( const Game game,
FILE *  f 
)

Write a game to a text file.

Parameters
gameThe input game.
fThe file stream.

◆ game_export_wthor()

void game_export_wthor ( const Game game,
FILE *  f 
)

Write a game to a Wthor file.

Parameters
gameThe input game.
fThe file stream.

◆ game_get_board()

bool game_get_board ( const Game game,
const int  ply,
Board board 
)

Get the board after 'ply' move.

Parameters
gameGame.
plynumber of move.
boardoutput board.
Returns
false if an error occurred.

◆ game_import_ggf()

void game_import_ggf ( Game game,
FILE *  f 
)

Read a game from the Generic Game Format (ggf) file.

Parameters
gameThe output game.
fThe file stream.

◆ game_import_oko()

void game_import_oko ( Game game,
FILE *  f 
)

Read a game from the "allinf.oko" file.

Parameters
gameThe output game.
fThe file stream.

◆ game_import_pgn()

void game_import_pgn ( Game game,
FILE *  f 
)

Read a game from a pgn file.

Parameters
gameThe output game.
fThe file stream.

◆ game_import_sgf()

void game_import_sgf ( Game game,
FILE *  f 
)

Read a game from a sgf file.

Parameters
gameThe output game.
fThe file stream.

◆ game_import_text()

void game_import_text ( Game game,
FILE *  f 
)

Read a game from a text file.

Parameters
gameThe output game.
fThe file stream.

◆ game_import_wthor()

void game_import_wthor ( Game game,
FILE *  f 
)

Read a game from a Wthor file.

Parameters
gameThe output game.
fThe file stream.

◆ game_init()

void game_init ( Game game)

Create an empty game.

Parameters
gameGame.

◆ game_parse_ggf()

static int game_parse_ggf ( FILE *  f,
char *  tag,
char *  value 
)
static

Parse a ggf game.

From the current input stream, fill a tag/value pair.

Parameters
fThe file stream.
tagThe tag field.
valueThe value field.

◆ game_parse_sgf()

static int game_parse_sgf ( FILE *  f,
char *  tag,
char *  value 
)
static

Parse a Smart Game Format (sgf) game.

From the current input stream, fill a tag/value pair.

Parameters
fThe file stream.
tagThe tag field.
valueThe value field.

◆ game_rand()

void game_rand ( Game game,
int  n_ply,
Random r 
)

Fill a game with some random moves.

Parameters
gameThe output game.
n_plyThe number of random move to generate.
rThe random generator.

◆ game_read()

void game_read ( Game game,
FILE *  f 
)

Read a game from a binary file.

Parameters
gameThe output game.
fThe file stream.

◆ game_save_sgf()

void game_save_sgf ( const Game game,
FILE *  f,
const bool  multiline 
)

Write a game to the Generic Game Format (ggf) file.

Parameters
gameThe output game.
multilineA flag to create a long text or a single line.
fThe file stream.

◆ game_score()

int game_score ( const Game game)

Compute the final score of the game, for the initial player.

Parameters
gameAn input game.
Returns
The score of the game.

◆ game_to_text()

void game_to_text ( const Game game,
char *  line 
)

Convert game to a text (ascii).

Parameters
gameThe intput game.
lineA move sequence in ascii.

◆ game_to_wthor()

void game_to_wthor ( const Game game,
WthorGame thor 
)

convert a Game to a Whor game.

The wthor format is famous as all main event games are recorded into this format.

Parameters
gameAn input game.
thorThe wthor output game.

◆ game_update_board()

bool game_update_board ( Board board,
int  x 
)

update a board.

◆ game_update_player()

static bool game_update_player ( Board board,
int  x 
)
static

update a player.

◆ game_write()

void game_write ( const Game game,
FILE *  f 
)

Write a game to a binary file.

Parameters
gameThe input game.
fThe file stream.

◆ line_to_game()

void line_to_game ( const Board initial_board,
const Line line,
Game game 
)

Build a game from an initial position and a move sequence.

Parameters
initial_boardInitial board.
lineMove sequence.
gameThe output game.

◆ move_from_oko()

static int move_from_oko ( int  x)
static

Coordinates conversion from oko.

allinf.oko is an old base of games between kitty & early logistello.

Parameters
xoko coordinate.
Returns
edax coordinate.

◆ move_from_wthor()

int move_from_wthor ( int  x)

Coordinates conversion from wthor to edax.

Parameters
xwthor coordinate.
Returns
edax coordinate.

◆ move_to_wthor()

static int move_to_wthor ( int  x)
static

Coordinates conversion from edax to wthor.

Parameters
xedax coordinate.
Returns
wthor coordinate.

◆ oko_to_game()

void oko_to_game ( const OkoGame oko,
Game game 
)

convert an allinf.oko game to a Game.

this was a serie of games played by early M. Buro's logistello against I. Durdanovic's programs.

Parameters
okoA single input game.
gameThe output game.

◆ parse_ggf()

char * parse_ggf ( Game game,
const char *  string 
)

Parse a ggf game from a string.

Parameters
gameThe output game.
stringAn input string.
Returns
The unprocessed remaining part of the string.

◆ parse_tag()

static const char * parse_tag ( const char *  string,
char *  tag,
char *  value 
)
static

Parse a Tag/value ggf pair from a string.

Parameters
stringAn input string.
tagThe tag field.
valueThe value field.
Returns
The unprocessed remaining part of the string.

◆ text_to_game()

void text_to_game ( const char *  line,
Game game 
)

Convert a text (ascii) game to a Game.

Parameters
lineA move sequence in ascii.
gameThe output game.

◆ wthor_equals()

bool wthor_equals ( const WthorGame game_1,
const WthorGame game_2 
)

Test if two Wthor games are equal.

Parameters
game_1First Game.
game_2Second Game.

◆ wthor_to_game()

void wthor_to_game ( const WthorGame thor,
Game game 
)

convert a Wthor game to a Game.

The Wthor format is famous as all main event games are recorded into this format. Its name comes from Sylvain Quin's program.

Parameters
thorA single input game.
gameThe output game.