ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/util.h
(Generate patch)

Comparing deliantra/server/include/util.h (file contents):
Revision 1.22 by root, Sat Dec 23 06:21:02 2006 UTC vs.
Revision 1.36 by root, Thu Jan 25 03:54:45 2007 UTC

1#ifndef UTIL_H__ 1#ifndef UTIL_H__
2#define UTIL_H__ 2#define UTIL_H__
3
4//#define PREFER_MALLOC
3 5
4#if __GNUC__ >= 3 6#if __GNUC__ >= 3
5# define is_constant(c) __builtin_constant_p (c) 7# define is_constant(c) __builtin_constant_p (c)
6#else 8#else
7# define is_constant(c) 0 9# define is_constant(c) 0
8#endif 10#endif
9 11
10#include <cstddef> 12#include <cstddef>
13#include <cmath>
14#include <new>
15#include <vector>
11 16
12#include <glib.h> 17#include <glib.h>
18
19#include <shstr.h>
20#include <traits.h>
13 21
14// use a gcc extension for auto declarations until ISO C++ sanctifies them 22// use a gcc extension for auto declarations until ISO C++ sanctifies them
15#define AUTODECL(var,expr) typeof(expr) var = (expr) 23#define AUTODECL(var,expr) typeof(expr) var = (expr)
24
25// very ugly macro that basicaly declares and initialises a variable
26// that is in scope for the next statement only
27// works only for stuff that can be assigned 0 and converts to false
28// (note: works great for pointers)
29// most ugly macro I ever wrote
30#define declvar(type, name, value) if (type name = 0) { } else if (((name) = (value)), 1)
31
32// in range including end
33#define IN_RANGE_INC(val,beg,end) \
34 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg))
35
36// in range excluding end
37#define IN_RANGE_EXC(val,beg,end) \
38 ((unsigned int)(val) - (unsigned int)(beg) < (unsigned int)(end) - (unsigned int)(beg))
39
40void fork_abort (const char *msg);
41
42// rationale for using (U) not (T) is to reduce signed/unsigned issues,
43// as a is often a constant while b is the variable. it is still a bug, though.
44template<typename T, typename U> static inline T min (T a, U b) { return (U)a < b ? (U)a : b; }
45template<typename T, typename U> static inline T max (T a, U b) { return (U)a > b ? (U)a : b; }
46template<typename T, typename U, typename V> static inline T clamp (T v, U a, V b) { return v < (T)a ? (T)a : v >(T)b ? (T)b : v; }
47
48template<typename T, typename U> static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; }
49
50// this is much faster than crossfires original algorithm
51// on modern cpus
52inline int
53isqrt (int n)
54{
55 return (int)sqrtf ((float)n);
56}
57
58// this is only twice as fast as naive sqrtf (dx*dy+dy*dy)
59#if 0
60// and has a max. error of 6 in the range -100..+100.
61#else
62// and has a max. error of 9 in the range -100..+100.
63#endif
64inline int
65idistance (int dx, int dy)
66{
67 unsigned int dx_ = abs (dx);
68 unsigned int dy_ = abs (dy);
69
70#if 0
71 return dx_ > dy_
72 ? (dx_ * 61685 + dy_ * 26870) >> 16
73 : (dy_ * 61685 + dx_ * 26870) >> 16;
74#else
75 return dx_ + dy_ - min (dx_, dy_) * 5 / 8;
76#endif
77}
78
79/*
80 * absdir(int): Returns a number between 1 and 8, which represent
81 * the "absolute" direction of a number (it actually takes care of
82 * "overflow" in previous calculations of a direction).
83 */
84inline int
85absdir (int d)
86{
87 return ((d - 1) & 7) + 1;
88}
16 89
17// makes dynamically allocated objects zero-initialised 90// makes dynamically allocated objects zero-initialised
18struct zero_initialised 91struct zero_initialised
19{ 92{
20 void *operator new (size_t s, void *p) 93 void *operator new (size_t s, void *p)
62 135
63// for symmetry 136// for symmetry
64template<typename T> 137template<typename T>
65inline void sfree (T *ptr, int n = 1) throw () 138inline void sfree (T *ptr, int n = 1) throw ()
66{ 139{
140#ifdef PREFER_MALLOC
141 free (ptr);
142#else
67 g_slice_free1 (n * sizeof (T), (void *)ptr); 143 g_slice_free1 (n * sizeof (T), (void *)ptr);
144#endif
68} 145}
69 146
70// a STL-compatible allocator that uses g_slice 147// a STL-compatible allocator that uses g_slice
71// boy, this is verbose 148// boy, this is verbose
72template<typename Tp> 149template<typename Tp>
120 { 197 {
121 p->~Tp (); 198 p->~Tp ();
122 } 199 }
123}; 200};
124 201
125struct refcounted 202// P. L'Ecuyer, “Maximally Equidistributed Combined Tausworthe Generators”, Mathematics of Computation, 65, 213 (1996), 203–213.
203// http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme.ps
204// http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme2.ps
205struct tausworthe_random_generator
126{ 206{
127 refcounted () : refcnt (0) { } 207 // generator
128// virtual ~refcounted (); 208 uint32_t state [4];
129 void refcnt_inc () { ++refcnt; } 209
130 void refcnt_dec () { --refcnt; } 210 void operator =(const tausworthe_random_generator &src)
131 bool dead () { return refcnt == 0; } 211 {
132 mutable int refcnt; 212 state [0] = src.state [0];
133#if 0 213 state [1] = src.state [1];
134private: 214 state [2] = src.state [2];
135 static refcounted *rc_first; 215 state [3] = src.state [3];
136 refcounted *rc_next; 216 }
137#endif 217
218 void seed (uint32_t seed);
219 uint32_t next ();
220
221 // uniform distribution
222 uint32_t operator ()(uint32_t r_max)
223 {
224 return is_constant (r_max)
225 ? this->next () % r_max
226 : get_range (r_max);
227 }
228
229 // return a number within (min .. max)
230 int operator () (int r_min, int r_max)
231 {
232 return is_constant (r_min) && is_constant (r_max)
233 ? r_min + (*this) (max (r_max - r_min + 1, 1))
234 : get_range (r_min, r_max);
235 }
236
237 double operator ()()
238 {
239 return this->next () / (double)0xFFFFFFFFU;
240 }
241
242protected:
243 uint32_t get_range (uint32_t r_max);
244 int get_range (int r_min, int r_max);
138}; 245};
246
247typedef tausworthe_random_generator rand_gen;
248
249extern rand_gen rndm;
139 250
140template<class T> 251template<class T>
141struct refptr 252struct refptr
142{ 253{
143 T *p; 254 T *p;
166 T *operator ->() const { return p; } 277 T *operator ->() const { return p; }
167 278
168 operator T *() const { return p; } 279 operator T *() const { return p; }
169}; 280};
170 281
171typedef refptr<player> player_ptr; 282typedef refptr<maptile> maptile_ptr;
172typedef refptr<object> object_ptr; 283typedef refptr<object> object_ptr;
173typedef refptr<archetype> arch_ptr; 284typedef refptr<archetype> arch_ptr;
285typedef refptr<client> client_ptr;
286typedef refptr<player> player_ptr;
174 287
175struct str_hash 288struct str_hash
176{ 289{
177 std::size_t operator ()(const char *s) const 290 std::size_t operator ()(const char *s) const
178 { 291 {
204 { 317 {
205 return !strcmp (a, b); 318 return !strcmp (a, b);
206 } 319 }
207}; 320};
208 321
209#include <vector>
210
211template<class obj> 322template<class T>
212struct unordered_vector : std::vector<obj, slice_allocator<obj> > 323struct unordered_vector : std::vector<T, slice_allocator<T> >
213{ 324{
214 typedef typename unordered_vector::iterator iterator; 325 typedef typename unordered_vector::iterator iterator;
215 326
216 void erase (unsigned int pos) 327 void erase (unsigned int pos)
217 { 328 {
225 { 336 {
226 erase ((unsigned int )(i - this->begin ())); 337 erase ((unsigned int )(i - this->begin ()));
227 } 338 }
228}; 339};
229 340
230template<typename T, typename U> static inline T min (T a, U b) { return a < (T)b ? a : (T)b; } 341template<class T, int T::* index>
231template<typename T, typename U> static inline T max (T a, U b) { return a > (T)b ? a : (T)b; } 342struct object_vector : std::vector<T *, slice_allocator<T *> >
232template<typename T, typename U, typename V> static inline T clamp (T v, U a, V b) { return v < (T)a ? a : v >(T)b ? b : v; } 343{
344 void insert (T *obj)
345 {
346 assert (!(obj->*index));
347 push_back (obj);
348 obj->*index = this->size ();
349 }
233 350
234template<typename T, typename U> static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; } 351 void insert (T &obj)
352 {
353 insert (&obj);
354 }
355
356 void erase (T *obj)
357 {
358 assert (obj->*index);
359 int pos = obj->*index;
360 obj->*index = 0;
361
362 if (pos < this->size ())
363 {
364 (*this)[pos - 1] = (*this)[this->size () - 1];
365 (*this)[pos - 1]->*index = pos;
366 }
367
368 this->pop_back ();
369 }
370
371 void erase (T &obj)
372 {
373 errase (&obj);
374 }
375};
235 376
236// basically does what strncpy should do, but appends "..." to strings exceeding length 377// basically does what strncpy should do, but appends "..." to strings exceeding length
237void assign (char *dst, const char *src, int maxlen); 378void assign (char *dst, const char *src, int maxlen);
238 379
239// type-safe version of assign 380// type-safe version of assign
246typedef double tstamp; 387typedef double tstamp;
247 388
248// return current time as timestampe 389// return current time as timestampe
249tstamp now (); 390tstamp now ();
250 391
251#endif 392int similar_direction (int a, int b);
252 393
394#endif
395

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines