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.61 by root, Thu Apr 10 15:35:16 2008 UTC

1
2/* 1/*
3 * static char *rcsid_init_c = 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
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 Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 *
8 * Deliantra 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 <support@deliantra.net>
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},
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 263
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
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},
289 {"-detach", 0, 2, set_daemon}, 268 {"-detach", 0, 2, set_daemon},
290 269
291/* Start of pass 3 information. In theory, by pass 3, all data paths 270/* Start of pass 3 information. In theory, by pass 3, all data paths
292 * and defaults should have been set up. 271 * and defaults should have been set up.
293 */ 272 */
294 {"-o", 0, 3, compile_info},
295 {"-m", 0, 3, set_dumpmon1}, 273 {"-m", 0, 3, set_dumpmon1},
296 {"-m2", 0, 3, set_dumpmon2}, 274 {"-m2", 0, 3, set_dumpmon2},
297 {"-m3", 0, 3, set_dumpmon3}, 275 {"-m3", 0, 3, set_dumpmon3},
298 {"-m4", 0, 3, set_dumpmon4}, 276 {"-m4", 0, 3, set_dumpmon4},
299 {"-m5", 0, 3, set_dumpmon5}, 277 {"-m5", 0, 3, set_dumpmon5},
307 {"-score", 1, 3, (void (*)()) showscoresparm} 285 {"-score", 1, 3, (void (*)()) showscoresparm}
308}; 286};
309 287
310 288
311/* Note since this may be called before the library has been set up, 289/* Note since this may be called before the library has been set up,
312 * we don't use any of crossfires built in logging functions. 290 * we don't use any of deliantras built in logging functions.
313 */ 291 */
314static void 292static void
315parse_args (int argc, char *argv[], int pass) 293parse_args (int argc, char *argv[], int pass)
316{ 294{
317 size_t i; 295 size_t i;
394} 372}
395 373
396static void 374static void
397load_materials (void) 375load_materials (void)
398{ 376{
399 char buf[MAX_BUF], filename[MAX_BUF], *cp, *next; 377 char filename[MAX_BUF];
400 FILE *fp;
401 materialtype_t *mt; 378 materialtype_t *mt;
402 int i, value;
403 379
404 sprintf (filename, "%s/materials", settings.datadir); 380 sprintf (filename, "%s/materials", settings.datadir);
405 LOG (llevDebug, "Reading material type data from %s...", filename); 381 LOG (llevDebug, "Reading material type data from %s...\n", filename);
406 if ((fp = fopen (filename, "r")) == NULL) 382
383 object_thawer thawer (filename);
384
385 if (!thawer)
407 { 386 {
408 LOG (llevError, "Cannot open %s for reading\n", filename); 387 LOG (llevError, "Cannot open %s for reading\n", filename);
409 mt = get_empty_mat (); 388 mt = get_empty_mat ();
410 mt->next = NULL; 389 mt->next = 0;
411 materialt = mt; 390 materialt = mt;
412 return; 391 return;
413 } 392 }
393
414 mt = get_empty_mat (); 394 mt = get_empty_mat ();
415 materialt = mt; 395 materialt = mt;
416 while (fgets (buf, MAX_BUF, fp) != NULL) 396
397 for (;;)
417 { 398 {
418 if (*buf == '#') 399 thawer.next ();
419 continue; 400
420 if ((cp = strchr (buf, '\n')) != NULL) 401 switch (thawer.kw)
421 *cp = '\0';
422 cp = buf;
423 while (*cp == ' ') /* Skip blanks */
424 cp++;
425 if (!strncmp (cp, "name", 4))
426 { 402 {
403 case KW_name:
427 /* clean up the previous entry */ 404 /* clean up the previous entry */
428 if (mt->next != NULL) 405 if (mt->next)
429 { 406 {
430 if (mt->description == NULL) 407 if (!mt->description)
431 mt->description = mt->name; 408 mt->description = mt->name;
409
432 mt = mt->next; 410 mt = mt->next;
433 } 411 }
412
434 mt->next = get_empty_mat (); 413 mt->next = get_empty_mat ();
435 mt->name = strchr (cp, ' ') + 1; 414 thawer.get (mt->name);
436 } 415 break;
437 else if (!strncmp (cp, "description", 11)) 416
417 case KW_description:
418 thawer.get (mt->description);
419 break;
420
421 case KW_material:
422 thawer.get (mt->material);
423 break;
424
425 case KW_saves:
438 { 426 {
439 mt->description = strchr (cp, ' ') + 1; 427 const char *cp = thawer.get_str () - 1;
440 } 428
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++) 429 for (int i = 0; i < NROFATTACKS; i++)
449 {
450 if (cp == NULL)
451 { 430 {
431 if (!cp)
432 {
452 mt->save[i] = 0; 433 mt->save[i] = 0;
453 continue; 434 continue;
435 }
436
437 int value;
438 ++cp;
439 sscanf (cp, "%d", &value);
440 mt->save[i] = (sint8) value;
441 cp = strchr (cp, ',');
454 } 442 }
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 { 443 }
467 if (cp == NULL) 444 break;
445
446 case KW_mods:
447 {
448 const char *cp = thawer.get_str () - 1;
449
450 for (int i = 0; i < NROFATTACKS; i++)
468 { 451 {
452 if (!cp)
453 {
469 mt->save[i] = 0; 454 mt->save[i] = 0;
470 continue; 455 continue;
456 }
457
458 ++cp;
459 int value;
460 sscanf (cp, "%d", &value);
461 mt->mod[i] = (sint8) value;
462 cp = strchr (cp, ',');
471 } 463 }
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 } 464 }
479 else if (sscanf (cp, "chance %d\n", &value)) 465 break;
466
467 case KW_chance: thawer.get (mt->chance); break;
468 case KW_difficulty: // cf+ alias, not original cf
469 case KW_diff: thawer.get (mt->difficulty); break;
470 case KW_magic: thawer.get (mt->magic); break;
471 case KW_dam: // cf+ alias, not original cf
472 case KW_damage: thawer.get (mt->damage); break;
473 case KW_wc: thawer.get (mt->wc); break;
474 case KW_ac: thawer.get (mt->ac); break;
475 case KW_sp: thawer.get (mt->sp); break;
476 case KW_weight: thawer.get (mt->weight); break;
477 case KW_value: thawer.get (mt->value); break;
478 case KW_density: thawer.get (mt->density); break;
479
480 case KW_EOF:
481 goto done;
482
483 default:
484 if (!thawer.parse_error ("materials file", "materials"))
485 goto done;
486 break;
480 { 487 }
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 } 488 }
489
490done:
516 if (mt->next) 491 if (mt->next)
517 { 492 {
518 delete mt->next; 493 delete mt->next;
519 494
520 mt->next = NULL; 495 mt->next = 0;
521 } 496 }
497
522 LOG (llevDebug, "Done.\n"); 498 LOG (llevDebug, "Done.\n");
523 fclose (fp);
524} 499}
525 500
526/* This loads the settings file. There could be debate whether this should 501/* 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 502 * be here or in the common directory - but since only the server needs this
528 * information, having it here probably makes more sense. 503 * information, having it here probably makes more sense.
538 513
539 /* We don't require a settings file at current time, but down the road, 514 /* 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 515 * there will probably be so many values that not having a settings file
541 * will not be a good thing. 516 * will not be a good thing.
542 */ 517 */
543 if ((fp = open_and_uncompress (buf, 0, &comp)) == NULL) 518 if (!(fp = open_and_uncompress (buf, 0, &comp)))
544 { 519 {
545 LOG (llevError, "Warning: No settings file found\n"); 520 LOG (llevError, "Error: No settings file found\n");
546 return; 521 exit (1);
547 } 522 }
523
548 while (fgets (buf, MAX_BUF - 1, fp) != NULL) 524 while (fgets (buf, MAX_BUF - 1, fp) != NULL)
549 { 525 {
550 if (buf[0] == '#') 526 if (buf[0] == '#')
551 continue; 527 continue;
552 /* eliminate newline */ 528 /* eliminate newline */
566 *cp++ = 0; 542 *cp++ = 0;
567 has_val = 1; 543 has_val = 1;
568 } 544 }
569 else 545 else
570 { 546 {
571 cp = ""; 547 cp = (char *)"";
572 has_val = 0; 548 has_val = 0;
573 } 549 }
574 550
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")) 551 if (!strcasecmp (buf, "motd"))
598 { 552 {
599 if (has_val) 553 if (has_val)
600 strcpy (settings.motd, cp); 554 strcpy (settings.motd, cp);
601 else 555 else
602 LOG (llevError, "load_settings: motd must have a value.\n"); 556 LOG (llevError, "load_settings: motd must have a value.\n");
606 if (has_val) 560 if (has_val)
607 strcpy (settings.dm_mail, cp); 561 strcpy (settings.dm_mail, cp);
608 else 562 else
609 LOG (llevError, "load_settings: dm_mail must have a value.\n"); 563 LOG (llevError, "load_settings: dm_mail must have a value.\n");
610 } 564 }
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")) 565 else if (!strcasecmp (buf, "worldmapstartx"))
632 { 566 {
633 int size = atoi (cp); 567 int size = atoi (cp);
634 568
635 if (size < 0) 569 if (size < 0)
788 else 722 else
789 { 723 {
790 LOG (llevError, "load_settings: Unknown value for " "spell_failure_effects: %s\n", cp); 724 LOG (llevError, "load_settings: Unknown value for " "spell_failure_effects: %s\n", cp);
791 } 725 }
792 } 726 }
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")) 727 else if (!strcasecmp (buf, "spellpoint_level_depend"))
864 { 728 {
865 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true")) 729 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
866 { 730 {
867 settings.spellpoint_level_depend = TRUE; 731 settings.spellpoint_level_depend = TRUE;
971 } 835 }
972 else if (!strcasecmp (buf, "set_friendly_fire")) 836 else if (!strcasecmp (buf, "set_friendly_fire"))
973 { 837 {
974 int val = atoi (cp); 838 int val = atoi (cp);
975 839
976#if COZY_SERVER
977 if (val < 0 || val > 100) 840 if (val < 0 || val > 100)
978 LOG (llevError, "load_settings: set_friendly_fire must be between 0 an 100" ", %d is invalid\n", val); 841 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 842 else
984 settings.set_friendly_fire = val; 843 settings.set_friendly_fire = val;
985 } 844 }
986 else if (!strcasecmp (buf, "armor_max_enchant")) 845 else if (!strcasecmp (buf, "armor_max_enchant"))
987 { 846 {
1040 { 899 {
1041 LOG (llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp); 900 LOG (llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp);
1042 } 901 }
1043 902
1044 } 903 }
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 904 else
1078 {
1079 LOG (llevError, "Unknown value in settings file: %s\n", buf); 905 LOG (llevError, "Unknown value in settings file: %s\n", buf);
1080 }
1081 } 906 }
907
1082 close_and_delete (fp, comp); 908 close_and_delete (fp, comp);
1083} 909}
1084
1085 910
1086/* 911/*
1087 * init() is called only once, when starting the program. 912 * init() is called only once, when starting the program.
1088 */ 913 */
1089
1090void 914void
1091init (int argc, char **argv) 915init (int argc, char **argv)
1092{ 916{
1093
1094 init_done = 0; /* Must be done before init_signal() */ 917 init_done = 0; /* Must be done before init_signal() */
918 rndm.seed (time (0));
919
1095 logfile = stderr; 920 logfile = stderr;
921 init_environ ();
1096 parse_args (argc, argv, 1); /* First arg pass - right now it does 922 parse_args (argc, argv, 1); /* First arg pass - right now it does
1097 * nothing, but in future specifying the 923 * nothing, but in future specifying the
1098 * LibDir in this pass would be reasonable*/ 924 * LibDir in this pass would be reasonable*/
1099 925
1100 init_library (); /* Must be called early */ 926 init_anim (); // Must be called before perl
927 init_globals ();
928 init_experience ();
929 init_attackmess ();
930 init_dynamic ();
931 init_block ();
932 cfperl_init ();
1101 load_settings (); /* Load the settings file */ 933 load_settings (); /* Load the settings file */
1102 init_weather ();
1103 load_materials (); 934 load_materials ();
1104 parse_args (argc, argv, 2); 935 parse_args (argc, argv, 2);
1105 fprintf (logfile, "Welcome to CrossFire, v%s\n", VERSION); 936 fprintf (logfile, "Welcome to Deliantra, v%s\n", VERSION);
937 fprintf (logfile, "Copyright (C) 2005, 2006, 2007 Marc Lehmann.\n");
1106 fprintf (logfile, "Copyright (C) 1994 Mark Wedel.\n"); 938 fprintf (logfile, "Copyright (C) 1994 Mark Wedel.\n");
1107 fprintf (logfile, "Copyright (C) 1992 Frank Tore Johansen.\n"); 939 fprintf (logfile, "Copyright (C) 1992 Frank Tore Johansen.\n");
1108 940
1109 if (strcmp (settings.dm_mail, "") != 0) 941 if (strcmp (settings.dm_mail, "") != 0)
1110 { 942 {
1111 fprintf (logfile, "Maintained locally by: %s\n", settings.dm_mail); 943 fprintf (logfile, "Maintained locally by: %s\n", settings.dm_mail);
1112 fprintf (logfile, "Questions and bugs should be mailed to above address.\n"); 944 fprintf (logfile, "Questions and bugs should be mailed to above address.\n");
1113 } 945 }
1114 SRANDOM (time (NULL));
1115 946
1116 init_startup (); /* Write (C), check shutdown/forbid files */ 947 UUID::init ();
1117 init_signals (); /* Sets up signal interceptions */ 948 init_signals (); /* Sets up signal interceptions */
1118 init_commands (); /* Sort command tables */ 949 init_commands (); /* Sort command tables */
1119 read_map_log (); /* Load up the old temp map files */
1120 init_skills (); 950 init_skills ();
1121 951
1122 parse_args (argc, argv, 3); 952 parse_args (argc, argv, 3);
1123 953
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 (); 954 init_beforeplay ();
1130 init_ericserver ();
1131 metaserver_init ();
1132 init_done = 1; 955 init_done = 1;
1133} 956}
1134 957
1135void 958void
1136usage (void) 959usage (void)
1137{ 960{
1138 (void) fprintf (logfile, "Usage: crossfire [-h] [-<flags>]...\n"); 961 (void) fprintf (logfile, "Usage: deliantra-server [-h] [-<flags>]...\n");
1139} 962}
1140 963
1141void 964void
1142help (void) 965help (void)
1143{ 966{
1184} 1007}
1185 1008
1186void 1009void
1187init_beforeplay (void) 1010init_beforeplay (void)
1188{ 1011{
1189 init_archetypes (); /* If not called before, reads all archetypes from file */
1190 init_artifacts (); /* If not called before, reads all artifacts from file */ 1012 init_artifacts (); /* If not called before, reads all artifacts from file */
1191 init_spells (); /* If not called before, links archtypes used by spells */ 1013 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 */ 1014 init_archetype_pointers (); /* Setup global pointers to archetypes */
1194 init_races (); /* overwrite race designations using entries in lib/races file */ 1015 init_races (); /* overwrite race designations using entries in lib/races file */
1195 init_gods (); /* init linked list of gods from archs */ 1016 init_gods (); /* init linked list of gods from archs */
1196 init_readable (); /* inits useful arrays for readable texts */ 1017 init_readable (); /* inits useful arrays for readable texts */
1197 init_formulae (); /* If not called before, reads formulae from file */ 1018 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}
1229
1230void
1231init_startup (void)
1232{
1233 char buf[MAX_BUF];
1234 FILE *fp;
1235 int comp;
1236
1237#ifdef SHUTDOWN_FILE
1238 sprintf (buf, "%s/%s", settings.confdir, SHUTDOWN_FILE);
1239 if ((fp = open_and_uncompress (buf, 0, &comp)) != NULL)
1240 {
1241 while (fgets (buf, MAX_BUF - 1, fp) != NULL)
1242 printf ("%s", buf);
1243 close_and_delete (fp, comp);
1244 exit (1);
1245 }
1246#endif
1247
1248 if (forbid_play ())
1249 { /* Maybe showing highscore should be allowed? */
1250 LOG (llevError, "CrossFire: Playing not allowed.\n");
1251 exit (-1);
1252 }
1253}
1254
1255/*
1256 * compile_info(): activated with the -o flag.
1257 * It writes out information on how Imakefile and config.h was configured
1258 * at compile time.
1259 */
1260
1261void
1262compile_info (void)
1263{
1264 int i = 0;
1265
1266 printf ("Non-standard include files:\n");
1267#if !defined (__STRICT_ANSI__) || defined (__sun__)
1268# if !defined (Mips)
1269 printf ("<stdlib.h>\n");
1270 i = 1;
1271# endif
1272# if !defined (MACH) && !defined (sony)
1273 printf ("<malloc.h>\n");
1274 i = 1;
1275# endif
1276#endif
1277#ifndef __STRICT_ANSI__
1278# ifndef MACH
1279 printf ("<memory.h\n");
1280 i = 1;
1281# endif
1282#endif
1283#ifndef sgi
1284 printf ("<sys/timeb.h>\n");
1285 i = 1;
1286#endif
1287 if (!i)
1288 printf ("(none)\n");
1289 printf ("Datadir:\t\t%s\n", settings.datadir);
1290 printf ("Localdir:\t\t%s\n", settings.localdir);
1291#ifdef PERM_FILE
1292 printf ("Perm file:\t<ETC>/%s\n", PERM_FILE);
1293#endif
1294#ifdef SHUTDOWN_FILE
1295 printf ("Shutdown file:\t<ETC>/%s\n", SHUTDOWN_FILE);
1296#endif
1297 printf ("Save player:\t<true>\n");
1298 printf ("Save mode:\t%4.4o\n", SAVE_MODE);
1299 printf ("Playerdir:\t<VAR>/%s\n", settings.playerdir);
1300 printf ("Itemsdir:\t<VAR>/%s\n", settings.uniquedir);
1301 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
1305 printf ("Use_calloc:\t<true>\n");
1306#else
1307 printf ("Use_calloc:\t<false>\n");
1308#endif
1309
1310#ifdef X_EDITOR
1311 printf ("Editor:\t\t%s\n", X_EDITOR);
1312#endif
1313
1314 printf ("Max_time:\t%d\n", MAX_TIME);
1315
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);
1321 LOG (llevError, "Oops, shouldn't have gotten here: execl(/bin/uname) failed: %s\n", strerror (errno));
1322 exit (-1);
1323#endif
1324} 1019}
1325 1020
1326/* Signal handlers: */ 1021/* Signal handlers: */
1327 1022
1328void 1023static void
1024rec_sigabrt (int i)
1025{
1026 signal (SIGABRT, SIG_DFL);
1027
1028 LOG (llevError, "SIGABRT received.\n");
1029 cleanup ("SIGABRT received", 1);
1030}
1031
1032static void
1329rec_sigsegv (int i) 1033rec_sigsegv (int i)
1330{ 1034{
1035 signal (SIGSEGV, SIG_DFL);
1036
1331 LOG (llevError, "\nSIGSEGV received.\n"); 1037 LOG (llevError, "SIGSEGV received.\n");
1332 fatal_signal (1, 1); 1038 cleanup ("SIGSEGV received", 1);
1333} 1039}
1334 1040
1335void 1041static 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) 1042rec_sigquit (int i)
1356{ 1043{
1044 signal (SIGQUIT, SIG_IGN);
1045
1357 LOG (llevInfo, "\nSIGQUIT received\n"); 1046 LOG (llevInfo, "SIGQUIT received\n");
1358 fatal_signal (1, 1); 1047 cleanup ("SIGQUIT received", 1);
1359} 1048}
1360 1049
1361void 1050static void
1362rec_sigbus (int i) 1051rec_sigbus (int i)
1363{ 1052{
1364#ifdef SIGBUS 1053 signal (SIGBUS, SIG_DFL);
1054
1365 LOG (llevError, "\nSIGBUS received\n"); 1055 LOG (llevError, "SIGBUS received\n");
1366 fatal_signal (1, 1); 1056 cleanup ("SIGBUS received", 1);
1367#endif
1368} 1057}
1369 1058
1370void 1059void
1371rec_sigterm (int i) 1060reset_signals ()
1372{ 1061{
1373 LOG (llevInfo, "\nSIGTERM received\n"); 1062 signal (SIGABRT, SIG_DFL);
1374 fatal_signal (0, 1); 1063 signal (SIGQUIT, SIG_DFL);
1375} 1064 signal (SIGSEGV, SIG_DFL);
1376 1065 signal (SIGBUS , SIG_DFL);
1377void 1066 signal (SIGINT , SIG_DFL);
1378fatal_signal (int make_core, int close_sockets) 1067 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} 1068}
1389 1069
1390void 1070void
1391init_signals (void) 1071init_signals (void)
1392{ 1072{
1393#ifndef WIN32 /* init_signals() remove signals */ 1073 // large stack, but it's important data we want to save, and it is not usually
1394 signal (SIGHUP, rec_sighup); 1074 // being physically allocated anyways
1395 signal (SIGINT, rec_sigint); 1075 const size_t stacksize = 8 * 1024 * 1024 + SIGSTKSZ;
1396 signal (SIGQUIT, rec_sigquit); 1076
1397 signal (SIGSEGV, rec_sigsegv); 1077 stack_t ss;
1398 signal (SIGPIPE, SIG_IGN); 1078 ss.ss_sp = malloc (stacksize);
1399# ifdef SIGBUS 1079 ss.ss_flags = 0;
1400 signal (SIGBUS, rec_sigbus); 1080 ss.ss_size = stacksize;
1401# endif 1081 sigaltstack (&ss, 0);
1402 signal (SIGTERM, rec_sigterm); 1082
1403#endif 1083 struct sigaction sa;
1084
1085 sigfillset (&sa.sa_mask);
1086 sa.sa_flags = SA_RESTART;
1087
1088 sa.sa_handler = SIG_IGN; sigaction (SIGPIPE, &sa, 0);
1089 sa.sa_handler = rec_sigabrt; sigaction (SIGABRT, &sa, 0);
1090 sa.sa_handler = rec_sigquit; sigaction (SIGQUIT, &sa, 0);
1091 sa.sa_handler = rec_sigbus; sigaction (SIGBUS, &sa, 0);
1092
1093 sa.sa_flags |= SA_ONSTACK;
1094 sa.sa_handler = rec_sigsegv; sigaction (SIGSEGV, &sa, 0);
1404} 1095}
1405 1096
1406/* init_races() - reads the races file in the lib/ directory, then 1097/* init_races() - reads the races file in the lib/ directory, then
1407 * overwrites old 'race' entries. This routine allow us to quickly 1098 * overwrites old 'race' entries. This routine allow us to quickly
1408 * re-configure the 'alignment' of monsters, objects. Useful for 1099 * re-configure the 'alignment' of monsters, objects. Useful for
1409 * putting together lists of creatures, etc that belong to gods. 1100 * putting together lists of creatures, etc that belong to gods.
1410 */ 1101 */
1411
1412void 1102void
1413init_races (void) 1103init_races (void)
1414{ 1104{
1415 FILE *file; 1105 FILE *file;
1416 char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF]; 1106 char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF];
1418 static int init_done = 0; 1108 static int init_done = 0;
1419 1109
1420 if (init_done) 1110 if (init_done)
1421 return; 1111 return;
1422 init_done = 1; 1112 init_done = 1;
1423 first_race = NULL; 1113 first_race = 0;
1424 1114
1425 sprintf (fname, "%s/races", settings.datadir); 1115 sprintf (fname, "%s/races", settings.datadir);
1426 LOG (llevDebug, "Reading races from %s...", fname); 1116 LOG (llevDebug, "Reading races from %s...\n", fname);
1427 if (!(file = fopen (fname, "r"))) 1117 if (!(file = fopen (fname, "r")))
1428 { 1118 {
1429 LOG (llevError, "Cannot open races file %s: %s\n", fname, strerror (errno)); 1119 LOG (llevError, "Cannot open races file %s: %s\n", fname, strerror (errno));
1430 return; 1120 return;
1431 } 1121 }
1434 { 1124 {
1435 int set_race = 1, set_list = 1; 1125 int set_race = 1, set_list = 1;
1436 1126
1437 if (*buf == '#') 1127 if (*buf == '#')
1438 continue; 1128 continue;
1129
1439 if ((cp = strchr (buf, '\n')) != NULL) 1130 if ((cp = strchr (buf, '\n')) != NULL)
1440 *cp = '\0'; 1131 *cp = '\0';
1132
1441 cp = buf; 1133 cp = buf;
1442 while (*cp == ' ' || *cp == '!' || *cp == '@') 1134 while (*cp == ' ' || *cp == '!' || *cp == '@')
1443 { 1135 {
1444 if (*cp == '!') 1136 if (*cp == '!')
1445 set_race = 0; 1137 set_race = 0;
1446 if (*cp == '@') 1138 if (*cp == '@')
1447 set_list = 0; 1139 set_list = 0;
1448 cp++; 1140 cp++;
1449 } 1141 }
1142
1450 if (sscanf (cp, "RACE %s", variable)) 1143 if (sscanf (cp, "RACE %s", variable))
1451 { /* set new race value */ 1144 /* set new race value */
1452 strcpy (race, variable); 1145 strcpy (race, variable);
1453 }
1454 else 1146 else
1455 { 1147 {
1456 char *cp1; 1148 char *cp1;
1457 1149
1458 /* Take out beginning spaces */ 1150 /* Take out beginning spaces */
1466 break; 1158 break;
1467 } 1159 }
1468 1160
1469 if (cp[strlen (cp) - 1] == '\n') 1161 if (cp[strlen (cp) - 1] == '\n')
1470 cp[strlen (cp) - 1] = '\0'; 1162 cp[strlen (cp) - 1] = '\0';
1163
1471 /* set creature race to race value */ 1164 /* set creature race to race value */
1472 if ((mon = find_archetype (cp)) == NULL) 1165 if ((mon = archetype::find (cp)) == NULL)
1473 LOG (llevError, "\nCreature %s in race file lacks archetype", cp); 1166 LOG (llevError, "Creature %s in race file lacks archetype\n", cp);
1474 else 1167 else
1475 { 1168 {
1476 if (set_race && (!mon->clone.race || strcmp (mon->clone.race, race))) 1169 if (set_race && (!mon->race || strcmp (mon->race, race)))
1477 { 1170 {
1478 if (mon->clone.race) 1171 if (mon->race)
1479 {
1480 LOG (llevDebug, "\n Resetting race to %s from %s for archetype %s", race, &mon->clone.race, &mon->name); 1172 LOG (llevDebug, "Resetting race to %s from %s for archetype %s\n", race, &mon->race, &mon->archname);
1481 } 1173
1482 mon->clone.race = race; 1174 mon->race = race;
1483 } 1175 }
1176
1484 /* if the arch is a monster, add it to the race list */ 1177 /* if the arch is a monster, add it to the race list */
1485 if (set_list && QUERY_FLAG (&mon->clone, FLAG_MONSTER)) 1178 if (set_list && QUERY_FLAG (mon, FLAG_MONSTER))
1486 add_to_racelist (race, &mon->clone); 1179 add_to_racelist (race, mon);
1487 }
1488 } 1180 }
1181 }
1489 } 1182 }
1183
1490 fclose (file); 1184 fclose (file);
1491 LOG (llevDebug, "done.\n"); 1185 LOG (llevDebug, "done.\n");
1492} 1186}
1493 1187
1494void 1188void
1497 racelink *list; 1191 racelink *list;
1498 objectlink *tmp; 1192 objectlink *tmp;
1499 1193
1500 for (list = first_race; list; list = list->next) 1194 for (list = first_race; list; list = list->next)
1501 { 1195 {
1502 fprintf (stderr, "\nRACE %s:\t", list->name); 1196 fprintf (stderr, "\nRACE %s:\t", &list->name);
1503 for (tmp = list->member; tmp; tmp = tmp->next) 1197 for (tmp = list->member; tmp; tmp = tmp->next)
1504 fprintf (stderr, "%s(%d), ", &tmp->ob->arch->name, tmp->ob->level); 1198 fprintf (stderr, "%s(%d), ", &tmp->ob->arch->archname, tmp->ob->level);
1505 } 1199 }
1200
1506 fprintf (stderr, "\n"); 1201 fprintf (stderr, "\n");
1507} 1202}
1508 1203
1509void 1204void
1510add_to_racelist (const char *race_name, object *op) 1205add_to_racelist (const char *race_name, object *op)
1511{ 1206{
1512 racelink *race; 1207 racelink *race;
1513 1208
1514 if (!op || !race_name) 1209 if (!op || !race_name)
1515 return; 1210 return;
1211
1516 race = find_racelink (race_name); 1212 race = find_racelink (race_name);
1517 1213
1518 if (!race) 1214 if (!race)
1519 { /* add in a new race list */ 1215 { /* add in a new race list */
1520 race = get_racelist (); 1216 race = get_racelist ();
1528 objectlink *tmp = get_objectlink (); 1224 objectlink *tmp = get_objectlink ();
1529 1225
1530 tmp->next = race->member; 1226 tmp->next = race->member;
1531 race->member = tmp; 1227 race->member = tmp;
1532 } 1228 }
1229
1533 race->nrof++; 1230 race->nrof++;
1534 race->member->ob = op; 1231 race->member->ob = op;
1535} 1232}
1536 1233
1537racelink * 1234racelink *
1538get_racelist () 1235get_racelist ()
1539{ 1236{
1540 racelink *list; 1237 racelink *list = new racelink;
1541 1238
1542 list = (racelink *) malloc (sizeof (racelink));
1543 list->name = NULL; 1239 list->name = 0;
1544 list->nrof = 0; 1240 list->nrof = 0;
1241 list->next = 0;
1545 list->member = get_objectlink (); 1242 list->member = get_objectlink ();
1546 list->next = NULL;
1547 1243
1548 return list; 1244 return list;
1549} 1245}
1550 1246
1551racelink * 1247racelink *
1552find_racelink (const char *name) 1248find_racelink (const char *name)
1553{ 1249{
1554 racelink *test = NULL; 1250 if (name)
1555 1251 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)) 1252 if (!link->name || !strcmp (name, link->name))
1559 break; 1253 return link;
1560 1254
1561 return test; 1255 return 0;
1562} 1256}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines