X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=33b6e95130aa313b0981dc9d0615ba62e235676d;hb=0278ebc80411a20fd23303156285e55ce8d2b0a5;hp=984c286dc6f68ff88f4a62118e247e01362a5b76;hpb=fafca253f3540ba9f65f8d2ec19ff6091f5f9c5d;p=xboard.git diff --git a/backend.h b/backend.h index 984c286..33b6e95 100644 --- a/backend.h +++ b/backend.h @@ -5,7 +5,8 @@ * Massachusetts. * * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, 2006, - * 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. + * 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free + * Software Foundation, Inc. * * Enhancements Copyright 2005 Alessandro Scotti * @@ -73,6 +74,7 @@ extern Board boards[]; extern char marker[BOARD_RANKS][BOARD_FILES]; extern char lastMsg[MSG_SIZ]; extern Boolean bookUp; +extern Boolean addToBookFlag; extern int tinyLayout, smallLayout; extern Boolean mcMode; extern int dragging; @@ -105,6 +107,7 @@ int LoadGame P((FILE *f, int n, char *title, int useList)); int LoadGameFromFile P((char *filename, int n, char *title, int useList)); int CmailLoadGame P((FILE *f, int n, char *title, int useList)); int ReloadGame P((int offset)); +int SaveSelected P((FILE *f, int dummy, char *dummy2)); int SaveGame P((FILE *f, int dummy, char *dummy2)); int SaveGameToFile P((char *filename, int append)); int LoadPosition P((FILE *f, int n, char *title)); @@ -204,6 +207,8 @@ int PromoScroll P((int x, int y)); void EditBookEvent P((void)); Boolean DisplayBook P((int moveNr)); void SaveToBook P((char *text)); +void AddBookMove P((char *text)); +void PlayBookMove P((char *text, int index)); void HoverEvent P((int hiX, int hiY, int x, int y)); int PackGame P((Board board)); Boolean ParseFEN P((Board board, int *blackPlaysFirst, char *fen, Boolean autoSize)); @@ -257,6 +262,7 @@ typedef struct XB_ListGame { GameInfo gameInfo; /* Note that some entries may be NULL. */ } ListGame; +extern int border; extern int doubleClick; extern int storedGames; extern int opponentKibitzes; @@ -299,6 +305,7 @@ typedef struct XB_OPT { // [HGM] options: descriptor of UCI-style option char **choice; // points to array of combo choices in cps->combo Control type; char *name; // holds both option name and text value (in allocated memory) + char **font; } Option; typedef struct XB_CPS { @@ -340,6 +347,7 @@ typedef struct XB_CPS { int analyzing; int protocolVersion; int initDone; + int pseudo; /* Added by Tord: */ int useFEN960; /* 0=use "KQkq" style FENs, 1=use "HAha" style FENs */ @@ -415,6 +423,8 @@ void MakeEngineOutputTitle P((void)); void LoadTheme P((void)); void CreateBookEvent P((void)); char *SupportedVariant P((char *list, VariantClass v, int w, int h, int s, int proto, char *engine)); +char *CollectPieceDescriptors P((void)); + /* A point in time */ typedef struct { @@ -422,6 +432,8 @@ typedef struct { int ms; /* Assuming this is >= 16 bits */ } TimeMark; +extern TimeMark programStartTime; + void GetTimeMark P((TimeMark *)); long SubtractTimeMarks P((TimeMark *, TimeMark *));