Global.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. #pragma once
  2. // Standard include file
  3. // Contents:
  4. // Includes C/C++ libraries, STL libraries, IOStream and String libraries
  5. // Includes the most important boost headers
  6. // Defines the import + export, override and exception handling macros
  7. // Defines the vstd library
  8. // Includes the logger
  9. // This file shouldn't be changed, except if there is a important header file missing which is shared among several projects.
  10. /*
  11. * Global.h, part of VCMI engine
  12. *
  13. * Authors: listed in file AUTHORS in main folder
  14. *
  15. * License: GNU General Public License v2.0 or later
  16. * Full text of license available in license.txt file, in main folder
  17. *
  18. */
  19. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  20. #include <cstdio>
  21. #include <stdio.h>
  22. #ifdef _WIN32
  23. #include <tchar.h>
  24. #else
  25. #include "tchar_amigaos4.h"
  26. #endif
  27. #include <algorithm>
  28. #include <array>
  29. #include <cassert>
  30. #include <climits>
  31. #include <cmath>
  32. #include <cstdlib>
  33. #include <fstream>
  34. #include <iomanip>
  35. #include <iostream>
  36. #include <map>
  37. #include <memory>
  38. #include <numeric>
  39. #include <queue>
  40. #include <set>
  41. #include <sstream>
  42. #include <string>
  43. //#include <unordered_map>
  44. #include <utility>
  45. #include <vector>
  46. //The only available version is 3, as of Boost 1.50
  47. #define BOOST_FILESYSTEM_VERSION 3
  48. #define BOOST_THREAD_VERSION 3
  49. #define BOOST_THREAD_DONT_PROVIDE_THREAD_DESTRUCTOR_CALLS_TERMINATE_IF_JOINABLE 1
  50. //#define BOOST_SYSTEM_NO_DEPRECATED 1
  51. #include <boost/algorithm/string.hpp>
  52. #include <boost/assert.hpp>
  53. #include <boost/assign.hpp>
  54. #include <boost/bind.hpp>
  55. #include <boost/cstdint.hpp>
  56. #include <boost/date_time/posix_time/posix_time.hpp>
  57. #include <boost/filesystem.hpp>
  58. #include <boost/foreach.hpp>
  59. #include <boost/format.hpp>
  60. #include <boost/function.hpp>
  61. #include <boost/lexical_cast.hpp>
  62. #include <boost/logic/tribool.hpp>
  63. #include <boost/program_options.hpp>
  64. #include <boost/optional.hpp>
  65. #include <boost/range/algorithm.hpp>
  66. #include <boost/thread.hpp>
  67. #include <boost/unordered_map.hpp>
  68. #include <boost/unordered_set.hpp>
  69. #include <boost/unordered_map.hpp>
  70. #include <boost/variant.hpp>
  71. #ifdef ANDROID
  72. #include <android/log.h>
  73. #endif
  74. // Integral data types
  75. typedef boost::uint64_t ui64; //unsigned int 64 bits (8 bytes)
  76. typedef boost::uint32_t ui32; //unsigned int 32 bits (4 bytes)
  77. typedef boost::uint16_t ui16; //unsigned int 16 bits (2 bytes)
  78. typedef boost::uint8_t ui8; //unsigned int 8 bits (1 byte)
  79. typedef boost::int64_t si64; //signed int 64 bits (8 bytes)
  80. typedef boost::int32_t si32; //signed int 32 bits (4 bytes)
  81. typedef boost::int16_t si16; //signed int 16 bits (2 bytes)
  82. typedef boost::int8_t si8; //signed int 8 bits (1 byte)
  83. #if defined _M_X64 && defined _WIN32 //Win64 -> cannot load 32-bit DLLs for video handling
  84. #define DISABLE_VIDEO
  85. #endif
  86. #ifdef __GNUC__
  87. #define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__ )
  88. #endif
  89. // Import + Export macro declarations
  90. #ifdef _WIN32
  91. #ifdef __GNUC__
  92. #define DLL_EXPORT __attribute__((dllexport))
  93. #else
  94. #define DLL_EXPORT __declspec(dllexport)
  95. #endif
  96. #else
  97. #if defined(__GNUC__) && GCC_VERSION >= 400
  98. #define DLL_EXPORT __attribute__ ((visibility("default")))
  99. #else
  100. #define DLL_EXPORT
  101. #endif
  102. #endif
  103. #ifdef _WIN32
  104. #ifdef __GNUC__
  105. #define DLL_IMPORT __attribute__((dllimport))
  106. #else
  107. #define DLL_IMPORT __declspec(dllimport)
  108. #endif
  109. #else
  110. #if defined(__GNUC__) && GCC_VERSION >= 400
  111. #define DLL_IMPORT __attribute__ ((visibility("default")))
  112. #else
  113. #define DLL_IMPORT
  114. #endif
  115. #endif
  116. #ifdef VCMI_DLL
  117. #define DLL_LINKAGE DLL_EXPORT
  118. #else
  119. #define DLL_LINKAGE DLL_IMPORT
  120. #endif
  121. //defining available c++11 features
  122. //initialization lists - only gcc-4.4 or later
  123. #if defined(__clang__) || (defined(__GNUC__) && (GCC_VERSION >= 404))
  124. #define CPP11_USE_INITIALIZERS_LIST
  125. #endif
  126. //nullptr - only msvc and gcc-4.6 or later, othervice define it as NULL
  127. #if !defined(_MSC_VER) && !(defined(__GNUC__) && (GCC_VERSION >= 406))
  128. #define nullptr NULL
  129. #endif
  130. //override keyword - only msvc and gcc-4.7 or later.
  131. #if !defined(_MSC_VER) && !(defined(__GNUC__) && (GCC_VERSION >= 407))
  132. #define override
  133. #endif
  134. //workaround to support existing code
  135. #define OVERRIDE override
  136. //a normal std::map with a const operator[] for sanity
  137. template<typename KeyT, typename ValT>
  138. class bmap : public std::map<KeyT, ValT>
  139. {
  140. public:
  141. const ValT & operator[](KeyT key) const
  142. {
  143. return this->find(key)->second;
  144. }
  145. ValT & operator[](KeyT key)
  146. {
  147. return static_cast<std::map<KeyT, ValT> &>(*this)[key];
  148. }
  149. template <typename Handler> void serialize(Handler &h, const int version)
  150. {
  151. h & static_cast<std::map<KeyT, ValT> &>(*this);
  152. }
  153. };
  154. namespace vstd
  155. {
  156. //returns true if container c contains item i
  157. template <typename Container, typename Item>
  158. bool contains(const Container & c, const Item &i)
  159. {
  160. return std::find(boost::begin(c), boost::end(c),i) != boost::end(c);
  161. }
  162. //returns true if container c contains item i
  163. template <typename Container, typename Pred>
  164. bool contains_if(const Container & c, Pred p)
  165. {
  166. return std::find_if(boost::begin(c), boost::end(c), p) != boost::end(c);
  167. }
  168. //returns true if map c contains item i
  169. template <typename V, typename Item, typename Item2>
  170. bool contains(const std::map<Item,V> & c, const Item2 &i)
  171. {
  172. return c.find(i)!=c.end();
  173. }
  174. //returns true if bmap c contains item i
  175. template <typename V, typename Item, typename Item2>
  176. bool contains(const bmap<Item,V> & c, const Item2 &i)
  177. {
  178. return c.find(i)!=c.end();
  179. }
  180. //returns true if unordered set c contains item i
  181. template <typename Item>
  182. bool contains(const boost::unordered_set<Item> & c, const Item &i)
  183. {
  184. return c.find(i)!=c.end();
  185. }
  186. //returns position of first element in vector c equal to s, if there is no such element, -1 is returned
  187. template <typename Container, typename T2>
  188. int find_pos(const Container & c, const T2 &s)
  189. {
  190. size_t i=0;
  191. for (auto iter = boost::begin(c); iter != boost::end(c); iter++, i++)
  192. if(*iter == s)
  193. return i;
  194. return -1;
  195. }
  196. //Func(T1,T2) must say if these elements matches
  197. template <typename T1, typename T2, typename Func>
  198. int find_pos(const std::vector<T1> & c, const T2 &s, const Func &f)
  199. {
  200. for(size_t i=0; i < c.size(); ++i)
  201. if(f(c[i],s))
  202. return i;
  203. return -1;
  204. }
  205. //returns iterator to the given element if present in container, end() if not
  206. template <typename Container, typename Item>
  207. typename Container::iterator find(Container & c, const Item &i)
  208. {
  209. return std::find(c.begin(),c.end(),i);
  210. }
  211. //returns const iterator to the given element if present in container, end() if not
  212. template <typename Container, typename Item>
  213. typename Container::const_iterator find(const Container & c, const Item &i)
  214. {
  215. return std::find(c.begin(),c.end(),i);
  216. }
  217. //removes element i from container c, returns false if c does not contain i
  218. template <typename Container, typename Item>
  219. typename Container::size_type operator-=(Container &c, const Item &i)
  220. {
  221. typename Container::iterator itr = find(c,i);
  222. if(itr == c.end())
  223. return false;
  224. c.erase(itr);
  225. return true;
  226. }
  227. //assigns greater of (a, b) to a and returns maximum of (a, b)
  228. template <typename t1, typename t2>
  229. t1 &amax(t1 &a, const t2 &b)
  230. {
  231. if(a >= b)
  232. return a;
  233. else
  234. {
  235. a = b;
  236. return a;
  237. }
  238. }
  239. //assigns smaller of (a, b) to a and returns minimum of (a, b)
  240. template <typename t1, typename t2>
  241. t1 &amin(t1 &a, const t2 &b)
  242. {
  243. if(a <= b)
  244. return a;
  245. else
  246. {
  247. a = b;
  248. return a;
  249. }
  250. }
  251. //makes a to fit the range <b, c>
  252. template <typename t1, typename t2, typename t3>
  253. t1 &abetween(t1 &a, const t2 &b, const t3 &c)
  254. {
  255. amax(a,b);
  256. amin(a,c);
  257. return a;
  258. }
  259. //checks if a is between b and c
  260. template <typename t1, typename t2, typename t3>
  261. bool isbetween(const t1 &value, const t2 &min, const t3 &max)
  262. {
  263. return value > min && value < max;
  264. }
  265. //checks if a is within b and c
  266. template <typename t1, typename t2, typename t3>
  267. bool iswithin(const t1 &value, const t2 &min, const t3 &max)
  268. {
  269. return value >= min && value <= max;
  270. }
  271. template <typename t1, typename t2>
  272. struct assigner
  273. {
  274. public:
  275. t1 &op1;
  276. t2 op2;
  277. assigner(t1 &a1, const t2 & a2)
  278. :op1(a1), op2(a2)
  279. {}
  280. void operator()()
  281. {
  282. op1 = op2;
  283. }
  284. };
  285. // Assigns value a2 to a1. The point of time of the real operation can be controlled
  286. // with the () operator.
  287. template <typename t1, typename t2>
  288. assigner<t1,t2> assigno(t1 &a1, const t2 &a2)
  289. {
  290. return assigner<t1,t2>(a1,a2);
  291. }
  292. //deleted pointer and sets it to NULL
  293. template <typename T>
  294. void clear_pointer(T* &ptr)
  295. {
  296. delete ptr;
  297. ptr = NULL;
  298. }
  299. template<typename T>
  300. std::unique_ptr<T> make_unique()
  301. {
  302. return std::unique_ptr<T>(new T());
  303. }
  304. template<typename T, typename Arg1>
  305. std::unique_ptr<T> make_unique(Arg1 &&arg1)
  306. {
  307. return std::unique_ptr<T>(new T(std::forward<Arg1>(arg1)));
  308. }
  309. template<typename T, typename Arg1, typename Arg2>
  310. std::unique_ptr<T> make_unique(Arg1 &&arg1, Arg2 &&arg2)
  311. {
  312. return std::unique_ptr<T>(new T(std::forward<Arg1>(arg1), std::forward<Arg2>(arg2)));
  313. }
  314. template <typename Container>
  315. typename Container::const_reference circularAt(const Container &r, size_t index)
  316. {
  317. assert(r.size());
  318. index %= r.size();
  319. auto itr = boost::begin(r);
  320. std::advance(itr, index);
  321. return *itr;
  322. }
  323. template<typename Range, typename Predicate>
  324. void erase_if(Range &vec, Predicate pred)
  325. {
  326. vec.erase(boost::remove_if(vec, pred),vec.end());
  327. }
  328. template<typename InputRange, typename OutputIterator, typename Predicate>
  329. OutputIterator copy_if(const InputRange &input, OutputIterator result, Predicate pred)
  330. {
  331. return std::copy_if(boost::const_begin(input), boost::end(input), result, pred);
  332. }
  333. template <typename Container>
  334. std::insert_iterator<Container> set_inserter(Container &c)
  335. {
  336. return std::inserter(c, c.end());
  337. }
  338. //Retuns iterator to the element for which the value of ValueFunction is minimal
  339. template<class ForwardRange, class ValueFunction>
  340. auto minElementByFun(const ForwardRange& rng, ValueFunction vf) -> decltype(boost::begin(rng))
  341. {
  342. typedef decltype(*boost::begin(rng)) ElemType;
  343. return boost::min_element(rng, [&] (ElemType lhs, ElemType rhs) -> bool
  344. {
  345. return vf(lhs) < vf(rhs);
  346. });
  347. }
  348. }
  349. using std::shared_ptr;
  350. using std::unique_ptr;
  351. using std::make_shared;
  352. using vstd::make_unique;
  353. using vstd::operator-=;
  354. namespace range = boost::range;
  355. // can be used for counting arrays
  356. template<typename T, size_t N> char (&_ArrayCountObj(const T (&)[N]))[N];
  357. #define ARRAY_COUNT(arr) (sizeof(_ArrayCountObj(arr)))
  358. #define THROW_FORMAT(message, formatting_elems) throw std::runtime_error(boost::str(boost::format(message) % formatting_elems))
  359. //XXX pls dont - 'debug macros' are usually more trouble than it's worth
  360. #define HANDLE_EXCEPTION \
  361. catch (const std::exception& e) { \
  362. tlog1 << e.what() << std::endl; \
  363. throw; \
  364. } \
  365. catch (const std::exception * e) \
  366. { \
  367. tlog1 << e->what()<< std::endl; \
  368. throw; \
  369. } \
  370. catch (const std::string& e) { \
  371. tlog1 << e << std::endl; \
  372. throw; \
  373. }
  374. #define HANDLE_EXCEPTIONC(COMMAND) \
  375. catch (const std::exception& e) { \
  376. COMMAND; \
  377. tlog1 << e.what() << std::endl; \
  378. throw; \
  379. } \
  380. catch (const std::string &e) \
  381. { \
  382. COMMAND; \
  383. tlog1 << e << std::endl; \
  384. throw; \
  385. }
  386. #include "lib/CLogger.h"