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

Comparing deliantra/server/server/init.C (file contents):
Revision 1.9 by root, Sun Sep 10 15:59:57 2006 UTC vs.
Revision 1.56 by root, Sun Jul 1 05:00:20 2007 UTC

1
2/* 1/*
3 * static char *rcsid_init_c = 2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
4 * "$Id: init.C,v 1.9 2006/09/10 15:59:57 root Exp $"; 3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 *
8 * Crossfire TRT is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 * The authors can be reached via e-mail to <crossfire@schmorp.de>
5 */ 22 */
6
7/*
8 CrossFire, A Multiplayer game for X-windows
9
10 Copyright (C) 2002 Mark Wedel & Crossfire Development Team
11 Copyright (C) 1992 Frank Tore Johansen
12
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26
27 The authors can be reached via e-mail at crossfire-devel@real-time.com
28*/
29 23
30#include <global.h> 24#include <global.h>
31#include <material.h> 25#include <material.h>
32#include <loader.h> 26#include <loader.h>
33#ifndef __CEXTRACT__
34# include <sproto.h> 27#include <sproto.h>
35#endif
36
37/* global weathermap */
38weathermap_t **weathermap;
39 28
40void 29void
41set_logfile (char *val) 30set_logfile (char *val)
42{ 31{
43 settings.logfilename = val; 32 settings.logfilename = val;
217 206
218void 207void
219set_csport (char *val) 208set_csport (char *val)
220{ 209{
221 settings.csport = atoi (val); 210 settings.csport = atoi (val);
222#ifndef WIN32 /* ***win32: set_csport: we remove csport error secure check here, do this later */
223 if (settings.csport <= 0 || settings.csport > 32765 || (settings.csport < 1024 && getuid () != 0)) 211 if (settings.csport <= 0 || settings.csport > 32765 || (settings.csport < 1024 && getuid () != 0))
224 { 212 {
225 LOG (llevError, "%d is an invalid csport number.\n", settings.csport); 213 LOG (llevError, "%d is an invalid csport number.\n", settings.csport);
226 exit (1); 214 exit (1);
227 } 215 }
228#endif /* win32 */
229} 216}
230 217
231/* Most of this is shamelessly stolen from XSysStats. But since that is 218/* Most of this is shamelessly stolen from XSysStats. But since that is
232 * also my program, no problem. 219 * also my program, no problem.
233 */ 220 */
249 * pass system very easy, and it is very easy to add in new options. 236 * pass system very easy, and it is very easy to add in new options.
250 */ 237 */
251struct Command_Line_Options options[] = { 238struct Command_Line_Options options[] = {
252 239
253/* Pass 1 functions - STuff that can/should be called before we actually 240/* Pass 1 functions - STuff that can/should be called before we actually
254 * initialize any data. 241 * initialise any data.
255 */ 242 */
256 {"-h", 0, 1, help}, 243 {"-h", 0, 1, help},
257 244
258/* Honor -help also, since it is somewhat common */ 245/* Honor -help also, since it is somewhat common */
259 {"-help", 0, 1, help}, 246 {"-help", 0, 1, help},
271 {"-treasures", 1, 1, (void (*)()) set_treasures}, 258 {"-treasures", 1, 1, (void (*)()) set_treasures},
272 {"-uniquedir", 1, 1, (void (*)()) set_uniquedir}, 259 {"-uniquedir", 1, 1, (void (*)()) set_uniquedir},
273 {"-templatedir", 1, 1, (void (*)()) set_templatedir}, 260 {"-templatedir", 1, 1, (void (*)()) set_templatedir},
274 {"-tmpdir", 1, 1, (void (*)()) set_tmpdir}, 261 {"-tmpdir", 1, 1, (void (*)()) set_tmpdir},
275 {"-log", 1, 1, (void (*)()) set_logfile}, 262 {"-log", 1, 1, (void (*)()) set_logfile},
276
277#ifdef WIN32
278
279/* Windows service stuff */
280 {"-regsrv", 0, 1, service_register},
281 {"-unregsrv", 0, 1, service_unregister},
282 {"-srv", 0, 1, service_handle},
283#endif
284 263
285/* Pass 2 functions. Most of these could probably be in pass 1, 264/* Pass 2 functions. Most of these could probably be in pass 1,
286 * as they don't require much of anything to bet set up. 265 * as they don't require much of anything to bet set up.
287 */ 266 */
288 {"-csport", 1, 2, (void (*)()) set_csport}, 267 {"-csport", 1, 2, (void (*)()) set_csport},
394} 373}
395 374
396static void 375static void
397load_materials (void) 376load_materials (void)
398{ 377{
399 char buf[MAX_BUF], filename[MAX_BUF], *cp, *next; 378 char filename[MAX_BUF];
400 FILE *fp;
401 materialtype_t *mt; 379 materialtype_t *mt;
402 int i, value;
403 380
404 sprintf (filename, "%s/materials", settings.datadir); 381 sprintf (filename, "%s/materials", settings.datadir);
405 LOG (llevDebug, "Reading material type data from %s...", filename); 382 LOG (llevDebug, "Reading material type data from %s...\n", filename);
406 if ((fp = fopen (filename, "r")) == NULL) 383
384 object_thawer thawer (filename);
385
386 if (!thawer)
407 { 387 {
408 LOG (llevError, "Cannot open %s for reading\n", filename); 388 LOG (llevError, "Cannot open %s for reading\n", filename);
409 mt = get_empty_mat (); 389 mt = get_empty_mat ();
410 mt->next = NULL; 390 mt->next = 0;
411 materialt = mt; 391 materialt = mt;
412 return; 392 return;
413 } 393 }
394
414 mt = get_empty_mat (); 395 mt = get_empty_mat ();
415 materialt = mt; 396 materialt = mt;
416 while (fgets (buf, MAX_BUF, fp) != NULL) 397
398 for (;;)
417 { 399 {
418 if (*buf == '#') 400 thawer.next ();
419 continue; 401
420 if ((cp = strchr (buf, '\n')) != NULL) 402 switch (thawer.kw)
421 *cp = '\0';
422 cp = buf;
423 while (*cp == ' ') /* Skip blanks */
424 cp++;
425 if (!strncmp (cp, "name", 4))
426 { 403 {
404 case KW_name:
427 /* clean up the previous entry */ 405 /* clean up the previous entry */
428 if (mt->next != NULL) 406 if (mt->next)
429 { 407 {
430 if (mt->description == NULL) 408 if (!mt->description)
431 mt->description = mt->name; 409 mt->description = mt->name;
410
432 mt = mt->next; 411 mt = mt->next;
433 } 412 }
413
434 mt->next = get_empty_mat (); 414 mt->next = get_empty_mat ();
435 mt->name = strchr (cp, ' ') + 1; 415 thawer.get (mt->name);
436 } 416 break;
437 else if (!strncmp (cp, "description", 11)) 417
418 case KW_description:
419 thawer.get (mt->description);
420 break;
421
422 case KW_material:
423 thawer.get (mt->material);
424 break;
425
426 case KW_saves:
438 { 427 {
439 mt->description = strchr (cp, ' ') + 1; 428 const char *cp = thawer.get_str () - 1;
440 } 429
441 else if (sscanf (cp, "material %d", &value))
442 {
443 mt->material = value;
444 }
445 else if (!strncmp (cp, "saves", 5))
446 {
447 cp = strchr (cp, ' ') + 1;
448 for (i = 0; i < NROFATTACKS; i++) 430 for (int i = 0; i < NROFATTACKS; i++)
449 {
450 if (cp == NULL)
451 { 431 {
432 if (!cp)
433 {
452 mt->save[i] = 0; 434 mt->save[i] = 0;
453 continue; 435 continue;
436 }
437
438 int value;
439 ++cp;
440 sscanf (cp, "%d", &value);
441 mt->save[i] = (sint8) value;
442 cp = strchr (cp, ',');
454 } 443 }
455 if ((next = strchr (cp, ',')) != NULL)
456 *(next++) = '\0';
457 sscanf (cp, "%d", &value);
458 mt->save[i] = (sint8) value;
459 cp = next;
460 }
461 }
462 else if (!strncmp (cp, "mods", 4))
463 {
464 cp = strchr (cp, ' ') + 1;
465 for (i = 0; i < NROFATTACKS; i++)
466 { 444 }
467 if (cp == NULL) 445 break;
446
447 case KW_mods:
448 {
449 const char *cp = thawer.get_str () - 1;
450
451 for (int i = 0; i < NROFATTACKS; i++)
468 { 452 {
453 if (!cp)
454 {
469 mt->save[i] = 0; 455 mt->save[i] = 0;
470 continue; 456 continue;
457 }
458
459 ++cp;
460 int value;
461 sscanf (cp, "%d", &value);
462 mt->mod[i] = (sint8) value;
463 cp = strchr (cp, ',');
471 } 464 }
472 if ((next = strchr (cp, ',')) != NULL)
473 *(next++) = '\0';
474 sscanf (cp, "%d", &value);
475 mt->mod[i] = (sint8) value;
476 cp = next;
477 }
478 } 465 }
479 else if (sscanf (cp, "chance %d\n", &value)) 466 break;
467
468 case KW_chance: thawer.get (mt->chance); break;
469 case KW_difficulty: // cf+ alias, not original cf
470 case KW_diff: thawer.get (mt->difficulty); break;
471 case KW_magic: thawer.get (mt->magic); break;
472 case KW_dam: // cf+ alias, not original cf
473 case KW_damage: thawer.get (mt->damage); break;
474 case KW_wc: thawer.get (mt->wc); break;
475 case KW_ac: thawer.get (mt->ac); break;
476 case KW_sp: thawer.get (mt->sp); break;
477 case KW_weight: thawer.get (mt->weight); break;
478 case KW_value: thawer.get (mt->value); break;
479 case KW_density: thawer.get (mt->density); break;
480
481 case KW_EOF:
482 goto done;
483
484 default:
485 if (!thawer.parse_error ("materials file", "materials"))
486 goto done;
487 break;
480 { 488 }
481 mt->chance = (sint8) value;
482 }
483 else if (sscanf (cp, "diff %d\n", &value))
484 {
485 mt->difficulty = (sint8) value;
486 }
487 else if (sscanf (cp, "magic %d\n", &value))
488 {
489 mt->magic = (sint8) value;
490 }
491 else if (sscanf (cp, "damage %d\n", &value))
492 {
493 mt->damage = (sint8) value;
494 }
495 else if (sscanf (cp, "wc %d\n", &value))
496 {
497 mt->wc = (sint8) value;
498 }
499 else if (sscanf (cp, "ac %d\n", &value))
500 {
501 mt->ac = (sint8) value;
502 }
503 else if (sscanf (cp, "sp %d\n", &value))
504 {
505 mt->sp = (sint8) value;
506 }
507 else if (sscanf (cp, "weight %d\n", &value))
508 {
509 mt->weight = value;
510 }
511 else if (sscanf (cp, "value %d\n", &value))
512 {
513 mt->value = value;
514 }
515 } 489 }
490
491done:
516 if (mt->next) 492 if (mt->next)
517 { 493 {
518 delete mt->next; 494 delete mt->next;
519 495
520 mt->next = NULL; 496 mt->next = 0;
521 } 497 }
498
522 LOG (llevDebug, "Done.\n"); 499 LOG (llevDebug, "Done.\n");
523 fclose (fp);
524} 500}
525 501
526/* This loads the settings file. There could be debate whether this should 502/* This loads the settings file. There could be debate whether this should
527 * be here or in the common directory - but since only the server needs this 503 * be here or in the common directory - but since only the server needs this
528 * information, having it here probably makes more sense. 504 * information, having it here probably makes more sense.
538 514
539 /* We don't require a settings file at current time, but down the road, 515 /* We don't require a settings file at current time, but down the road,
540 * there will probably be so many values that not having a settings file 516 * there will probably be so many values that not having a settings file
541 * will not be a good thing. 517 * will not be a good thing.
542 */ 518 */
543 if ((fp = open_and_uncompress (buf, 0, &comp)) == NULL) 519 if (!(fp = open_and_uncompress (buf, 0, &comp)))
544 { 520 {
545 LOG (llevError, "Warning: No settings file found\n"); 521 LOG (llevError, "Error: No settings file found\n");
546 return; 522 exit (1);
547 } 523 }
524
548 while (fgets (buf, MAX_BUF - 1, fp) != NULL) 525 while (fgets (buf, MAX_BUF - 1, fp) != NULL)
549 { 526 {
550 if (buf[0] == '#') 527 if (buf[0] == '#')
551 continue; 528 continue;
552 /* eliminate newline */ 529 /* eliminate newline */
566 *cp++ = 0; 543 *cp++ = 0;
567 has_val = 1; 544 has_val = 1;
568 } 545 }
569 else 546 else
570 { 547 {
571 cp = ""; 548 cp = (char *)"";
572 has_val = 0; 549 has_val = 0;
573 } 550 }
574 551
575 if (!strcasecmp (buf, "metaserver_notification"))
576 {
577 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
578 {
579 settings.meta_on = TRUE;
580 }
581 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
582 {
583 settings.meta_on = FALSE;
584 }
585 else
586 {
587 LOG (llevError, "load_settings: Unknown value for metaserver_notification: %s\n", cp);
588 }
589 }
590 else if (!strcasecmp (buf, "metaserver_server"))
591 {
592 if (has_val)
593 strcpy (settings.meta_server, cp);
594 else
595 LOG (llevError, "load_settings: metaserver_server must have a value.\n");
596 }
597 else if (!strcasecmp (buf, "motd")) 552 if (!strcasecmp (buf, "motd"))
598 { 553 {
599 if (has_val) 554 if (has_val)
600 strcpy (settings.motd, cp); 555 strcpy (settings.motd, cp);
601 else 556 else
602 LOG (llevError, "load_settings: motd must have a value.\n"); 557 LOG (llevError, "load_settings: motd must have a value.\n");
606 if (has_val) 561 if (has_val)
607 strcpy (settings.dm_mail, cp); 562 strcpy (settings.dm_mail, cp);
608 else 563 else
609 LOG (llevError, "load_settings: dm_mail must have a value.\n"); 564 LOG (llevError, "load_settings: dm_mail must have a value.\n");
610 } 565 }
611 else if (!strcasecmp (buf, "metaserver_host"))
612 {
613 if (has_val)
614 strcpy (settings.meta_host, cp);
615 else
616 LOG (llevError, "load_settings: metaserver_host must have a value.\n");
617 }
618 else if (!strcasecmp (buf, "metaserver_port"))
619 {
620 int port = atoi (cp);
621
622 if (port < 1 || port > 65535)
623 LOG (llevError, "load_settings: metaserver_port must be between 1 and 65535, %d is invalid\n", port);
624 else
625 settings.meta_port = port;
626 }
627 else if (!strcasecmp (buf, "metaserver_comment"))
628 {
629 strcpy (settings.meta_comment, cp);
630 }
631 else if (!strcasecmp (buf, "worldmapstartx")) 566 else if (!strcasecmp (buf, "worldmapstartx"))
632 { 567 {
633 int size = atoi (cp); 568 int size = atoi (cp);
634 569
635 if (size < 0) 570 if (size < 0)
788 else 723 else
789 { 724 {
790 LOG (llevError, "load_settings: Unknown value for " "spell_failure_effects: %s\n", cp); 725 LOG (llevError, "load_settings: Unknown value for " "spell_failure_effects: %s\n", cp);
791 } 726 }
792 } 727 }
793 else if (!strcasecmp (buf, "casting_time"))
794 {
795 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
796 {
797 settings.casting_time = TRUE;
798 }
799 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
800 {
801 settings.casting_time = FALSE;
802 }
803 else
804 {
805 LOG (llevError, "load_settings: Unknown value for " "casting_time: %s\n", cp);
806 }
807 }
808 else if (!strcasecmp (buf, "real_wiz"))
809 {
810 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
811 {
812 settings.real_wiz = TRUE;
813 }
814 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
815 {
816 settings.real_wiz = FALSE;
817 }
818 else
819 {
820 LOG (llevError, "load_settings: Unknown value for " "real_wiz: %s\n", cp);
821 }
822 }
823 else if (!strcasecmp (buf, "recycle_tmp_maps"))
824 {
825 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
826 {
827 settings.recycle_tmp_maps = TRUE;
828 }
829 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
830 {
831 settings.recycle_tmp_maps = FALSE;
832 }
833 else
834 {
835 LOG (llevError, "load_settings: Unknown value for " "recycle_tmp_maps: %s\n", cp);
836 }
837 }
838 else if (!strcasecmp (buf, "explore_mode"))
839 {
840 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
841 {
842 settings.explore_mode = TRUE;
843 }
844 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
845 {
846 settings.explore_mode = FALSE;
847 }
848 else
849 {
850 LOG (llevError, "load_settings: Unknown value for " "explore_mode: %s\n", cp);
851 }
852 }
853 else if (!strcasecmp (buf, "who_format"))
854 {
855 if (has_val)
856 strcpy (settings.who_format, cp);
857 }
858 else if (!strcasecmp (buf, "who_wiz_format"))
859 {
860 if (has_val)
861 strcpy (settings.who_wiz_format, cp);
862 }
863 else if (!strcasecmp (buf, "spellpoint_level_depend")) 728 else if (!strcasecmp (buf, "spellpoint_level_depend"))
864 { 729 {
865 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true")) 730 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
866 { 731 {
867 settings.spellpoint_level_depend = TRUE; 732 settings.spellpoint_level_depend = TRUE;
971 } 836 }
972 else if (!strcasecmp (buf, "set_friendly_fire")) 837 else if (!strcasecmp (buf, "set_friendly_fire"))
973 { 838 {
974 int val = atoi (cp); 839 int val = atoi (cp);
975 840
976#if COZY_SERVER
977 if (val < 0 || val > 100) 841 if (val < 0 || val > 100)
978 LOG (llevError, "load_settings: set_friendly_fire must be between 0 an 100" ", %d is invalid\n", val); 842 LOG (llevError, "load_settings: set_friendly_fire must be between 0 an 100" ", %d is invalid\n", val);
979#else
980 if (val < 1 || val > 100)
981 LOG (llevError, "load_settings: set_friendly_fire must be between 1 an 100" ", %d is invalid\n", val);
982#endif
983 else 843 else
984 settings.set_friendly_fire = val; 844 settings.set_friendly_fire = val;
985 } 845 }
986 else if (!strcasecmp (buf, "armor_max_enchant")) 846 else if (!strcasecmp (buf, "armor_max_enchant"))
987 { 847 {
1040 { 900 {
1041 LOG (llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp); 901 LOG (llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp);
1042 } 902 }
1043 903
1044 } 904 }
1045 else if (!strcasecmp (buf, "no_player_stealing"))
1046 {
1047 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
1048 {
1049 settings.no_player_stealing = TRUE;
1050 }
1051 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
1052 {
1053 settings.no_player_stealing = FALSE;
1054 }
1055 else
1056 {
1057 LOG (llevError, "load_settings: unknown value for no_player_stealing: %s\n", cp);
1058 }
1059
1060 }
1061 else if (!strcasecmp (buf, "create_home_portals"))
1062 {
1063 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
1064 {
1065 settings.create_home_portals = TRUE;
1066 }
1067 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
1068 {
1069 settings.create_home_portals = FALSE;
1070 }
1071 else
1072 {
1073 LOG (llevError, "load_settings: Unknown value for create_home_portals: %s\n", cp);
1074 }
1075
1076 }
1077 else 905 else
1078 {
1079 LOG (llevError, "Unknown value in settings file: %s\n", buf); 906 LOG (llevError, "Unknown value in settings file: %s\n", buf);
1080 }
1081 } 907 }
908
1082 close_and_delete (fp, comp); 909 close_and_delete (fp, comp);
1083} 910}
1084
1085 911
1086/* 912/*
1087 * init() is called only once, when starting the program. 913 * init() is called only once, when starting the program.
1088 */ 914 */
1089
1090void 915void
1091init (int argc, char **argv) 916init (int argc, char **argv)
1092{ 917{
1093
1094 init_done = 0; /* Must be done before init_signal() */ 918 init_done = 0; /* Must be done before init_signal() */
919 rndm.seed (time (0));
920
1095 logfile = stderr; 921 logfile = stderr;
922 init_environ ();
1096 parse_args (argc, argv, 1); /* First arg pass - right now it does 923 parse_args (argc, argv, 1); /* First arg pass - right now it does
1097 * nothing, but in future specifying the 924 * nothing, but in future specifying the
1098 * LibDir in this pass would be reasonable*/ 925 * LibDir in this pass would be reasonable*/
1099 926
927 init_anim (); // Must be called before perl
928 cfperl_init ();
1100 init_library (); /* Must be called early */ 929 init_library (); /* Must be called early */
1101 load_settings (); /* Load the settings file */ 930 load_settings (); /* Load the settings file */
1102 init_weather ();
1103 load_materials (); 931 load_materials ();
1104 parse_args (argc, argv, 2); 932 parse_args (argc, argv, 2);
1105 fprintf (logfile, "Welcome to CrossFire, v%s\n", VERSION); 933 fprintf (logfile, "Welcome to CrossFire, v%s\n", VERSION);
934 fprintf (logfile, "Copyright (C) 2005, 2006, 2007 Marc Lehmann.\n");
1106 fprintf (logfile, "Copyright (C) 1994 Mark Wedel.\n"); 935 fprintf (logfile, "Copyright (C) 1994 Mark Wedel.\n");
1107 fprintf (logfile, "Copyright (C) 1992 Frank Tore Johansen.\n"); 936 fprintf (logfile, "Copyright (C) 1992 Frank Tore Johansen.\n");
1108 937
1109 if (strcmp (settings.dm_mail, "") != 0) 938 if (strcmp (settings.dm_mail, "") != 0)
1110 { 939 {
1111 fprintf (logfile, "Maintained locally by: %s\n", settings.dm_mail); 940 fprintf (logfile, "Maintained locally by: %s\n", settings.dm_mail);
1112 fprintf (logfile, "Questions and bugs should be mailed to above address.\n"); 941 fprintf (logfile, "Questions and bugs should be mailed to above address.\n");
1113 } 942 }
1114 SRANDOM (time (NULL));
1115 943
1116 init_startup (); /* Write (C), check shutdown/forbid files */ 944 init_startup (); /* Write (C), check shutdown/forbid files */
945 init_uuid ();
1117 init_signals (); /* Sets up signal interceptions */ 946 init_signals (); /* Sets up signal interceptions */
1118 init_commands (); /* Sort command tables */ 947 init_commands (); /* Sort command tables */
1119 read_map_log (); /* Load up the old temp map files */
1120 init_skills (); 948 init_skills ();
1121 949
1122 parse_args (argc, argv, 3); 950 parse_args (argc, argv, 3);
1123 951
1124#ifndef WIN32 /* ***win32: no BecomeDaemon in windows */
1125 if (settings.daemonmode)
1126 logfile = BecomeDaemon (settings.logfilename[0] == '\0' ? "logfile" : settings.logfilename);
1127#endif
1128
1129 init_beforeplay (); 952 init_beforeplay ();
1130 init_ericserver ();
1131 metaserver_init ();
1132 init_done = 1; 953 init_done = 1;
1133} 954}
1134 955
1135void 956void
1136usage (void) 957usage (void)
1184} 1005}
1185 1006
1186void 1007void
1187init_beforeplay (void) 1008init_beforeplay (void)
1188{ 1009{
1189 init_archetypes (); /* If not called before, reads all archetypes from file */
1190 init_artifacts (); /* If not called before, reads all artifacts from file */ 1010 init_artifacts (); /* If not called before, reads all artifacts from file */
1191 init_spells (); /* If not called before, links archtypes used by spells */ 1011 init_spells (); /* If not called before, links archtypes used by spells */
1192 init_regions (); /* If not called before, reads all regions from file */
1193 init_archetype_pointers (); /* Setup global pointers to archetypes */ 1012 init_archetype_pointers (); /* Setup global pointers to archetypes */
1194 init_races (); /* overwrite race designations using entries in lib/races file */ 1013 init_races (); /* overwrite race designations using entries in lib/races file */
1195 init_gods (); /* init linked list of gods from archs */ 1014 init_gods (); /* init linked list of gods from archs */
1196 init_readable (); /* inits useful arrays for readable texts */ 1015 init_readable (); /* inits useful arrays for readable texts */
1197 init_formulae (); /* If not called before, reads formulae from file */ 1016 init_formulae (); /* If not called before, reads formulae from file */
1198
1199 switch (settings.dumpvalues)
1200 {
1201 case 1:
1202 print_monsters ();
1203 exit (0);
1204 case 2:
1205 dump_abilities ();
1206 exit (0);
1207 case 3:
1208 dump_artifacts ();
1209 exit (0);
1210 case 4:
1211 dump_spells ();
1212 exit (0);
1213 case 5:
1214 exit (0);
1215 case 6:
1216 dump_races ();
1217 exit (0);
1218 case 7:
1219 dump_alchemy ();
1220 exit (0);
1221 case 9:
1222 dump_alchemy_costs ();
1223 exit (0);
1224 case 10:
1225 dump_monster_treasure (settings.dumparg);
1226 exit (0);
1227 }
1228} 1017}
1229 1018
1230void 1019void
1231init_startup (void) 1020init_startup (void)
1232{ 1021{
1297 printf ("Save player:\t<true>\n"); 1086 printf ("Save player:\t<true>\n");
1298 printf ("Save mode:\t%4.4o\n", SAVE_MODE); 1087 printf ("Save mode:\t%4.4o\n", SAVE_MODE);
1299 printf ("Playerdir:\t<VAR>/%s\n", settings.playerdir); 1088 printf ("Playerdir:\t<VAR>/%s\n", settings.playerdir);
1300 printf ("Itemsdir:\t<VAR>/%s\n", settings.uniquedir); 1089 printf ("Itemsdir:\t<VAR>/%s\n", settings.uniquedir);
1301 printf ("Tmpdir:\t\t%s\n", settings.tmpdir); 1090 printf ("Tmpdir:\t\t%s\n", settings.tmpdir);
1302 printf ("Map max timeout:\t%d\n", MAP_MAXTIMEOUT);
1303 printf ("Max objects:\t%d\n", MAX_OBJECTS);
1304#ifdef USE_CALLOC 1091#ifdef USE_CALLOC
1305 printf ("Use_calloc:\t<true>\n"); 1092 printf ("Use_calloc:\t<true>\n");
1306#else 1093#else
1307 printf ("Use_calloc:\t<false>\n"); 1094 printf ("Use_calloc:\t<false>\n");
1308#endif 1095#endif
1311 printf ("Editor:\t\t%s\n", X_EDITOR); 1098 printf ("Editor:\t\t%s\n", X_EDITOR);
1312#endif 1099#endif
1313 1100
1314 printf ("Max_time:\t%d\n", MAX_TIME); 1101 printf ("Max_time:\t%d\n", MAX_TIME);
1315 1102
1316#ifdef WIN32 /* ***win32 compile_info(): remove execl... */
1317 printf ("Logfilename:\t%s\n", settings.logfilename);
1318 exit (0);
1319#else
1320 execl ("/bin/uname", "uname", "-a", NULL); 1103 execl ("/bin/uname", "uname", "-a", NULL);
1321 LOG (llevError, "Oops, shouldn't have gotten here: execl(/bin/uname) failed: %s\n", strerror (errno)); 1104 LOG (llevError, "Oops, shouldn't have gotten here: execl(/bin/uname) failed: %s\n", strerror (errno));
1322 exit (-1); 1105 exit (-1);
1323#endif
1324} 1106}
1325 1107
1326/* Signal handlers: */ 1108/* Signal handlers: */
1327 1109
1328void 1110static void
1111rec_sigabrt (int i)
1112{
1113 signal (SIGABRT, SIG_DFL);
1114
1115 LOG (llevError, "SIGABRT received.\n");
1116 cleanup ("SIGABRT received", 1);
1117}
1118
1119static void
1329rec_sigsegv (int i) 1120rec_sigsegv (int i)
1330{ 1121{
1122 signal (SIGSEGV, SIG_DFL);
1123
1331 LOG (llevError, "\nSIGSEGV received.\n"); 1124 LOG (llevError, "SIGSEGV received.\n");
1332 fatal_signal (1, 1); 1125 cleanup ("SIGSEGV received", 1);
1333} 1126}
1334 1127
1335void 1128static void
1336rec_sigint (int i)
1337{
1338 LOG (llevInfo, "\nSIGINT received.\n");
1339 fatal_signal (0, 1);
1340}
1341
1342void
1343rec_sighup (int i)
1344{
1345 LOG (llevInfo, "\nSIGHUP received\n");
1346 if (init_done)
1347 {
1348 emergency_save (0);
1349 cleanup ();
1350 }
1351 exit (0);
1352}
1353
1354void
1355rec_sigquit (int i) 1129rec_sigquit (int i)
1356{ 1130{
1131 signal (SIGQUIT, SIG_IGN);
1132
1357 LOG (llevInfo, "\nSIGQUIT received\n"); 1133 LOG (llevInfo, "SIGQUIT received\n");
1358 fatal_signal (1, 1); 1134 cleanup ("SIGQUIT received", 1);
1359} 1135}
1360 1136
1361void 1137static void
1362rec_sigbus (int i) 1138rec_sigbus (int i)
1363{ 1139{
1364#ifdef SIGBUS 1140 signal (SIGBUS, SIG_DFL);
1141
1365 LOG (llevError, "\nSIGBUS received\n"); 1142 LOG (llevError, "SIGBUS received\n");
1366 fatal_signal (1, 1); 1143 cleanup ("SIGBUS received", 1);
1367#endif
1368} 1144}
1369 1145
1370void 1146void
1371rec_sigterm (int i) 1147reset_signals ()
1372{ 1148{
1373 LOG (llevInfo, "\nSIGTERM received\n"); 1149 signal (SIGABRT, SIG_DFL);
1374 fatal_signal (0, 1); 1150 signal (SIGQUIT, SIG_DFL);
1375} 1151 signal (SIGSEGV, SIG_DFL);
1376 1152 signal (SIGBUS , SIG_DFL);
1377void 1153 signal (SIGINT , SIG_DFL);
1378fatal_signal (int make_core, int close_sockets) 1154 signal (SIGTERM, SIG_DFL);
1379{
1380 if (init_done)
1381 {
1382 emergency_save (0);
1383 clean_tmp_files ();
1384 }
1385 if (make_core)
1386 abort ();
1387 exit (0);
1388} 1155}
1389 1156
1390void 1157void
1391init_signals (void) 1158init_signals (void)
1392{ 1159{
1393#ifndef WIN32 /* init_signals() remove signals */ 1160 // large stack, but it's important data we want to save, and it is not usually
1394 signal (SIGHUP, rec_sighup); 1161 // being physically allocated anyways
1395 signal (SIGINT, rec_sigint); 1162 const size_t stacksize = 8 * 1024 * 1024 + SIGSTKSZ;
1396 signal (SIGQUIT, rec_sigquit); 1163
1397 signal (SIGSEGV, rec_sigsegv); 1164 stack_t ss;
1398 signal (SIGPIPE, SIG_IGN); 1165 ss.ss_sp = malloc (stacksize);
1399# ifdef SIGBUS 1166 ss.ss_flags = 0;
1400 signal (SIGBUS, rec_sigbus); 1167 ss.ss_size = stacksize;
1401# endif 1168 sigaltstack (&ss, 0);
1402 signal (SIGTERM, rec_sigterm); 1169
1403#endif 1170 struct sigaction sa;
1171
1172 sigfillset (&sa.sa_mask);
1173 sa.sa_flags = SA_RESTART;
1174
1175 sa.sa_handler = SIG_IGN; sigaction (SIGPIPE, &sa, 0);
1176 sa.sa_handler = rec_sigabrt; sigaction (SIGABRT, &sa, 0);
1177 sa.sa_handler = rec_sigquit; sigaction (SIGQUIT, &sa, 0);
1178 sa.sa_handler = rec_sigbus; sigaction (SIGBUS, &sa, 0);
1179
1180 sa.sa_flags |= SA_ONSTACK;
1181 sa.sa_handler = rec_sigsegv; sigaction (SIGSEGV, &sa, 0);
1404} 1182}
1405 1183
1406/* init_races() - reads the races file in the lib/ directory, then 1184/* init_races() - reads the races file in the lib/ directory, then
1407 * overwrites old 'race' entries. This routine allow us to quickly 1185 * overwrites old 'race' entries. This routine allow us to quickly
1408 * re-configure the 'alignment' of monsters, objects. Useful for 1186 * re-configure the 'alignment' of monsters, objects. Useful for
1409 * putting together lists of creatures, etc that belong to gods. 1187 * putting together lists of creatures, etc that belong to gods.
1410 */ 1188 */
1411
1412void 1189void
1413init_races (void) 1190init_races (void)
1414{ 1191{
1415 FILE *file; 1192 FILE *file;
1416 char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF]; 1193 char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF];
1418 static int init_done = 0; 1195 static int init_done = 0;
1419 1196
1420 if (init_done) 1197 if (init_done)
1421 return; 1198 return;
1422 init_done = 1; 1199 init_done = 1;
1423 first_race = NULL; 1200 first_race = 0;
1424 1201
1425 sprintf (fname, "%s/races", settings.datadir); 1202 sprintf (fname, "%s/races", settings.datadir);
1426 LOG (llevDebug, "Reading races from %s...", fname); 1203 LOG (llevDebug, "Reading races from %s...\n", fname);
1427 if (!(file = fopen (fname, "r"))) 1204 if (!(file = fopen (fname, "r")))
1428 { 1205 {
1429 LOG (llevError, "Cannot open races file %s: %s\n", fname, strerror (errno)); 1206 LOG (llevError, "Cannot open races file %s: %s\n", fname, strerror (errno));
1430 return; 1207 return;
1431 } 1208 }
1434 { 1211 {
1435 int set_race = 1, set_list = 1; 1212 int set_race = 1, set_list = 1;
1436 1213
1437 if (*buf == '#') 1214 if (*buf == '#')
1438 continue; 1215 continue;
1216
1439 if ((cp = strchr (buf, '\n')) != NULL) 1217 if ((cp = strchr (buf, '\n')) != NULL)
1440 *cp = '\0'; 1218 *cp = '\0';
1219
1441 cp = buf; 1220 cp = buf;
1442 while (*cp == ' ' || *cp == '!' || *cp == '@') 1221 while (*cp == ' ' || *cp == '!' || *cp == '@')
1443 { 1222 {
1444 if (*cp == '!') 1223 if (*cp == '!')
1445 set_race = 0; 1224 set_race = 0;
1446 if (*cp == '@') 1225 if (*cp == '@')
1447 set_list = 0; 1226 set_list = 0;
1448 cp++; 1227 cp++;
1449 } 1228 }
1229
1450 if (sscanf (cp, "RACE %s", variable)) 1230 if (sscanf (cp, "RACE %s", variable))
1451 { /* set new race value */ 1231 /* set new race value */
1452 strcpy (race, variable); 1232 strcpy (race, variable);
1453 }
1454 else 1233 else
1455 { 1234 {
1456 char *cp1; 1235 char *cp1;
1457 1236
1458 /* Take out beginning spaces */ 1237 /* Take out beginning spaces */
1466 break; 1245 break;
1467 } 1246 }
1468 1247
1469 if (cp[strlen (cp) - 1] == '\n') 1248 if (cp[strlen (cp) - 1] == '\n')
1470 cp[strlen (cp) - 1] = '\0'; 1249 cp[strlen (cp) - 1] = '\0';
1250
1471 /* set creature race to race value */ 1251 /* set creature race to race value */
1472 if ((mon = find_archetype (cp)) == NULL) 1252 if ((mon = archetype::find (cp)) == NULL)
1473 LOG (llevError, "\nCreature %s in race file lacks archetype", cp); 1253 LOG (llevError, "Creature %s in race file lacks archetype\n", cp);
1474 else 1254 else
1475 { 1255 {
1476 if (set_race && (!mon->clone.race || strcmp (mon->clone.race, race))) 1256 if (set_race && (!mon->race || strcmp (mon->race, race)))
1477 { 1257 {
1478 if (mon->clone.race) 1258 if (mon->race)
1479 {
1480 LOG (llevDebug, "\n Resetting race to %s from %s for archetype %s", race, &mon->clone.race, &mon->name); 1259 LOG (llevDebug, "Resetting race to %s from %s for archetype %s\n", race, &mon->race, &mon->archname);
1481 } 1260
1482 mon->clone.race = race; 1261 mon->race = race;
1483 } 1262 }
1263
1484 /* if the arch is a monster, add it to the race list */ 1264 /* if the arch is a monster, add it to the race list */
1485 if (set_list && QUERY_FLAG (&mon->clone, FLAG_MONSTER)) 1265 if (set_list && QUERY_FLAG (mon, FLAG_MONSTER))
1486 add_to_racelist (race, &mon->clone); 1266 add_to_racelist (race, mon);
1487 }
1488 } 1267 }
1268 }
1489 } 1269 }
1270
1490 fclose (file); 1271 fclose (file);
1491 LOG (llevDebug, "done.\n"); 1272 LOG (llevDebug, "done.\n");
1492} 1273}
1493 1274
1494void 1275void
1497 racelink *list; 1278 racelink *list;
1498 objectlink *tmp; 1279 objectlink *tmp;
1499 1280
1500 for (list = first_race; list; list = list->next) 1281 for (list = first_race; list; list = list->next)
1501 { 1282 {
1502 fprintf (stderr, "\nRACE %s:\t", list->name); 1283 fprintf (stderr, "\nRACE %s:\t", &list->name);
1503 for (tmp = list->member; tmp; tmp = tmp->next) 1284 for (tmp = list->member; tmp; tmp = tmp->next)
1504 fprintf (stderr, "%s(%d), ", &tmp->ob->arch->name, tmp->ob->level); 1285 fprintf (stderr, "%s(%d), ", &tmp->ob->arch->archname, tmp->ob->level);
1505 } 1286 }
1287
1506 fprintf (stderr, "\n"); 1288 fprintf (stderr, "\n");
1507} 1289}
1508 1290
1509void 1291void
1510add_to_racelist (const char *race_name, object *op) 1292add_to_racelist (const char *race_name, object *op)
1511{ 1293{
1512 racelink *race; 1294 racelink *race;
1513 1295
1514 if (!op || !race_name) 1296 if (!op || !race_name)
1515 return; 1297 return;
1298
1516 race = find_racelink (race_name); 1299 race = find_racelink (race_name);
1517 1300
1518 if (!race) 1301 if (!race)
1519 { /* add in a new race list */ 1302 { /* add in a new race list */
1520 race = get_racelist (); 1303 race = get_racelist ();
1528 objectlink *tmp = get_objectlink (); 1311 objectlink *tmp = get_objectlink ();
1529 1312
1530 tmp->next = race->member; 1313 tmp->next = race->member;
1531 race->member = tmp; 1314 race->member = tmp;
1532 } 1315 }
1316
1533 race->nrof++; 1317 race->nrof++;
1534 race->member->ob = op; 1318 race->member->ob = op;
1535} 1319}
1536 1320
1537racelink * 1321racelink *
1538get_racelist () 1322get_racelist ()
1539{ 1323{
1540 racelink *list; 1324 racelink *list = new racelink;
1541 1325
1542 list = (racelink *) malloc (sizeof (racelink));
1543 list->name = NULL; 1326 list->name = 0;
1544 list->nrof = 0; 1327 list->nrof = 0;
1328 list->next = 0;
1545 list->member = get_objectlink (); 1329 list->member = get_objectlink ();
1546 list->next = NULL;
1547 1330
1548 return list; 1331 return list;
1549} 1332}
1550 1333
1551racelink * 1334racelink *
1552find_racelink (const char *name) 1335find_racelink (const char *name)
1553{ 1336{
1554 racelink *test = NULL; 1337 if (name)
1555 1338 for (racelink *link = first_race; link; link = link->next)
1556 if (name && first_race)
1557 for (test = first_race; test && test != test->next; test = test->next)
1558 if (!test->name || !strcmp (name, test->name)) 1339 if (!link->name || !strcmp (name, link->name))
1559 break; 1340 return link;
1560 1341
1561 return test; 1342 return 0;
1562} 1343}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines