forked from fritzo/jenn3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
definitions.h
184 lines (154 loc) · 4.9 KB
/
definitions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/*
This file is part of Jenn.
Copyright 2001-2007 Fritz Obermeyer.
Jenn is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Jenn is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Jenn; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef JENN_DEFINITIONS_H
#define JENN_DEFINITIONS_H
#include <iostream>
#include <sys/time.h>
#include <cstdlib>
#ifdef __EMSCRIPTEN__
#include "glut_wasm.h"
#endif
template<class T> inline T min (T lhs, T rhs) { return (lhs<rhs) ? lhs:rhs; }
template<class T> inline T max (T lhs, T rhs) { return (lhs>rhs) ? lhs:rhs; }
//================================ debugging ================================
#ifndef DEBUG_LEVEL
#define DEBUG_LEVEL 0
#define NDEBUG
#endif
#define LATER() {logger.error()\
<< "control reached unfinished code:\n\t"\
<< __FILE__ << " : " << __LINE__ << "\n\t"\
<< __PRETTY_FUNCTION__ << "\n" |0;\
abort();}
#define Assert(cond,mess) {if (!(cond)) {logger.error()\
<< mess << "\n\t"\
<< __FILE__ << " : " << __LINE__ << "\n\t"\
<< __PRETTY_FUNCTION__ << "\n" |0;\
abort();}}
#define Assert1(cond,mess) Assert(((DEBUG_LEVEL<1)or(cond)),mess)
#define Assert2(cond,mess) Assert(((DEBUG_LEVEL<2)or(cond)),mess)
#define Assert3(cond,mess) Assert(((DEBUG_LEVEL<3)or(cond)),mess)
//================================ logging ================================
namespace Logging
{
#ifdef LOG_FILE
extern std::ofstream logFile;
#endif
class fake_ostream
{
private:
const bool m_live;
public:
fake_ostream (bool live) : m_live(live) {}
template <class Message>
const fake_ostream& operator << (const Message& message) const
{
#ifdef LOG_FILE
if (m_live) { logFile << message; }
#else
if (m_live) { std::cout << message; }
#endif
return *this;
}
const fake_ostream& operator | (int) const
{
#ifdef LOG_FILE
if (m_live) { logFile << std::endl; }
#else
if (m_live) { std::cout << std::endl; }
#endif
return *this;
}
};
const fake_ostream live_out(true), dead_out(false);
//title/section label
void title (std::string name);
//indentation stuff
const int length = 64;
const int stride = 2;
const char* const spaces = " " + length;
extern int indentLevel;
inline void indent ();
inline void outdent ();
inline const char* indentation () { return spaces - indentLevel * stride; }
class IndentBlock
{
public:
IndentBlock () { indent (); }
~IndentBlock () { outdent (); }
};
//log channels
enum LogLevel {ERROR, WARNING, INFO, DEBUG, DEBUG1};
const std::string levelNames[5] =
{
"ERROR",
"warning",
"info",
"debug",
"debug1"
};
class Logger
{
private:
const std::string m_name;
const LogLevel m_level;
public:
Logger (std::string name, LogLevel level = INFO)
: m_name(name), m_level(level) {}
const fake_ostream& active_log (LogLevel level) const;
//heading
void static heading (char* label);
//log
const fake_ostream& log (LogLevel level) const
{ return (level <= m_level) ? active_log(level) : dead_out; }
const fake_ostream& error () const { return log(ERROR); }
const fake_ostream& warning () const { return log(WARNING); }
const fake_ostream& info () const { return log(INFO); }
const fake_ostream& debug () const { return log(DEBUG); }
const fake_ostream& debug1 () const { return log(DEBUG1); }
//indent
void indent_ (LogLevel level) const { if (level <= m_level) indent(); }
void indent_info () const { return indent_(INFO); }
void indent_debug () const { return indent_(DEBUG); }
void indent_debug1 () const { return indent_(DEBUG1); }
//outdent
void outdent_ (LogLevel level) const { if (level <= m_level) outdent(); }
void outdent_info () const { return outdent_(INFO); }
void outdent_debug () const { return outdent_(DEBUG); }
void outdent_debug1 () const { return outdent_(DEBUG1); }
};
const Logger logger ("general", INFO);
inline void indent ()
{
++indentLevel;
Assert1(indentLevel*stride < length, "indent level overflow");
}
inline void outdent ()
{
--indentLevel;
Assert1(indentLevel >= 0, "indent level underflow");
}
}
//[ memory stuff ]------------------------------------------
inline void mem_err(void)
{
Logging::logger.error() << "\nerror: out of memory";
}
//[ time measurement ]----------------------------------
long time_seed ();
float elapsed_time ();
float time_difference ();
#endif