worked on premove bug
[xboard.git] / uci.c
diff --git a/uci.c b/uci.c
index 5af3ce6..d0f76c4 100644 (file)
--- a/uci.c
+++ b/uci.c
-/*\r
- * UCI support thru Polyglot\r
- *\r
- * Author: Alessandro Scotti (Jan 2006)\r
- *\r
- * ------------------------------------------------------------------------\r
- * This program is free software; you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation; either version 2 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
- * ------------------------------------------------------------------------\r
- */\r
-#include "config.h"\r
-\r
-#include <windows.h> /* required for all Windows applications */\r
-\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <malloc.h>\r
-\r
-#include "common.h"\r
-#include "winboard.h"\r
-#include "frontend.h"\r
-#include "backend.h"\r
-\r
-#define INIFILE_PREFIX      "polyglot_"\r
-#define INIFILE_SUFFIX_1ST  "1st"\r
-#define INIFILE_SUFFIX_2ND  "2nd"\r
-#define INIFILE_EXT         ".ini"\r
-\r
-static const char * GetIniFilename( ChessProgramState * cps )\r
-{\r
-    return cps == &first ? INIFILE_PREFIX INIFILE_SUFFIX_1ST INIFILE_EXT : INIFILE_PREFIX INIFILE_SUFFIX_2ND INIFILE_EXT;\r
- }\r
-\r
-void InitEngineUCI( const char * iniDir, ChessProgramState * cps )\r
-{\r
-    if( cps->isUCI ) {\r
-        const char * iniFileName = GetIniFilename( cps );\r
-        char polyglotIniFile[ MAX_PATH ];\r
-        FILE * f;\r
-\r
-        /* Build name of initialization file */\r
-        if( strchr( iniDir, ' ' ) != NULL ) {\r
-            char iniDirShort[ MAX_PATH ];\r
-\r
-            GetShortPathName( iniDir, iniDirShort, sizeof(iniDirShort) );\r
-\r
-            strcpy( polyglotIniFile, iniDirShort );\r
-        }\r
-        else {\r
-            strcpy( polyglotIniFile, iniDir );\r
-        }\r
-        \r
-        strcat( polyglotIniFile, "\\" );\r
-        strcat( polyglotIniFile, iniFileName );\r
-\r
-        /* Create initialization file */\r
-        f = fopen( polyglotIniFile, "w" );\r
-\r
-        if( f != NULL ) {\r
-            fprintf( f, "[Polyglot]\n" );\r
-\r
-            if( cps->dir != 0 && strlen(cps->dir) > 0 ) {\r
-                fprintf( f, "EngineDir = %s\n", cps->dir );\r
-            }\r
-\r
-            if( cps->program != 0 && strlen(cps->program) > 0 ) {\r
-                fprintf( f, "EngineCommand = %s\n", cps->program );\r
-            }\r
-\r
-            fprintf( f, "Book = %s\n", appData.usePolyglotBook ? "true" : "false" );\r
-            fprintf( f, "BookFile = %s\n", appData.polyglotBook );\r
-        \r
-            fprintf( f, "[Engine]\n" );\r
-            fprintf( f, "Hash = %d\n", appData.defaultHashSize );\r
-\r
-            fprintf( f, "NalimovPath = %s\n", appData.defaultPathEGTB );\r
-            fprintf( f, "NalimovCache = %d\n", appData.defaultCacheSizeEGTB );\r
-\r
-            fprintf( f, "OwnBook = %s\n", cps->hasOwnBookUCI ? "true" : "false" );\r
-\r
-            fclose( f );\r
-\r
-            /* Replace program with properly configured Polyglot */\r
-            cps->dir = appData.polyglotDir;\r
-            cps->program = (char *) malloc( strlen(polyglotIniFile) + 32 );\r
-            strcpy( cps->program, "polyglot " );\r
-            strcat( cps->program, polyglotIniFile );\r
-        }\r
-    }\r
-}\r
+/*
+ * UCI support thru Polyglot
+ *
+ * Author: Alessandro Scotti (Jan 2006)
+ *
+ * Copyright 2006 Alessandro Scotti
+ *
+ * ------------------------------------------------------------------------
+ *
+ * GNU XBoard is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or (at
+ * your option) any later version.
+ *
+ * GNU XBoard is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see http://www.gnu.org/licenses/. 
+ *
+ * ------------------------------------------------------------------------
+ */
+#include <stdio.h>
+#include <stdlib.h>
+
+#if HAVE_MALLOC_H
+  #include <malloc.h>
+#endif
+
+#ifdef WIN32
+// [HGM] this was probably a Windows-specific constant. Needs to be defined here now I
+//       threw out the Windows-specific includes (winboard.h etc.). 100 seems enough.
+#include <windows.h>
+#define SLASH_CHAR "\\"
+#else
+#define MAX_PATH 100
+#define SLASH_CHAR "/"
+#endif
+
+#include "common.h"
+#include "backend.h"
+
+#define INIFILE_PREFIX      "polyglot_"
+#define INIFILE_SUFFIX_1ST  "1st"
+#define INIFILE_SUFFIX_2ND  "2nd"
+#define INIFILE_EXT         ".ini"
+
+
+static const char * GetIniFilename( ChessProgramState * cps )
+{
+    return cps == &first ? INIFILE_PREFIX INIFILE_SUFFIX_1ST INIFILE_EXT : INIFILE_PREFIX INIFILE_SUFFIX_2ND INIFILE_EXT;
+ }
+
+void InitEngineUCI( const char * iniDir, ChessProgramState * cps )
+{
+    if( cps->isUCI ) {
+        const char * iniFileName = GetIniFilename( cps );
+        char polyglotIniFile[ MAX_PATH ];
+        FILE * f;
+
+        /* Build name of initialization file */
+        if( strchr( iniDir, ' ' ) != NULL ) {
+            char iniDirShort[ MAX_PATH ];
+#ifdef WIN32
+            GetShortPathName( iniDir, iniDirShort, sizeof(iniDirShort) );
+
+            strcpy( polyglotIniFile, iniDirShort );
+#else
+           // [HGM] UCI: not sure if this works, but GetShortPathName seems Windows pecific
+           // and names with spaces in it do not work in xboard in many places, so ignore
+            strcpy( polyglotIniFile, iniDir );
+#endif
+        }
+        else {
+            strcpy( polyglotIniFile, iniDir );
+        }
+        
+        strcat( polyglotIniFile, SLASH_CHAR );
+        strcat( polyglotIniFile, iniFileName );
+
+        /* Create initialization file */
+        f = fopen( polyglotIniFile, "w" );
+
+        if( f != NULL ) {
+            fprintf( f, "[Polyglot]\n" );
+
+            if( cps->dir != 0 && strlen(cps->dir) > 0 ) {
+                fprintf( f, "EngineDir = %s\n", cps->dir );
+            }
+
+            if( cps->program != 0 && strlen(cps->program) > 0 ) {
+                fprintf( f, "EngineCommand = %s\n", cps->program );
+            }
+
+            fprintf( f, "Book = %s\n", appData.usePolyglotBook ? "true" : "false" );
+            fprintf( f, "BookFile = %s\n", appData.polyglotBook );
+        
+            fprintf( f, "[Engine]\n" );
+            fprintf( f, "Hash = %d\n", appData.defaultHashSize );
+
+            fprintf( f, "NalimovPath = %s\n", appData.defaultPathEGTB );
+            fprintf( f, "NalimovCache = %d\n", appData.defaultCacheSizeEGTB );
+
+            fprintf( f, "OwnBook = %s\n", cps->hasOwnBookUCI ? "true" : "false" );
+
+            fclose( f );
+
+            /* Replace program with properly configured Polyglot */
+            cps->dir = appData.polyglotDir;
+            cps->program = (char *) malloc( strlen(polyglotIniFile) + 32 );
+            strcpy( cps->program, "polyglot " );
+            strcat( cps->program, polyglotIniFile );
+        }
+    }
+}