]> Dogcows Code - chaz/rasterize/blob - common.h
add opengl support
[chaz/rasterize] / common.h
1
2 /*
3 * CS5600 University of Utah
4 * Charles McGarvey
5 * mcgarvey@eng.utah.edu
6 */
7
8 #ifndef _COMMON_H_
9 #define _COMMON_H_
10
11 #include <math.h>
12 #include <stdbool.h>
13 #include <stdint.h>
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <string.h>
17
18 #include "config.h"
19
20
21 /*
22 * Define a keyword for use while defining small and fast functions.
23 */
24 #if EXTRA_INLINE
25 #define INLINE_MAYBE static inline
26 #else
27 #define INLINE_MAYBE static
28 #endif
29
30
31 /*
32 * Define a type for scalar values, either float or double.
33 */
34 #if DOUBLE_FLOAT
35 typedef double scal_t;
36 #define SCALAR_SIZE 8
37 #define S(K) K
38 #define scal_floor floor
39 #define scal_ceil ceil
40 #define scal_min fmin
41 #define scal_max fmax
42 #define scal_abs fabs
43 #define scal_pow pow
44 #define scal_sqrt sqrt
45 #define scal_sin sin
46 #define scal_cos cos
47 #define scal_tan tan
48 #define scal_asin asin
49 #define scal_acos acos
50 #define scal_atan atan
51 #else
52 typedef float scal_t;
53 #define SCALAR_SIZE 4
54 #define S(K) K##f
55 #define scal_floor floorf
56 #define scal_ceil ceilf
57 #define scal_min fminf
58 #define scal_max fmaxf
59 #define scal_abs fabsf
60 #define scal_pow powf
61 #define scal_sqrt sqrtf
62 #define scal_sin sinf
63 #define scal_cos cosf
64 #define scal_tan tanf
65 #define scal_asin asinf
66 #define scal_acos acosf
67 #define scal_atan atanf
68 #endif
69
70 #define scal_min2(A,B,C) scal_min(scal_min(A,B),C)
71 #define scal_max2(A,B,C) scal_max(scal_max(A,B),C)
72
73 #define SCAL_EPSILON (S(0.000001))
74
75 /*
76 * Check if two scalars are mostly equal, given a margin of error.
77 */
78 INLINE_MAYBE
79 bool scal_isequal2(scal_t a, scal_t b, scal_t e)
80 {
81 return scal_abs(a -b) < e;
82 }
83
84 /*
85 * Check if two scalars are mostly equal.
86 */
87 INLINE_MAYBE
88 bool scal_isequal(scal_t a, scal_t b)
89 {
90 return scal_isequal2(a, b, SCAL_EPSILON);
91 }
92
93 /*
94 * Clamp a scalar between two values.
95 */
96 INLINE_MAYBE
97 scal_t scal_clamp(scal_t s, scal_t min, scal_t max)
98 {
99 if (s < min) {
100 return min;
101 }
102 if (max < s) {
103 return max;
104 }
105 return s;
106 }
107
108
109 /*
110 * Define min and max functions for integers.
111 */
112 INLINE_MAYBE
113 int imin(int a, int b)
114 {
115 return a < b ? a : b;
116 }
117 INLINE_MAYBE
118 int imax(int a, int b)
119 {
120 return a < b ? b : a;
121 }
122
123 /*
124 * Define generic MIN and MAX macros.
125 */
126 #ifndef MIN
127 #define MIN(A,B) (((A) < (B)) ? (A) : (B))
128 #endif
129 #ifndef MAX
130 #define MAX(A,B) (((A) > (B)) ? (A) : (B))
131 #endif
132
133
134 /*
135 * Try to execute a statement and print a status message. If the statement
136 * resolves to 0, it is considered to have succeeded; any other evaluation is
137 * an error condition and an abort(3) occurs.
138 * return.
139 */
140 #if VERBOSITY >= 1
141 #define TRY_DO(L, K, ARGS...) \
142 printf("* " L "... ", ##ARGS); \
143 fflush(stdout); \
144 if ((K) == 0) printf("done!\n"); \
145 else abort()
146 #else
147 #define TRY_DO(L, K, ARGS...) \
148 if ((K) != 0) abort()
149 #endif
150
151
152 /*
153 * Declare a type of destructor functions.
154 */
155 typedef void (*dtor_t)(void*);
156 #define DTOR(A) (dtor_t)(A)
157
158
159 /*
160 * Allocate a block of memory of a certain size. This follows the semantics
161 * of malloc(3), except it will never return NULL and will abort(3) if the
162 * memory could not be allocated.
163 */
164 void* mem_alloc(size_t size);
165
166 /*
167 * Change the size of a block of memory. This follows the semantics of
168 * realloc(3), except it will never return NULL and will abort(3) if the
169 * memory could not be allocated.
170 */
171 void* mem_realloc(void* mem, size_t size);
172
173 /*
174 * Deallocate a block of memory previously allocated by mem_alloc or malloc(3)
175 * and friends. This is essentially just a call to free(3).
176 */
177 void mem_free(void* mem);
178
179 /*
180 * Set a function to call if either mem_alloc or mem_realloc fails, or NULL if
181 * no callback should be called. The callback takes the same arguments as
182 * realloc(3) and may try to fulfill the request. The return value of the
183 * callback function will be returned from the allocation function and must be
184 * a valid pointer to an allocated block of memory. The callback function
185 * should not call mem_alloc or mem_realloc and must not return if a block of
186 * memory could not be allocated.
187 */
188 void mem_set_fn(void* (*fn)(void*, size_t));
189
190 /*
191 * Get the number of blocks currently allocated with either mem_alloc or
192 * mem_realloc. This number should be zero at the end of a process running
193 * this program.
194 */
195 int mem_blocks();
196
197
198 /*
199 * Duplicate a string; like the non-standard strdup(3) but uses mem_alloc.
200 * The result needs to be freed with mem_free.
201 */
202 INLINE_MAYBE
203 char* mem_strdup(const char* str)
204 {
205 size_t size = strlen(str) + 1;
206 return (char*)memcpy(mem_alloc(size), str, size);
207 }
208
209 /*
210 * Get an allocated string made up of two strings concatenated together.
211 * The result needs to be freed with mem_free.
212 */
213 INLINE_MAYBE
214 char* mem_strcat(const char* str1, const char* str2)
215 {
216 size_t size1 = strlen(str1);
217 size_t size2 = strlen(str2);
218 char* str = (char*)mem_alloc(size1 + size2 + 1);
219 memcpy(str + size1, str2, size2 + 1);
220 return memcpy(str, str1, size1);
221 }
222
223
224 /*
225 * Cut a string short at the last matching character. The string will be
226 * modified if the character was matched. Either way, str is returned.
227 */
228 INLINE_MAYBE
229 char* strcut(char* str, int c)
230 {
231 char* ptr = strrchr(str, c);
232 if (ptr != NULL) {
233 *ptr = '\0';
234 }
235 return str;
236 }
237
238 /*
239 * Trim white space off of the right side of a string.
240 */
241 void rtrim(char *str);
242
243 /*
244 * Trim white space off of the left side of a string.
245 */
246 void ltrim(char *str);
247
248 /*
249 * Trim white space off of both sides of a string.
250 */
251 INLINE_MAYBE
252 char* trim(char *str)
253 {
254 rtrim(str);
255 ltrim(str);
256 return str;
257 }
258
259
260 /*
261 * Initialize the timer.
262 */
263 void timer_start();
264
265 /*
266 * Stop the timer and return how many microseconds passed after
267 * initialization.
268 */
269 long timer_stop();
270
271
272 #endif // _COMMON_H_
273
This page took 0.041529 seconds and 4 git commands to generate.