Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-09 Thread Jacques Basaldúa
Hi Don I noticed that your list is upper-case. This might be the problem. I don't remember if GTP is case sensitive or not, but I'm pretty sure cgos requires lower case in these commands. Thank you. That was the problem. It was uppercase. To make it case insensitive, I convert all input to

Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-08 Thread Jacques Basaldúa
Hi Don The client does not sent time_left unless time_settings is also implemented.So your engine must also implement time_settings which is needed to inform your program of the level it will be playing at. I do implement time_settings. The server only sends a list_commands at the

Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-08 Thread Don Dailey
I don't know what to tell you - the command works for everyone else. I noticed that your list is upper-case. This might be the problem. I don't remember if GTP is case senstitive or not, but I'm pretty sure cgos requires lower case in these commands. - Don Jacques Basaldúa wrote: Hi Don

Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-08 Thread Don Dailey
None of the KGS specific extensions are required or used. undo is not necessary. - Don Don Dailey wrote: I don't know what to tell you - the command works for everyone else. I noticed that your list is upper-case. This might be the problem. I don't remember if GTP is case senstitive or

Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-08 Thread Jason House
On Jan 8, 2008 7:42 AM, Don Dailey [EMAIL PROTECTED] wrote: None of the KGS specific extensions are required or used. undo is not necessary. I know that CGOS will use kgs-time_settings if it's available. ___ computer-go mailing list

Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-08 Thread Don Dailey
I didn't know kgs had that. CGOS doesn't use kgs-time_settings. Look at the cgos3.tcl script to see. My first thought was that I might be doing regular expression matching to pick up time_settings but that is not the case, I put all the known_commands in a hash in order to test if a program

[computer-go] Is CGOS sending TIME_LEFT?

2008-01-07 Thread Jacques Basaldúa
Hi.. My gtp program does not receive any time_left commands. I have checked that the command is listed without mistakes in list_commands. I even tried CGOS 9x9 and I get the same sequence. Jacques. -- This is a 19x19 game start (after

Re: [computer-go] Is CGOS sending TIME_LEFT?

2008-01-07 Thread Don Dailey
The client does not sent time_left unless time_settings is also implemented.So your engine must also implement time_settings which is needed to inform your program of the level it will be playing at. - Don Jacques Basaldúa wrote: Hi.. My gtp program does not receive any time_left