X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=63c27403356251b4d703f52b825904e74f1a6f6e;hp=79f9886897794b0e211c5cbbf63c3cc4b7dcb2af;hb=17d1940278aadde3d9d844f7c913ca6c8655bbf3;hpb=b7c36d078b2a11252f0b66e703e134673997fd29 diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 79f98868..df73670b 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-2012 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,135 @@ along with this program. If not, see . */ - -//// -//// Includes -//// - -#include -#include +#include #include -#include +#include "evaluate.h" #include "misc.h" #include "thread.h" +#include "tt.h" #include "ucioption.h" +using std::string; -//// -//// Variables -//// - -bool Chess960 = false; - - -//// -//// Local definitions -//// +OptionsMap Options; // Global object 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