Global.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771
  1. /*
  2. * Global.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. /* ---------------------------------------------------------------------------- */
  12. /* Compiler detection */
  13. /* ---------------------------------------------------------------------------- */
  14. // Fixed width bool data type is important for serialization
  15. static_assert(sizeof(bool) == 1, "Bool needs to be 1 byte in size.");
  16. /* ---------------------------------------------------------------------------- */
  17. /* System detection. */
  18. /* ---------------------------------------------------------------------------- */
  19. // Based on: http://sourceforge.net/p/predef/wiki/OperatingSystems/
  20. // and on: http://stackoverflow.com/questions/5919996/how-to-detect-reliably-mac-os-x-ios-linux-windows-in-c-preprocessor
  21. // TODO?: Should be moved to vstd\os_detect.h (and then included by Global.h)
  22. #ifdef _WIN16 // Defined for 16-bit environments
  23. # error "16-bit Windows isn't supported"
  24. #elif defined(_WIN64) // Defined for 64-bit environments
  25. # define VCMI_WINDOWS
  26. # define VCMI_WINDOWS_64
  27. #elif defined(_WIN32) // Defined for both 32-bit and 64-bit environments
  28. # define VCMI_WINDOWS
  29. # define VCMI_WINDOWS_32
  30. #elif defined(_WIN32_WCE)
  31. # error "Windows CE isn't supported"
  32. #elif defined(__linux__) || defined(__gnu_linux__) || defined(linux) || defined(__linux)
  33. # define VCMI_UNIX
  34. # define VCMI_XDG
  35. # ifdef __ANDROID__
  36. # define VCMI_ANDROID
  37. # endif
  38. #elif defined(__FreeBSD_kernel__) || defined(__FreeBSD__)
  39. # define VCMI_UNIX
  40. # define VCMI_XDG
  41. # define VCMI_FREEBSD
  42. #elif defined(__GNU__) || defined(__gnu_hurd__) || (defined(__MACH__) && !defined(__APPLE__))
  43. # define VCMI_UNIX
  44. # define VCMI_XDG
  45. # define VCMI_HURD
  46. #elif defined(__APPLE__) && defined(__MACH__)
  47. # define VCMI_UNIX
  48. # define VCMI_APPLE
  49. # include "TargetConditionals.h"
  50. # if TARGET_OS_SIMULATOR || TARGET_IPHONE_SIMULATOR
  51. # define VCMI_IOS
  52. # define VCMI_IOS_SIM
  53. # elif TARGET_OS_IPHONE
  54. # define VCMI_IOS
  55. # elif TARGET_OS_MAC
  56. # define VCMI_MAC
  57. # else
  58. //# warning "Unknown Apple target."?
  59. # endif
  60. #else
  61. # error "VCMI supports only Windows, OSX, Linux and Android targets"
  62. #endif
  63. // Each compiler uses own way to supress fall through warning. Try to find it.
  64. // TODO: replace with c++17 [[fallthrough]]
  65. #ifdef __has_cpp_attribute
  66. # if __has_cpp_attribute(fallthrough)
  67. # define FALLTHROUGH [[fallthrough]];
  68. # elif __has_cpp_attribute(gnu::fallthrough)
  69. # define FALLTHROUGH [[gnu::fallthrough]];
  70. # elif __has_cpp_attribute(clang::fallthrough)
  71. # define FALLTHROUGH [[clang::fallthrough]];
  72. # else
  73. # define FALLTHROUGH
  74. # endif
  75. #else
  76. # define FALLTHROUGH
  77. #endif
  78. /* ---------------------------------------------------------------------------- */
  79. /* Commonly used C++, Boost headers */
  80. /* ---------------------------------------------------------------------------- */
  81. #ifdef VCMI_WINDOWS
  82. # ifndef WIN32_LEAN_AND_MEAN
  83. # define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers - delete this line if something is missing.
  84. # endif
  85. # ifndef NOMINMAX
  86. # define NOMINMAX // Exclude min/max macros from <Windows.h>. Use std::[min/max] from <algorithm> instead.
  87. # endif
  88. # ifndef _NO_W32_PSEUDO_MODIFIERS
  89. # define _NO_W32_PSEUDO_MODIFIERS // Exclude more macros for compiling with MinGW on Linux.
  90. # endif
  91. #endif
  92. #ifdef VCMI_ANDROID
  93. # define NO_STD_TOSTRING // android runtime (gnustl) currently doesn't support std::to_string, so we provide our impl in this case
  94. #endif // VCMI_ANDROID
  95. /* ---------------------------------------------------------------------------- */
  96. /* A macro to force inlining some of our functions */
  97. /* ---------------------------------------------------------------------------- */
  98. // Compiler (at least MSVC) is not so smart here-> without that displaying is MUCH slower
  99. #ifdef _MSC_VER
  100. # define STRONG_INLINE __forceinline
  101. #elif __GNUC__
  102. # define STRONG_INLINE inline __attribute__((always_inline))
  103. #else
  104. # define STRONG_INLINE inline
  105. #endif
  106. #define _USE_MATH_DEFINES
  107. #include <cstdio>
  108. #include <stdio.h>
  109. #include <algorithm>
  110. #include <array>
  111. #include <cassert>
  112. #include <climits>
  113. #include <cmath>
  114. #include <cstdlib>
  115. #include <functional>
  116. #include <fstream>
  117. #include <iomanip>
  118. #include <iostream>
  119. #include <map>
  120. #include <memory>
  121. #include <numeric>
  122. #include <queue>
  123. #include <random>
  124. #include <set>
  125. #include <sstream>
  126. #include <string>
  127. #include <unordered_set>
  128. #include <unordered_map>
  129. #include <utility>
  130. #include <vector>
  131. #include <atomic>
  132. //The only available version is 3, as of Boost 1.50
  133. #include <boost/version.hpp>
  134. #define BOOST_FILESYSTEM_VERSION 3
  135. #if BOOST_VERSION > 105000
  136. # define BOOST_THREAD_VERSION 3
  137. #endif
  138. #define BOOST_THREAD_DONT_PROVIDE_THREAD_DESTRUCTOR_CALLS_TERMINATE_IF_JOINABLE 1
  139. //need to link boost thread dynamically to avoid https://stackoverflow.com/questions/35978572/boost-thread-interupt-does-not-work-when-crossing-a-dll-boundary
  140. #define BOOST_THREAD_USE_DLL //for example VCAI::finish() may freeze on thread join after interrupt when linking this statically
  141. #define BOOST_BIND_NO_PLACEHOLDERS
  142. #if defined(_MSC_VER) && (_MSC_VER == 1900 || _MSC_VER == 1910 || _MSC_VER == 1911)
  143. #define BOOST_NO_CXX11_VARIADIC_TEMPLATES //Variadic templates are buggy in VS2015 and VS2017, so turn this off to avoid compile errors
  144. #endif
  145. #if BOOST_VERSION >= 106600
  146. #define BOOST_ASIO_ENABLE_OLD_SERVICES
  147. #endif
  148. #include <boost/algorithm/string.hpp>
  149. #include <boost/any.hpp>
  150. #include <boost/cstdint.hpp>
  151. #include <boost/current_function.hpp>
  152. #include <boost/crc.hpp>
  153. #include <boost/date_time/posix_time/posix_time.hpp>
  154. #include <boost/date_time/posix_time/posix_time_io.hpp>
  155. #include <boost/filesystem.hpp>
  156. #include <boost/filesystem/path.hpp>
  157. #include <boost/filesystem/fstream.hpp>
  158. #include <boost/format.hpp>
  159. #include <boost/functional/hash.hpp>
  160. #include <boost/lexical_cast.hpp>
  161. #ifdef VCMI_WINDOWS
  162. #include <boost/locale/generator.hpp>
  163. #endif
  164. #include <boost/logic/tribool.hpp>
  165. #include <boost/optional.hpp>
  166. #include <boost/optional/optional_io.hpp>
  167. #include <boost/range/adaptor/filtered.hpp>
  168. #include <boost/range/adaptor/reversed.hpp>
  169. #include <boost/range/algorithm.hpp>
  170. #include <boost/thread.hpp>
  171. #include <boost/variant.hpp>
  172. #include <boost/math/special_functions/round.hpp>
  173. #include <boost/multi_array.hpp>
  174. #ifndef M_PI
  175. # define M_PI 3.14159265358979323846
  176. #endif
  177. /* ---------------------------------------------------------------------------- */
  178. /* Usings */
  179. /* ---------------------------------------------------------------------------- */
  180. using namespace std::placeholders;
  181. namespace range = boost::range;
  182. /* ---------------------------------------------------------------------------- */
  183. /* Typedefs */
  184. /* ---------------------------------------------------------------------------- */
  185. // Integral data types
  186. typedef uint64_t ui64; //unsigned int 64 bits (8 bytes)
  187. typedef uint32_t ui32; //unsigned int 32 bits (4 bytes)
  188. typedef uint16_t ui16; //unsigned int 16 bits (2 bytes)
  189. typedef uint8_t ui8; //unsigned int 8 bits (1 byte)
  190. typedef int64_t si64; //signed int 64 bits (8 bytes)
  191. typedef int32_t si32; //signed int 32 bits (4 bytes)
  192. typedef int16_t si16; //signed int 16 bits (2 bytes)
  193. typedef int8_t si8; //signed int 8 bits (1 byte)
  194. // Lock typedefs
  195. typedef boost::lock_guard<boost::mutex> TLockGuard;
  196. typedef boost::lock_guard<boost::recursive_mutex> TLockGuardRec;
  197. /* ---------------------------------------------------------------------------- */
  198. /* Macros */
  199. /* ---------------------------------------------------------------------------- */
  200. // Import + Export macro declarations
  201. #ifdef VCMI_WINDOWS
  202. #ifdef VCMI_DLL_STATIC
  203. # define DLL_IMPORT
  204. # define DLL_EXPORT
  205. #elif defined(__GNUC__)
  206. # define DLL_IMPORT __attribute__((dllimport))
  207. # define DLL_EXPORT __attribute__((dllexport))
  208. # else
  209. # define DLL_IMPORT __declspec(dllimport)
  210. # define DLL_EXPORT __declspec(dllexport)
  211. # endif
  212. # define ELF_VISIBILITY
  213. #else
  214. # ifdef __GNUC__
  215. # define DLL_IMPORT __attribute__ ((visibility("default")))
  216. # define DLL_EXPORT __attribute__ ((visibility("default")))
  217. # define ELF_VISIBILITY __attribute__ ((visibility("default")))
  218. # endif
  219. #endif
  220. #ifdef VCMI_DLL
  221. # define DLL_LINKAGE DLL_EXPORT
  222. #else
  223. # define DLL_LINKAGE DLL_IMPORT
  224. #endif
  225. #define THROW_FORMAT(message, formatting_elems) throw std::runtime_error(boost::str(boost::format(message) % formatting_elems))
  226. // can be used for counting arrays
  227. template<typename T, size_t N> char (&_ArrayCountObj(const T (&)[N]))[N];
  228. #define ARRAY_COUNT(arr) (sizeof(_ArrayCountObj(arr)))
  229. // should be used for variables that becomes unused in release builds (e.g. only used for assert checks)
  230. // TODO: replace with c++17 [[maybe_unused]]
  231. #define MAYBE_UNUSED(VAR) ((void)VAR)
  232. // old iOS SDKs compatibility
  233. #ifdef VCMI_IOS
  234. #include <AvailabilityVersions.h>
  235. #ifndef __IPHONE_13_0
  236. #define __IPHONE_13_0 130000
  237. #endif
  238. #endif // VCMI_IOS
  239. // single-process build makes 2 copies of the main lib by wrapping it in a namespace
  240. #ifdef VCMI_LIB_NAMESPACE
  241. #define VCMI_LIB_NAMESPACE_BEGIN namespace VCMI_LIB_NAMESPACE {
  242. #define VCMI_LIB_NAMESPACE_END }
  243. #define VCMI_LIB_USING_NAMESPACE using namespace VCMI_LIB_NAMESPACE;
  244. #define VCMI_LIB_WRAP_NAMESPACE(x) VCMI_LIB_NAMESPACE::x
  245. #else
  246. #define VCMI_LIB_NAMESPACE_BEGIN
  247. #define VCMI_LIB_NAMESPACE_END
  248. #define VCMI_LIB_USING_NAMESPACE
  249. #define VCMI_LIB_WRAP_NAMESPACE(x) x
  250. #endif
  251. /* ---------------------------------------------------------------------------- */
  252. /* VCMI standard library */
  253. /* ---------------------------------------------------------------------------- */
  254. #include <vstd/CLoggerBase.h>
  255. VCMI_LIB_NAMESPACE_BEGIN
  256. void inline handleException()
  257. {
  258. try
  259. {
  260. throw;
  261. }
  262. catch(const std::exception & ex)
  263. {
  264. logGlobal->error(ex.what());
  265. }
  266. catch(const std::string & ex)
  267. {
  268. logGlobal->error(ex);
  269. }
  270. catch(...)
  271. {
  272. logGlobal->error("Sorry, caught unknown exception type. No more info available.");
  273. }
  274. }
  275. namespace vstd
  276. {
  277. // combine hashes. Present in boost but not in std
  278. template <class T>
  279. inline void hash_combine(std::size_t& seed, const T& v)
  280. {
  281. std::hash<T> hasher;
  282. seed ^= hasher(v) + 0x9e3779b9 + (seed<<6) + (seed>>2);
  283. }
  284. //returns true if container c contains item i
  285. template <typename Container, typename Item>
  286. bool contains(const Container & c, const Item &i)
  287. {
  288. return std::find(std::begin(c), std::end(c),i) != std::end(c);
  289. }
  290. //returns true if container c contains item i
  291. template <typename Container, typename Pred>
  292. bool contains_if(const Container & c, Pred p)
  293. {
  294. return std::find_if(std::begin(c), std::end(c), p) != std::end(c);
  295. }
  296. //returns true if map c contains item i
  297. template <typename V, typename Item, typename Item2>
  298. bool contains(const std::map<Item,V> & c, const Item2 &i)
  299. {
  300. return c.find(i)!=c.end();
  301. }
  302. //returns true if unordered set c contains item i
  303. template <typename Item>
  304. bool contains(const std::unordered_set<Item> & c, const Item &i)
  305. {
  306. return c.find(i)!=c.end();
  307. }
  308. template <typename V, typename Item, typename Item2>
  309. bool contains(const std::unordered_map<Item,V> & c, const Item2 &i)
  310. {
  311. return c.find(i)!=c.end();
  312. }
  313. //returns position of first element in vector c equal to s, if there is no such element, -1 is returned
  314. template <typename Container, typename T2>
  315. int find_pos(const Container & c, const T2 &s)
  316. {
  317. int i=0;
  318. for (auto iter = std::begin(c); iter != std::end(c); iter++, i++)
  319. if(*iter == s)
  320. return i;
  321. return -1;
  322. }
  323. //Func f tells if element matches
  324. template <typename Container, typename Func>
  325. int find_pos_if(const Container & c, const Func &f)
  326. {
  327. auto ret = boost::range::find_if(c, f);
  328. if(ret != std::end(c))
  329. return std::distance(std::begin(c), ret);
  330. return -1;
  331. }
  332. //returns iterator to the given element if present in container, end() if not
  333. template <typename Container, typename Item>
  334. typename Container::iterator find(Container & c, const Item &i)
  335. {
  336. return std::find(c.begin(),c.end(),i);
  337. }
  338. //returns const iterator to the given element if present in container, end() if not
  339. template <typename Container, typename Item>
  340. typename Container::const_iterator find(const Container & c, const Item &i)
  341. {
  342. return std::find(c.begin(),c.end(),i);
  343. }
  344. //returns first key that maps to given value if present, returns success via found if provided
  345. template <typename Key, typename T>
  346. Key findKey(const std::map<Key, T> & map, const T & value, bool * found = nullptr)
  347. {
  348. for(auto iter = map.cbegin(); iter != map.cend(); iter++)
  349. {
  350. if(iter->second == value)
  351. {
  352. if(found)
  353. *found = true;
  354. return iter->first;
  355. }
  356. }
  357. if(found)
  358. *found = false;
  359. return Key();
  360. }
  361. //removes element i from container c, returns false if c does not contain i
  362. template <typename Container, typename Item>
  363. typename Container::size_type operator-=(Container &c, const Item &i)
  364. {
  365. typename Container::iterator itr = find(c,i);
  366. if(itr == c.end())
  367. return false;
  368. c.erase(itr);
  369. return true;
  370. }
  371. //assigns greater of (a, b) to a and returns maximum of (a, b)
  372. template <typename t1, typename t2>
  373. t1 &amax(t1 &a, const t2 &b)
  374. {
  375. if(a >= (t1)b)
  376. return a;
  377. else
  378. {
  379. a = t1(b);
  380. return a;
  381. }
  382. }
  383. //assigns smaller of (a, b) to a and returns minimum of (a, b)
  384. template <typename t1, typename t2>
  385. t1 &amin(t1 &a, const t2 &b)
  386. {
  387. if(a <= (t1)b)
  388. return a;
  389. else
  390. {
  391. a = t1(b);
  392. return a;
  393. }
  394. }
  395. //makes a to fit the range <b, c>
  396. template <typename t1, typename t2, typename t3>
  397. t1 &abetween(t1 &a, const t2 &b, const t3 &c)
  398. {
  399. amax(a,b);
  400. amin(a,c);
  401. return a;
  402. }
  403. //checks if a is between b and c
  404. template <typename t1, typename t2, typename t3>
  405. bool isbetween(const t1 &value, const t2 &min, const t3 &max)
  406. {
  407. return value > (t1)min && value < (t1)max;
  408. }
  409. //checks if a is within b and c
  410. template <typename t1, typename t2, typename t3>
  411. bool iswithin(const t1 &value, const t2 &min, const t3 &max)
  412. {
  413. return value >= (t1)min && value <= (t1)max;
  414. }
  415. template <typename t1, typename t2>
  416. struct assigner
  417. {
  418. public:
  419. t1 &op1;
  420. t2 op2;
  421. assigner(t1 &a1, const t2 & a2)
  422. :op1(a1), op2(a2)
  423. {}
  424. void operator()()
  425. {
  426. op1 = op2;
  427. }
  428. };
  429. // Assigns value a2 to a1. The point of time of the real operation can be controlled
  430. // with the () operator.
  431. template <typename t1, typename t2>
  432. assigner<t1,t2> assigno(t1 &a1, const t2 &a2)
  433. {
  434. return assigner<t1,t2>(a1,a2);
  435. }
  436. //deleted pointer and sets it to nullptr
  437. template <typename T>
  438. void clear_pointer(T* &ptr)
  439. {
  440. delete ptr;
  441. ptr = nullptr;
  442. }
  443. template <typename Container>
  444. typename Container::const_reference circularAt(const Container &r, size_t index)
  445. {
  446. assert(r.size());
  447. index %= r.size();
  448. auto itr = std::begin(r);
  449. std::advance(itr, index);
  450. return *itr;
  451. }
  452. template <typename Container, typename Item>
  453. void erase(Container &c, const Item &item)
  454. {
  455. c.erase(boost::remove(c, item), c.end());
  456. }
  457. template<typename Range, typename Predicate>
  458. void erase_if(Range &vec, Predicate pred)
  459. {
  460. vec.erase(boost::remove_if(vec, pred),vec.end());
  461. }
  462. template<typename Elem, typename Predicate>
  463. void erase_if(std::set<Elem> &setContainer, Predicate pred)
  464. {
  465. auto itr = setContainer.begin();
  466. auto endItr = setContainer.end();
  467. while(itr != endItr)
  468. {
  469. auto tmpItr = itr++;
  470. if(pred(*tmpItr))
  471. setContainer.erase(tmpItr);
  472. }
  473. }
  474. //works for map and std::map, maybe something else
  475. template<typename Key, typename Val, typename Predicate>
  476. void erase_if(std::map<Key, Val> &container, Predicate pred)
  477. {
  478. auto itr = container.begin();
  479. auto endItr = container.end();
  480. while(itr != endItr)
  481. {
  482. auto tmpItr = itr++;
  483. if(pred(*tmpItr))
  484. container.erase(tmpItr);
  485. }
  486. }
  487. template<typename InputRange, typename OutputIterator, typename Predicate>
  488. OutputIterator copy_if(const InputRange &input, OutputIterator result, Predicate pred)
  489. {
  490. return std::copy_if(boost::const_begin(input), std::end(input), result, pred);
  491. }
  492. template <typename Container>
  493. std::insert_iterator<Container> set_inserter(Container &c)
  494. {
  495. return std::inserter(c, c.end());
  496. }
  497. //Returns iterator to the element for which the value of ValueFunction is minimal
  498. template<class ForwardRange, class ValueFunction>
  499. auto minElementByFun(const ForwardRange& rng, ValueFunction vf) -> decltype(std::begin(rng))
  500. {
  501. /* Clang crashes when instantiating this function template and having PCH compilation enabled.
  502. * There is a bug report here: http://llvm.org/bugs/show_bug.cgi?id=18744
  503. * Current bugfix is to don't use a typedef for decltype(*std::begin(rng)) and to use decltype
  504. * directly for both function parameters.
  505. */
  506. return boost::min_element(rng, [&] (decltype(*std::begin(rng)) lhs, decltype(*std::begin(rng)) rhs) -> bool
  507. {
  508. return vf(lhs) < vf(rhs);
  509. });
  510. }
  511. //Returns iterator to the element for which the value of ValueFunction is maximal
  512. template<class ForwardRange, class ValueFunction>
  513. auto maxElementByFun(const ForwardRange& rng, ValueFunction vf) -> decltype(std::begin(rng))
  514. {
  515. /* Clang crashes when instantiating this function template and having PCH compilation enabled.
  516. * There is a bug report here: http://llvm.org/bugs/show_bug.cgi?id=18744
  517. * Current bugfix is to don't use a typedef for decltype(*std::begin(rng)) and to use decltype
  518. * directly for both function parameters.
  519. */
  520. return boost::max_element(rng, [&] (decltype(*std::begin(rng)) lhs, decltype(*std::begin(rng)) rhs) -> bool
  521. {
  522. return vf(lhs) < vf(rhs);
  523. });
  524. }
  525. template<typename T>
  526. void advance(T &obj, int change)
  527. {
  528. obj = (T)(((int)obj) + change);
  529. }
  530. template <typename Container>
  531. 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)
  532. {
  533. if(c.size())
  534. return c.back();
  535. else
  536. return typename Container::value_type();
  537. }
  538. template <typename Container>
  539. 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)
  540. {
  541. if(c.size())
  542. return c.front();
  543. else
  544. return nullptr;
  545. }
  546. template <typename Container, typename Index>
  547. bool isValidIndex(const Container &c, Index i)
  548. {
  549. return i >= 0 && i < c.size();
  550. }
  551. template <typename Container, typename Index>
  552. boost::optional<typename Container::const_reference> tryAt(const Container &c, Index i)
  553. {
  554. if(isValidIndex(c, i))
  555. {
  556. auto itr = c.begin();
  557. std::advance(itr, i);
  558. return *itr;
  559. }
  560. return boost::none;
  561. }
  562. template <typename Container, typename Pred>
  563. static boost::optional<typename Container::const_reference> tryFindIf(const Container &r, const Pred &t)
  564. {
  565. auto pos = range::find_if(r, t);
  566. if(pos == boost::end(r))
  567. return boost::none;
  568. else
  569. return *pos;
  570. }
  571. template <typename Container>
  572. typename Container::const_reference atOrDefault(const Container &r, size_t index, const typename Container::const_reference &defaultValue)
  573. {
  574. if(index < r.size())
  575. return r[index];
  576. return defaultValue;
  577. }
  578. template <typename Container, typename Item>
  579. bool erase_if_present(Container &c, const Item &item)
  580. {
  581. auto i = std::find(c.begin(), c.end(), item);
  582. if (i != c.end())
  583. {
  584. c.erase(i);
  585. return true;
  586. }
  587. return false;
  588. }
  589. template <typename V, typename Item, typename Item2>
  590. bool erase_if_present(std::map<Item,V> & c, const Item2 &item)
  591. {
  592. auto i = c.find(item);
  593. if (i != c.end())
  594. {
  595. c.erase(i);
  596. return true;
  597. }
  598. return false;
  599. }
  600. template<typename T>
  601. void removeDuplicates(std::vector<T> &vec)
  602. {
  603. boost::sort(vec);
  604. vec.erase(std::unique(vec.begin(), vec.end()), vec.end());
  605. }
  606. template <typename T>
  607. void concatenate(std::vector<T> &dest, const std::vector<T> &src)
  608. {
  609. dest.reserve(dest.size() + src.size());
  610. dest.insert(dest.end(), src.begin(), src.end());
  611. }
  612. template <typename T>
  613. std::vector<T> intersection(std::vector<T> &v1, std::vector<T> &v2)
  614. {
  615. std::vector<T> v3;
  616. std::sort(v1.begin(), v1.end());
  617. std::sort(v2.begin(), v2.end());
  618. std::set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), std::back_inserter(v3));
  619. return v3;
  620. }
  621. template <typename Key, typename V>
  622. bool containsMapping(const std::multimap<Key,V> & map, const std::pair<const Key,V> & mapping)
  623. {
  624. auto range = map.equal_range(mapping.first);
  625. for(auto contained = range.first; contained != range.second; contained++)
  626. {
  627. if(mapping.second == contained->second)
  628. return true;
  629. }
  630. return false;
  631. }
  632. template <class M, class Key, class F>
  633. typename M::mapped_type & getOrCompute(M & m, Key const & k, F f)
  634. {
  635. typedef typename M::mapped_type V;
  636. std::pair<typename M::iterator, bool> r = m.insert(typename M::value_type(k, V()));
  637. V & v = r.first->second;
  638. if(r.second)
  639. f(v);
  640. return v;
  641. }
  642. //c++20 feature
  643. template<typename Arithmetic, typename Floating>
  644. Arithmetic lerp(const Arithmetic & a, const Arithmetic & b, const Floating & f)
  645. {
  646. return a + (b - a) * f;
  647. }
  648. /// converts number into string using metric system prefixes, e.g. 'k' or 'M' to keep resulting strings within specified size
  649. /// Note that resulting string may have more symbols than digits: minus sign and prefix symbol
  650. template<typename Arithmetic>
  651. std::string formatMetric(Arithmetic number, int maxDigits)
  652. {
  653. Arithmetic max = std::pow(10, maxDigits);
  654. if (std::abs(number) < max)
  655. return std::to_string(number);
  656. std::string symbols = " kMGTPE";
  657. auto iter = symbols.begin();
  658. while (std::abs(number) >= max)
  659. {
  660. number /= 1000;
  661. iter++;
  662. assert(iter != symbols.end());//should be enough even for int64
  663. }
  664. return std::to_string(number) + *iter;
  665. }
  666. ///compile-time version of std::abs for ints for int3, in clang++15 std::abs is constexpr
  667. static constexpr int abs(int i) {
  668. if(i < 0) return -i;
  669. return i;
  670. }
  671. }
  672. using vstd::operator-=;
  673. #ifdef NO_STD_TOSTRING
  674. namespace std
  675. {
  676. template <typename T>
  677. inline std::string to_string(const T& value)
  678. {
  679. std::ostringstream ss;
  680. ss << value;
  681. return ss.str();
  682. }
  683. }
  684. #endif // NO_STD_TOSTRING
  685. VCMI_LIB_NAMESPACE_END