Visualization Library v1.0.3A lightweight C++ OpenGL middleware for 2D/3D graphics |
[Download] [Tutorials] [All Classes] [Grouped Classes] |
00001 /**************************************************************************************/ 00002 /* */ 00003 /* Visualization Library */ 00004 /* http://visualizationlibrary.org */ 00005 /* */ 00006 /* Copyright (c) 2005-2010, Michele Bosi */ 00007 /* All rights reserved. */ 00008 /* */ 00009 /* Redistribution and use in source and binary forms, with or without modification, */ 00010 /* are permitted provided that the following conditions are met: */ 00011 /* */ 00012 /* - Redistributions of source code must retain the above copyright notice, this */ 00013 /* list of conditions and the following disclaimer. */ 00014 /* */ 00015 /* - Redistributions in binary form must reproduce the above copyright notice, this */ 00016 /* list of conditions and the following disclaimer in the documentation and/or */ 00017 /* other materials provided with the distribution. */ 00018 /* */ 00019 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */ 00020 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */ 00021 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */ 00022 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */ 00023 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */ 00024 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */ 00025 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */ 00026 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */ 00027 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */ 00028 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 00029 /* */ 00030 /**************************************************************************************/ 00031 00032 #ifndef Time_INCLUDE_ONCE 00033 #define Time_INCLUDE_ONCE 00034 00035 #include <vlCore/Object.hpp> 00036 00037 namespace vl 00038 { 00039 //----------------------------------------------------------------------------- 00040 // Time 00041 // Under Windows, due to BIOS or HAL bugs this function could return different 00042 // results on different threads, which means that if more than one thread needs 00043 // to sinchronize with the others using this function they should use the time 00044 // returned in one of those threads as reference. 00045 //----------------------------------------------------------------------------- 00049 class VLCORE_EXPORT Time: public Object 00050 { 00051 VL_INSTRUMENT_CLASS(vl::Time, Object) 00052 00053 public: 00054 Time(); 00055 00056 int year() const { return mYear; } 00057 00058 int month() const { return mMonth; } 00059 00060 int dayOfWeek() const { return mDayOfWeek; } 00061 00062 int dayOfMonth() const { return mDayOfMonth; } 00063 00064 int hour() const { return mHour; } 00065 00066 int minute() const { return mMinute; } 00067 00068 int second() const { return mSecond; } 00069 00070 int microsecond() const { return mMicrosecond; } 00071 00072 static real currentTime(); 00073 00074 static void sleep(unsigned int milliseconds); 00075 00076 void start(int index=0) { mStart[index] = currentTime(); } 00077 00078 void stop(int index=0) { mStart[index] = -1.0; } 00079 00080 bool isStarted(int index=0) const { return mStart[index] != -1; } 00081 00082 real elapsed(int index=0) const { return mStart[index] >= 0 ? currentTime() - mStart[index] : -1; } 00083 00084 protected: 00085 int mYear; // 1601 through 30827. 00086 int mMonth; // 1..12 00087 int mDayOfWeek; // 0 = Sunday, 6 = Saturday 00088 int mDayOfMonth; // 1..31 00089 int mHour; // 0..23 00090 int mMinute; // 0..59 00091 int mSecond; // 0..59 00092 int mMicrosecond; // 0 ... 999999 00093 00094 real mStart[VL_MAX_TIMERS]; 00095 }; 00096 } 00097 00098 #endif