]> git.lizzy.rs Git - minetest.git/blob - src/profiler.cpp
Snake case for screen options in minetest.conf (#5792)
[minetest.git] / src / profiler.cpp
1 /*
2 Minetest
3 Copyright (C) 2015 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "profiler.h"
21
22 static Profiler main_profiler;
23 Profiler *g_profiler = &main_profiler;
24 ScopeProfiler::ScopeProfiler(
25                 Profiler *profiler, const std::string &name, ScopeProfilerType type)
26     : m_profiler(profiler), m_name(name), m_timer(NULL), m_type(type)
27 {
28         if (m_profiler)
29                 m_timer = new TimeTaker(m_name);
30 }
31
32 ScopeProfiler::~ScopeProfiler()
33 {
34         if (!m_timer)
35                 return;
36
37         float duration_ms = m_timer->stop(true);
38         float duration = duration_ms / 1000.0;
39         if (m_profiler) {
40                 switch (m_type) {
41                 case SPT_ADD:
42                         m_profiler->add(m_name, duration);
43                         break;
44                 case SPT_AVG:
45                         m_profiler->avg(m_name, duration);
46                         break;
47                 case SPT_GRAPH_ADD:
48                         m_profiler->graphAdd(m_name, duration);
49                         break;
50                 }
51         }
52         delete m_timer;
53 }