#pragma once /* * Global.h, part of VCMI engine * * Authors: listed in file AUTHORS in main folder * * License: GNU General Public License v2.0 or later * Full text of license available in license.txt file, in main folder * */ /* ---------------------------------------------------------------------------- */ /* Compiler detection */ /* ---------------------------------------------------------------------------- */ // Fixed width bool data type is important for serialization static_assert(sizeof(bool) == 1, "Bool needs to be 1 byte in size."); #if defined _M_X64 && defined _WIN32 //Win64 -> cannot load 32-bit DLLs for video handling # define DISABLE_VIDEO #endif #ifdef __GNUC__ # define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__ * 10 + __GNUC_PATCHLEVEL__) #endif #if !defined(__clang__) && defined(__GNUC__) && (GCC_VERSION < 460) # error VCMI requires at least gcc-4.6 for successfull compilation or clang-3.1. Please update your compiler #endif #if defined(__GNUC__) && (GCC_VERSION == 470 || GCC_VERSION == 471) # error This GCC version has buggy std::array::at version and should not be used. Please update to 4.7.2 or use 4.6.x. #endif /* ---------------------------------------------------------------------------- */ /* Guarantee compiler features */ /* ---------------------------------------------------------------------------- */ //defining available c++11 features //initialization lists - gcc or clang #if defined(__clang__) || defined(__GNUC__) # define CPP11_USE_INITIALIZERS_LIST #endif //override keyword - not present in gcc-4.6 #if !defined(_MSC_VER) && !defined(__clang__) && !(defined(__GNUC__) && (GCC_VERSION >= 470)) # define override #endif /* ---------------------------------------------------------------------------- */ /* Suppress some compiler warnings */ /* ---------------------------------------------------------------------------- */ #ifdef _MSC_VER # pragma warning (disable : 4800 ) /* disable conversion to bool warning -- I think it's intended in all places */ #endif /* ---------------------------------------------------------------------------- */ /* Commonly used C++, Boost headers */ /* ---------------------------------------------------------------------------- */ #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #define _USE_MATH_DEFINES #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //The only available version is 3, as of Boost 1.50 #include #define BOOST_FILESYSTEM_VERSION 3 #if ( BOOST_VERSION>105000 ) #define BOOST_THREAD_VERSION 3 #endif #define BOOST_THREAD_DONT_PROVIDE_THREAD_DESTRUCTOR_CALLS_TERMINATE_IF_JOINABLE 1 //#define BOOST_BIND_NO_PLACEHOLDERS #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef ANDROID #include #endif /* ---------------------------------------------------------------------------- */ /* Usings */ /* ---------------------------------------------------------------------------- */ using std::shared_ptr; using std::unique_ptr; using std::make_shared; //using namespace std::placeholders; namespace range = boost::range; /* ---------------------------------------------------------------------------- */ /* Typedefs */ /* ---------------------------------------------------------------------------- */ // Integral data types typedef boost::uint64_t ui64; //unsigned int 64 bits (8 bytes) typedef boost::uint32_t ui32; //unsigned int 32 bits (4 bytes) typedef boost::uint16_t ui16; //unsigned int 16 bits (2 bytes) typedef boost::uint8_t ui8; //unsigned int 8 bits (1 byte) typedef boost::int64_t si64; //signed int 64 bits (8 bytes) typedef boost::int32_t si32; //signed int 32 bits (4 bytes) typedef boost::int16_t si16; //signed int 16 bits (2 bytes) typedef boost::int8_t si8; //signed int 8 bits (1 byte) // Lock typedefs typedef boost::lock_guard TLockGuard; typedef boost::lock_guard TLockGuardRec; /* ---------------------------------------------------------------------------- */ /* Macros */ /* ---------------------------------------------------------------------------- */ // Import + Export macro declarations #ifdef _WIN32 # ifdef __GNUC__ # define DLL_EXPORT __attribute__((dllexport)) # else # define DLL_EXPORT __declspec(dllexport) # endif #else # ifdef __GNUC__ # define DLL_EXPORT __attribute__ ((visibility("default"))) # endif #endif #ifdef _WIN32 # ifdef __GNUC__ # define DLL_IMPORT __attribute__((dllimport)) # else # define DLL_IMPORT __declspec(dllimport) # endif #else # ifdef __GNUC__ # define DLL_IMPORT __attribute__ ((visibility("default"))) # endif #endif #ifdef VCMI_DLL # define DLL_LINKAGE DLL_EXPORT #else # define DLL_LINKAGE DLL_IMPORT #endif #define THROW_FORMAT(message, formatting_elems) throw std::runtime_error(boost::str(boost::format(message) % formatting_elems)) #define ASSERT_IF_CALLED_WITH_PLAYER if(!player) {logGlobal->errorStream() << BOOST_CURRENT_FUNCTION; assert(0);} //XXX pls dont - 'debug macros' are usually more trouble than it's worth #define HANDLE_EXCEPTION \ catch (const std::exception& e) { \ logGlobal->errorStream() << e.what(); \ throw; \ } \ catch (const std::exception * e) \ { \ logGlobal->errorStream() << e->what(); \ throw; \ } \ catch (const std::string& e) { \ logGlobal->errorStream() << e; \ throw; \ } #define HANDLE_EXCEPTIONC(COMMAND) \ catch (const std::exception& e) { \ COMMAND; \ logGlobal->errorStream() << e.what(); \ throw; \ } \ catch (const std::string &e) \ { \ COMMAND; \ logGlobal->errorStream() << e; \ throw; \ } // can be used for counting arrays template char (&_ArrayCountObj(const T (&)[N]))[N]; #define ARRAY_COUNT(arr) (sizeof(_ArrayCountObj(arr))) /* ---------------------------------------------------------------------------- */ /* VCMI standard library */ /* ---------------------------------------------------------------------------- */ //a normal std::map with a const operator[] for sanity template class bmap : public std::map { public: const ValT & operator[](KeyT key) const { return this->find(key)->second; } ValT & operator[](KeyT key) { return static_cast &>(*this)[key]; } template void serialize(Handler &h, const int version) { h & static_cast &>(*this); } bmap() {} explicit bmap(const typename std::map::key_compare& _Pred) : std::map(_Pred) {} bmap(const typename std::map::key_compare& _Pred, const typename std::map::allocator_type& _Al) : std::map(_Pred, _Al) {} template bmap(_Iter _First, _Iter _Last) : std::map(_First, _Last) {} template bmap(_Iter _First, _Iter _Last, const typename std::map::key_compare& _Pred) : std::map(_First, _Last, _Pred) {} template bmap(_Iter _First, _Iter _Last, const typename std::map::key_compare& _Pred, const typename std::map::allocator_type& _Al) : std::map(_First, _Last, _Pred, _Al) {} }; template std::ostream &operator<<(std::ostream &out, const boost::optional &opt) { if(opt) return out << *opt; else return out<< "empty"; } namespace vstd { // combine hashes. Present in boost but not in std template inline void hash_combine(std::size_t& seed, const T& v) { std::hash hasher; seed ^= hasher(v) + 0x9e3779b9 + (seed<<6) + (seed>>2); } //returns true if container c contains item i template bool contains(const Container & c, const Item &i) { return std::find(std::begin(c), std::end(c),i) != std::end(c); } //returns true if container c contains item i template bool contains_if(const Container & c, Pred p) { return std::find_if(std::begin(c), std::end(c), p) != std::end(c); } //returns true if map c contains item i template bool contains(const std::map & c, const Item2 &i) { return c.find(i)!=c.end(); } //returns true if bmap c contains item i template bool contains(const bmap & c, const Item2 &i) { return c.find(i)!=c.end(); } //returns true if unordered set c contains item i template bool contains(const std::unordered_set & c, const Item &i) { return c.find(i)!=c.end(); } template bool contains(const std::unordered_map & c, const Item2 &i) { return c.find(i)!=c.end(); } //returns position of first element in vector c equal to s, if there is no such element, -1 is returned template int find_pos(const Container & c, const T2 &s) { size_t i=0; for (auto iter = std::begin(c); iter != std::end(c); iter++, i++) if(*iter == s) return i; return -1; } //Func f tells if element matches template int find_pos_if(const Container & c, const Func &f) { auto ret = boost::range::find_if(c, f); if(ret != std::end(c)) return std::distance(std::begin(c), ret); return -1; } //returns iterator to the given element if present in container, end() if not template typename Container::iterator find(Container & c, const Item &i) { return std::find(c.begin(),c.end(),i); } //returns const iterator to the given element if present in container, end() if not template typename Container::const_iterator find(const Container & c, const Item &i) { return std::find(c.begin(),c.end(),i); } //removes element i from container c, returns false if c does not contain i template typename Container::size_type operator-=(Container &c, const Item &i) { typename Container::iterator itr = find(c,i); if(itr == c.end()) return false; c.erase(itr); return true; } //assigns greater of (a, b) to a and returns maximum of (a, b) template t1 &amax(t1 &a, const t2 &b) { if(a >= b) return a; else { a = b; return a; } } //assigns smaller of (a, b) to a and returns minimum of (a, b) template t1 &amin(t1 &a, const t2 &b) { if(a <= b) return a; else { a = b; return a; } } //makes a to fit the range template t1 &abetween(t1 &a, const t2 &b, const t3 &c) { amax(a,b); amin(a,c); return a; } //checks if a is between b and c template bool isbetween(const t1 &value, const t2 &min, const t3 &max) { return value > min && value < max; } //checks if a is within b and c template bool iswithin(const t1 &value, const t2 &min, const t3 &max) { return value >= min && value <= max; } template struct assigner { public: t1 &op1; t2 op2; assigner(t1 &a1, const t2 & a2) :op1(a1), op2(a2) {} void operator()() { op1 = op2; } }; // Assigns value a2 to a1. The point of time of the real operation can be controlled // with the () operator. template assigner assigno(t1 &a1, const t2 &a2) { return assigner(a1,a2); } //deleted pointer and sets it to nullptr template void clear_pointer(T* &ptr) { delete ptr; ptr = nullptr; } #if _MSC_VER >= 1800 using std::make_unique; #else template std::unique_ptr make_unique() { return std::unique_ptr(new T()); } template std::unique_ptr make_unique(Arg1 &&arg1) { return std::unique_ptr(new T(std::forward(arg1))); } template std::unique_ptr make_unique(Arg1 &&arg1, Arg2 &&arg2) { return std::unique_ptr(new T(std::forward(arg1), std::forward(arg2))); } template std::unique_ptr make_unique(Arg1 &&arg1, Arg2 &&arg2, Arg3 &&arg3) { return std::unique_ptr(new T(std::forward(arg1), std::forward(arg2), std::forward(arg3))); } template std::unique_ptr make_unique(Arg1 &&arg1, Arg2 &&arg2, Arg3 &&arg3, Arg4 &&arg4) { return std::unique_ptr(new T(std::forward(arg1), std::forward(arg2), std::forward(arg3), std::forward(arg4))); } #endif template typename Container::const_reference circularAt(const Container &r, size_t index) { assert(r.size()); index %= r.size(); auto itr = std::begin(r); std::advance(itr, index); return *itr; } template void erase_if(Range &vec, Predicate pred) { vec.erase(boost::remove_if(vec, pred),vec.end()); } template void erase_if(std::set &setContainer, Predicate pred) { auto itr = setContainer.begin(); auto endItr = setContainer.end(); while(itr != endItr) { auto tmpItr = itr++; if(pred(*tmpItr)) setContainer.erase(tmpItr); } } //works for map and bmap, maybe something else template void erase_if(std::map &container, Predicate pred) { auto itr = container.begin(); auto endItr = container.end(); while(itr != endItr) { auto tmpItr = itr++; if(pred(*tmpItr)) container.erase(tmpItr); } } template OutputIterator copy_if(const InputRange &input, OutputIterator result, Predicate pred) { return std::copy_if(boost::const_begin(input), std::end(input), result, pred); } template std::insert_iterator set_inserter(Container &c) { return std::inserter(c, c.end()); } //Returns iterator to the element for which the value of ValueFunction is minimal template auto minElementByFun(const ForwardRange& rng, ValueFunction vf) -> decltype(std::begin(rng)) { typedef decltype(*std::begin(rng)) ElemType; return boost::min_element(rng, [&] (ElemType lhs, ElemType rhs) -> bool { return vf(lhs) < vf(rhs); }); } //Returns iterator to the element for which the value of ValueFunction is maximal template auto maxElementByFun(const ForwardRange& rng, ValueFunction vf) -> decltype(std::begin(rng)) { typedef decltype(*std::begin(rng)) ElemType; return boost::max_element(rng, [&] (ElemType lhs, ElemType rhs) -> bool { return vf(lhs) < vf(rhs); }); } static inline int retreiveRandNum(const std::function &randGen) { if (randGen) return randGen(); else return rand(); } template const T & pickRandomElementOf(const std::vector &v, const std::function &randGen) { return v.at(retreiveRandNum(randGen) % v.size()); } template void advance(T &obj, int change) { obj = (T)(((int)obj) + change); } template typename Container::value_type backOrNull(const Container &c) //returns last element of container or nullptr if it is empty (to be used with containers of pointers) { if(c.size()) return c.back(); else return typename Container::value_type(); } template typename Container::value_type frontOrNull(const Container &c) //returns first element of container or nullptr if it is empty (to be used with containers of pointers) { if(c.size()) return c.front(); else return nullptr; } using boost::math::round; } using vstd::operator-=; using vstd::make_unique; /* ---------------------------------------------------------------------------- */ /* VCMI headers */ /* ---------------------------------------------------------------------------- */ #include "lib/logging/CLogger.h"