ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/utils.C
(Generate patch)

Comparing deliantra/server/common/utils.C (file contents):
Revision 1.3 by root, Sun Sep 3 00:18:40 2006 UTC vs.
Revision 1.5 by pippijn, Thu Sep 7 09:37:12 2006 UTC

1/* 1/*
2 * static char *rcsid_utils_c = 2 * static char *rcsid_utils_c =
3 * "$Id: utils.C,v 1.3 2006/09/03 00:18:40 root Exp $"; 3 * "$Id: utils.C,v 1.5 2006/09/07 09:37:12 pippijn Exp $";
4 */ 4 */
5 5
6/* 6/*
7 CrossFire, A Multiplayer game for X-windows 7 CrossFire, A Multiplayer game for X-windows
8 8
31 */ 31 */
32 32
33#include <global.h> 33#include <global.h>
34#include <funcpoint.h> 34#include <funcpoint.h>
35#include <material.h> 35#include <material.h>
36
37#include <glib.h>
36 38
37/* 39/*
38 * The random functions here take luck into account when rolling random 40 * The random functions here take luck into account when rolling random
39 * dice or numbers. This function has less of an impact the larger the 41 * dice or numbers. This function has less of an impact the larger the
40 * difference becomes in the random numbers. IE, the effect is lessened 42 * difference becomes in the random numbers. IE, the effect is lessened
302 304
303/* set the materialname and type for an item */ 305/* set the materialname and type for an item */
304void set_materialname(object *op, int difficulty, materialtype_t *nmt) 306void set_materialname(object *op, int difficulty, materialtype_t *nmt)
305{ 307{
306 materialtype_t *mt, *lmt; 308 materialtype_t *mt, *lmt;
309#ifdef NEW_MATERIAL_CODE
307 int j; 310 int j;
311#endif
308 312
309 if (op->materialname != NULL) 313 if (op->materialname != NULL)
310 return; 314 return;
311 315
312 316
481 } 485 }
482 else strcpy(input, tmp); 486 else strcpy(input, tmp);
483 return; 487 return;
484} 488}
485 489
490//TODO: overhead due to specifying size twice
486void * 491void *
487zero_initialised::operator new (size_t s) 492zero_initialised::operator new (size_t s)
488{ 493{
489 void *p = malloc (s); 494 return g_slice_alloc0 (s);
490 495}
491 memset (p, 0, s); 496
492 return p; 497void *
498zero_initialised::operator new [] (size_t s)
499{
500 return g_slice_alloc0 (s);
493} 501}
494 502
495void 503void
496zero_initialised::operator delete (void *p, size_t s) 504zero_initialised::operator delete (void *p, size_t s)
497{ 505{
498 free (p); 506 g_slice_free1 (s, p);
499} 507}
500 508
509void
510zero_initialised::operator delete [] (void *p, size_t s)
511{
512 g_slice_free1 (s, p);
513}
514

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines