X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.h;h=b78bf6fdf4c4108f6edc97b2cfeadb37737f7092;hp=8150bb0bb6a54d8892fe904a4c0ff347ee79942f;hb=b011818917fc6fddb3b4e4210f4a408eb4779d59;hpb=2ef5b4066e649c6ce3b10aa5f1bff7525246646d diff --git a/src/ucioption.h b/src/ucioption.h index 8150bb0b..b78bf6fd 100644 --- a/src/ucioption.h +++ b/src/ucioption.h @@ -25,24 +25,31 @@ #include #include -struct OptionsMap; +class UCIOption; + +/// Custom comparator because UCI options should be case insensitive +struct CaseInsensitiveLess { + bool operator() (const std::string&, const std::string&) const; +}; + +/// Our options container is actually a std::map +typedef std::map OptionsMap; /// UCIOption class implements an option as defined by UCI protocol class UCIOption { - typedef void (Fn)(UCIOption&); + typedef void (Fn)(const UCIOption&); public: - UCIOption() {} // Required by std::map::operator[] - UCIOption(const char* v, Fn* = NULL); + UCIOption(Fn* = NULL); UCIOption(bool v, Fn* = NULL); + UCIOption(const char* v, Fn* = NULL); UCIOption(int v, int min, int max, Fn* = NULL); - void operator=(const std::string& v); - void operator=(bool v) { *this = std::string(v ? "true" : "false"); } + UCIOption& operator=(const std::string& v); operator int() const { - assert(type == "check" || type == "button" || type == "spin"); + assert(type == "check" || type == "spin"); return (type == "spin" ? atoi(currentValue.c_str()) : currentValue == "true"); } @@ -57,22 +64,11 @@ private: std::string defaultValue, currentValue, type; int min, max; size_t idx; - Fn* on_change_action; -}; - - -/// Custom comparator because UCI options should be case insensitive -struct CaseInsensitiveLess { - bool operator() (const std::string&, const std::string&) const; + Fn* on_change; }; - -/// Our options container is actually a map with a customized c'tor -struct OptionsMap : public std::map { - OptionsMap(); -}; - -extern std::ostream& operator<<(std::ostream&, const OptionsMap&); extern OptionsMap Options; +namespace UCIOptions { void init(OptionsMap&); } + #endif // !defined(UCIOPTION_H_INCLUDED)