Geschrieben von:/Posted by: Uri Blass at 26 August 2004 04:57:41:
I think about implementing resigning in movei but things are not so simple
because the code is badly written and inspite of the fact that I probably can implement it the way that I think about is ugly and I look for advice to do thing better.
Here is descreption of what I do and it took me time to figure out exactly what I do with my complicated pondering code that has no threads.
I usually make move when I play it and I want to have a first resign only based on the score.
I do not want to make the move before resiging because I think that it may confuse an opponent that may expect resigning only when it ponders.
The code that I want to change is the following code:
makeandprintpvmove();
if (gamefinished())
print_result();
else
{
if ( t.isponder())
ponder();
}
The function makeandprintpvmove() makes the move and tell winboard to play the move.
I think that in case of resigning it is better to avoid making the move in makeandprintpvmove()
I thought to check resigning also in gamefinished() but the problem is that I call gamefinished also after the user move and I may ponder the wrong move so I do not like to use the score that I have after the user move to decide if to resign(the score may tell me that I lose after the expected move but the important question is if I lose after the opponent move).
I may have gamefinished1() that check if the game is finished after the opponent move and gamefinished2() to check if the game is finished after the computer move but it seems to me an ugly solution.
Note also that the code above is printed in the program twice.
case 1 is inside of the function ponder() and it means that I started the search in pondering mode and during the search got the expected move.
case 2 is not inside the function ponder() and it may mean that I play without pondering or I got unexpected move so I had to finish the function ponder() and make the move in a different function.
Uri