File indexing completed on 2024-05-19 14:56:24

0001 /*
0002 * Copyright (c) 2011 Erin Catto http://box2d.org
0003 *
0004 * This software is provided 'as-is', without any express or implied
0005 * warranty.  In no event will the authors be held liable for any damages
0006 * arising from the use of this software.
0007 * Permission is granted to anyone to use this software for any purpose,
0008 * including commercial applications, and to alter it and redistribute it
0009 * freely, subject to the following restrictions:
0010 * 1. The origin of this software must not be misrepresented; you must not
0011 * claim that you wrote the original software. If you use this software
0012 * in a product, an acknowledgment in the product documentation would be
0013 * appreciated but is not required.
0014 * 2. Altered source versions must be plainly marked as such, and must not be
0015 * misrepresented as being the original software.
0016 * 3. This notice may not be removed or altered from any source distribution.
0017 */
0018 
0019 #ifndef B2_TIMER_H
0020 #define B2_TIMER_H
0021 
0022 #include <Box2D/Common/b2Settings.h>
0023 
0024 /// Timer for profiling. This has platform specific code and may
0025 /// not work on every platform.
0026 class b2Timer
0027 {
0028 public:
0029 
0030     /// Constructor
0031     b2Timer();
0032 
0033     /// Reset the timer.
0034     void Reset();
0035 
0036     /// Get the time since construction or the last reset.
0037     float32 GetMilliseconds() const;
0038 
0039 private:
0040 
0041 #if defined(_WIN32)
0042     float64 m_start;
0043     static float64 s_invFrequency;
0044 #elif defined(__linux__) || defined (__APPLE__)
0045     unsigned long m_start_sec;
0046     unsigned long m_start_usec;
0047 #endif
0048 };
0049 
0050 #endif