X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gnushogi%2Frawdsp.c;h=1658803f64257d083634bea39b29e679bc998524;hb=0995f733591542a626dd01c9c8552fffaf4ea04d;hp=042ffd83919623da7bf11da4e7d495518e942d73;hpb=5bbf9aa02385d257d9b9da6455dba600bda47812;p=gnushogi.git diff --git a/gnushogi/rawdsp.c b/gnushogi/rawdsp.c index 042ffd8..1658803 100644 --- a/gnushogi/rawdsp.c +++ b/gnushogi/rawdsp.c @@ -44,12 +44,8 @@ #include "gnushogi.h" -unsigned short MV[MAXDEPTH]; -int MSCORE; - int mycnt1, mycnt2; char *DRAW; -extern char *InPtr; extern short pscore[]; /**************************************** @@ -65,7 +61,7 @@ void Raw_UpdateDisplay(short f, short t, short redraw, short isspec); void Raw_ClearScreen(void) { - if (!barebones && !XSHOGI) + if (!XSHOGI) printf("\n"); } @@ -73,7 +69,7 @@ Raw_ClearScreen(void) void Raw_ShowPrompt(void) { - if (!barebones && !XSHOGI) + if (!XSHOGI) fputs("\nYour move is? ", stdout); } @@ -87,7 +83,7 @@ Raw_ShowCurrentMove(short pnt, short f, short t) void Raw_ShowDepth(char ch) { - if (!barebones && !XSHOGI) + if (!XSHOGI) printf("Depth= %d%c \n", Sdepth, ch); } @@ -272,19 +268,6 @@ Raw_ExitShogi(void) void -Raw_Die(int sig) -{ - char s[80]; - - Raw_ShowMessage("Abort? "); - scanf("%s", s); - - if (strcmp(s, "yes") == 0) - Raw_ExitShogi(); -} - - -void Raw_TerminateSearch(int sig) { #ifdef INTERRUPT_TEST @@ -594,10 +577,10 @@ Raw_OutputMove(void) else if (root->score == (SCORE_LIMIT + 998)) printf("%s mates!\n", ColorStr[computer]); #ifdef VERYBUGGY - else if (!barebones && (root->score < -SCORE_LIMIT)) + else if (!XSHOGI && (root->score < -SCORE_LIMIT)) printf("%s has a forced mate in %d moves!\n", ColorStr[opponent], SCORE_LIMIT + 999 + root->score - 1); - else if (!barebones && (root->score > SCORE_LIMIT)) + else if (!XSHOGI && (root->score > SCORE_LIMIT)) printf("%s has a forced mate in %d moves!\n", ColorStr[computer], SCORE_LIMIT + 998 - root->score - 1); #endif /* VERYBUGGY */