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.79 by root, Sat Aug 30 05:19:03 2008 UTC vs.
Revision 1.107 by root, Sat Nov 17 23:33:17 2018 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 5 *
8 * Deliantra is free software: you can redistribute it and/or modify 6 * Deliantra is free software: you can redistribute it and/or modify it under
9 * it under the terms of the GNU General Public License as published by 7 * the terms of the Affero GNU General Public License as published by the
10 * the Free Software Foundation, either version 3 of the License, or 8 * Free Software Foundation, either version 3 of the License, or (at your
11 * (at your option) any later version. 9 * option) any later version.
12 * 10 *
13 * This program is distributed in the hope that it will be useful, 11 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 14 * GNU General Public License for more details.
17 * 15 *
18 * You should have received a copy of the GNU General Public License 16 * You should have received a copy of the Affero GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 * and the GNU General Public License along with this program. If not, see
18 * <http://www.gnu.org/licenses/>.
20 * 19 *
21 * The authors can be reached via e-mail to <support@deliantra.net> 20 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 21 */
23 22
24/* 23/*
25 * General convenience functions for crossfire. 24 * General convenience functions for deliantra.
26 */ 25 */
27 26
28#include <cstdlib> 27#include <cstdlib>
29#include <sys/types.h> 28#include <sys/types.h>
30#include <unistd.h> 29#include <unistd.h>
32#include <time.h> 31#include <time.h>
33#include <signal.h> 32#include <signal.h>
34 33
35#include <global.h> 34#include <global.h>
36#include <material.h> 35#include <material.h>
36#include <object.h>
37 37
38#include <sys/time.h> 38#include <sys/time.h>
39#include <sys/resource.h> 39#include <sys/resource.h>
40 40
41#include <glib.h> 41#include <glib.h>
42 42
43refcnt_base::refcnt_t refcnt_dummy; 43refcnt_base::refcnt_t refcnt_dummy;
44ssize_t slice_alloc; 44ssize_t slice_alloc;
45rand_gen rndm, rmg_rndm;
46 45
47void 46/******************************************************************************/
48tausworthe_random_generator::seed (uint32_t seed)
49{
50 state [0] = seed * 69069U; if (state [0] < 2U) state [0] += 2U;
51 state [1] = state [0] * 69069U; if (state [0] < 8U) state [0] += 8U;
52 state [2] = state [1] * 69069U; if (state [0] < 16U) state [0] += 16U;
53 state [3] = state [2] * 69069U; if (state [0] < 128U) state [0] += 128U;
54 47
55 for (int i = 11; --i; ) 48/* Checks a player-provided string which will become the msg property of
56 operator ()(); 49 * an object for dangerous input.
57}
58
59uint32_t
60tausworthe_random_generator::next ()
61{
62 state [0] = ((state [0] & 0xFFFFFFFEU) << 18U) ^ (((state [0] << 6U) ^ state [0]) >> 13U);
63 state [1] = ((state [1] & 0xFFFFFFF8U) << 2U) ^ (((state [1] << 2U) ^ state [1]) >> 27U);
64 state [2] = ((state [2] & 0xFFFFFFF0U) << 7U) ^ (((state [2] << 13U) ^ state [2]) >> 21U);
65 state [3] = ((state [3] & 0xFFFFFF80U) << 13U) ^ (((state [3] << 3U) ^ state [3]) >> 12U);
66
67 return state [0] ^ state [1] ^ state [2] ^ state [3];
68}
69
70uint32_t
71tausworthe_random_generator::get_range (uint32_t num)
72{
73 return (next () * (uint64_t)num) >> 32U;
74}
75
76// return a number within (min .. max)
77int
78tausworthe_random_generator::get_range (int r_min, int r_max)
79{
80 return r_min + get_range (max (r_max - r_min + 1, 0));
81}
82
83/*
84 * The random functions here take luck into account when rolling random
85 * dice or numbers. This function has less of an impact the larger the
86 * difference becomes in the random numbers. IE, the effect is lessened
87 * on a 1-1000 roll, vs a 1-6 roll. This can be used by crafty programmers,
88 * to specifically disable luck in certain rolls, simply by making the
89 * numbers larger (ie, 1d1000 > 500 vs 1d6 > 3)
90 */ 50 */
91 51bool
92/* 52msg_is_safe (const char *msg)
93 * Roll a random number between min and max. Uses op to determine luck,
94 * and if goodbad is non-zero, luck increases the roll, if zero, it decreases.
95 * Generally, op should be the player/caster/hitter requesting the roll,
96 * not the recipient (ie, the poor slob getting hit). [garbled 20010916]
97 */
98int
99random_roll (int r_min, int r_max, const object *op, int goodbad)
100{ 53{
101 r_max = max (r_min, r_max); 54 bool safe = true;
102 55
103 int base = r_max - r_min > 1 ? 20 : 50; /* d2 and d3 are corner cases */ 56 /* Trying to cheat by getting data into the object */
57 if (!strncmp (msg, "endmsg", sizeof ("endmsg") - 1)
58 || strstr (msg, "\nendmsg"))
59 safe = false;
104 60
105 if (op->type == PLAYER) 61 /* Trying to make the object talk, and potentially access arbitrary code */
106 { 62 if (object::msg_has_dialogue (msg))
107 int luck = op->stats.luck; 63 safe = false;
108 64
109 if (rndm (base) < min (10, abs (luck)))
110 {
111 //TODO: take luck into account
112 }
113 }
114
115 return rndm (r_min, r_max);
116}
117
118/*
119 * This is a 64 bit version of random_roll above. This is needed
120 * for exp loss calculations for players changing religions.
121 */
122sint64
123random_roll64 (sint64 r_min, sint64 r_max, const object *op, int goodbad)
124{
125 sint64 omin = r_min;
126 sint64 range = max (0, r_max - r_min + 1);
127 int base = range > 2 ? 20 : 50; /* d2 and d3 are corner cases */
128
129 /*
130 * Make a call to get two 32 bit unsigned random numbers, and just to
131 * a little bitshifting.
132 */
133 sint64 ran = (sint64) rndm.next () ^ ((sint64) rndm.next () << 31);
134
135 if (op->type != PLAYER)
136 return ((ran % range) + r_min);
137
138 int luck = op->stats.luck;
139
140 if (rndm (base) < min (10, abs (luck)))
141 {
142 /* we have a winner */
143 ((luck > 0) ? (luck = 1) : (luck = -1));
144 range -= luck;
145 if (range < 1)
146 return (omin); /*check again */
147
148 ((goodbad) ? (r_min += luck) : (range));
149
150 return (max (omin, min (r_max, (ran % range) + r_min)));
151 }
152
153 return ran % range + r_min;
154}
155
156/*
157 * Roll a number of dice (2d3, 4d6). Uses op to determine luck,
158 * If goodbad is non-zero, luck increases the roll, if zero, it decreases.
159 * Generally, op should be the player/caster/hitter requesting the roll,
160 * not the recipient (ie, the poor slob getting hit).
161 * The args are num D size (ie 4d6) [garbled 20010916]
162 */
163int
164die_roll (int num, int size, const object *op, int goodbad)
165{
166 int min, luck, total, i, gotlucky;
167
168 int diff = size;
169 min = 1;
170 luck = total = gotlucky = 0;
171 int base = diff > 2 ? 20 : 50; /* d2 and d3 are corner cases */
172
173 if (size < 2 || diff < 1)
174 {
175 LOG (llevError, "Calling die_roll with num=%d size=%d\n", num, size);
176 return num; /* avoids a float exception */
177 }
178
179 if (op->type == PLAYER)
180 luck = op->stats.luck;
181
182 for (i = 0; i < num; i++)
183 {
184 if (rndm (base) < MIN (10, abs (luck)) && !gotlucky)
185 {
186 /* we have a winner */
187 gotlucky++;
188 ((luck > 0) ? (luck = 1) : (luck = -1));
189 diff -= luck;
190 if (diff < 1)
191 return (num); /*check again */
192 ((goodbad) ? (min += luck) : (diff));
193 total += MAX (1, MIN (size, rndm (diff) + min));
194 }
195 else
196 total += rndm (size) + 1;
197 }
198
199 return total;
200}
201
202/* convert materialname to materialtype_t */
203
204materialtype_t *
205name_to_material (const shstr &name)
206{
207 for (materialtype_t *mt = materialt; mt && mt->next; mt = mt->next)
208 if (name == mt->name)
209 return mt;
210
211 return 0; 65 return safe;
212}
213
214/* when doing transmutation of objects, we have to recheck the resistances,
215 * as some that did not apply previously, may apply now.
216 */
217void
218transmute_materialname (object *op, const object *change)
219{
220 materialtype_t *mt;
221 int j;
222
223 if (op->materialname == NULL)
224 return;
225
226 if (change->materialname != NULL && strcmp (op->materialname, change->materialname))
227 return;
228
229 if (!op->is_armor ())
230 return;
231
232 mt = name_to_material (op->materialname);
233 if (!mt)
234 {
235 LOG (llevError, "archetype '%s>%s' uses nonexistent material '%s'\n", &op->arch->archname, &op->name, &op->materialname);
236 return;
237 }
238
239 for (j = 0; j < NROFATTACKS; j++)
240 if (op->resist[j] == 0 && change->resist[j] != 0)
241 {
242 op->resist[j] += mt->mod[j];
243 if (op->resist[j] > 100)
244 op->resist[j] = 100;
245 if (op->resist[j] < -100)
246 op->resist[j] = -100;
247 }
248}
249
250/* set the materialname and type for an item */
251void
252set_materialname (object *op, int difficulty, materialtype_t *nmt)
253{
254 materialtype_t *mt, *lmt;
255
256 if (op->materialname != NULL)
257 return;
258
259 if (nmt == NULL)
260 {
261 lmt = NULL;
262
263 for (mt = materialt; mt && mt->next; mt = mt->next)
264 if (op->materials & mt->material && rndm (1, 100) <= mt->chance &&
265 difficulty >= mt->difficulty && (op->magic >= mt->magic || mt->magic == 0))
266 {
267 lmt = mt;
268 if (!(op->is_weapon () || op->is_armor ()))
269 break;
270 }
271 }
272 else
273 lmt = nmt;
274
275 if (lmt != NULL)
276 {
277 if (op->stats.dam && op->is_weapon ())
278 {
279 op->stats.dam += lmt->damage;
280 if (op->stats.dam < 1)
281 op->stats.dam = 1;
282 }
283
284 if (op->stats.sp && op->type == BOW)
285 op->stats.sp += lmt->sp;
286 if (op->stats.wc && op->is_weapon ())
287 op->stats.wc += lmt->wc;
288 if (op->is_armor ())
289 {
290 if (op->stats.ac)
291 op->stats.ac += lmt->ac;
292
293 for (int j = 0; j < NROFATTACKS; j++)
294 if (op->resist[j] != 0)
295 {
296 op->resist[j] += lmt->mod[j];
297 if (op->resist[j] > 100)
298 op->resist[j] = 100;
299 if (op->resist[j] < -100)
300 op->resist[j] = -100;
301 }
302 }
303
304 op->materialname = lmt->name;
305 /* dont make it unstackable if it doesn't need to be */
306 if (op->is_weapon () || op->is_armor ())
307 {
308 op->weight = (op->weight * lmt->weight) / 100;
309 op->value = (op->value * lmt->value) / 100;
310 }
311 }
312}
313
314/*
315 * Strip out the media tags from a String.
316 * Warning the input string will contain the result string
317 */
318void
319strip_media_tag (char *message)
320{
321 int in_tag = 0;
322 char *dest;
323 char *src;
324
325 src = dest = message;
326 while (*src != '\0')
327 {
328 if (*src == '[')
329 {
330 in_tag = 1;
331 }
332 else if (in_tag && (*src == ']'))
333 in_tag = 0;
334 else if (!in_tag)
335 {
336 *dest = *src;
337 dest++;
338 }
339 src++;
340 }
341 *dest = '\0';
342}
343
344const char *
345strrstr (const char *haystack, const char *needle)
346{
347 const char *lastneedle;
348
349 lastneedle = NULL;
350 while ((haystack = strstr (haystack, needle)) != NULL)
351 {
352 lastneedle = haystack;
353 haystack++;
354 }
355 return lastneedle;
356
357}
358
359#define EOL_SIZE (sizeof("\n")-1)
360void
361strip_endline (char *buf)
362{
363 if (strlen (buf) < sizeof ("\n"))
364 {
365 return;
366 }
367 if (!strcmp (buf + strlen (buf) - EOL_SIZE, "\n"))
368 buf[strlen (buf) - EOL_SIZE] = '\0';
369}
370
371/**
372 * Replace in string src all occurrences of key by replacement. The resulting
373 * string is put into result; at most resultsize characters (including the
374 * terminating null character) will be written to result.
375 */
376void
377replace (const char *src, const char *key, const char *replacement, char *result, size_t resultsize)
378{
379 size_t resultlen;
380 size_t keylen;
381
382 /* special case to prevent infinite loop if key==replacement=="" */
383 if (strcmp (key, replacement) == 0)
384 {
385 snprintf (result, resultsize, "%s", src);
386 return;
387 }
388
389 keylen = strlen (key);
390
391 resultlen = 0;
392 while (*src != '\0' && resultlen + 1 < resultsize)
393 {
394 if (strncmp (src, key, keylen) == 0)
395 {
396 snprintf (result + resultlen, resultsize - resultlen, "%s", replacement);
397 resultlen += strlen (result + resultlen);
398 src += keylen;
399 }
400 else
401 {
402 result[resultlen++] = *src++;
403 }
404 }
405 result[resultlen] = '\0';
406}
407
408/**
409 * Taking a string as an argument, mutate it into a string that looks like a list.
410 * a 'list' for the purposes here, is a string of items, seperated by commas, except
411 * for the last entry, which has an 'and' before it, and a full stop (period) after it.
412 * This function will also strip all trailing non alphanumeric characters.
413 * It does not insert an oxford comma.
414 */
415void
416make_list_like (char *input)
417{
418 char *p, tmp[MAX_BUF];
419 int i;
420
421 if (!input || strlen (input) > MAX_BUF - 5)
422 return;
423 /* bad stuff would happen if we continued here, the -5 is to make space for ' and ' */
424
425 strncpy (tmp, input, MAX_BUF - 5);
426 /*trim all trailing commas, spaces etc. */
427 for (i = strlen (tmp); !isalnum (tmp[i]) && i >= 0; i--)
428 tmp[i] = '\0';
429
430 strcat (tmp, ".");
431
432 p = strrchr (tmp, ',');
433 if (p)
434 {
435 *p = '\0';
436 strcpy (input, tmp);
437 p++;
438 strcat (input, " and");
439 strcat (input, p);
440 }
441 else
442 strcpy (input, tmp);
443
444 return;
445} 66}
446 67
447///////////////////////////////////////////////////////////////////////////// 68/////////////////////////////////////////////////////////////////////////////
448 69
449void 70void
450fork_abort (const char *msg) 71fork_abort (const char *msg)
451{ 72{
452 if (!fork ()) 73 if (!fork ())
453 { 74 {
75 signal (SIGINT , SIG_IGN);
76 signal (SIGTERM, SIG_IGN);
454 signal (SIGABRT, SIG_DFL); 77 signal (SIGABRT, SIG_IGN);
78
79 signal (SIGSEGV, SIG_DFL);
80 signal (SIGFPE , SIG_DFL);
81#ifdef SIGBUS
82 signal (SIGBUS , SIG_DFL);
83#endif
84 signal (SIGILL , SIG_DFL);
85 signal (SIGTRAP, SIG_DFL);
455 86
456 // try to put corefiles into a subdirectory, if existing, to allow 87 // try to put corefiles into a subdirectory, if existing, to allow
457 // an administrator to reduce the I/O load. 88 // an administrator to reduce the I/O load.
458 chdir ("cores"); 89 chdir ("cores");
459 90
467 98
468 for (int i = 0; i < lim.rlim_cur; ++i) 99 for (int i = 0; i < lim.rlim_cur; ++i)
469 close (i); 100 close (i);
470 } 101 }
471 102
103 {
104 sigset_t empty;
105 sigemptyset (&empty);
106 sigprocmask (SIG_SETMASK, &empty, 0);
107 }
108
109 // try to coredump with SIGTRAP
110 kill (getpid (), SIGTRAP);
472 abort (); 111 abort ();
473 } 112 }
474 113
475 LOG (llevError, "fork abort: %s\n", msg); 114 LOG (llevError, "fork abort: %s\n", msg);
476} 115}
477 116
478void *salloc_ (int n) throw (std::bad_alloc) 117void *
118salloc_ (int n)
479{ 119{
480 void *ptr = g_slice_alloc (n); 120 void *ptr = g_slice_alloc (n);
481 121
482 if (!ptr) 122 if (!ptr)
483 throw std::bad_alloc (); 123 throw std::bad_alloc ();
484 124
485 slice_alloc += n; 125 slice_alloc += n;
486 return ptr; 126 return ptr;
487} 127}
488 128
489void *salloc_ (int n, void *src) throw (std::bad_alloc) 129void *
130salloc_ (int n, void *src)
490{ 131{
491 void *ptr = salloc_ (n); 132 void *ptr = salloc_ (n);
492 133
493 if (src) 134 if (src)
494 memcpy (ptr, src, n); 135 memcpy (ptr, src, n);
502 143
503#if DEBUG_SALLOC 144#if DEBUG_SALLOC
504 145
505#define MAGIC 0xa1b2c35543deadLL 146#define MAGIC 0xa1b2c35543deadLL
506 147
148void *
507void *g_slice_alloc (unsigned long size) 149g_slice_alloc (unsigned long size)
508{ 150{
509 unsigned long *p = (unsigned long *) (g_slice_alloc)(size + sizeof (unsigned long)); 151 unsigned long *p = (unsigned long *) (g_slice_alloc)(size + sizeof (unsigned long));
510 *p++ = size ^ MAGIC; 152 *p++ = size ^ MAGIC;
511 //fprintf (stderr, "g_slice_alloc %ld %p\n", size, p);//D 153 //fprintf (stderr, "g_slice_alloc %ld %p\n", size, p);//D
512 return (void *)p; 154 return (void *)p;
513} 155}
514 156
157void *
515void *g_slice_alloc0 (unsigned long size) 158g_slice_alloc0 (unsigned long size)
516{ 159{
517 return memset (g_slice_alloc (size), 0, size); 160 return memset (g_slice_alloc (size), 0, size);
518} 161}
519 162
163void
520void g_slice_free1 (unsigned long size, void *ptr) 164g_slice_free1 (unsigned long size, void *ptr)
521{ 165{
522 //fprintf (stderr, "g_slice_free %ld %p\n", size, ptr);//D 166 //fprintf (stderr, "g_slice_free %ld %p\n", size, ptr);//D
523 if (expect_true (ptr)) 167 if (expect_true (ptr))
524 { 168 {
525 unsigned long *p = (unsigned long *)ptr; 169 unsigned long *p = (unsigned long *)ptr;
539 183
540#endif 184#endif
541 185
542/******************************************************************************/ 186/******************************************************************************/
543 187
188refcnt_buf::refcnt_buf (size_t size)
189{
190 static uint32_t empty_buf [2] = { 0, 1 }; // 2 == never deallocated
191 data = (char *)empty_buf + overhead;
192 assert (overhead == sizeof (empty_buf));
193 inc ();
194}
195
196refcnt_buf::refcnt_buf (void *data, size_t size)
197{
198 _alloc (size);
199 memcpy (this->data, data, size);
200}
201
202refcnt_buf::~refcnt_buf ()
203{
204 dec ();
205}
206
207void
208refcnt_buf::_dealloc ()
209{
210 sfree<char> (data - overhead, size () + overhead);
211}
212
213refcnt_buf &
214refcnt_buf::operator =(const refcnt_buf &src)
215{
216 dec ();
217 data = src.data;
218 inc ();
219 return *this;
220}
221
222/******************************************************************************/
223
224int
544void assign (char *dst, const char *src, int maxlen) 225assign (char *dst, const char *src, int maxsize)
545{ 226{
546 if (!src) 227 if (!src)
547 src = ""; 228 src = "";
548 229
549 int len = strlen (src); 230 int len = strlen (src);
550 231
551 if (len >= maxlen - 1) 232 if (len >= maxsize)
552 { 233 {
553 if (maxlen <= 4) 234 if (maxsize <= 4)
554 { 235 {
555 memset (dst, '.', maxlen - 1); 236 memset (dst, '.', maxsize - 2);
556 dst [maxlen - 1] = 0; 237 dst [maxsize - 1] = 0;
557 } 238 }
558 else 239 else
559 { 240 {
560 memcpy (dst, src, maxlen - 4); 241 memcpy (dst, src, maxsize - 4);
561 memcpy (dst + maxlen - 4, "...", 4); 242 memcpy (dst + maxsize - 4, "...", 4);
562 } 243 }
244
245 len = maxsize;
563 } 246 }
564 else 247 else
565 memcpy (dst, src, len + 1); 248 memcpy (dst, src, ++len);
566}
567 249
568const char * 250 return len;
251}
252
253char *
254vformat (const char *format, va_list ap)
255{
256 static dynbuf_text bufs[8];
257 static int bufidx;
258
259 dynbuf_text &buf = bufs [++bufidx & 7];
260
261 buf.clear ();
262 buf.vprintf (format, ap);
263 return buf;
264}
265
266char *
569format (const char *format, ...) 267format (const char *format, ...)
570{ 268{
571 static dynbuf_text buf;
572
573 buf.clear ();
574
575 va_list ap; 269 va_list ap;
576 va_start (ap, format); 270 va_start (ap, format);
577 buf.vprintf (format, ap); 271 char *buf = vformat (format, ap);
578 va_end (ap); 272 va_end (ap);
579 273
580 return buf; 274 return buf;
581} 275}
582 276
583tstamp now () 277tstamp
278now ()
584{ 279{
585 struct timeval tv; 280 struct timeval tv;
586 281
587 gettimeofday (&tv, 0); 282 gettimeofday (&tv, 0);
588 return tstamp (tv.tv_sec) + tstamp (tv.tv_usec) * tstamp (1e-6); 283 return tstamp (tv.tv_sec) + tstamp (tv.tv_usec) * tstamp (1e-6);
653 0xcdd70693UL, 0x54de5729UL, 0x23d967bfUL, 0xb3667a2eUL, 0xc4614ab8UL, 348 0xcdd70693UL, 0x54de5729UL, 0x23d967bfUL, 0xb3667a2eUL, 0xc4614ab8UL,
654 0x5d681b02UL, 0x2a6f2b94UL, 0xb40bbe37UL, 0xc30c8ea1UL, 0x5a05df1bUL, 349 0x5d681b02UL, 0x2a6f2b94UL, 0xb40bbe37UL, 0xc30c8ea1UL, 0x5a05df1bUL,
655 0x2d02ef8dL 350 0x2d02ef8dL
656}; 351};
657 352
353void
658void thread::start (void *(*start_routine)(void *), void *arg) 354thread::start (void *(*start_routine)(void *), void *arg)
659{ 355{
660 pthread_attr_t attr; 356 pthread_attr_t attr;
661 357
662 pthread_attr_init (&attr); 358 pthread_attr_init (&attr);
663 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED); 359 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines