X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=eae549ad63f413b077ea9d6828cf6887ea86be54;hp=e34c0e775b4d3fdc21ee4f258c5e4de7e6416a5d;hb=be2925b3c5ef79685f9290414a96efab18bf3a8a;hpb=ec236924331beb1664d3b5f73f8eb4827827fe3b diff --git a/src/ucioption.cpp b/src/ucioption.cpp index e34c0e77..eae549ad 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008 Marco Costalba + Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,351 +17,154 @@ along with this program. If not, see . */ - -//// -//// Includes -//// - -#include -#include +#include +#include #include -#include #include "misc.h" #include "thread.h" #include "ucioption.h" +using std::string; +using std::cout; +using std::endl; -//// -//// Variables -//// - -bool Chess960 = false; - - -//// -//// Local definitions -//// - -namespace { - - /// - /// Types - /// - - enum OptionType { SPIN, COMBO, CHECK, STRING, BUTTON }; - - typedef std::vector ComboValues; - - struct Option { - - std::string name, defaultValue, currentValue; - OptionType type; - int minValue, maxValue; - ComboValues comboValues; - - Option(const char* name, const char* defaultValue, OptionType = STRING); - Option(const char* name, bool defaultValue, OptionType = CHECK); - Option(const char* name, int defaultValue, int minValue, int maxValue); - }; - - typedef std::vector