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.100 by root, Thu Apr 22 13:01:58 2010 UTC vs.
Revision 1.109 by root, Tue Jun 29 16:52:53 2010 UTC

55#endif 55#endif
56 56
57// use C0X decltype for auto declarations until ISO C++ sanctifies them (if ever) 57// use C0X decltype for auto declarations until ISO C++ sanctifies them (if ever)
58#define auto(var,expr) decltype(expr) var = (expr) 58#define auto(var,expr) decltype(expr) var = (expr)
59 59
60#if cplusplus_does_not_suck
61// does not work for local types (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm)
62template<typename T, int N>
63static inline int array_length (const T (&arr)[N])
64{
65 return N;
66}
67#else
68#define array_length(name) (sizeof (name) / sizeof (name [0]))
69#endif
70
60// very ugly macro that basically declares and initialises a variable 71// very ugly macro that basically declares and initialises a variable
61// that is in scope for the next statement only 72// that is in scope for the next statement only
62// works only for stuff that can be assigned 0 and converts to false 73// works only for stuff that can be assigned 0 and converts to false
63// (note: works great for pointers) 74// (note: works great for pointers)
64// most ugly macro I ever wrote 75// most ugly macro I ever wrote
93// sign returns -1 or +1 104// sign returns -1 or +1
94template<typename T> 105template<typename T>
95static inline T sign (T v) { return v < 0 ? -1 : +1; } 106static inline T sign (T v) { return v < 0 ? -1 : +1; }
96// relies on 2c representation 107// relies on 2c representation
97template<> 108template<>
98inline sint8 sign (sint8 v) { return 1 - (sint8 (uint8 (v) >> 7) * 2); } 109inline sint8 sign (sint8 v) { return 1 - (sint8 (uint8 (v) >> 7) * 2); }
110template<>
111inline sint16 sign (sint16 v) { return 1 - (sint16 (uint16 (v) >> 15) * 2); }
112template<>
113inline sint32 sign (sint32 v) { return 1 - (sint32 (uint32 (v) >> 31) * 2); }
99 114
100// sign0 returns -1, 0 or +1 115// sign0 returns -1, 0 or +1
101template<typename T> 116template<typename T>
102static inline T sign0 (T v) { return v ? sign (v) : 0; } 117static inline T sign0 (T v) { return v ? sign (v) : 0; }
103 118
108// div, with correct rounding (< 0.5 downwards, >=0.5 upwards) 123// div, with correct rounding (< 0.5 downwards, >=0.5 upwards)
109template<typename T> static inline T div (T val, T div) 124template<typename T> static inline T div (T val, T div)
110{ 125{
111 return expect_false (val < 0) ? - ((-val + (div - 1) / 2) / div) : (val + div / 2) / div; 126 return expect_false (val < 0) ? - ((-val + (div - 1) / 2) / div) : (val + div / 2) / div;
112} 127}
128
129template<> inline float div (float val, float div) { return val / div; }
130template<> inline double div (double val, double div) { return val / div; }
131
113// div, round-up 132// div, round-up
114template<typename T> static inline T div_ru (T val, T div) 133template<typename T> static inline T div_ru (T val, T div)
115{ 134{
116 return expect_false (val < 0) ? - ((-val ) / div) : (val + div - 1) / div; 135 return expect_false (val < 0) ? - ((-val ) / div) : (val + div - 1) / div;
117} 136}
462}; 481};
463 482
464template<class generator> 483template<class generator>
465struct random_number_generator : generator 484struct random_number_generator : generator
466{ 485{
467 // uniform distribution, 0 .. max (0, num - 1) 486 // uniform distribution, [0 .. num - 1]
468 uint32_t operator ()(uint32_t num) 487 uint32_t operator ()(uint32_t num)
469 { 488 {
470 return !is_constant (num) ? get_range (num) // non-constant 489 return !is_constant (num) ? get_range (num) // non-constant
471 : num & (num - 1) ? (this->next () * (uint64_t)num) >> 32U // constant, non-power-of-two 490 : num & (num - 1) ? (this->next () * (uint64_t)num) >> 32U // constant, non-power-of-two
472 : this->next () & (num - 1); // constant, power-of-two 491 : this->next () & (num - 1); // constant, power-of-two
473 } 492 }
474 493
475 // return a number within the closed interval [min .. max] 494 // return a number within the closed interval [min .. max], max can be >, < or == min.
476 int operator () (int r_min, int r_max) 495 int operator () (int r_min, int r_max)
477 { 496 {
478 return is_constant (r_min) && is_constant (r_max) && r_min <= r_max 497 return is_constant (r_min <= r_max) && r_min <= r_max
479 ? r_min + operator ()(r_max - r_min + 1) 498 ? r_min + operator ()(r_max - r_min + 1)
480 : get_range (r_min, r_max); 499 : get_range (r_min, r_max);
481 } 500 }
482 501
483 // return a number within the closed interval [0..1] 502 // return a number within the half-open interval [0..1[
484 double operator ()() 503 double operator ()()
485 { 504 {
486 return this->next () / (double)0xFFFFFFFFU; 505 return this->next () / (double)0x100000000ULL;
487 } 506 }
488 507
489protected: 508protected:
490 uint32_t get_range (uint32_t r_max); 509 uint32_t get_range (uint32_t r_max);
491 int get_range (int r_min, int r_max); 510 int get_range (int r_min, int r_max);
563typedef refptr<maptile> maptile_ptr; 582typedef refptr<maptile> maptile_ptr;
564typedef refptr<object> object_ptr; 583typedef refptr<object> object_ptr;
565typedef refptr<archetype> arch_ptr; 584typedef refptr<archetype> arch_ptr;
566typedef refptr<client> client_ptr; 585typedef refptr<client> client_ptr;
567typedef refptr<player> player_ptr; 586typedef refptr<player> player_ptr;
587typedef refptr<region> region_ptr;
568 588
569#define STRHSH_NULL 2166136261 589#define STRHSH_NULL 2166136261
570 590
571static inline uint32_t 591static inline uint32_t
572strhsh (const char *s) 592strhsh (const char *s)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines