aboutsummaryrefslogtreecommitdiff
path: root/textures/larger rails.xcf
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2016-08-29 21:53:41 +0200
committerorwell96 <mono96.mml@gmail.com>2016-08-29 21:53:41 +0200
commit38714bc2e8391eaf1b54c540e0a6f703b3384af7 (patch)
treea74cc8bfb86e3ac0a9247afd40962c1b23a2fa5e /textures/larger rails.xcf
parent0db3276a25d80ee42cfca2c7aec95fc6a7657b7d (diff)
downloadadvtrains-38714bc2e8391eaf1b54c540e0a6f703b3384af7.tar.gz
advtrains-38714bc2e8391eaf1b54c540e0a6f703b3384af7.tar.bz2
advtrains-38714bc2e8391eaf1b54c540e0a6f703b3384af7.zip
implement track placing algorithm better
Diffstat (limited to 'textures/larger rails.xcf')
0 files changed, 0 insertions, 0 deletions
n class="hl com">with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "irrlichttypes.h" #include <cassert> #include <string> #include <map> #include <ostream> #include "threading/mutex_auto_lock.h" #include "util/timetaker.h" #include "util/numeric.h" // paging() // Global profiler class Profiler; extern Profiler *g_profiler; /* Time profiler */ class Profiler { public: Profiler(); void add(const std::string &name, float value); void avg(const std::string &name, float value); void clear(); float getValue(const std::string &name) const; int getAvgCount(const std::string &name) const; u64 getElapsedMs() const; typedef std::map<std::string, float> GraphValues; // Returns the line count int print(std::ostream &o, u32 page = 1, u32 pagecount = 1); void getPage(GraphValues &o, u32 page, u32 pagecount); void graphAdd(const std::string &id, float value) { MutexAutoLock lock(m_mutex); std::map<std::string, float>::iterator i = m_graphvalues.find(id); if(i == m_graphvalues.end()) m_graphvalues[id] = value; else i->second += value; } void graphGet(GraphValues &result) { MutexAutoLock lock(m_mutex); result = m_graphvalues; m_graphvalues.clear(); } void remove(const std::string& name) { MutexAutoLock lock(m_mutex); m_avgcounts.erase(name); m_data.erase(name); } private: std::mutex m_mutex; std::map<std::string, float> m_data; std::map<std::string, int> m_avgcounts; std::map<std::string, float> m_graphvalues; u64 m_start_time; }; enum ScopeProfilerType{ SPT_ADD, SPT_AVG, SPT_GRAPH_ADD }; class ScopeProfiler { public: ScopeProfiler(Profiler *profiler, const std::string &name, ScopeProfilerType type = SPT_ADD); ~ScopeProfiler(); private: Profiler *m_profiler = nullptr; std::string m_name; TimeTaker *m_timer = nullptr; enum ScopeProfilerType m_type; };