X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=common.h;h=09e9e77d1d1a33ad5143030dcf55a6f7eddc2ea1;hb=259aca883470b6cd7fc47e417475f05120400d3c;hp=fadc73d0448acb8d8c5063cc687d66dc376aee2c;hpb=cde66749ec8a0b3c823bbc7aa3818b86821514ec;p=xboard.git diff --git a/common.h b/common.h index fadc73d..09e9e77 100644 --- a/common.h +++ b/common.h @@ -109,7 +109,7 @@ int pclose(FILE *); // [HGM] license: Messages that engines must print to satisfy their license requirements for patented variants #define GOTHIC "Gothic Chess (see www.GothicChess.com) is licensed under U.S. Patent #6,481,716 by Ed Trice" -#define NOFALCON "Falcon Chess (see www.chessvariants.com) is licensed under U.S. Patent #5,690,334 by George W. Duke" +#define FALCON "Falcon Chess (see www.chessvariants.com) is licensed under U.S. Patent #5,690,334 by George W. Duke" /* [HGM] Some notes about board sizes: In games that allow piece drops, the holdings are considered part of the @@ -180,7 +180,8 @@ int pclose(FILE *); #define COMMENT_FONT 4 #define EDITTAGS_FONT 5 #define MOVEHISTORY_FONT 6 -#define NUM_FONTS 7 +#define GAMELIST_FONT 7 +#define NUM_FONTS 8 /* Default to no flashing (the "usual" XBoard behavior) */ #define FLASH_COUNT 0 /* Number of times to flash */ @@ -320,6 +321,7 @@ typedef enum { VariantTwilight, VariantMakruk, VariantSChess, + VariantGrand, VariantSpartan, VariantUnknown /* Catchall for other unknown variants */ } VariantClass; @@ -365,6 +367,7 @@ typedef enum { "twilight",\ "makruk",\ "seirawan",\ + "grand",\ "spartan",\ "unknown" \ } @@ -530,6 +533,8 @@ typedef struct { Boolean scoreIsAbsolute[ENGINES]; /* If true, engine score is always from white side */ Boolean saveExtendedInfoInPGN; /* If true, saved PGN games contain extended info */ Boolean hideThinkingFromHuman; /* If true, program thinking is generated but not displayed in human/computer matches */ + Boolean useBitmaps; + Boolean useFont; char * liteBackTextureFile; /* Name of texture bitmap for lite squares */ char * darkBackTextureFile; /* Name of texture bitmap for dark squares */ int liteBackTextureMode; @@ -567,6 +572,7 @@ typedef struct { char * ucciAdapter; char * polyglotDir; Boolean usePolyglotBook; + Boolean defNoBook; char * polyglotBook; int bookDepth; int bookStrength; @@ -624,6 +630,13 @@ typedef struct { int NPS[ENGINES]; Boolean autoKibitz; int engineComments; + int eloThreshold1; /* [HGM] select */ + int eloThreshold2; + int dateThreshold; + int searchMode; + int stretch; + Boolean ignoreColors; + Boolean findMirror; char *userName; int rewindIndex; /* [HGM] autoinc */ int sameColorGames; /* [HGM] alternate */ @@ -636,6 +649,8 @@ typedef struct { Boolean noGUI; /* [HGM] fast: suppress all display updates */ char *engOptions[ENGINES]; /* [HGM] options */ char *fenOverride[ENGINES]; + char *features[ENGINES]; + char *featureDefaults; Boolean keepAlive; /* [HGM] alive */ Boolean forceIllegal;/*[HGM] illegal */ Boolean noJoin; /* [HGM] join */ @@ -643,11 +658,14 @@ typedef struct { Boolean useInternalWrap; /* use internal wrapping -- noJoin usurps this if set */ Boolean pasteSelection; /* paste X selection instead of clipboard */ int nrVariations; /* [HGM] multivar */ + int zoom; /* [HGM] evalGraph */ + int evalThreshold; /* [HGM] evalGraph */ Boolean dropMenu; /* [HGM] pv */ Boolean markers; /* [HGM] markers */ Boolean pieceMenu; Boolean sweepSelect; Boolean whitePOV; + Boolean scoreWhite; Boolean pvSAN[ENGINES]; char *tourneyFile; @@ -655,8 +673,11 @@ typedef struct { char *processes; char *results; char *participants; + char *afterGame; + char *afterTourney; int tourneyType; int tourneyCycles; + int seedBase; Boolean roundSync; Boolean cycleSync; } AppData, *AppDataPtr;