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.14 by root, Thu Sep 14 18:13:02 2006 UTC vs.
Revision 1.49 by root, Mon Jun 4 13:04:00 2007 UTC

1/*
2 * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game.
3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 *
6 * Crossfire TRT is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51
18 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * The authors can be reached via e-mail to <crossfire@schmorp.de>
21 */
22
1#ifndef UTIL_H__ 23#ifndef UTIL_H__
2#define UTIL_H__ 24#define UTIL_H__
3 25
26//#define PREFER_MALLOC
27
4#if __GNUC__ >= 3 28#if __GNUC__ >= 3
5# define is_constant(c) __builtin_constant_p (c) 29# define is_constant(c) __builtin_constant_p (c)
30# define expect(expr,value) __builtin_expect ((expr),(value))
31# define prefetch(addr,rw,locality) __builtin_prefetch (addr, rw, locality)
6#else 32#else
7# define is_constant(c) 0 33# define is_constant(c) 0
34# define expect(expr,value) (expr)
35# define prefetch(addr,rw,locality)
8#endif 36#endif
9 37
38#if __GNUC__ < 4 || (__GNUC__ == 4 || __GNUC_MINOR__ < 4)
39# define decltype(x) typeof(x)
40#endif
41
42// put into ifs if you are very sure that the expression
43// is mostly true or mosty false. note that these return
44// booleans, not the expression.
45#define expect_false(expr) expect ((expr) != 0, 0)
46#define expect_true(expr) expect ((expr) != 0, 1)
47
10#include <cstddef> 48#include <cstddef>
49#include <cmath>
50#include <new>
51#include <vector>
11 52
12#include <glib.h> 53#include <glib.h>
13 54
55#include <shstr.h>
56#include <traits.h>
57
14// use a gcc extension for auto declarations until ISO C++ sanctifies them 58// use C0X decltype for auto declarations until ISO C++ sanctifies them (if ever)
15#define AUTODECL(var,expr) typeof(expr) var = (expr) 59#define auto(var,expr) decltype(expr) var = (expr)
60
61// very ugly macro that basicaly declares and initialises a variable
62// that is in scope for the next statement only
63// works only for stuff that can be assigned 0 and converts to false
64// (note: works great for pointers)
65// most ugly macro I ever wrote
66#define statementvar(type, name, value) if (type name = 0) { } else if (((name) = (value)), 1)
67
68// in range including end
69#define IN_RANGE_INC(val,beg,end) \
70 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg))
71
72// in range excluding end
73#define IN_RANGE_EXC(val,beg,end) \
74 ((unsigned int)(val) - (unsigned int)(beg) < (unsigned int)(end) - (unsigned int)(beg))
75
76void fork_abort (const char *msg);
77
78// rationale for using (U) not (T) is to reduce signed/unsigned issues,
79// as a is often a constant while b is the variable. it is still a bug, though.
80template<typename T, typename U> static inline T min (T a, U b) { return (U)a < b ? (U)a : b; }
81template<typename T, typename U> static inline T max (T a, U b) { return (U)a > b ? (U)a : b; }
82template<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; }
83
84template<typename T, typename U> static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; }
85
86template<typename T>
87static inline T
88lerp (T val, T min_in, T max_in, T min_out, T max_out)
89{
90 return (val - min_in) * (max_out - min_out) / (max_in - min_in) + min_out;
91}
92
93// lots of stuff taken from FXT
94
95/* Rotate right. This is used in various places for checksumming */
96//TODO: that sucks, use a better checksum algo
97static inline uint32_t
98rotate_right (uint32_t c, uint32_t count = 1)
99{
100 return (c << (32 - count)) | (c >> count);
101}
102
103static inline uint32_t
104rotate_left (uint32_t c, uint32_t count = 1)
105{
106 return (c >> (32 - count)) | (c << count);
107}
108
109// Return abs(a-b)
110// Both a and b must not have the most significant bit set
111static inline uint32_t
112upos_abs_diff (uint32_t a, uint32_t b)
113{
114 long d1 = b - a;
115 long d2 = (d1 & (d1 >> 31)) << 1;
116
117 return d1 - d2; // == (b - d) - (a + d);
118}
119
120// Both a and b must not have the most significant bit set
121static inline uint32_t
122upos_min (uint32_t a, uint32_t b)
123{
124 int32_t d = b - a;
125 d &= d >> 31;
126 return a + d;
127}
128
129// Both a and b must not have the most significant bit set
130static inline uint32_t
131upos_max (uint32_t a, uint32_t b)
132{
133 int32_t d = b - a;
134 d &= d >> 31;
135 return b - d;
136}
137
138// this is much faster than crossfires original algorithm
139// on modern cpus
140inline int
141isqrt (int n)
142{
143 return (int)sqrtf ((float)n);
144}
145
146// this is only twice as fast as naive sqrtf (dx*dy+dy*dy)
147#if 0
148// and has a max. error of 6 in the range -100..+100.
149#else
150// and has a max. error of 9 in the range -100..+100.
151#endif
152inline int
153idistance (int dx, int dy)
154{
155 unsigned int dx_ = abs (dx);
156 unsigned int dy_ = abs (dy);
157
158#if 0
159 return dx_ > dy_
160 ? (dx_ * 61685 + dy_ * 26870) >> 16
161 : (dy_ * 61685 + dx_ * 26870) >> 16;
162#else
163 return dx_ + dy_ - min (dx_, dy_) * 5 / 8;
164#endif
165}
166
167/*
168 * absdir(int): Returns a number between 1 and 8, which represent
169 * the "absolute" direction of a number (it actually takes care of
170 * "overflow" in previous calculations of a direction).
171 */
172inline int
173absdir (int d)
174{
175 return ((d - 1) & 7) + 1;
176}
16 177
17// makes dynamically allocated objects zero-initialised 178// makes dynamically allocated objects zero-initialised
18struct zero_initialised 179struct zero_initialised
19{ 180{
20 void *operator new (size_t s, void *p) 181 void *operator new (size_t s, void *p)
42 { 203 {
43 g_slice_free1 (s, p); 204 g_slice_free1 (s, p);
44 } 205 }
45}; 206};
46 207
208void *salloc_ (int n) throw (std::bad_alloc);
209void *salloc_ (int n, void *src) throw (std::bad_alloc);
210
47// strictly the same as g_slice_alloc, but never returns 0 211// strictly the same as g_slice_alloc, but never returns 0
48void *alloc (int s) throw (std::bad_alloc); 212template<typename T>
213inline T *salloc (int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T)); }
214
215// also copies src into the new area, like "memdup"
216// if src is 0, clears the memory
217template<typename T>
218inline T *salloc (int n, T *src) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), (void *)src); }
219
220// clears the memory
221template<typename T>
222inline T *salloc0(int n = 1) throw (std::bad_alloc) { return (T *)salloc_ (n * sizeof (T), 0); }
223
49// for symmetry 224// for symmetry
50inline void dealloc (void *p, int s) throw () 225template<typename T>
226inline void sfree (T *ptr, int n = 1) throw ()
51{ 227{
52 g_slice_free1 (s, p); 228#ifdef PREFER_MALLOC
229 free (ptr);
230#else
231 g_slice_free1 (n * sizeof (T), (void *)ptr);
232#endif
53} 233}
54 234
55// a STL-compatible allocator that uses g_slice 235// a STL-compatible allocator that uses g_slice
56// boy, this is verbose 236// boy, this is verbose
57template<typename Tp> 237template<typename Tp>
81 pointer address (reference x) const { return &x; } 261 pointer address (reference x) const { return &x; }
82 const_pointer address (const_reference x) const { return &x; } 262 const_pointer address (const_reference x) const { return &x; }
83 263
84 pointer allocate (size_type n, const_pointer = 0) 264 pointer allocate (size_type n, const_pointer = 0)
85 { 265 {
86 return static_cast<pointer>(alloc (n * sizeof (Tp))); 266 return salloc<Tp> (n);
87 } 267 }
88 268
89 void deallocate (pointer p, size_type n) 269 void deallocate (pointer p, size_type n)
90 { 270 {
91 dealloc (static_cast<void *>(p), n * sizeof (Tp)); 271 sfree<Tp> (p, n);
92 } 272 }
93 273
94 size_type max_size ()const throw () 274 size_type max_size ()const throw ()
95 { 275 {
96 return size_t (-1) / sizeof (Tp); 276 return size_t (-1) / sizeof (Tp);
105 { 285 {
106 p->~Tp (); 286 p->~Tp ();
107 } 287 }
108}; 288};
109 289
110struct refcounted 290// P. L'Ecuyer, “Maximally Equidistributed Combined Tausworthe Generators”, Mathematics of Computation, 65, 213 (1996), 203–213.
291// http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme.ps
292// http://www.iro.umontreal.ca/~lecuyer/myftp/papers/tausme2.ps
293struct tausworthe_random_generator
111{ 294{
112 mutable int refcnt; 295 // generator
113 refcounted () : refcnt (0) { } 296 uint32_t state [4];
114 void refcnt_inc () { ++refcnt; } 297
115 void refcnt_dec () { --refcnt; 298 void operator =(const tausworthe_random_generator &src)
116 if (refcnt < 0)abort();}//D 299 {
300 state [0] = src.state [0];
301 state [1] = src.state [1];
302 state [2] = src.state [2];
303 state [3] = src.state [3];
304 }
305
306 void seed (uint32_t seed);
307 uint32_t next ();
308
309 // uniform distribution
310 uint32_t operator ()(uint32_t num)
311 {
312 return is_constant (num)
313 ? (next () * (uint64_t)num) >> 32U
314 : get_range (num);
315 }
316
317 // return a number within (min .. max)
318 int operator () (int r_min, int r_max)
319 {
320 return is_constant (r_min) && is_constant (r_max) && r_min <= r_max
321 ? r_min + operator ()(r_max - r_min + 1)
322 : get_range (r_min, r_max);
323 }
324
325 double operator ()()
326 {
327 return this->next () / (double)0xFFFFFFFFU;
328 }
329
330protected:
331 uint32_t get_range (uint32_t r_max);
332 int get_range (int r_min, int r_max);
117}; 333};
334
335typedef tausworthe_random_generator rand_gen;
336
337extern rand_gen rndm;
118 338
119template<class T> 339template<class T>
120struct refptr 340struct refptr
121{ 341{
122 T *p; 342 T *p;
144 T &operator * () const { return *p; } 364 T &operator * () const { return *p; }
145 T *operator ->() const { return p; } 365 T *operator ->() const { return p; }
146 366
147 operator T *() const { return p; } 367 operator T *() const { return p; }
148}; 368};
369
370typedef refptr<maptile> maptile_ptr;
371typedef refptr<object> object_ptr;
372typedef refptr<archetype> arch_ptr;
373typedef refptr<client> client_ptr;
374typedef refptr<player> player_ptr;
149 375
150struct str_hash 376struct str_hash
151{ 377{
152 std::size_t operator ()(const char *s) const 378 std::size_t operator ()(const char *s) const
153 { 379 {
179 { 405 {
180 return !strcmp (a, b); 406 return !strcmp (a, b);
181 } 407 }
182}; 408};
183 409
184#include <vector> 410// Mostly the same as std::vector, but insert/erase can reorder
185 411// the elements, making insret/remove O(1) instead of O(n).
412//
413// NOTE: only some forms of erase/insert are available
186template<class obj> 414template<class T>
187struct unordered_vector : std::vector<obj, slice_allocator<obj> > 415struct unordered_vector : std::vector<T, slice_allocator<T> >
188{ 416{
189 typedef typename unordered_vector::iterator iterator; 417 typedef typename unordered_vector::iterator iterator;
190 418
191 void erase (unsigned int pos) 419 void erase (unsigned int pos)
192 { 420 {
200 { 428 {
201 erase ((unsigned int )(i - this->begin ())); 429 erase ((unsigned int )(i - this->begin ()));
202 } 430 }
203}; 431};
204 432
205template<typename T, typename U> static inline T min (T a, U b) { return a < (T)b ? a : (T)b; } 433// This container blends advantages of linked lists
206template<typename T, typename U> static inline T max (T a, U b) { return a > (T)b ? a : (T)b; } 434// (efficiency) with vectors (random access) by
207template<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; } 435// by using an unordered vector and storing the vector
436// index inside the object.
437//
438// + memory-efficient on most 64 bit archs
439// + O(1) insert/remove
440// + free unique (but varying) id for inserted objects
441// + cache-friendly iteration
442// - only works for pointers to structs
443//
444// NOTE: only some forms of erase/insert are available
445template<class T, int T::* index>
446struct object_vector : std::vector<T *, slice_allocator<T *> >
447{
448 typedef typename object_vector::iterator iterator;
208 449
209template<typename T, typename U> static inline void swap (T& a, U& b) { T t=a; a=(T)b; b=(U)t; } 450 bool contains (const T *obj) const
451 {
452 return obj->*index;
453 }
454
455 iterator find (const T *obj)
456 {
457 return obj->*index
458 ? this->begin () + obj->*index - 1
459 : this->end ();
460 }
461
462 void insert (T *obj)
463 {
464 push_back (obj);
465 obj->*index = this->size ();
466 }
467
468 void insert (T &obj)
469 {
470 insert (&obj);
471 }
472
473 void erase (T *obj)
474 {
475 unsigned int pos = obj->*index;
476 obj->*index = 0;
477
478 if (pos < this->size ())
479 {
480 (*this)[pos - 1] = (*this)[this->size () - 1];
481 (*this)[pos - 1]->*index = pos;
482 }
483
484 this->pop_back ();
485 }
486
487 void erase (T &obj)
488 {
489 errase (&obj);
490 }
491};
210 492
211// basically does what strncpy should do, but appends "..." to strings exceeding length 493// basically does what strncpy should do, but appends "..." to strings exceeding length
212void assign (char *dst, const char *src, int maxlen); 494void assign (char *dst, const char *src, int maxlen);
213 495
214// type-safe version of assign 496// type-safe version of assign
216inline void assign (char (&dst)[N], const char *src) 498inline void assign (char (&dst)[N], const char *src)
217{ 499{
218 assign ((char *)&dst, src, N); 500 assign ((char *)&dst, src, N);
219} 501}
220 502
503typedef double tstamp;
504
505// return current time as timestampe
506tstamp now ();
507
508int similar_direction (int a, int b);
509
510// like printf, but returns a std::string
511const std::string format (const char *format, ...);
512
221#endif 513#endif
222 514

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines