Crossfire Server, Trunk
server.c
Go to the documentation of this file.
1 /*
2  * Crossfire -- cooperative multi-player graphical RPG and adventure game
3  *
4  * Copyright (c) 1999-2014 Mark Wedel and the Crossfire Development Team
5  * Copyright (c) 1992 Frank Tore Johansen
6  *
7  * Crossfire is free software and comes with ABSOLUTELY NO WARRANTY. You are
8  * welcome to redistribute it under certain conditions. For details, please
9  * see COPYING and LICENSE.
10  *
11  * The authors can be reached via e-mail at <crossfire@metalforge.org>.
12  */
13 
19 #include "global.h"
20 
21 #include <assert.h>
22 #include <ctype.h>
23 #include <fcntl.h>
24 #include <math.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <time.h>
28 
29 #ifndef WIN32
30 #include <unistd.h>
31 #endif
32 
33 /* FIXME: This is required on certain systems to get crypt(3) to work. */
34 #ifdef HAVE_CRYPT_H
35 #include <crypt.h>
36 #endif
37 
38 #include "object.h"
39 #include "path.h"
40 #include "random_maps/random_map.h"
41 #include "random_maps/rproto.h"
42 #include "sproto.h"
43 #include "tod.h"
44 #include "version.h"
45 #include "server.h"
46 
48 static const int shutdown_warn_times[] = {120, 90, 60, 45, 30, 15, 10, 5, 4, 3, 2, 1};
49 
51 static const char *days[] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
52 
53 volatile sig_atomic_t shutdown_flag;
54 
70 static char const* crypt_string(char const str[static 1], char const* salt) {
71 #if defined(WIN32)
72  // Windows will never attempt to crypt()
73  return str;
74 #else
75 #if (defined(__FreeBSD__))
76  // If legacy mode is enabled, do not crypt() on FreeBSD
77  if (settings.crypt_mode == 0) {
78  return str;
79  }
80 #endif
81  char s[3];
82 
83  if (salt == NULL) {
84  /* Generate a two-character salt for the DES cipher.
85  * We want the salt to be in this character set.
86  */
87  static const char *const c =
88  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789./";
89  s[0] = c[RANDOM()%(int)strlen(c)],
90  s[1] = c[RANDOM()%(int)strlen(c)];
91  } else {
92  s[0] = salt[0],
93  s[1] = salt[1];
94  }
95  s[2] = '\0';
96 
97  return crypt(str, s);
98 #endif
99 }
100 
101 char const* newhash(char const password[static 1]) {
102  return crypt_string(password, NULL);
103 }
104 
114 bool check_password(const char *typed, const char *crypted) {
115  // An empty hashed password only matches an empty input password.
116  if (strlen(crypted) == 0) {
117  return strlen(typed) == 0 ? true : false;
118  }
119 
120  const char *typed_hashed = crypt_string(typed, crypted);
121  if (typed_hashed != NULL) {
122  return strcmp(typed_hashed, crypted) == 0;
123  } else {
124  LOG(llevError, "Could not check password with stored hash %s\n", crypted);
125  return false;
126  }
127 }
128 
138 void enter_player_savebed(object *op) {
139  mapstruct *oldmap = op->map;
140  object *tmp;
141 
142  tmp = object_new();
143 
144  EXIT_PATH(tmp) = add_string(op->contr->savebed_map);
145  EXIT_X(tmp) = op->contr->bed_x;
146  EXIT_Y(tmp) = op->contr->bed_y;
147  enter_exit(op, tmp);
148  /* If the player has not changed maps and the name does not match
149  * that of the savebed, his savebed map is gone. Lets go back
150  * to the emergency path. Update what the players savebed is
151  * while we're at it.
152  */
153  if (oldmap == op->map && strcmp(op->contr->savebed_map, oldmap->path)) {
154  LOG(llevDebug, "Player %s savebed location %s is invalid - going to emergency location (%s)\n",
155  settings.emergency_mapname, op->name, op->contr->savebed_map);
156  safe_strncpy(op->contr->savebed_map, settings.emergency_mapname, MAX_BUF);
157  op->contr->bed_x = settings.emergency_x;
158  op->contr->bed_y = settings.emergency_y;
159  free_string(op->contr->savebed_map);
160  EXIT_PATH(tmp) = add_string(op->contr->savebed_map);
161  EXIT_X(tmp) = op->contr->bed_x;
162  EXIT_Y(tmp) = op->contr->bed_y;
163  enter_exit(op, tmp);
164  }
166 }
167 
179 static void enter_map(object *op, mapstruct *newmap, int x, int y) {
180  mapstruct *oldmap = op->map;
181 
182  /* Default hp/sp for exits changed to -1 to use enter_x/enter_y values by default, but if one value
183  * is specified, we want the other to default to zero like before the change.
184  */
185  if (x < 0 && y >= 0) x=0;
186  if (y < 0 && x >= 0) y=0;
187 
188  if (out_of_map(newmap, x, y)) {
189  LOG(llevError, "enter_map: supplied coordinates are not within the map! (%s: %d, %d)\n", newmap->path, x, y);
190  /* If op has invalid (probably -1,-1) coordinates, force them to a correct value, else issues later on. */
191  if (op->x == x)
192  op->x = MAP_ENTER_X(newmap);
193  if (op->y == y)
194  op->y = MAP_ENTER_Y(newmap);
195  x = MAP_ENTER_X(newmap);
196  y = MAP_ENTER_Y(newmap);
197  if (out_of_map(newmap, x, y)) {
198  LOG(llevError, "enter_map: map %s provides invalid default enter location (%d, %d) > (%d, %d)\n", newmap->path, x, y, MAP_WIDTH(newmap), MAP_HEIGHT(newmap));
200  "The exit is closed");
201  return;
202  }
203  }
204  /* try to find a spot for the player */
205  if (ob_blocked(op, newmap, x, y)) { /* First choice blocked */
206  /* We try to find a spot for the player, starting closest in.
207  * We could use object_find_first_free_spot(), but that doesn't randomize it at all,
208  * So for example, if the north space is free, you would always end up there even
209  * if other spaces around are available.
210  * Note that for the second and third calls, we could start at a position other
211  * than one, but then we could end up on the other side of walls and so forth.
212  */
213  int i = object_find_free_spot(op, newmap, x, y, 1, SIZEOFFREE1+1);
214  if (i == -1) {
215  i = object_find_free_spot(op, newmap, x, y, 1, SIZEOFFREE2+1);
216  if (i == -1)
217  i = object_find_free_spot(op, newmap, x, y, 1, SIZEOFFREE);
218  }
219  if (i != -1) {
220  x += freearr_x[i];
221  y += freearr_y[i];
222  } else {
223  /* not much we can do in this case. */
224  LOG(llevInfo, "enter_map: Could not find free spot for player - will dump on top of object (%s: %d, %d)\n", newmap->path, x, y);
225  }
226  } /* end if looking for free spot */
227 
228  /* If it is a player login, he has yet to be inserted anyplace.
229  * otherwise, we need to deal with removing the playe here.
230  */
231  if (!QUERY_FLAG(op, FLAG_REMOVED))
232  object_remove(op);
233  /* object_remove clears these so they must be reset after the object_remove() call */
234  object_insert_in_map_at(op, newmap, NULL, INS_NO_WALK_ON, x, y);
235 
236  object_set_enemy(op, NULL);
237 
238  if (op->contr) {
239  safe_strncpy(op->contr->maplevel, newmap->path,
240  sizeof(op->contr->maplevel));
241  op->contr->count = 0;
242  }
243 
244  /* Update any golems */
245  if (op->type == PLAYER && op->contr->ranges[range_golem] != NULL) {
246  int i = object_find_free_spot(op->contr->ranges[range_golem], newmap, x, y, 1, SIZEOFFREE);
247  object_remove(op->contr->ranges[range_golem]);
248  if (i == -1) {
249  remove_friendly_object(op->contr->ranges[range_golem]);
250  object_free_drop_inventory(op->contr->ranges[range_golem]);
251  op->contr->ranges[range_golem] = NULL;
252  op->contr->golem_count = 0;
253  } else {
254  object_insert_in_map_at(op->contr->ranges[range_golem], newmap, NULL, 0, x+freearr_x[i], y+freearr_y[i]);
255  op->contr->ranges[range_golem]->direction = find_dir_2(op->x-op->contr->ranges[range_golem]->x, op->y-op->contr->ranges[range_golem]->y);
256  }
257  }
258  op->direction = 0;
259 
260  /* since the players map is already loaded, we don't need to worry
261  * about pending objects.
262  */
264 
265  /* If the player is changing maps, we need to do some special things
266  * Do this after the player is on the new map - otherwise the force swap of the
267  * old map does not work.
268  */
269  if (oldmap != newmap) {
270  player_map_change_common(op, oldmap, newmap);
271  }
272 
273  map_newmap_cmd(&op->contr->socket);
274 }
275 
276 void player_map_change_common(object* op, mapstruct* const oldmap,
277  mapstruct* const newmap) {
278  if (oldmap != NULL) {
280 
281  /* can be less than zero due to errors in tracking this */
282  if (oldmap->players <= 0) {
283  set_map_timeout(oldmap);
284  }
285  }
286 
288  newmap->timeout = 0;
290 }
291 
298 void set_map_timeout(mapstruct *oldmap) {
299 #if MAP_MAXTIMEOUT
300  oldmap->timeout = MAP_TIMEOUT(oldmap);
301  /* Do MINTIMEOUT first, so that MAXTIMEOUT is used if that is
302  * lower than the min value.
303  */
304 #if MAP_MINTIMEOUT
305  if (oldmap->timeout < MAP_MINTIMEOUT) {
306  oldmap->timeout = MAP_MINTIMEOUT;
307  }
308 #endif
309  if (oldmap->timeout > MAP_MAXTIMEOUT) {
310  oldmap->timeout = MAP_MAXTIMEOUT;
311  }
312 #else
313  /* save out the map */
314  swap_map(oldmap);
315 #endif /* MAP_MAXTIMEOUT */
316 }
317 
331 static char *clean_path(const char *file, char *newpath, int size) {
332  char *cp;
333 
334  strlcpy(newpath, file, size);
335  for (cp = newpath; *cp != '\0'; cp++) {
336  if (*cp == '/')
337  *cp = '_';
338  }
339  return newpath;
340 }
341 
359 static char *unclean_path(const char *src, char *newpath, int size) {
360  char *cp;
361 
362  cp = strrchr(src, '/');
363  if (cp)
364  strlcpy(newpath, cp+1, size);
365  else
366  strlcpy(newpath, src, size);
367 
368  for (cp = newpath; *cp != '\0'; cp++) {
369  if (*cp == '_')
370  *cp = '/';
371  }
372  return newpath;
373 }
374 
384 static void enter_random_map(object *pl, object *exit_ob) {
385  mapstruct *new_map;
386  char newmap_name[HUGE_BUF], buf[HUGE_BUF], *cp;
387  static int reference_number = 0;
388  RMParms rp;
389 
390  memset(&rp, 0, sizeof(RMParms));
391  rp.Xsize = -1;
392  rp.Ysize = -1;
393  rp.region = get_region_by_map(exit_ob->map);
394  if (exit_ob->msg)
395  set_random_map_variable(&rp, exit_ob->msg);
396  rp.origin_x = exit_ob->x;
397  rp.origin_y = exit_ob->y;
398  safe_strncpy(rp.origin_map, pl->map->path, sizeof(rp.origin_map));
399 
400  /* If we have a final_map, use it as a base name to give some clue
401  * as where the player is. Otherwise, use the origin map.
402  * Take the last component (after the last slash) to give
403  * shorter names without bogus slashes.
404  */
405  if (rp.final_map[0]) {
406  cp = strrchr(rp.final_map, '/');
407  if (!cp)
408  cp = rp.final_map;
409  } else {
410  cp = strrchr(rp.origin_map, '/');
411  if (!cp)
412  cp = rp.origin_map;
413  /* Need to strip of any trailing digits, if it has them */
414  strlcpy(buf, cp, sizeof(buf));
415  while (isdigit(buf[strlen(buf)-1]))
416  buf[strlen(buf)-1] = 0;
417  cp = buf;
418  }
419 
420  snprintf(newmap_name, sizeof(newmap_name), "/random/%s%04d", cp+1, reference_number++);
421 
422  /* now to generate the actual map. */
423  new_map = generate_random_map(newmap_name, &rp, NULL, exit_ob->map ? exit_ob->map->reset_group : NULL);
424 
425  /* Update the exit_ob so it now points directly at the newly created
426  * random maps. Not that it is likely to happen, but it does mean that a
427  * exit in a unique map leading to a random map will not work properly.
428  * It also means that if the created random map gets reset before
429  * the exit leading to it, that the exit will no longer work.
430  */
431  if (new_map) {
432  int x, y;
433 
434  x = EXIT_X(exit_ob) = MAP_ENTER_X(new_map);
435  y = EXIT_Y(exit_ob) = MAP_ENTER_Y(new_map);
436  EXIT_PATH(exit_ob) = add_string(newmap_name);
437  strlcpy(new_map->path, newmap_name, sizeof(new_map->path));
438  enter_map(pl, new_map, x, y);
439 
440  /* Make the initial map part of the same reset group so it doesn't
441  * reset before the random maps */
442  if (exit_ob->map && exit_ob->map->reset_group == NULL && new_map->reset_group) {
443  exit_ob->map->reset_group = add_string(new_map->reset_group);
444  }
445  }
446 }
447 
457 static void enter_fixed_template_map(object *pl, object *exit_ob) {
458  mapstruct *new_map;
459  char tmpnum[32], exitpath[HUGE_BUF], resultname[HUGE_BUF], tmpstring[HUGE_BUF], *sourcemap;
460  char sourcemap_buf[HUGE_BUF];
461  char new_map_name[MAX_BUF];
462 
463  /* Split the exit path string into two parts, one
464  * for where to store the map, and one for were
465  * to generate the map from.
466  */
467  strlcpy(exitpath, EXIT_PATH(exit_ob)+2, sizeof(exitpath));
468  sourcemap = strchr(exitpath, '!');
469  if (!sourcemap) {
472  "The %s is closed.",
473  exit_ob->name);
474  LOG(llevError, "enter_fixed_template_map: Exit %s (%d,%d) on map %s has no source template.\n", exit_ob->name, exit_ob->x, exit_ob->y, exit_ob->map->path);
475  return;
476  }
477  *sourcemap++ = '\0';
478 
479  /* If we are not coming from a template map, we can use relative directories
480  * for the map to generate from.
481  */
482  if (!exit_ob->map->is_template) {
483  /* We can't use exitpath directly, as sourcemap points there. */
484  path_combine_and_normalize(exit_ob->map->path, sourcemap, sourcemap_buf, sizeof(sourcemap_buf));
485  sourcemap = sourcemap_buf;
486  }
487 
488  /* Do replacement of %x, %y, and %n to the x coord of the exit, the y coord
489  * of the exit, and the name of the map the exit is on, respectively.
490  */
491  snprintf(tmpnum, sizeof(tmpnum), "%d", exit_ob->x);
492  replace(exitpath, "%x", tmpnum, resultname, sizeof(resultname));
493 
494  snprintf(tmpnum, sizeof(tmpnum), "%d", exit_ob->y);
495  strlcpy(tmpstring, resultname, sizeof(tmpstring));
496  replace(tmpstring, "%y", tmpnum, resultname, sizeof(resultname));
497 
498  strlcpy(tmpstring, resultname, sizeof(tmpstring));
499  replace(tmpstring, "%n", exit_ob->map->name, resultname, sizeof(resultname));
500 
501  /* If we are coming from another template map, use reletive paths unless
502  * indicated otherwise.
503  */
504  if (exit_ob->map->is_template && (resultname[0] != '/')) {
505  path_combine_and_normalize(exit_ob->map->path, resultname, new_map_name, sizeof(new_map_name));
506  } else {
507  create_template_pathname(resultname, new_map_name, sizeof(new_map_name));
508  }
509 
510  /* Attempt to load the map, if unable to, then
511  * create the map from the template.
512  */
513  new_map = ready_map_name(new_map_name, MAP_PLAYER_UNIQUE);
514  if (!new_map) {
515  char path[MAX_BUF];
516  create_pathname(sourcemap, path, MAX_BUF);
517  new_map = mapfile_load(path, MAP_PLAYER_UNIQUE);
518  if (!new_map) {
520  MSG_TYPE_COMMAND_FAILURE, "The %s is closed.",
521  exit_ob->name);
522  LOG(llevError,
523  "Template exit in '%s' (%d, %d) does not reference a valid "
524  "template. Make sure a template exists at '%s'.\n",
525  exit_ob->map->path, exit_ob->x, exit_ob->y, path);
526  return;
527  }
528  }
529 
530  assert(new_map);
531  /* set the path of the map to where it should be
532  * so we don't just save over the source map.
533  */
534  strlcpy(new_map->path, new_map_name, sizeof(new_map->path));
535  new_map->is_template = 1;
536  enter_map(pl, new_map, EXIT_X(exit_ob), EXIT_Y(exit_ob));
537 }
538 
548 static void enter_random_template_map(object *pl, object *exit_ob) {
549  mapstruct *new_map;
550  char tmpnum[32], resultname[HUGE_BUF], tmpstring[HUGE_BUF];
551  char new_map_name[MAX_BUF];
552  RMParms rp;
553 
554  /* Do replacement of %x, %y, and %n to the x coord of the exit, the y coord
555  * of the exit, and the name of the map the exit is on, respectively.
556  */
557  snprintf(tmpnum, sizeof(tmpnum), "%d", exit_ob->x);
558  replace(EXIT_PATH(exit_ob)+3, "%x", tmpnum, resultname, sizeof(resultname));
559 
560  snprintf(tmpnum, sizeof(tmpnum), "%d", exit_ob->y);
561  strlcpy(tmpstring, resultname, sizeof(tmpstring));
562  replace(tmpstring, "%y", tmpnum, resultname, sizeof(resultname));
563 
564  strlcpy(tmpstring, resultname, sizeof(tmpstring));
565  replace(tmpstring, "%n", exit_ob->map->name, resultname, sizeof(resultname));
566 
567  /* If we are coming from another template map, use reletive paths unless
568  * indicated otherwise.
569  */
570  if (exit_ob->map->is_template && (resultname[0] != '/')) {
571  path_combine_and_normalize(exit_ob->map->path, resultname, new_map_name, sizeof(new_map_name));
572  } else {
573  create_template_pathname(resultname, new_map_name, sizeof(new_map_name));
574  }
575 
576  new_map = ready_map_name(new_map_name, MAP_PLAYER_UNIQUE);
577  if (!new_map) {
578  memset(&rp, 0, sizeof(RMParms));
579  rp.Xsize = -1;
580  rp.Ysize = -1;
581  rp.region = get_region_by_map(exit_ob->map);
582  if (exit_ob->msg)
583  set_random_map_variable(&rp, exit_ob->msg);
584  rp.origin_x = exit_ob->x;
585  rp.origin_y = exit_ob->y;
586  safe_strncpy(rp.origin_map, pl->map->path, sizeof(rp.origin_map));
587 
588  /* now to generate the actual map. */
589  new_map = generate_random_map(new_map_name, &rp, NULL, exit_ob->map ? exit_ob->map->reset_group : NULL);
590  }
591 
592  /* Update the exit_ob so it now points directly at the newly created
593  * random maps. Not that it is likely to happen, but it does mean that a
594  * exit in a unique map leading to a random map will not work properly.
595  * It also means that if the created random map gets reset before
596  * the exit leading to it, that the exit will no longer work.
597  */
598  if (new_map) {
599  int x, y;
600 
601  x = EXIT_X(exit_ob) = MAP_ENTER_X(new_map);
602  y = EXIT_Y(exit_ob) = MAP_ENTER_Y(new_map);
603  new_map->is_template = 1;
604  enter_map(pl, new_map, x, y);
605  }
606 }
607 
616 static void enter_unique_map(object *op, object *exit_ob) {
617  char apartment[HUGE_BUF], path[MAX_BUF];
618  mapstruct *newmap;
619 
620  if (EXIT_PATH(exit_ob)[0] == '/') {
621  snprintf(apartment, sizeof(apartment), "~%s/%s", op->name, clean_path(EXIT_PATH(exit_ob), path, sizeof(path)));
622  newmap = ready_map_name(apartment, MAP_PLAYER_UNIQUE);
623  if (!newmap) {
624  newmap = mapfile_load(EXIT_PATH(exit_ob), 0);
625  }
626  } else { /* relative directory */
627  char reldir[HUGE_BUF], tmpc[HUGE_BUF], *cp;
628 
629  if (exit_ob->map->unique) {
630  // Use player's current map path to construct base of relative path in 'src'
631  char* src = strdup(op->map->path);
632  char* slash = strrchr(src, '/');
633  if (slash == NULL) {
634  abort();
635  }
636  *slash = '\0';
637 
638  unclean_path(exit_ob->map->path, reldir, sizeof(reldir));
639 
640  /* Need to copy this over, as clean_path only has one static return buffer */
641  clean_path(reldir, tmpc, sizeof(tmpc));
642  /* Remove final component, if any */
643  if ((cp = strrchr(tmpc, '_')) != NULL)
644  *cp = 0;
645 
646  snprintf(apartment, sizeof(apartment), "%s/%s_%s", src, tmpc, clean_path(EXIT_PATH(exit_ob), path, sizeof(path)));
647 
648  newmap = ready_map_name(apartment, MAP_PLAYER_UNIQUE);
649  if (!newmap) {
650  newmap = mapfile_load(path_combine_and_normalize(reldir, EXIT_PATH(exit_ob), tmpc, sizeof(tmpc)), 0);
651  }
652  } else {
653  /* The exit is unique, but the map we are coming from is not unique. So
654  * use the basic logic - don't need to demangle the path name
655  */
656  path_combine_and_normalize(exit_ob->map->path, EXIT_PATH(exit_ob), reldir, sizeof(reldir));
657  snprintf(apartment, sizeof(apartment), "~%s/%s", op->name, clean_path(reldir, path, sizeof(path)));
658  newmap = ready_map_name(apartment, MAP_PLAYER_UNIQUE);
659  if (!newmap) {
660  path_combine_and_normalize(exit_ob->map->path, EXIT_PATH(exit_ob), reldir, sizeof(reldir));
661  newmap = ready_map_name(reldir, 0);
662  if (newmap)
663  apply_auto_fix(newmap);
664  }
665  }
666  }
667 
668  if (newmap) {
669  strlcpy(newmap->path, apartment, sizeof(newmap->path));
670  newmap->unique = 1;
671  enter_map(op, newmap, EXIT_X(exit_ob), EXIT_Y(exit_ob));
672  } else {
675  "The %s is closed.",
676  exit_ob->name);
677  /* Perhaps not critical, but I would think that the unique maps
678  * should be new enough this does not happen. This also creates
679  * a strange situation where some players could perhaps have visited
680  * such a map before it was removed, so they have the private
681  * map, but other players can't get it anymore.
682  */
683  LOG(llevDebug, "enter_unique_map: Exit %s (%d,%d) on map %s is leads no where.\n", exit_ob->name, exit_ob->x, exit_ob->y, exit_ob->map->path);
684  }
685 }
686 
687 void enter_player_maplevel(object *op) {
688  assert(op != NULL);
689  int flags = 0, x = op->x, y = op->y;
690  mapstruct *newmap;
691 
692  assert(op->type == PLAYER);
693 
694  /* newmap returns the map (if already loaded), or loads it for us. */
695  newmap = ready_map_name(op->contr->maplevel, flags);
696  if (!newmap) {
700  if (!newmap) {
701  LOG(llevError, "Fatal: Could not load emergency map!\n");
702  abort();
703  }
704 
706  "You find yourself somewhere unexpected...");
707  }
708 
709  /* as a special case, if coordinates are (-1, -1), then the item should
710  * be put at the default location. Used for loginmethod 0 (old clients). */
711  if (x == -1 && y == -1) {
712  x = MAP_ENTER_X(newmap);
713  y = MAP_ENTER_Y(newmap);
714  }
715 
716  enter_map(op, newmap, x, y);
717 }
718 
732 void enter_exit(object *op, object *exit_ob) {
733 #define PORTAL_DESTINATION_NAME "Town portal destination" /* this one should really be in a header file */
734  /* It may be nice to support other creatures moving across
735  * exits, but right now a lot of the code looks at op->contr,
736  * so thta is an RFE.
737  */
738  if (op->type != PLAYER)
739  return;
740 
741  assert(exit_ob != NULL);
742  assert(EXIT_PATH(exit_ob) != NULL);
743 
744  /* Don't word-of-recall out of a shop */
745  if ( exit_ob->subtype == SP_WORD_OF_RECALL ) {
746  /* Scan inventory for unpaid objects */
747  object *item = op->inv;
749  if (QUERY_FLAG(item, FLAG_UNPAID)) {
750  char buf[MAX_BUF];
751 
752  ob_describe(item, op, 1, buf, sizeof(buf));
754  "You feel a force fizzling away. You feel a vibration from: %s",buf);
755  return;
756  }
758  }
759 
760  /* Need to remove player from transport */
761  if (op->contr->transport)
762  ob_apply(op->contr->transport, op, AP_UNAPPLY);
763 
764  /* check to see if we make a template map
765  * Template maps have an EXIT_PATH in the form:
766  * /@[!]<MAP_NAME>!<TEMPLATE_PATH>
767  *
768  * <MAP_NAME> is the name of the destination map, which is saved in LOCALDIR/template-maps/.
769  * <TEMPLATE_PATH> is the path to a template map, used when <MAP_NAME> does not exist.
770  */
771  if (EXIT_PATH(exit_ob) && EXIT_PATH(exit_ob)[1] == '@') {
772  if (EXIT_PATH(exit_ob)[2] == '!') {
773  /* generate a template map randomly */
774  enter_random_template_map(op, exit_ob);
775  } else {
776  /* generate a template map from a fixed template */
777  enter_fixed_template_map(op, exit_ob);
778  }
779  }
780  /* check to see if we make a randomly generated map */
781  else if (EXIT_PATH(exit_ob) && EXIT_PATH(exit_ob)[1] == '!') {
782  enter_random_map(op, exit_ob);
783  } else if (QUERY_FLAG(exit_ob, FLAG_UNIQUE)) {
784  enter_unique_map(op, exit_ob);
785  } else {
786  int x = EXIT_X(exit_ob), y = EXIT_Y(exit_ob);
787  /* 'Normal' exits that do not do anything special
788  * Simple enough we don't need another routine for it.
789  */
790  mapstruct *newmap;
791  if (exit_ob->map) {
792  char tmp_path[HUGE_BUF];
793 
794  path_combine_and_normalize(exit_ob->map->path, EXIT_PATH(exit_ob), tmp_path, sizeof(tmp_path));
795  newmap = ready_map_name(tmp_path, 0);
796  /* Random map was previously generated, but is no longer about. Lets generate a new
797  * map.
798  */
799  if (!newmap && !strncmp(EXIT_PATH(exit_ob), "/random/", 8)) {
800  /* Maps that go down have a message set. However, maps that go
801  * up, don't. If the going home has reset, there isn't much
802  * point generating a random map, because it won't match the maps.
803  */
804  if (exit_ob->msg) {
805  enter_random_map(op, exit_ob);
806  } else {
809  "The %s is closed.",
810  exit_ob->name);
811  return;
812  }
813 
814  /* For exits that cause damages (like pits). Don't know if any
815  * random maps use this or not.
816  */
817  if (exit_ob->stats.dam && op->type == PLAYER)
818  hit_player(op, exit_ob->stats.dam, exit_ob, exit_ob->attacktype, 1);
819  return;
820  }
821  } else {
822  /* For word of recall and other force objects
823  * They contain the full pathname of the map to go back to,
824  * so we don't need to normalize it.
825  * But we do need to see if it is unique or not
826  */
827  if (!strncmp(EXIT_PATH(exit_ob), settings.localdir, strlen(settings.localdir)))
828  newmap = ready_map_name(EXIT_PATH(exit_ob), MAP_PLAYER_UNIQUE);
829  else
830  newmap = ready_map_name(EXIT_PATH(exit_ob), 0);
831  }
832  if (!newmap) {
833  if (exit_ob->name)
836  "The %s is closed.",
837  exit_ob->name);
838  /* don't cry to momma if name is not set - as in tmp objects
839  * used by the savebed code and character creation */
840  return;
841  }
842 
843  if (x == -1 && y == -1) {
844  x = MAP_ENTER_X(newmap);
845  y = MAP_ENTER_Y(newmap);
846  }
847 
848  /* mids 02/13/2002 if exit is damned, update players death & WoR home-position and delete town portal */
849  if (QUERY_FLAG(exit_ob, FLAG_DAMNED)) {
850  object *tmp;
851 
852  /* remove an old force with a slaying field == PORTAL_DESTINATION_NAME */
854  if (tmp) {
857  }
858 
859  path_combine_and_normalize(exit_ob->map->path, EXIT_PATH(exit_ob), op->contr->savebed_map, sizeof(op->contr->savebed_map));
860  op->contr->bed_x = EXIT_X(exit_ob), op->contr->bed_y = EXIT_Y(exit_ob);
861  save_player(op, 1);
862  }
863 
864  enter_map(op, newmap, x, y);
865  }
866 
867  LOG(llevDebug, "%s enters %s\n", op->name, EXIT_PATH(exit_ob));
868 
869  /* For exits that cause damages (like pits) */
870  if (exit_ob->stats.dam && op->type == PLAYER)
871  hit_player(op, exit_ob->stats.dam, exit_ob, exit_ob->attacktype, 1);
872 
873  if (op->contr) {
874  object* exit_copy = object_new();
875  object_copy(exit_ob, exit_copy);
876  exit_copy->speed = 0; // Item isn't on map or in inv, but object_copy() may have added it to active list
877  object_update_speed(exit_copy);
878  exit_copy->map = exit_ob->map; // hack to set map without actually inserting
879  if (op->contr->last_exit) {
880  object_free(op->contr->last_exit, FREE_OBJ_NO_DESTROY_CALLBACK);
881  }
882  op->contr->last_exit = exit_copy;
883  }
884 }
885 
891 static int move_towards(object *ob, object *towards, unsigned int mindist) {
892  rv_vector rv;
893  get_rangevector(ob, towards, &rv, 0);
894  if (rv.direction != 0 && rv.distance > mindist && ob->speed_left > 0) {
895  move_player(ob, rv.direction);
896  }
897  return rv.direction;
898 }
899 
904 static bool object_on_exit(object* ob, object* exit) {
905  int x = exit->x;
906  int y = exit->y;
907  int sx, sy, sx2, sy2;
908  object_get_multi_size(exit, &sx, &sy, &sx2, &sy2);
909  return (ob->x >= x+sx2) && (ob->x <= x+sx) && (ob->y >= y+sy2) && (ob->y <= y+sy);
910 }
911 
915 static void do_follow(player *pl) {
916  assert(pl->followed_player != NULL);
918  if (followed && followed->ob && followed->ob->map) {
919  if (query_flag(pl->ob, FLAG_WIZ)) {
920  rv_vector rv;
921  if (!get_rangevector(pl->ob, followed->ob, &rv, 0) || rv.distance > 4) {
922  int space = object_find_free_spot(pl->ob, followed->ob->map, followed->ob->x, followed->ob->y, 1, 25);
923  if (space == -1) {
925  space = 0;
926  }
927  object_remove(pl->ob);
928  object_insert_in_map_at(pl->ob, followed->ob->map, NULL, 0, followed->ob->x+freearr_x[space], followed->ob->y+freearr_y[space]);
931  }
932  } else {
933  if (!can_follow(pl->ob, followed)) {
935  "%s stops letting you follow them.", pl->followed_player);
937  return;
938  }
939  if (move_towards(pl->ob, followed->ob, 1)== 0 && followed->ob->contr->last_exit != NULL) {
940  // Move to and apply exit
941  object* exit = followed->ob->contr->last_exit;
942  if (!object_on_exit(pl->ob, exit)) {
943  move_towards(pl->ob, exit, 0);
944  } else {
945  enter_exit(pl->ob, exit);
946  }
947  }
948  }
949  } else {
951  "You stop following %s.", pl->followed_player);
953  }
954 }
955 
961 static void process_players1(void) {
962  int flag;
963  player *pl, *plnext;
964 
965  /* Basically, we keep looping until all the players have done their actions. */
966  for (flag = 1; flag != 0; ) {
967  flag = 0;
968  for (pl = first_player; pl != NULL; pl = plnext) {
969  plnext = pl->next; /* In case a player exits the game in handle_player() */
970 
971  if (pl->ob == NULL)
972  continue;
973 
974  /* Only do this on the first pass - what we are recording
975  * here is the number of ticks the player has been online - not
976  * how many actions/moves the player has done.
977  */
978  if (!flag) pl->ticks_played++;
979 
980  if (pl->followed_player) {
981  do_follow(pl);
982  }
983 
984  if (pl->ob->speed_left > 0) {
985  if (handle_newcs_player(pl->ob))
986  flag = 1;
987  } /* end if player has speed left */
988 
989  /* If the player is not actively playing, don't make a
990  * backup save - nothing to save anyway. Plus, the
991  * map may not longer be valid. This can happen when the
992  * player quits - they exist for purposes of tracking on the map,
993  * but don't actually reside on any actual map.
994  */
995  if (QUERY_FLAG(pl->ob, FLAG_REMOVED))
996  continue;
997 
998 #ifdef AUTOSAVE
999  /* check for ST_PLAYING state so that we don't try to save off when
1000  * the player is logging in.
1001  */
1002  if ((pl->last_save_tick+AUTOSAVE) < pticks && pl->state == ST_PLAYING) {
1003  /* Don't save the player on unholy ground. Instead, increase the
1004  * tick time so it will be about 10 seconds before we try and save
1005  * again.
1006  */
1007  if (get_map_flags(pl->ob->map, NULL, pl->ob->x, pl->ob->y, NULL, NULL)&P_NO_CLERIC) {
1008  pl->last_save_tick += 100;
1009  } else {
1010  save_player(pl->ob, 1);
1011  pl->last_save_tick = pticks;
1012  hiscore_check(pl->ob, 1);
1013  }
1014  }
1015 #endif
1016  } /* end of for loop for all the players */
1017  } /* for flag */
1018  for (pl = first_player; pl != NULL; pl = pl->next) {
1019  int has_action = 1;
1020 
1022  if (pl->ob->weapon_speed_left > 1.0)
1023  pl->ob->weapon_speed_left = 1.0;
1024 
1025  pl->socket.sounds_this_tick = 0;
1026 
1027  if (settings.casting_time == TRUE) {
1028  if (pl->ob->casting_time > 0) {
1029  pl->ob->casting_time--;
1030  has_action = 0;
1031  }
1032  }
1033  /* If the character is idle (standing around resting) increase
1034  * regen rates.
1035  */
1036  if (has_action && pl->ob->speed_left > 0) {
1037  pl->ob->last_heal -= 2;
1038  pl->ob->last_sp -= 2;
1039  pl->ob->last_grace -= 2;
1040  pl->ob->last_eat += 2; /* Slow down food consumption */
1041  }
1042  do_some_living(pl->ob);
1043  }
1044 }
1045 
1053 static void process_players2(void) {
1054  player *pl;
1055 
1056  /* Then check if any players should use weapon-speed instead of speed */
1057  for (pl = first_player; pl != NULL; pl = pl->next) {
1058  /* The code that did weapon_sp handling here was out of place -
1059  * this isn't called until after the player has finished there
1060  * actions, and is thus out of place. All we do here is bounds
1061  * checking.
1062  */
1063  if (pl->has_hit) {
1064  /* This needs to be here - if the player is running, we need to
1065  * clear this each tick, but new commands are not being received
1066  * so execute_newserver_command() is never called
1067  */
1068  pl->has_hit = 0;
1069  } else if (pl->ob->speed_left > pl->ob->speed)
1070  pl->ob->speed_left = pl->ob->speed;
1071  }
1072 }
1073 
1074 #define SPEED_DEBUG
1075 
1076 static bool object_in_icecube(object *op) {
1077  return op->env != NULL && strcmp(op->env->arch->name, "icecube") == 0;
1078 }
1079 
1083 void process_events(void) {
1084  object *op;
1085  object marker;
1086  tag_t tag;
1087 
1088  process_players1();
1089 
1090  memset(&marker, 0, sizeof(object));
1091  /* Put marker object at beginning of active list */
1092  marker.active_next = active_objects;
1093 
1094  if (marker.active_next)
1095  marker.active_next->active_prev = &marker;
1096  marker.active_prev = NULL;
1097  active_objects = &marker;
1098 
1099  while (marker.active_next) {
1100  op = marker.active_next;
1101  tag = op->count;
1102 
1103  /* Move marker forward - swap op and marker */
1104  op->active_prev = marker.active_prev;
1105 
1106  if (op->active_prev)
1107  op->active_prev->active_next = op;
1108  else
1109  active_objects = op;
1110 
1111  marker.active_next = op->active_next;
1112 
1113  if (marker.active_next)
1114  marker.active_next->active_prev = &marker;
1115  marker.active_prev = op;
1116  op->active_next = &marker;
1117 
1118  /* Now process op */
1119  if (QUERY_FLAG(op, FLAG_FREED)) {
1120  LOG(llevError, "BUG: process_events(): Free object on list\n");
1121  op->speed = 0;
1123  continue;
1124  }
1125 
1126  /* I've seen occasional crashes due to this - the object is removed,
1127  * and thus the map it points to (last map it was on) may be bogus
1128  * The real bug is to try to find out the cause of this - someone
1129  * is probably calling object_remove() without either an insert_ob or
1130  * object_free_drop_inventory() afterwards, leaving an object dangling.
1131  * But I'd rather log this and continue on instead of crashing.
1132  * Don't remove players - when a player quits, the object is in
1133  * sort of a limbo, of removed, but something we want to keep
1134  * around.
1135  */
1136  if (QUERY_FLAG(op, FLAG_REMOVED)
1137  && op->type != PLAYER
1138  && op->map
1139  && op->map->in_memory != MAP_IN_MEMORY) {
1140  StringBuffer *sb;
1141  char *diff;
1142 
1143  LOG(llevError, "BUG: process_events(): Removed object on list\n");
1144  sb = stringbuffer_new();
1145  object_dump(op, sb);
1146  diff = stringbuffer_finish(sb);
1147  LOG(llevError, "%s\n", diff);
1148  free(diff);
1150  continue;
1151  }
1152 
1153  if (!op->speed) {
1154  LOG(llevError, "BUG: process_events(): Object %s has no speed, but is on active list\n", op->arch->name);
1156  continue;
1157  }
1158 
1159  if (op->map == NULL
1160  && op->env == NULL
1161  && op->name
1162  && op->type != MAP) {
1163  LOG(llevError, "BUG: process_events(): Object without map or inventory is on active list: %s (%d)\n", op->name, op->count);
1164  op->speed = 0;
1166  continue;
1167  }
1168 
1169  /* Seen some cases where process_object() is crashing because
1170  * the object is on a swapped out map. But can't be sure if
1171  * something in the chain of events caused the object to
1172  * change maps or was just never removed - this will
1173  * give some clue as to its state before call to
1174  * process_object
1175  */
1176  if (op->map && op->map->in_memory != MAP_IN_MEMORY) {
1177  LOG(llevError, "BUG: process_events(): Processing object on swapped out map: %s (%d), map=%s\n", op->name, op->count, op->map->path);
1178  }
1179 
1180  /* Animate the object. Bug of feature that andim_speed
1181  * is based on ticks, and not the creatures speed?
1182  */
1183  if ((op->anim_speed && op->last_anim >= op->anim_speed)
1184  || (op->temp_animation && op->last_anim >= op->temp_anim_speed)) {
1185  op->state++;
1186  if ((op->type == PLAYER) || (op->type == MONSTER))
1187  animate_object(op, op->facing);
1188  else
1189  animate_object(op, op->direction);
1190  op->last_anim = 1;
1191  } else {
1192  op->last_anim++;
1193  }
1194 
1195  if (op->speed_left > 0) {
1196  // Players are special because their speed_left has already been
1197  // reduced in do_server(). Players effectively process every tick
1198  // so long they have non-zero speed left.
1199  if (op->type != PLAYER) {
1200  // Objects in icecubes decay at a slower rate
1201  if (object_in_icecube(op)) {
1202  op->speed_left -= 10;
1203  } else {
1204  op->speed_left -= 1;
1205  }
1206  }
1207  process_object(op);
1208  if (object_was_destroyed(op, tag))
1209  continue;
1210  } else {
1211  // Custom-made creatures for random maps can still have negative speeds, so catch that with FABS().
1212  op->speed_left += FABS(op->speed);
1213  }
1214  if (settings.casting_time == TRUE && op->casting_time > 0)
1215  op->casting_time--;
1216  }
1217 
1218  /* Remove marker object from active list */
1219  if (marker.active_prev != NULL)
1220  marker.active_prev->active_next = NULL;
1221  else
1222  active_objects = NULL;
1223 
1224  process_players2();
1225 }
1226 
1231 void clean_tmp_files(void) {
1232  mapstruct *m, *next;
1233  for (m = first_map; m != NULL; m = next) {
1234  next = m->next;
1235  if (m->in_memory == MAP_IN_MEMORY) {
1236  // Save all maps currently in memory, because they might contain
1237  // unique tiles that have not been written to disk.
1238  if (settings.recycle_tmp_maps) {
1239  // swap_map() also updates the write log.
1240  swap_map(m);
1241  } else {
1243  // FIXME: Unfortunately, save_map() also unnecessarily saves
1244  // non-unique tiles to a new temporary file, so we have to
1245  // get rid of it here.
1246  clean_tmp_map(m);
1247  }
1248  } else {
1249  // Remove the swap file.
1250  clean_tmp_map(m);
1251  }
1252  }
1253  write_todclock(); /* lets just write the clock here */
1254 }
1255 
1257 void cleanup(void) {
1258  LOG(llevInfo, "Cleaning up...\n");
1259  clean_tmp_files();
1261  accounts_save();
1262 
1263  close_modules();
1264 
1265 #ifdef MEMORY_DEBUG
1266  free_all_maps();
1267  free_style_maps();
1268 #endif
1269  cleanupPlugins();
1270  commands_clear();
1271 #ifdef MEMORY_DEBUG
1272  free_all_archs();
1274  free_all_images();
1276  free_all_recipes();
1278  free_all_god();
1279  free_all_anim();
1280  i18n_free();
1281  free_loader();
1282  free_globals();
1283  free_server();
1285  free_knowledge();
1286  free_quest();
1288  /* See what the string data that is out there that hasn't been freed. */
1289  /* LOG(llevDebug, "%s", ss_dump_table(0xff));*/
1290 #endif
1291  exit(0);
1292 }
1293 
1302 void leave(player *pl, int draw_exit) {
1303  if (!QUERY_FLAG(pl->ob, FLAG_REMOVED)) {
1305  object_remove(pl->ob);
1306  }
1307 
1308  pl->socket.status = Ns_Dead;
1309  LOG(llevInfo, "logout: %s from %s\n", pl->ob->name, pl->socket.host);
1310 
1311  strcpy(pl->ob->contr->killer, "left");
1312  hiscore_check(pl->ob, 1);
1313 
1314  /* If this player is the captain of the transport, need to do
1315  * some extra work. By the time we get here, object_remove()
1316  * should have already been called.
1317  */
1318  if (pl->transport && pl->transport->contr == pl) {
1319  /* If inv is a non player, inv->contr will be NULL, but that
1320  * is OK.
1321  */
1322  if (pl->transport->inv)
1324  else
1325  pl->transport->contr = NULL;
1326 
1327  if (pl->transport->contr) {
1328  char name[MAX_BUF];
1329 
1333  "%s has left. You are now the captain of %s",
1334  pl->ob->name, name);
1335  }
1336  }
1337 
1338  if (pl->ob->map) {
1339  if (pl->ob->map->in_memory == MAP_IN_MEMORY)
1340  pl->ob->map->timeout = MAP_TIMEOUT(pl->ob->map);
1341  pl->ob->map = NULL;
1342  }
1343  pl->ob->type = DEAD_OBJECT; /* To avoid problems with inventory window */
1344  party_leave(pl->ob);
1345  /* If a hidden dm dropped connection do not create
1346  * inconsistencies by showing that they have left the game
1347  */
1348  if (!(QUERY_FLAG(pl->ob, FLAG_WIZ) && pl->ob->contr->hidden)
1349  && (draw_exit) && (pl->state != ST_GET_NAME && pl->state != ST_GET_PASSWORD && pl->state != ST_CONFIRM_PASSWORD))
1352  "%s left the game.",
1353  pl->ob->name);
1354 }
1355 
1363 int forbid_play(void) {
1364 #if !defined(_IBMR2) && !defined(___IBMR2) && defined(PERM_FILE)
1365  char buf[MAX_BUF], day[MAX_BUF];
1366  FILE *fp;
1367  time_t clock;
1368  struct tm *tm;
1369  int i, start, stop, forbit = 0;
1370 
1371  clock = time(NULL);
1372  tm = (struct tm *)localtime(&clock);
1373 
1374  snprintf(buf, sizeof(buf), "%s/%s", settings.confdir, PERM_FILE);
1375  if ((fp = fopen(buf, "r")) == NULL)
1376  return 0;
1377 
1378  while (fgets(buf, sizeof(buf), fp)) {
1379  if (buf[0] == '#')
1380  continue;
1381  if (!strncmp(buf, "msg", 3)) {
1382  if (forbit)
1383  while (fgets(buf, sizeof(buf), fp)) /* print message */
1384  fputs(buf, logfile);
1385  break;
1386  } else if (sscanf(buf, "%s %d%*c%d\n", day, &start, &stop) != 3) {
1387  LOG(llevDebug, "Warning: Incomplete line in permission file ignored.\n");
1388  continue;
1389  }
1390 
1391  for (i = 0; i < 7; i++) {
1392  if (!strncmp(buf, days[i], 3)
1393  && (tm->tm_wday == i)
1394  && (tm->tm_hour >= start)
1395  && (tm->tm_hour < stop))
1396  forbit = 1;
1397  }
1398  }
1399 
1400  fclose(fp);
1401 
1402  return forbit;
1403 #else
1404  return 0;
1405 #endif
1406 }
1407 
1408 static void do_shutdown(void) {
1410  MSG_TYPE_ADMIN_DM, "The server has shut down.");
1411 
1412  /* TODO: Kick everyone out and save player files? */
1413  cleanup();
1414 }
1415 
1419 static bool check_shutdown(void) {
1420  if (shutdown_flag == 1) {
1421  LOG(llevInfo, "Received SIGINT; shutting down...\n");
1422  return true;
1423  }
1424 
1426  return false;
1427  }
1428 
1430  if (count_players() == 0) {
1431  if (shutdown_state.time == 0) {
1432  // Start idle countdown
1433  shutdown_state.time = time(NULL);
1434  return false;
1435  } else {
1436  time_t diff = time(NULL) - shutdown_state.time;
1437  if (diff > 60) {
1438  LOG(llevInfo, "No active players in the last %ld seconds, shutting down...\n", diff);
1439  return true;
1440  } else {
1441  return false;
1442  }
1443  }
1444  } else {
1445  // Reset idle time, since there are players
1446  shutdown_state.time = 0;
1447  }
1448  return false;
1449  }
1450 
1451  assert(shutdown_state.type == SHUTDOWN_TIME);
1452 
1453  /* If a timed shutdown is coming, remind players periodically. */
1454  time_t time_left = shutdown_state.time - time(NULL);
1455 
1456  for (unsigned int i = shutdown_state.next_warn; i < sizeof(shutdown_warn_times) / sizeof(int); i++) {
1457  if (shutdown_warn_times[i] == (int)ceil(time_left / 60.0)) {
1460  "Server shutting down in %d minutes.", shutdown_warn_times[i]);
1461  shutdown_state.next_warn = i + 1;
1462  return false;
1463  }
1464  }
1465 
1466  if (time_left <= 0) {
1467  return true;
1468  }
1469  return false;
1470 }
1471 
1476 void login_check_shutdown(object* const op) {
1478  return;
1479  }
1480 
1484  "This server will shut down when all players leave.");
1485  return;
1486  }
1487 
1488  assert(shutdown_state.type == SHUTDOWN_TIME);
1489 
1490  time_t time_left = shutdown_state.time - time(NULL);
1491  if (time_left <= 60*shutdown_warn_times[0]) {
1494  "This server will shut down in %d minutes.", time_left / 60);
1495  }
1496 }
1497 
1512 static void do_specials(void) {
1513  if (check_shutdown()) {
1514  do_shutdown();
1515  }
1516 
1517 #ifdef CS_LOGSTATS
1518  if ((time(NULL)-cst_lst.time_start) >= CS_LOGTIME) {
1519  write_cs_stats();
1520  }
1521 #endif
1522 
1523  if (!(pticks%10))
1525 
1526 #ifdef WATCHDOG
1527  if (!(pticks%503))
1528  watchdog();
1529 #endif
1530 
1531  if (!(pticks%PTICKS_PER_CLOCK))
1532  tick_the_clock();
1533 
1534  if (!(pticks%509))
1535  flush_old_maps(); /* Clears the tmp-files of maps which have reset */
1536 
1537  if (!(pticks%2503))
1538  fix_weight(); /* Hack to fix weightproblems caused by bugs */
1539 
1540  if (!(pticks%2521))
1541  metaserver_update(); /* 2500 ticks is about 5 minutes */
1542 
1543  if (!(pticks%2531))
1544  accounts_save();
1545 
1546  if (!(pticks%5003))
1548 
1549  if (!(pticks%5009))
1551 
1552  if (!(pticks%5011))
1554 
1555  if (!(pticks%12503))
1556  fix_luck();
1557 }
1558 
1567 void server_main(int argc, char *argv[]) {
1568  PROFILE_BEGIN();
1569 #ifdef WIN32 /* ---win32 this sets the win32 from 0d0a to 0a handling */
1570  _fmode = _O_BINARY;
1571 #endif
1572 
1573 #ifndef WIN32
1574  /* Here we check that we aren't root or suid */
1575  if (getuid() == 0 || geteuid() == 0) {
1576  fprintf(stderr,
1577  "Running crossfire-server as root is a bad idea; aborting!\n"
1578  "Please run it again as a normal, unprivileged user.\n");
1579  exit(EXIT_FAILURE);
1580  }
1581 #endif
1582 
1583 #ifdef DEBUG_MALLOC_LEVEL
1584  malloc_debug(DEBUG_MALLOC_LEVEL);
1585 #endif
1586 
1587  init(argc, argv);
1588  initPlugins(); /* GROS - Init the Plugins */
1589  // Give feedback that loading is complete. This prevents confusion on when it is done loading.
1590  PROFILE_END(diff, LOG(llevInfo, "Initialization complete (%ld ms). Waiting for connections.\n", diff/1000));
1591 #ifdef WIN32
1592  while (bRunning) {
1593 #else
1594  while (TRUE) {
1595 #endif
1596  nroferrors = 0;
1597 
1598  tick_game_time();
1599  do_server();
1600  process_events(); /* "do" something with objects with speed */
1601  cftimer_process_timers(); /* Process the crossfire Timers */
1603  check_active_maps(); /* Removes unused maps after a certain timeout */
1604  do_specials(); /* Routines called from time to time. */
1605  update_players();
1606  }
1607 
1608  /* This is unreachable. */
1609  abort();
1610 }
object_was_destroyed
#define object_was_destroyed(op, old_tag)
Definition: object.h:68
Settings::casting_time
uint8_t casting_time
Definition: global.h:265
obj::weapon_speed
float weapon_speed
Definition: object.h:334
fix_weight
void fix_weight(void)
Definition: player.c:3854
mapdef::reset_group
sstring reset_group
Definition: map.h:329
give.next
def next
Definition: give.py:44
ready_map_name
mapstruct * ready_map_name(const char *name, int flags)
Definition: map.c:1785
handle_newcs_player
int handle_newcs_player(object *op)
Definition: player.c:3061
PLAYER
@ PLAYER
Definition: object.h:107
path.h
global.h
FREE_OBJ_NO_DESTROY_CALLBACK
#define FREE_OBJ_NO_DESTROY_CALLBACK
Definition: object.h:531
liv::dam
int16_t dam
Definition: living.h:46
object_free
void object_free(object *ob, int flags)
Definition: object.c:1578
INS_NO_WALK_ON
#define INS_NO_WALK_ON
Definition: object.h:568
add_string
sstring add_string(const char *str)
Definition: shstr.c:124
random_map.h
tick_the_clock
void tick_the_clock(void)
Definition: weather.c:94
object_remove
void object_remove(object *op)
Definition: object.c:1819
safe_strncpy
#define safe_strncpy
Definition: compat.h:27
MAP
@ MAP
Definition: object.h:125
stringbuffer_new
StringBuffer * stringbuffer_new(void)
Definition: stringbuffer.c:57
remove_friendly_object
void remove_friendly_object(object *op)
Definition: friend.cpp:56
pets_terminate_all
void pets_terminate_all(object *owner)
Definition: pets.c:225
object_set_enemy
void object_set_enemy(object *op, object *enemy)
Definition: object.c:919
pl::transport
object * transport
Definition: player.h:213
ST_GET_PASSWORD
#define ST_GET_PASSWORD
Definition: define.h:547
MONSTER
@ MONSTER
Definition: object.h:200
Settings::recycle_tmp_maps
uint8_t recycle_tmp_maps
Definition: global.h:267
login_check_shutdown
void login_check_shutdown(object *const op)
Definition: server.c:1476
Settings::emergency_y
uint16_t emergency_y
Definition: global.h:295
llevError
@ llevError
Definition: logger.h:11
RMParms::origin_map
char origin_map[RM_SIZE]
Definition: random_map.h:55
FABS
#define FABS(x)
Definition: define.h:22
MSG_TYPE_ADMIN_PLAYER
#define MSG_TYPE_ADMIN_PLAYER
Definition: newclient.h:496
SHUTDOWN_IDLE
@ SHUTDOWN_IDLE
Definition: commands.h:44
PTICKS_PER_CLOCK
#define PTICKS_PER_CLOCK
Definition: tod.h:12
PORTAL_DESTINATION_NAME
#define PORTAL_DESTINATION_NAME
days
static const char * days[]
Definition: server.c:51
diamondslots.x
x
Definition: diamondslots.py:15
clean_tmp_map
void clean_tmp_map(mapstruct *m)
Definition: map.c:1968
obj::map
struct mapdef * map
Definition: object.h:300
SIZEOFFREE1
#define SIZEOFFREE1
Definition: define.h:153
QUERY_FLAG
#define QUERY_FLAG(xyz, p)
Definition: define.h:226
server_main
void server_main(int argc, char *argv[])
Definition: server.c:1567
tick_game_time
void tick_game_time()
Definition: time.c:181
flush_old_maps
void flush_old_maps(void)
Definition: swap.c:289
ST_GET_NAME
#define ST_GET_NAME
Definition: define.h:546
process_events
void process_events(void)
Definition: server.c:1083
out_of_map
int out_of_map(mapstruct *m, int x, int y)
Definition: map.c:2312
object_new
object * object_new(void)
Definition: object.c:1255
Settings::crypt_mode
uint8_t crypt_mode
Definition: global.h:325
c
static event_registration c
Definition: citylife.cpp:427
pl::socket
socket_struct socket
Definition: player.h:107
FLAG_UNIQUE
#define FLAG_UNIQUE
Definition: define.h:287
pl
Definition: player.h:105
accounts_save
void accounts_save(void)
Definition: account.c:260
EXIT_PATH
#define EXIT_PATH(xyz)
Definition: define.h:439
do_server
void do_server(void)
Definition: loop.c:556
RMParms::Ysize
int Ysize
Definition: random_map.h:75
MAP_MAXTIMEOUT
#define MAP_MAXTIMEOUT
Definition: config.h:399
set_random_map_variable
int set_random_map_variable(RMParms *rp, const char *buf)
Definition: reader.c:2579
guildjoin.ob
ob
Definition: guildjoin.py:42
unclean_path
static char * unclean_path(const char *src, char *newpath, int size)
Definition: server.c:359
leave
void leave(player *pl, int draw_exit)
Definition: server.c:1302
do_follow
static void do_follow(player *pl)
Definition: server.c:915
mapdef::in_memory
uint32_t in_memory
Definition: map.h:338
mad_mage_user.file
file
Definition: mad_mage_user.py:15
move_player
int move_player(object *op, int dir)
Definition: player.c:2923
pl::ob
object * ob
Definition: player.h:176
create_pathname
char * create_pathname(const char *name, char *buf, size_t size)
Definition: map.c:103
free_all_newserver
void free_all_newserver(void)
Definition: init.c:394
MAP_PLAYER_UNIQUE
#define MAP_PLAYER_UNIQUE
Definition: map.h:97
path_combine_and_normalize
char * path_combine_and_normalize(const char *src, const char *dst, char *path, size_t size)
Definition: path.c:172
enter_map
static void enter_map(object *op, mapstruct *newmap, int x, int y)
Definition: server.c:179
ob_blocked
int ob_blocked(const object *ob, mapstruct *m, int16_t x, int16_t y)
Definition: map.c:488
enter_player_savebed
void enter_player_savebed(object *op)
Definition: server.c:138
PROFILE_BEGIN
#define PROFILE_BEGIN(expr)
Definition: global.h:361
free_all_recipes
void free_all_recipes(void)
Definition: recipe.c:688
RMParms::origin_y
int origin_y
Definition: random_map.h:88
Ice.tmp
int tmp
Definition: Ice.py:207
free_knowledge
void free_knowledge(void)
Definition: knowledge.c:1277
Settings::emergency_x
uint16_t emergency_x
Definition: global.h:295
generate_random_map
mapstruct * generate_random_map(const char *OutFileName, RMParms *RP, char **use_layout, sstring reset_group)
Definition: random_map.c:76
flags
static const flag_definition flags[]
Definition: gridarta-types-convert.c:101
cleanupPlugins
void cleanupPlugins(void)
Definition: plugins.c:4556
obj::msg
sstring msg
Definition: object.h:325
do_shutdown
static void do_shutdown(void)
Definition: server.c:1408
get_rangevector
int get_rangevector(object *op1, const object *op2, rv_vector *retval, int flags)
Definition: map.c:2545
object_free_all_data
void object_free_all_data(void)
Definition: object.c:771
range_golem
@ range_golem
Definition: player.h:34
first_map
EXTERN mapstruct * first_map
Definition: global.h:116
MSG_TYPE_MISC
#define MSG_TYPE_MISC
Definition: newclient.h:413
party_obsolete_parties
void party_obsolete_parties(void)
Definition: party.c:215
initPlugins
void initPlugins(void)
Definition: plugins.c:4506
hiscore_check
void hiscore_check(object *op, int quiet)
Definition: hiscore.c:346
version.h
RMParms
Definition: random_map.h:14
HUGE_BUF
#define HUGE_BUF
Definition: define.h:37
query_flag
static int query_flag(const object *op, int flag)
Definition: object.h:491
MSG_TYPE_COMMAND
#define MSG_TYPE_COMMAND
Definition: newclient.h:404
active_objects
object * active_objects
Definition: object.c:296
freearr_x
short freearr_x[SIZEOFFREE]
Definition: object.c:299
freearr_y
short freearr_y[SIZEOFFREE]
Definition: object.c:305
ob_apply
method_ret ob_apply(object *op, object *applier, int aflags)
Definition: ob_methods.c:44
check_shutdown
static bool check_shutdown(void)
Definition: server.c:1419
settings
struct Settings settings
Definition: init.c:39
animate_object
void animate_object(object *op, int dir)
Definition: anim.c:43
obj::last_heal
int32_t last_heal
Definition: object.h:362
Ns_Dead
@ Ns_Dead
Definition: newserver.h:67
MSG_TYPE_ADMIN_DM
#define MSG_TYPE_ADMIN_DM
Definition: newclient.h:497
free_string
void free_string(sstring str)
Definition: shstr.c:280
CS_Stats::time_start
time_t time_start
Definition: newclient.h:698
PROFILE_END
#define PROFILE_END(var, expr)
Definition: global.h:366
RMParms::origin_x
int origin_x
Definition: random_map.h:89
m
static event_registration m
Definition: citylife.cpp:427
clean_tmp_files
void clean_tmp_files(void)
Definition: server.c:1231
mapdef::players
int16_t players
Definition: map.h:337
MAP_IN_MEMORY
#define MAP_IN_MEMORY
Definition: map.h:131
apply_auto_fix
void apply_auto_fix(mapstruct *m)
Definition: main.c:259
shutdown_s::time
time_t time
Definition: commands.h:49
pl::next
struct pl * next
Definition: player.h:106
MAP_MINTIMEOUT
#define MAP_MINTIMEOUT
Definition: config.h:401
object_find_by_type_and_slaying
object * object_find_by_type_and_slaying(const object *who, int type, const char *slaying)
Definition: object.c:4129
set_map_timeout
void set_map_timeout(mapstruct *oldmap)
Definition: server.c:298
obj::active_next
struct obj * active_next
Definition: object.h:282
object_on_exit
static bool object_on_exit(object *ob, object *exit)
Definition: server.c:904
obj::name
sstring name
Definition: object.h:314
EVENT_CLOCK
#define EVENT_CLOCK
Definition: events.h:39
pl::state
uint8_t state
Definition: player.h:131
object_copy
void object_copy(const object *src_ob, object *dest_ob)
Definition: object.c:1064
query_name
void query_name(const object *op, char *buf, size_t size)
Definition: item.c:585
object_dump
void object_dump(const object *op, StringBuffer *sb)
Definition: object.c:649
clean_friendly_list
void clean_friendly_list(void)
Definition: friend.cpp:84
RMParms::final_map
char final_map[RM_SIZE]
Definition: random_map.h:57
party_leave
void party_leave(object *op)
Definition: party.c:123
EVENT_MAPENTER
#define EVENT_MAPENTER
Definition: events.h:45
FOR_OB_AND_BELOW_FINISH
#define FOR_OB_AND_BELOW_FINISH()
Definition: define.h:754
object_in_icecube
static bool object_in_icecube(object *op)
Definition: server.c:1076
free_quest
void free_quest(void)
Definition: quest.c:910
shutdown_s::type
enum shutdown_type type
Definition: commands.h:48
make_face_from_files.str
str
Definition: make_face_from_files.py:24
obj::speed_left
float speed_left
Definition: object.h:333
crypt_string
static char const * crypt_string(char const str[static 1], char const *salt)
Definition: server.c:70
python_init.path
path
Definition: python_init.py:8
FLAG_FREED
#define FLAG_FREED
Definition: define.h:233
socket_struct::host
char * host
Definition: newserver.h:100
first_player
EXTERN player * first_player
Definition: global.h:115
obj::x
int16_t x
Definition: object.h:330
FLAG_DAMNED
#define FLAG_DAMNED
Definition: define.h:317
move_towards
static int move_towards(object *ob, object *towards, unsigned int mindist)
Definition: server.c:891
CFweardisguise.tag
tag
Definition: CFweardisguise.py:25
stringbuffer_finish
char * stringbuffer_finish(StringBuffer *sb)
Definition: stringbuffer.c:76
player_map_change_common
void player_map_change_common(object *op, mapstruct *const oldmap, mapstruct *const newmap)
Definition: server.c:276
pl::has_hit
uint32_t has_hit
Definition: player.h:144
obj::speed
float speed
Definition: object.h:332
mapdef::timeout
int32_t timeout
Definition: map.h:334
pl::followed_player
sstring followed_player
Definition: player.h:217
tag_t
uint32_t tag_t
Definition: object.h:12
rproto.h
RMParms::region
struct regiondef * region
Definition: random_map.h:96
Settings::confdir
const char * confdir
Definition: global.h:242
sproto.h
nroferrors
EXTERN long nroferrors
Definition: global.h:126
FOR_OB_AND_BELOW_PREPARE
#define FOR_OB_AND_BELOW_PREPARE(op_)
Definition: define.h:750
mapdef
Definition: map.h:317
MSG_TYPE_SPELL
#define MSG_TYPE_SPELL
Definition: newclient.h:411
do_specials
static void do_specials(void)
Definition: server.c:1512
cftimer_process_timers
void cftimer_process_timers(void)
Definition: timers.c:44
logfile
EXTERN FILE * logfile
Definition: global.h:134
newhash
char const * newhash(char const password[static 1])
Definition: server.c:101
SHUTDOWN_NONE
@ SHUTDOWN_NONE
Definition: commands.h:42
clean_path
static char * clean_path(const char *file, char *newpath, int size)
Definition: server.c:331
mapdef::name
char * name
Definition: map.h:320
MAP_WIDTH
#define MAP_WIDTH(m)
Definition: map.h:78
mapdef::is_template
uint32_t is_template
Definition: map.h:331
strlcpy
size_t strlcpy(char *dst, const char *src, size_t size)
Definition: porting.c:220
SIZEOFFREE
#define SIZEOFFREE
Definition: define.h:155
EXIT_X
#define EXIT_X(xyz)
Definition: define.h:441
MAX_BUF
#define MAX_BUF
Definition: define.h:35
object_get_multi_size
void object_get_multi_size(const object *ob, int *sx, int *sy, int *hx, int *hy)
Definition: object.c:4714
free_all_god
void free_all_god(void)
Definition: holy.cpp:331
PERM_FILE
#define PERM_FILE
Definition: config.h:446
SAVE_MODE_NORMAL
#define SAVE_MODE_NORMAL
Definition: map.h:121
RANDOM
#define RANDOM()
Definition: define.h:644
check_password
bool check_password(const char *typed, const char *crypted)
Definition: server.c:114
free_loader
void free_loader(void)
Definition: loader.c:5333
StringBuffer
Definition: stringbuffer.c:25
FREE_AND_CLEAR_STR
#define FREE_AND_CLEAR_STR(xyz)
Definition: global.h:195
free_quest_definitions
void free_quest_definitions(void)
enter_player_maplevel
void enter_player_maplevel(object *op)
Definition: server.c:687
bRunning
int bRunning
save_map
int save_map(mapstruct *m, int flag)
Definition: map.c:1420
cleanup
void cleanup(void)
Definition: server.c:1257
MSG_TYPE_COMMAND_FAILURE
#define MSG_TYPE_COMMAND_FAILURE
Definition: newclient.h:531
can_follow
bool can_follow(object *, player *)
Definition: c_wiz.c:2770
obj::y
int16_t y
Definition: object.h:330
socket_struct::sounds_this_tick
int8_t sounds_this_tick
Definition: newserver.h:121
ST_PLAYING
#define ST_PLAYING
Definition: define.h:541
ob_describe
char * ob_describe(const object *op, const object *observer, int use_media_tags, char *buf, size_t size)
Definition: ob_methods.c:91
pets_attempt_follow
void pets_attempt_follow(object *for_owner, int force)
Definition: pets.c:249
FLAG_REMOVED
#define FLAG_REMOVED
Definition: define.h:232
FLAG_WIZ
#define FLAG_WIZ
Definition: define.h:231
swap_map
int swap_map(mapstruct *map)
Definition: swap.c:135
write_book_archive
void write_book_archive(void)
Definition: readable.c:2046
Settings::emergency_mapname
char * emergency_mapname
Definition: global.h:294
enter_unique_map
static void enter_unique_map(object *op, object *exit_ob)
Definition: server.c:616
llevInfo
@ llevInfo
Definition: logger.h:12
obj::type
uint8_t type
Definition: object.h:343
obj::last_grace
int16_t last_grace
Definition: object.h:364
NDI_UNIQUE
#define NDI_UNIQUE
Definition: newclient.h:262
pticks
uint32_t pticks
Definition: time.c:47
roll-o-matic.stop
def stop()
Definition: roll-o-matic.py:78
obj::stats
living stats
Definition: object.h:373
MSG_TYPE_SPELL_FAILURE
#define MSG_TYPE_SPELL_FAILURE
Definition: newclient.h:633
SIZEOFFREE2
#define SIZEOFFREE2
Definition: define.h:154
free_all_maps
void free_all_maps(void)
Definition: map.c:1977
obj::contr
struct pl * contr
Definition: object.h:279
free_style_maps
void free_style_maps(void)
Definition: style.c:312
ST_CONFIRM_PASSWORD
#define ST_CONFIRM_PASSWORD
Definition: define.h:548
metaserver_update
void metaserver_update(void)
Definition: metaserver.c:85
item
Definition: item.py:1
LOG
void LOG(LogLevel logLevel, const char *format,...)
Definition: logger.c:51
write_cs_stats
void write_cs_stats(void)
SHUTDOWN_TIME
@ SHUTDOWN_TIME
Definition: commands.h:43
give.op
op
Definition: give.py:33
object_find_free_spot
int object_find_free_spot(const object *ob, mapstruct *m, int x, int y, int start, int stop)
Definition: object.c:3530
NDI_ALL
#define NDI_ALL
Definition: newclient.h:263
socket_struct::status
enum Sock_Status status
Definition: newserver.h:90
update_players
void update_players(void)
Definition: loop.c:699
enter_exit
void enter_exit(object *op, object *exit_ob)
Definition: server.c:732
EVENT_MAPLEAVE
#define EVENT_MAPLEAVE
Definition: events.h:46
process_players2
static void process_players2(void)
Definition: server.c:1053
pl::killer
char killer[BIG_NAME]
Definition: player.h:189
obj::weapon_speed_left
float weapon_speed_left
Definition: object.h:335
rv_vector
Definition: map.h:373
init
void init(int argc, char **argv)
Definition: init.c:1108
obj::last_sp
int32_t last_sp
Definition: object.h:363
obj::casting_time
int16_t casting_time
Definition: object.h:407
hit_player
int hit_player(object *op, int dam, object *hitter, uint32_t type, int full_hit)
Definition: attack.c:1860
EXIT_Y
#define EXIT_Y(xyz)
Definition: define.h:442
diamondslots.y
y
Definition: diamondslots.py:16
free_server
void free_server(void)
Definition: init.c:1148
buf
StringBuffer * buf
Definition: readable.c:1610
pl::hidden
uint32_t hidden
Definition: player.h:147
MAP_HEIGHT
#define MAP_HEIGHT(m)
Definition: map.h:80
MAP_ENTER_Y
#define MAP_ENTER_Y(m)
Definition: map.h:87
NDI_DK_ORANGE
#define NDI_DK_ORANGE
Definition: newclient.h:248
find_player_partial_name
player * find_player_partial_name(const char *plname)
Definition: player.c:111
object_update_speed
void object_update_speed(object *op)
Definition: object.c:1330
obj::subtype
uint8_t subtype
Definition: object.h:344
watchdog
void watchdog(void)
obj::last_eat
int32_t last_eat
Definition: object.h:361
map_newmap_cmd
void map_newmap_cmd(socket_struct *ns)
Definition: request.c:620
process_players1
static void process_players1(void)
Definition: server.c:961
DEAD_OBJECT
@ DEAD_OBJECT
Definition: object.h:156
enter_fixed_template_map
static void enter_fixed_template_map(object *pl, object *exit_ob)
Definition: server.c:457
make_face_from_files.int
int
Definition: make_face_from_files.py:26
find_dir_2
int find_dir_2(int x, int y)
Definition: object.c:3648
forbid_play
int forbid_play(void)
Definition: server.c:1363
replace
void replace(const char *src, const char *key, const char *replacement, char *result, size_t resultsize)
Definition: utils.c:337
get_region_by_map
region * get_region_by_map(mapstruct *m)
Definition: region.cpp:76
save_player
int save_player(object *op, int flag)
Definition: login.c:230
object_insert_in_map_at
object * object_insert_in_map_at(object *op, mapstruct *m, object *originator, int flag, int x, int y)
Definition: object.c:2080
draw_ext_info
void draw_ext_info(int flags, int pri, const object *pl, uint8_t type, uint8_t subtype, const char *message)
Definition: main.c:309
object_free_drop_inventory
void object_free_drop_inventory(object *ob)
Definition: object.c:1546
obj::active_prev
struct obj * active_prev
Definition: object.h:286
pl::ticks_played
uint32_t ticks_played
Definition: player.h:221
free_all_artifacts
void free_all_artifacts(void)
MAP_ENTER_X
#define MAP_ENTER_X(m)
Definition: map.h:85
shutdown_state
struct shutdown_s shutdown_state
Definition: c_wiz.c:43
shutdown_warn_times
static const int shutdown_warn_times[]
Definition: server.c:48
pl::last_exit
struct obj * last_exit
Definition: player.h:207
FLAG_UNPAID
#define FLAG_UNPAID
Definition: define.h:236
do_some_living
void do_some_living(object *op)
Definition: player.c:3247
P_NO_CLERIC
#define P_NO_CLERIC
Definition: map.h:239
shutdown_s::next_warn
int next_warn
Definition: commands.h:51
fix_luck
void fix_luck(void)
Definition: player.c:3870
check_active_maps
void check_active_maps(void)
Definition: swap.c:199
commands_clear
void commands_clear()
Definition: commands.cpp:348
count_players
int count_players(void)
Definition: metaserver.c:46
AP_UNAPPLY
#define AP_UNAPPLY
Definition: define.h:575
obj::attacktype
uint32_t attacktype
Definition: object.h:347
server.h
close_modules
void close_modules()
Definition: init.c:80
tod.h
mapdef::path
char path[HUGE_BUF]
Definition: map.h:358
MAP_TIMEOUT
#define MAP_TIMEOUT(m)
Definition: map.h:66
TRUE
#define TRUE
Definition: compat.h:11
shutdown_flag
volatile sig_atomic_t shutdown_flag
Definition: server.c:53
get_map_flags
int get_map_flags(mapstruct *oldmap, mapstruct **newmap, int16_t x, int16_t y, int16_t *nx, int16_t *ny)
Definition: map.c:301
CS_LOGTIME
#define CS_LOGTIME
Definition: config.h:188
cst_lst
CS_Stats cst_lst
Definition: newclient.h:701
enter_random_map
static void enter_random_map(object *pl, object *exit_ob)
Definition: server.c:384
rv_vector::direction
int direction
Definition: map.h:377
altar_valkyrie.pl
pl
Definition: altar_valkyrie.py:28
free_globals
void free_globals(void)
Definition: init.c:311
MSG_TYPE_ADMIN
#define MSG_TYPE_ADMIN
Definition: newclient.h:402
write_todclock
void write_todclock(void)
Definition: init.c:392
rv_vector::distance
unsigned int distance
Definition: map.h:374
RMParms::Xsize
int Xsize
Definition: random_map.h:74
FORCE
@ FORCE
Definition: object.h:224
free_all_readable
void free_all_readable(void)
Definition: readable.c:2010
process_object
int process_object(object *op)
Definition: time.c:799
mapdef::unique
uint32_t unique
Definition: map.h:330
draw_ext_info_format
void draw_ext_info_format(int flags, int pri, const object *pl, uint8_t type, uint8_t subtype, const char *format,...)
Definition: main.c:319
i18n_free
void i18n_free(void)
Definition: languages.c:239
knowledge_process_incremental
void knowledge_process_incremental(void)
Definition: knowledge.c:1436
object.h
events_execute_global_event
void events_execute_global_event(int eventcode,...)
Definition: events.cpp:29
llevDebug
@ llevDebug
Definition: logger.h:13
SP_WORD_OF_RECALL
#define SP_WORD_OF_RECALL
Definition: spells.h:92
mapfile_load
mapstruct * mapfile_load(const char *map, int flags)
Definition: map.c:1214
AUTOSAVE
#define AUTOSAVE
Definition: config.h:586
obj::inv
struct obj * inv
Definition: object.h:293
give.name
name
Definition: give.py:27
player_update_bg_music
void player_update_bg_music(object *player)
create_template_pathname
void create_template_pathname(const char *name, char *buf, size_t size)
Definition: map.c:144
enter_random_template_map
static void enter_random_template_map(object *pl, object *exit_ob)
Definition: server.c:548
Settings::localdir
const char * localdir
Definition: global.h:244