00001
00010 #ifndef _STOPWATCH_BASSO_H_
00011 #define _STOPWATCH_BASSO_H_
00012
00013
00014 #include <ctime>
00015 #include <iomanip>
00016
00017
00018
00019
00020 #include "Basso.h"
00021
00022 namespace basso {
00023
00031 class Stopwatch {
00032
00033 public:
00034
00035
00036 #define TPS static_cast<Numeric>(CLOCKS_PER_SEC)
00037
00038
00039 Stopwatch() { }
00040
00041 virtual ~Stopwatch() { }
00042
00043
00044
00045
00046
00048 Numeric Start();
00049
00051
00052
00054
00055
00057 Numeric Read() const;
00058
00059 private:
00060 clock_t start_ticks;
00061
00062
00063
00064
00065
00066 };
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076 Numeric Stopwatch::Start()
00077 {
00078 start_ticks=clock();
00079 return Read();
00080 }
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102 Numeric Stopwatch::Read() const
00103 {
00104 return (clock()-start_ticks)/TPS;
00105 }
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00117 std::ostream &operator << ( std::ostream &out, const Stopwatch &timer )
00118 {
00119 out << setw( 10 ) << setiosflags(ios::fixed) << setprecision( 3 ) << timer.Read() << " ";
00120 return out;
00121 }
00122
00123
00124 void pause( Numeric dt )
00125 {
00126 Stopwatch clock;
00127 clock.Start();
00128 while ( clock.Read() < dt )
00129 int j=999;
00130 }
00131
00132 }
00133
00134 #endif
00135
00136