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.17 by root, Sat Dec 16 03:08:26 2006 UTC vs.
Revision 1.32 by root, Thu Jan 18 19:32:37 2007 UTC

6#else 6#else
7# define is_constant(c) 0 7# define is_constant(c) 0
8#endif 8#endif
9 9
10#include <cstddef> 10#include <cstddef>
11#include <cmath>
12#include <new>
13#include <vector>
11 14
12#include <glib.h> 15#include <glib.h>
16
17#include <shstr.h>
18#include <traits.h>
13 19
14// use a gcc extension for auto declarations until ISO C++ sanctifies them 20// use a gcc extension for auto declarations until ISO C++ sanctifies them
15#define AUTODECL(var,expr) typeof(expr) var = (expr) 21#define AUTODECL(var,expr) typeof(expr) var = (expr)
16 22
23// very ugly macro that basicaly declares and initialises a variable
24// that is in scope for the next statement only
25// works only for stuff that can be assigned 0 and converts to false
26// (note: works great for pointers)
27// most ugly macro I ever wrote
28#define declvar(type, name, value) if (type name = 0) { } else if (((name) = (value)), 1)
29
30// in range including end
31#define IN_RANGE_INC(val,beg,end) \
32 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg))
33
34// in range excluding end
35#define IN_RANGE_EXC(val,beg,end) \
36 ((unsigned int)(val) - (unsigned int)(beg) < (unsigned int)(end) - (unsigned int)(beg))
37
38void fork_abort (const char *msg);
39
40template<typename T, typename U> static inline T min (T a, U b) { return a < (T)b ? a : (T)b; }
41template<typename T, typename U> static inline T max (T a, U b) { return a > (T)b ? a : (T)b; }
42template<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; }
43
44template<typename T, typename U> static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; }
45
46// this is much faster than crossfires original algorithm
47// on modern cpus
48inline int
49isqrt (int n)
50{
51 return (int)sqrtf ((float)n);
52}
53
54// this is only twice as fast as naive sqrtf (dx*dy+dy*dy)
55#if 0
56// and has a max. error of 6 in the range -100..+100.
57#else
58// and has a max. error of 9 in the range -100..+100.
59#endif
60inline int
61idistance (int dx, int dy)
62{
63 unsigned int dx_ = abs (dx);
64 unsigned int dy_ = abs (dy);
65
66#if 0
67 return dx_ > dy_
68 ? (dx_ * 61685 + dy_ * 26870) >> 16
69 : (dy_ * 61685 + dx_ * 26870) >> 16;
70#else
71 return dx_ + dy_ - min (dx_, dy_) * 5 / 8;
72#endif
73}
74
75/*
76 * absdir(int): Returns a number between 1 and 8, which represent
77 * the "absolute" direction of a number (it actually takes care of
78 * "overflow" in previous calculations of a direction).
79 */
80inline int
81absdir (int d)
82{
83 return ((d - 1) & 7) + 1;
84}
85
17// makes dynamically allocated objects zero-initialised 86// makes dynamically allocated objects zero-initialised
18struct zero_initialised 87struct zero_initialised
19{ 88{
20 void *operator new (size_t s, void *p) 89 void *operator new (size_t s, void *p)
21 { 90 {
42 { 111 {
43 g_slice_free1 (s, p); 112 g_slice_free1 (s, p);
44 } 113 }
45}; 114};
46 115
116void *salloc_ (int n) throw (std::bad_alloc);
117void *salloc_ (int n, void *src) throw (std::bad_alloc);
118
47// strictly the same as g_slice_alloc, but never returns 0 119// strictly the same as g_slice_alloc, but never returns 0
48void *salloc (int size) throw (std::bad_alloc); 120template<typename T>
121inline T *salloc (int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T)); }
122
49// also copies src into the new area, like "memdup" 123// also copies src into the new area, like "memdup"
50void *salloc (int size, void *src) throw (std::bad_alloc); 124// if src is 0, clears the memory
125template<typename T>
126inline T *salloc (int n, T *src) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), (void *)src); }
127
128// clears the memory
129template<typename T>
130inline T *salloc0(int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), 0); }
131
51// for symmetry 132// for symmetry
133template<typename T>
52inline void sfree (void *ptr, int size) throw () 134inline void sfree (T *ptr, int n = 1) throw ()
53{ 135{
54 g_slice_free1 (size, ptr); 136 g_slice_free1 (n * sizeof (T), (void *)ptr);
55} 137}
56 138
57// a STL-compatible allocator that uses g_slice 139// a STL-compatible allocator that uses g_slice
58// boy, this is verbose 140// boy, this is verbose
59template<typename Tp> 141template<typename Tp>
83 pointer address (reference x) const { return &x; } 165 pointer address (reference x) const { return &x; }
84 const_pointer address (const_reference x) const { return &x; } 166 const_pointer address (const_reference x) const { return &x; }
85 167
86 pointer allocate (size_type n, const_pointer = 0) 168 pointer allocate (size_type n, const_pointer = 0)
87 { 169 {
88 return static_cast<pointer>(salloc (n * sizeof (Tp))); 170 return salloc<Tp> (n);
89 } 171 }
90 172
91 void deallocate (pointer p, size_type n) 173 void deallocate (pointer p, size_type n)
92 { 174 {
93 sfree (static_cast<void *>(p), n * sizeof (Tp)); 175 sfree<Tp> (p, n);
94 } 176 }
95 177
96 size_type max_size ()const throw () 178 size_type max_size ()const throw ()
97 { 179 {
98 return size_t (-1) / sizeof (Tp); 180 return size_t (-1) / sizeof (Tp);
107 { 189 {
108 p->~Tp (); 190 p->~Tp ();
109 } 191 }
110}; 192};
111 193
112struct refcounted 194// P. L'Ecuyer, “Maximally Equidistributed Combined Tausworthe Generators”, Mathematics of Computation, 65, 213 (1996), 203–213.
195// http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme.ps
196// http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme2.ps
197struct tausworthe_random_generator
113{ 198{
114 refcounted () : refcnt (0) { } 199 uint32_t state [4];
115// virtual ~refcounted (); 200
116 void refcnt_inc () { ++refcnt; } 201 tausworthe_random_generator (uint32_t seed);
117 void refcnt_dec () { --refcnt; } 202 uint32_t next ();
118 bool dead () { return refcnt == 0; } 203
119 mutable int refcnt; 204 uint32_t operator ()(uint32_t r_max)
120#if 0 205 {
121private: 206 return next () % r_max;
122 static refcounted *rc_first; 207 }
123 refcounted *rc_next; 208
124#endif 209 // return a number within (min .. max)
210 int operator () (int r_min, int r_max)
211 {
212 return r_min + next () % max (r_max - r_min + 1, 1);
213 }
214
215 double operator ()()
216 {
217 return next () / (double)0xFFFFFFFFU;
218 }
125}; 219};
220
221typedef tausworthe_random_generator rand_gen;
222
223extern rand_gen rndm;
126 224
127template<class T> 225template<class T>
128struct refptr 226struct refptr
129{ 227{
130 T *p; 228 T *p;
152 T &operator * () const { return *p; } 250 T &operator * () const { return *p; }
153 T *operator ->() const { return p; } 251 T *operator ->() const { return p; }
154 252
155 operator T *() const { return p; } 253 operator T *() const { return p; }
156}; 254};
255
256typedef refptr<maptile> maptile_ptr;
257typedef refptr<object> object_ptr;
258typedef refptr<archetype> arch_ptr;
259typedef refptr<client> client_ptr;
260typedef refptr<player> player_ptr;
157 261
158struct str_hash 262struct str_hash
159{ 263{
160 std::size_t operator ()(const char *s) const 264 std::size_t operator ()(const char *s) const
161 { 265 {
187 { 291 {
188 return !strcmp (a, b); 292 return !strcmp (a, b);
189 } 293 }
190}; 294};
191 295
192#include <vector>
193
194template<class obj> 296template<class T>
195struct unordered_vector : std::vector<obj, slice_allocator<obj> > 297struct unordered_vector : std::vector<T, slice_allocator<T> >
196{ 298{
197 typedef typename unordered_vector::iterator iterator; 299 typedef typename unordered_vector::iterator iterator;
198 300
199 void erase (unsigned int pos) 301 void erase (unsigned int pos)
200 { 302 {
208 { 310 {
209 erase ((unsigned int )(i - this->begin ())); 311 erase ((unsigned int )(i - this->begin ()));
210 } 312 }
211}; 313};
212 314
213template<typename T, typename U> static inline T min (T a, U b) { return a < (T)b ? a : (T)b; } 315template<class T, int T::* index>
214template<typename T, typename U> static inline T max (T a, U b) { return a > (T)b ? a : (T)b; } 316struct object_vector : std::vector<T *, slice_allocator<T *> >
215template<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; } 317{
318 void insert (T *obj)
319 {
320 assert (!(obj->*index));
321 push_back (obj);
322 obj->*index = this->size ();
323 }
216 324
217template<typename T, typename U> static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; } 325 void insert (T &obj)
326 {
327 insert (&obj);
328 }
329
330 void erase (T *obj)
331 {
332 assert (obj->*index);
333 int pos = obj->*index;
334 obj->*index = 0;
335
336 if (pos < this->size ())
337 {
338 (*this)[pos - 1] = (*this)[this->size () - 1];
339 (*this)[pos - 1]->*index = pos;
340 }
341
342 this->pop_back ();
343 }
344
345 void erase (T &obj)
346 {
347 errase (&obj);
348 }
349};
218 350
219// basically does what strncpy should do, but appends "..." to strings exceeding length 351// basically does what strncpy should do, but appends "..." to strings exceeding length
220void assign (char *dst, const char *src, int maxlen); 352void assign (char *dst, const char *src, int maxlen);
221 353
222// type-safe version of assign 354// type-safe version of assign
229typedef double tstamp; 361typedef double tstamp;
230 362
231// return current time as timestampe 363// return current time as timestampe
232tstamp now (); 364tstamp now ();
233 365
366int similar_direction (int a, int b);
367
234#endif 368#endif
235 369

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines