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.44 by root, Fri May 11 08:00:00 2007 UTC vs.
Revision 1.54 by root, Mon Aug 6 10:54:12 2007 UTC

1/*
2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
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
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * The authors can be reached via e-mail to <crossfire@schmorp.de>
20 */
21
1#ifndef UTIL_H__ 22#ifndef UTIL_H__
2#define UTIL_H__ 23#define UTIL_H__
3 24
4//#define PREFER_MALLOC 25//#define PREFER_MALLOC
5 26
6#if __GNUC__ >= 3 27#if __GNUC__ >= 3
7# define is_constant(c) __builtin_constant_p (c) 28# define is_constant(c) __builtin_constant_p (c)
29# define expect(expr,value) __builtin_expect ((expr),(value))
30# define prefetch(addr,rw,locality) __builtin_prefetch (addr, rw, locality)
8#else 31#else
9# define is_constant(c) 0 32# define is_constant(c) 0
33# define expect(expr,value) (expr)
34# define prefetch(addr,rw,locality)
10#endif 35#endif
36
37#if __GNUC__ < 4 || (__GNUC__ == 4 || __GNUC_MINOR__ < 4)
38# define decltype(x) typeof(x)
39#endif
40
41// put into ifs if you are very sure that the expression
42// is mostly true or mosty false. note that these return
43// booleans, not the expression.
44#define expect_false(expr) expect ((expr) != 0, 0)
45#define expect_true(expr) expect ((expr) != 0, 1)
11 46
12#include <cstddef> 47#include <cstddef>
13#include <cmath> 48#include <cmath>
14#include <new> 49#include <new>
15#include <vector> 50#include <vector>
17#include <glib.h> 52#include <glib.h>
18 53
19#include <shstr.h> 54#include <shstr.h>
20#include <traits.h> 55#include <traits.h>
21 56
22// use a gcc extension for auto declarations until ISO C++ sanctifies them 57// use C0X decltype for auto declarations until ISO C++ sanctifies them (if ever)
23#define auto(var,expr) typeof(expr) var = (expr) 58#define auto(var,expr) decltype(expr) var = (expr)
24 59
25// very ugly macro that basicaly declares and initialises a variable 60// very ugly macro that basicaly declares and initialises a variable
26// that is in scope for the next statement only 61// that is in scope for the next statement only
27// works only for stuff that can be assigned 0 and converts to false 62// works only for stuff that can be assigned 0 and converts to false
28// (note: works great for pointers) 63// (note: works great for pointers)
29// most ugly macro I ever wrote 64// most ugly macro I ever wrote
30#define declvar(type, name, value) if (type name = 0) { } else if (((name) = (value)), 1) 65#define statementvar(type, name, value) if (type name = 0) { } else if (((name) = (value)), 1)
31 66
32// in range including end 67// in range including end
33#define IN_RANGE_INC(val,beg,end) \ 68#define IN_RANGE_INC(val,beg,end) \
34 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg)) 69 ((unsigned int)(val) - (unsigned int)(beg) <= (unsigned int)(end) - (unsigned int)(beg))
35 70
298 333
299typedef tausworthe_random_generator rand_gen; 334typedef tausworthe_random_generator rand_gen;
300 335
301extern rand_gen rndm; 336extern rand_gen rndm;
302 337
338INTERFACE_CLASS (attachable)
339struct refcnt_base
340{
341 typedef int refcnt_t;
342 mutable refcnt_t ACC (RW, refcnt);
343
344 MTH void refcnt_inc () const { ++refcnt; }
345 MTH void refcnt_dec () const { --refcnt; }
346
347 refcnt_base () : refcnt (0) { }
348};
349
350extern refcnt_base::refcnt_t refcnt_dummy;
351
303template<class T> 352template<class T>
304struct refptr 353struct refptr
305{ 354{
355 // p if not null
356 refcnt_base::refcnt_t *refcnt_ref () { return p ? &p->refcnt : &refcnt_dummy; }
357
358 void refcnt_dec ()
359 {
360 if (!is_constant (p))
361 --*refcnt_ref ();
362 else if (p)
363 --p->refcnt;
364 }
365
366 void refcnt_inc ()
367 {
368 if (!is_constant (p))
369 ++*refcnt_ref ();
370 else if (p)
371 ++p->refcnt;
372 }
373
306 T *p; 374 T *p;
307 375
308 refptr () : p(0) { } 376 refptr () : p(0) { }
309 refptr (const refptr<T> &p) : p(p.p) { if (p) p->refcnt_inc (); } 377 refptr (const refptr<T> &p) : p(p.p) { refcnt_inc (); }
310 refptr (T *p) : p(p) { if (p) p->refcnt_inc (); } 378 refptr (T *p) : p(p) { refcnt_inc (); }
311 ~refptr () { if (p) p->refcnt_dec (); } 379 ~refptr () { refcnt_dec (); }
312 380
313 const refptr<T> &operator =(T *o) 381 const refptr<T> &operator =(T *o)
314 { 382 {
383 // if decrementing ever destroys we need to reverse the order here
315 if (p) p->refcnt_dec (); 384 refcnt_dec ();
316 p = o; 385 p = o;
317 if (p) p->refcnt_inc (); 386 refcnt_inc ();
318
319 return *this; 387 return *this;
320 } 388 }
321 389
322 const refptr<T> &operator =(const refptr<T> o) 390 const refptr<T> &operator =(const refptr<T> &o)
323 { 391 {
324 *this = o.p; 392 *this = o.p;
325 return *this; 393 return *this;
326 } 394 }
327 395
328 T &operator * () const { return *p; } 396 T &operator * () const { return *p; }
329 T *operator ->() const { return p; } 397 T *operator ->() const { return p; }
330 398
331 operator T *() const { return p; } 399 operator T *() const { return p; }
332}; 400};
333 401
334typedef refptr<maptile> maptile_ptr; 402typedef refptr<maptile> maptile_ptr;
369 { 437 {
370 return !strcmp (a, b); 438 return !strcmp (a, b);
371 } 439 }
372}; 440};
373 441
442// Mostly the same as std::vector, but insert/erase can reorder
443// the elements, making append(=insert)/remove O(1) instead of O(n).
444//
445// NOTE: only some forms of erase are available
374template<class T> 446template<class T>
375struct unordered_vector : std::vector<T, slice_allocator<T> > 447struct unordered_vector : std::vector<T, slice_allocator<T> >
376{ 448{
377 typedef typename unordered_vector::iterator iterator; 449 typedef typename unordered_vector::iterator iterator;
378 450
388 { 460 {
389 erase ((unsigned int )(i - this->begin ())); 461 erase ((unsigned int )(i - this->begin ()));
390 } 462 }
391}; 463};
392 464
393template<class T, int T::* index> 465// This container blends advantages of linked lists
466// (efficiency) with vectors (random access) by
467// by using an unordered vector and storing the vector
468// index inside the object.
469//
470// + memory-efficient on most 64 bit archs
471// + O(1) insert/remove
472// + free unique (but varying) id for inserted objects
473// + cache-friendly iteration
474// - only works for pointers to structs
475//
476// NOTE: only some forms of erase/insert are available
477typedef int object_vector_index;
478
479template<class T, object_vector_index T::*indexmember>
394struct object_vector : std::vector<T *, slice_allocator<T *> > 480struct object_vector : std::vector<T *, slice_allocator<T *> >
395{ 481{
482 typedef typename object_vector::iterator iterator;
483
484 bool contains (const T *obj) const
485 {
486 return obj->*indexmember;
487 }
488
489 iterator find (const T *obj)
490 {
491 return obj->*indexmember
492 ? this->begin () + obj->*indexmember - 1
493 : this->end ();
494 }
495
496 void push_back (T *obj)
497 {
498 std::vector<T *, slice_allocator<T *> >::push_back (obj);
499 obj->*indexmember = this->size ();
500 }
501
396 void insert (T *obj) 502 void insert (T *obj)
397 { 503 {
398 assert (!(obj->*index));
399 push_back (obj); 504 push_back (obj);
400 obj->*index = this->size ();
401 } 505 }
402 506
403 void insert (T &obj) 507 void insert (T &obj)
404 { 508 {
405 insert (&obj); 509 insert (&obj);
406 } 510 }
407 511
408 void erase (T *obj) 512 void erase (T *obj)
409 { 513 {
410 assert (obj->*index);
411 unsigned int pos = obj->*index; 514 unsigned int pos = obj->*indexmember;
412 obj->*index = 0; 515 obj->*indexmember = 0;
413 516
414 if (pos < this->size ()) 517 if (pos < this->size ())
415 { 518 {
416 (*this)[pos - 1] = (*this)[this->size () - 1]; 519 (*this)[pos - 1] = (*this)[this->size () - 1];
417 (*this)[pos - 1]->*index = pos; 520 (*this)[pos - 1]->*indexmember = pos;
418 } 521 }
419 522
420 this->pop_back (); 523 this->pop_back ();
421 } 524 }
422 525
423 void erase (T &obj) 526 void erase (T &obj)
424 { 527 {
425 errase (&obj); 528 erase (&obj);
426 } 529 }
427}; 530};
428 531
429// basically does what strncpy should do, but appends "..." to strings exceeding length 532// basically does what strncpy should do, but appends "..." to strings exceeding length
430void assign (char *dst, const char *src, int maxlen); 533void assign (char *dst, const char *src, int maxlen);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines