/* https://github.com/peterix/dfhack Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ #pragma once #include "Export.h" #include #include #include #include #include #include #include using namespace std; template void print_bits ( T val, ostream& out ) { stringstream strs; T n_bits = sizeof ( val ) * CHAR_BIT; int cnt; for ( unsigned i = 0; i < n_bits; ++i ) { cnt = i/10; strs << cnt << " "; } strs << endl; for ( unsigned i = 0; i < n_bits; ++i ) { cnt = i%10; strs << cnt << " "; } strs << endl; for ( unsigned i = 0; i < n_bits; ++i ) { strs << "--"; } strs << endl; for ( unsigned i = 0; i < n_bits; ++i ) { strs<< !!( val & 1 ) << " "; val >>= 1; } strs << endl; out << strs.str(); } /* * Binary search in vectors. */ template int linear_index(const std::vector &vec, FT key) { for (unsigned i = 0; i < vec.size(); i++) if (vec[i] == key) return i; return -1; } template int linear_index(const std::vector &vec, const FT &key) { for (unsigned i = 0; i < vec.size(); i++) if (vec[i] && *vec[i] == key) return i; return -1; } template int binsearch_index(const std::vector &vec, FT key, bool exact = true) { // Returns the index of the value >= the key int min = -1, max = (int)vec.size(); const FT *p = vec.data(); for (;;) { int mid = (min + max)>>1; if (mid == min) return exact ? -1 : max; FT midv = p[mid]; if (midv == key) return mid; else if (midv < key) min = mid; else max = mid; } } template int linear_index(const std::vector &vec, FT CT::*field, FT key) { for (unsigned i = 0; i < vec.size(); i++) if (vec[i]->*field == key) return i; return -1; } template int binsearch_index(const std::vector &vec, FT CT::*field, FT key, bool exact = true) { // Returns the index of the value >= the key int min = -1, max = (int)vec.size(); CT *const *p = vec.data(); for (;;) { int mid = (min + max)>>1; if (mid == min) return exact ? -1 : max; FT midv = p[mid]->*field; if (midv == key) return mid; else if (midv < key) min = mid; else max = mid; } } template inline int binsearch_index(const std::vector &vec, typename CT::key_field_type key, bool exact = true) { return CT::binsearch_index(vec, key, exact); } template inline int binsearch_index(const std::vector &vec, typename CT::key_pointer_type key, bool exact = true) { return CT::binsearch_index(vec, key, exact); } template inline bool vector_contains(const std::vector &vec, KT key) { return binsearch_index(vec, key) >= 0; } template inline bool vector_contains(const std::vector &vec, FT CT::*field, FT key) { return binsearch_index(vec, field, key) >= 0; } template inline T vector_get(const std::vector &vec, unsigned idx, const T &defval = T()) { if (idx < vec.size()) return vec[idx]; else return defval; } template inline void vector_insert_at(std::vector &vec, unsigned idx, const T &val) { vec.insert(vec.begin()+idx, val); } template inline void vector_erase_at(std::vector &vec, unsigned idx) { if (idx < vec.size()) vec.erase(vec.begin()+idx); } template unsigned insert_into_vector(std::vector &vec, FT key, bool *inserted = NULL) { unsigned pos = (unsigned)binsearch_index(vec, key, false); bool to_ins = (pos >= vec.size() || vec[pos] != key); if (inserted) *inserted = to_ins; if (to_ins) vector_insert_at(vec, pos, key); return pos; } template unsigned insert_into_vector(std::vector &vec, FT CT::*field, CT *obj, bool *inserted = NULL) { unsigned pos = (unsigned)binsearch_index(vec, field, obj->*field, false); bool to_ins = (pos >= vec.size() || vec[pos] != obj); if (inserted) *inserted = to_ins; if (to_ins) vector_insert_at(vec, pos, obj); return pos; } template bool erase_from_vector(std::vector &vec, FT key) { int pos = binsearch_index(vec, key); vector_erase_at(vec, pos); return pos >= 0; } template bool erase_from_vector(std::vector &vec, FT CT::*field, FT key) { int pos = binsearch_index(vec, field, key); vector_erase_at(vec, pos); return pos >= 0; } template CT *binsearch_in_vector(const std::vector &vec, KT value) { int idx = binsearch_index(vec, value); return idx < 0 ? NULL : vec[idx]; } template CT *binsearch_in_vector(const std::vector &vec, FT CT::*field, FT value) { int idx = binsearch_index(vec, field, value); return idx < 0 ? NULL : vec[idx]; } /* * List */ template Link *linked_list_append(Link *head, Link *tail) { while (head->next) head = head->next; head->next = tail; tail->prev = head; return tail; } template Link *linked_list_insert_after(Link *pos, Link *link) { link->next = pos->next; if (pos->next) pos->next->prev = link; link->prev = pos; pos->next = link; return link; } template inline typename T::mapped_type map_find( const T &map, const typename T::key_type &key, const typename T::mapped_type &defval = typename T::mapped_type() ) { auto it = map.find(key); return (it == map.end()) ? defval : it->second; } DFHACK_EXPORT bool prefix_matches(const std::string &prefix, const std::string &key, std::string *tail = NULL); template typename T::mapped_type findPrefixInMap( const T &table, const std::string &key, const typename T::mapped_type& defval = typename T::mapped_type() ) { auto it = table.lower_bound(key); if (it != table.end() && it->first == key) return it->second; if (it != table.begin()) { --it; if (prefix_matches(it->first, key)) return it->second; } return defval; } #ifdef __GNUC__ #define VARIABLE_IS_NOT_USED __attribute__ ((unused)) #else #define VARIABLE_IS_NOT_USED #endif template inline bool static_add_to_map(CT *pmap, typename CT::key_type key, typename CT::mapped_type value) { (*pmap)[key] = value; return true; } #define CONCAT_TOKENS2(a,b) a##b #define CONCAT_TOKENS(a,b) CONCAT_TOKENS2(a,b) #define DFHACK_STATIC_ADD_TO_MAP(pmap,key,value) \ static bool VARIABLE_IS_NOT_USED CONCAT_TOKENS(static_add_to_map_,__LINE__)\ = static_add_to_map(pmap,key,value) /* * MISC */ DFHACK_EXPORT bool split_string(std::vector *out, const std::string &str, const std::string &separator, bool squash_empty = false); DFHACK_EXPORT std::string join_strings(const std::string &separator, const std::vector &items); DFHACK_EXPORT std::string toUpper(const std::string &str); DFHACK_EXPORT std::string toLower(const std::string &str); inline bool bits_match(unsigned required, unsigned ok, unsigned mask) { return (required & mask) == (required & mask & ok); } template inline T clip_range(T a, T1 minv, T2 maxv) { if (a < minv) return minv; if (a > maxv) return maxv; return a; } /** * Returns the amount of milliseconds elapsed since the UNIX epoch. * Works on both windows and linux. * source: http://stackoverflow.com/questions/1861294/how-to-calculate-execution-time-of-a-code-snippet-in-c */ DFHACK_EXPORT uint64_t GetTimeMs64(); DFHACK_EXPORT std::string stl_sprintf(const char *fmt, ...); DFHACK_EXPORT std::string stl_vsprintf(const char *fmt, va_list args); // Conversion between CP437 and UTF-8 DFHACK_EXPORT std::string UTF2DF(const std::string &in); DFHACK_EXPORT std::string DF2UTF(const std::string &in);