X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=346fd42b89a5aa8a5ea988618e8640ce92b43e82;hp=79f9886897794b0e211c5cbbf63c3cc4b7dcb2af;hb=c9dcda6ac488c0058ebd567e1f52e30b8cd0db20;hpb=b7c36d078b2a11252f0b66e703e134673997fd29 diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 79f98868..dc76af9e 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-2014 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,148 @@ along with this program. If not, see . */ - -//// -//// Includes -//// - +#include #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 -//// - -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