X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gamelist.c;h=0a4979e86e8f806ced70e45b7c1aae9f42e918b0;hb=7fe9a56b2afe2dcc934b058e1a736b27a3fd003b;hp=57a43c06f7ae55b1250e88f902c3470dfaececca;hpb=7b4dacf6fe9f8c10b6eb4d6070869a3d933dbeb5;p=xboard.git diff --git a/gamelist.c b/gamelist.c index 57a43c0..0a4979e 100644 --- a/gamelist.c +++ b/gamelist.c @@ -3,6 +3,8 @@ * * Copyright 1995,2009 Free Software Foundation, Inc. * + * Enhancements Copyright 2005 Alessandro Scotti + * * ------------------------------------------------------------------------ * * GNU XBoard is free software: you can redistribute it and/or modify @@ -109,6 +111,7 @@ void GameListInitGameInfo(gameInfo) gameInfo->blackRating = -1; /* unknown */ gameInfo->variant = VariantNormal; gameInfo->outOfBook = NULL; + gameInfo->resultDetails = NULL; } @@ -153,6 +156,7 @@ int GameListBuild(f) ListGame *currentListGame = NULL; int error; int offset; + char lastComment[MSG_SIZ]; GameListFree(&gameList); yynewfile(f); @@ -238,6 +242,19 @@ int GameListBuild(f) lastStart = MoveNumberOne; } break; + case WhiteWins: // [HGM] rescom: save last comment as result details + case BlackWins: + case GameIsDrawn: + case GameUnfinished: + if (currentListGame->gameInfo.resultDetails != NULL) { + free(currentListGame->gameInfo.resultDetails); + } + if(yy_text[0] == '{') { char *p; + strcpy(lastComment, yy_text+1); + if(p = strchr(lastComment, '}')) *p = 0; + currentListGame->gameInfo.resultDetails = StrSave(lastComment); + } + break; default: break; } @@ -300,6 +317,9 @@ void ClearGameInfo(gameInfo) if (gameInfo->outOfBook != NULL) { free(gameInfo->outOfBook); } + if (gameInfo->resultDetails != NULL) { + free(gameInfo->resultDetails); + } GameListInitGameInfo(gameInfo); } @@ -379,6 +399,9 @@ char * GameListLine( int number, GameInfo * gameInfo ) case GLT_OUT_OF_BOOK: strncpy( buf, gameInfo->outOfBook ? gameInfo->outOfBook : "?", MAX_FIELD_LEN ); break; + case GLT_RESULT_COMMENT: + strncpy( buf, gameInfo->resultDetails ? gameInfo->resultDetails : "res?", MAX_FIELD_LEN ); + break; default: break; }