]> git.lizzy.rs Git - minetest.git/blob - src/util/timetaker.cpp
Change Minetest-c55 to Minetest
[minetest.git] / src / util / timetaker.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2012 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 "timetaker.h"
21
22 #include "../gettime.h"
23 #include "../log.h"
24 #include <ostream>
25
26 TimeTaker::TimeTaker(const char *name, u32 *result)
27 {
28         m_name = name;
29         m_result = result;
30         m_running = true;
31         m_time1 = getTimeMs();
32 }
33
34 u32 TimeTaker::stop(bool quiet)
35 {
36         if(m_running)
37         {
38                 u32 time2 = getTimeMs();
39                 u32 dtime = time2 - m_time1;
40                 if(m_result != NULL)
41                 {
42                         (*m_result) += dtime;
43                 }
44                 else
45                 {
46                         if(quiet == false)
47                                 infostream<<m_name<<" took "<<dtime<<"ms"<<std::endl;
48                 }
49                 m_running = false;
50                 return dtime;
51         }
52         return 0;
53 }
54
55 u32 TimeTaker::getTime()
56 {
57         u32 time2 = getTimeMs();
58         u32 dtime = time2 - m_time1;
59         return dtime;
60 }
61