1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
|
/*
* Crossfire -- cooperative multi-player graphical RPG and adventure game
*
* Copyright (c) 1999-2014 Mark Wedel and the Crossfire Development Team
* Copyright (c) 1992 Frank Tore Johansen
*
* Crossfire is free software and comes with ABSOLUTELY NO WARRANTY. You are
* welcome to redistribute it under certain conditions. For details, please
* see COPYING and LICENSE.
*
* The authors can be reached via e-mail at <crossfire@metalforge.org>.
*/
/**
* @file
* Server initialisation, settings loading, command-line handling and such.
*/
#include <global.h>
#include <loader.h>
#include <version.h>
#ifndef __CEXTRACT__
#include <sproto.h>
#endif
/* Needed for strcasecmp(). */
#ifndef WIN32
#include <strings.h>
#endif
static void help(void);
static void init_beforeplay(void);
static void init_startup(void);
static void compile_info(void);
static void init_signals(void);
static void init_races(void);
static void dump_races(void);
static void add_to_racelist(const char *race_name, object *op);
static racelink *get_racelist(void);
static void fatal_signal(int make_core);
/**
* Command line option: set logfile name.
* @param val new name.
*/
static void set_logfile(char *val) {
settings.logfilename = val;
}
/** Command line option: show version. */
static void call_version(void) {
version(NULL);
exit(0);
}
/** Command line option: show hiscore. */
static void showscores(void) {
hiscore_display(NULL, 9999, "");
exit(0);
}
/** Command line option: debug flag. */
static void set_debug(void) {
settings.debug = llevDebug;
}
/** Command line option: unset debug flag. */
static void unset_debug(void) {
settings.debug = llevInfo;
}
/** Command line option: monster debug flag. */
static void set_mondebug(void) {
settings.debug = llevMonster;
}
/** Command line option: dump monsters. */
static void set_dumpmon1(void) {
settings.dumpvalues = 1;
}
/** Command line option: dump abilities. */
static void set_dumpmon2(void) {
settings.dumpvalues = 2;
}
/** Command line option: dump artifacts. */
static void set_dumpmon3(void) {
settings.dumpvalues = 3;
}
/** Command line option: dump spells. */
static void set_dumpmon4(void) {
settings.dumpvalues = 4;
}
/** Command line option: ? */
static void set_dumpmon5(void) {
settings.dumpvalues = 5;
}
/** Command line option: dump races. */
static void set_dumpmon6(void) {
settings.dumpvalues = 6;
}
/** Command line option: dump alchemy. */
static void set_dumpmon7(void) {
settings.dumpvalues = 7;
}
/** Command line option: dump gods. */
static void set_dumpmon8(void) {
settings.dumpvalues = 8;
}
/** Command line option: dump alchemy costs. */
static void set_dumpmon9(void) {
settings.dumpvalues = 9;
}
/**
* Command line option: dump monster treasures.
* @param name monster's name to dump treasure for.
*/
static void set_dumpmont(const char *name) {
settings.dumpvalues = 10;
settings.dumparg = name;
}
/** Command line option: set daemon mode. */
static void set_daemon(void) {
settings.daemonmode = 1;
/* Use the default log file if we weren't explicitly given one. */
if (settings.logfilename == NULL) {
settings.logfilename = LOGFILE;
}
}
/**
* Command line option: set data path.
* @param path new path.
*/
static void set_datadir(const char *path) {
settings.datadir = path;
}
/**
* Command line option: set configuration path.
* @param path new path.
*/
static void set_confdir(const char *path) {
settings.confdir = path;
}
/**
* Command line option: set local path.
* @param path new path.
*/
static void set_localdir(const char *path) {
settings.localdir = path;
}
/**
* Command line option: set map path.
* @param path new path.
*/
static void set_mapdir(const char *path) {
settings.mapdir = path;
}
/**
* Command line option: set archetypes file name.
* @param path new name.
*/
static void set_archetypes(const char *path) {
settings.archetypes = path;
}
/**
* Command line option: set regions file name.
* @param path new name.
*/
static void set_regions(const char *path) {
settings.regions = path;
}
/**
* Command line option: set treasures file name.
* @param path new name.
*/
static void set_treasures(const char *path) {
settings.treasures = path;
}
/**
* Command line option: set unique path.
* @param path new path.
*/
static void set_uniquedir(const char *path) {
settings.uniquedir = path;
}
/**
* Command line option: set template path.
* @param path new path.
*/
static void set_templatedir(const char *path) {
settings.templatedir = path;
}
/**
* Command line option: set player path.
* @param path new path.
*/
static void set_playerdir(const char *path) {
settings.playerdir = path;
}
/**
* Command line option: set temporary file path.
* @param path new path.
*/
static void set_tmpdir(const char *path) {
settings.tmpdir = path;
}
static void free_races(void);
static void free_materials(void);
/**
* Command line option: display score for matching players.
* @param data name to match.
*/
static void showscoresparm(const char *data) {
hiscore_display(NULL, 9999, data);
exit(0);
}
/**
* Change the server's port. Will exit() if invalid value.
*
* @param val
* port to use. Must be a valid one, between 1 and 65535 inclusive.
*/
static void set_csport(const char *val) {
int port = atoi(val);
if (port <= 0 || port > 65535) {
LOG(llevError, "%d is an invalid csport number, must be between 1 and 65535.\n", port);
exit(1);
}
settings.csport = port;
}
/**
* Disable a plugin.
* @param name plugin's name, without extension.
*/
static void set_disable_plugin(const char *name) {
linked_char *disable = calloc(1, sizeof(linked_char));
disable->next = settings.disabled_plugins;
disable->name = strdup(name);
settings.disabled_plugins = disable;
}
/**
* Dump all animations, then exit.
*/
static void server_dump_animations(void) {
dump_animations();
cleanup();
}
/** Typedefs used when calling option handlers. */
/*@{*/
typedef void (*cmdlinefunc_args0)(void);
typedef void (*cmdlinefunc_args1)(const char* arg1);
typedef void (*cmdlinefunc_args2)(const char* arg1, const char* arg2);
/*@}*/
/**
* One command line option definition.
* Most of this is shamelessly stolen from XSysStats. But since that is
* also my program, no problem.
*/
struct Command_Line_Options {
const char *cmd_option; /**< How it is called on the command line. */
uint8 num_args; /**< Number or args it takes. */
uint8 pass; /**< What pass this should be processed on. @todo describe passes :) */
void (*func)(); /**< function to call when we match this.
* if num_args is true, than that gets passed
* to the function, otherwise nothing is passed
*/
};
/**
* Actual valid command line options.
* The way this system works is pretty simple - parse_args takes
* the options passed to the program and a pass number. If an option
* matches both in name and in pass (and we have enough options),
* we call the associated function. This makes writing a multi
* pass system very easy, and it is very easy to add in new options.
*/
static struct Command_Line_Options options[] = {
/** Pass 1 functions - Stuff that can/should be called before we actually
* initialize any data.
*/
{ "-h", 0, 1, help },
/* Honor -help also, since it is somewhat common */
{ "-help", 0, 1, help },
{ "-v", 0, 1, call_version },
{ "-d", 0, 1, set_debug },
{ "+d", 0, 1, unset_debug },
{ "-mon", 0, 1, set_mondebug },
{ "-data", 1, 1, set_datadir },
{ "-conf", 1, 1, set_confdir },
{ "-local", 1, 1, set_localdir },
{ "-maps", 1, 1, set_mapdir },
{ "-arch", 1, 1, set_archetypes },
{ "-regions", 1, 1, set_regions },
{ "-playerdir", 1, 1, set_playerdir },
{ "-treasures", 1, 1, set_treasures },
{ "-uniquedir", 1, 1, set_uniquedir },
{ "-templatedir", 1, 1, set_templatedir },
{ "-tmpdir", 1, 1, set_tmpdir },
{ "-log", 1, 1, set_logfile },
{ "-detach", 0, 1, set_daemon },
{ "-disable-plugin", 1, 1, set_disable_plugin },
#ifdef WIN32
/* Windows service stuff */
{ "-regsrv", 0, 1, service_register },
{ "-unregsrv", 0, 1, service_unregister },
{ "-srv", 0, 1, service_handle },
#endif
/** Pass 2 functions. Most of these could probably be in pass 1,
* as they don't require much of anything to bet set up.
*/
{ "-csport", 1, 2, set_csport },
/** Start of pass 3 information. In theory, by pass 3, all data paths
* and defaults should have been set up.
*/
{ "-o", 0, 3, compile_info },
{ "-m", 0, 3, set_dumpmon1 },
{ "-m2", 0, 3, set_dumpmon2 },
{ "-m3", 0, 3, set_dumpmon3 },
{ "-m4", 0, 3, set_dumpmon4 },
{ "-m5", 0, 3, set_dumpmon5 },
{ "-m6", 0, 3, set_dumpmon6 },
{ "-m7", 0, 3, set_dumpmon7 },
{ "-m8", 0, 3, set_dumpmon8 },
{ "-m9", 0, 3, set_dumpmon9 },
{ "-mt", 1, 3, set_dumpmont },
{ "-mexp", 0, 3, dump_experience },
{ "-mq", 0, 3, dump_quests },
{ "-dump-anims", 0, 3, server_dump_animations },
{ "-s", 0, 3, showscores },
{ "-score", 1, 3, showscoresparm }
};
/**
* Parse command line arguments.
*
* Note since this may be called before the library has been set up,
* we don't use any of crossfires built in logging functions.
*
* @param argc
* length of argv.
* @param argv
* arguments.
* @param pass
* initialization pass arguments to use.
* @todo describe pass.
*/
static void parse_args(int argc, char *argv[], int pass) {
size_t i;
int on_arg = 1;
while (on_arg < argc) {
for (i = 0; i < sizeof(options)/sizeof(struct Command_Line_Options); i++) {
if (!strcmp(options[i].cmd_option, argv[on_arg])) {
/* Found a matching option, but should not be processed on
* this pass. Just skip over it
*/
if (options[i].pass != pass) {
on_arg += options[i].num_args+1;
break;
}
if (options[i].num_args) {
if ((on_arg+options[i].num_args) >= argc) {
fprintf(stderr, "%s requires an argument.\n", options[i].cmd_option);
exit(1);
}
if (options[i].num_args == 1)
((cmdlinefunc_args1)options[i].func)(argv[on_arg+1]);
if (options[i].num_args == 2)
((cmdlinefunc_args2)options[i].func)(argv[on_arg+1], argv[on_arg+2]);
on_arg += options[i].num_args+1;
} else { /* takes no args */
((cmdlinefunc_args0)options[i].func)();
on_arg++;
}
break;
}
}
if (i == sizeof(options)/sizeof(struct Command_Line_Options)) {
fprintf(stderr, "Unknown option: %s\n", argv[on_arg]);
fprintf(stderr, "Type '%s -h' for usage.\n", argv[0]);
exit(1);
}
}
}
/**
* Creates an empty materialtype_t structure.
*
* @return
* new blanked structure.
* @note
* will fatal() instead of returning NULL.
*/
static materialtype_t *get_empty_mat(void) {
materialtype_t *mt;
int i;
mt = (materialtype_t *)malloc(sizeof(materialtype_t));
if (mt == NULL)
fatal(OUT_OF_MEMORY);
mt->name = NULL;
mt->description = NULL;
for (i = 0; i < NROFATTACKS; i++) {
mt->save[i] = 0;
mt->mod[i] = 0;
}
mt->next = NULL;
return mt;
}
/**
* Loads the materials.
* @todo describe materials and such.
*/
static void load_materials(void) {
char buf[MAX_BUF], filename[MAX_BUF], *cp, *next;
FILE *fp;
materialtype_t *mt;
int i, value;
snprintf(filename, sizeof(filename), "%s/materials", settings.datadir);
LOG(llevDebug, "Reading material type data from %s...\n", filename);
if ((fp = fopen(filename, "r")) == NULL) {
LOG(llevError, "Cannot open %s for reading\n", filename);
mt = get_empty_mat();
mt->next = NULL;
materialt = mt;
return;
}
mt = get_empty_mat();
materialt = mt;
while (fgets(buf, MAX_BUF, fp) != NULL) {
if (*buf == '#')
continue;
if ((cp = strchr(buf, '\n')) != NULL)
*cp = '\0';
cp = buf;
while (*cp == ' ') /* Skip blanks */
cp++;
if (!strncmp(cp, "name", 4)) {
/* clean up the previous entry */
if (mt->next != NULL) {
if (mt->description == NULL)
mt->description = add_string(mt->name);
mt = mt->next;
}
mt->next = get_empty_mat();
mt->name = add_string(strchr(cp, ' ')+1);
} else if (!strncmp(cp, "description", 11)) {
mt->description = add_string(strchr(cp, ' ')+1);
} else if (sscanf(cp, "material %d", &value)) {
mt->material = value;
} else if (!strncmp(cp, "saves", 5)) {
cp = strchr(cp, ' ')+1;
for (i = 0; i < NROFATTACKS; i++) {
if (cp == NULL) {
mt->save[i] = 0;
continue;
}
if ((next = strchr(cp, ',')) != NULL)
*(next++) = '\0';
sscanf(cp, "%d", &value);
mt->save[i] = (sint8)value;
cp = next;
}
} else if (!strncmp(cp, "mods", 4)) {
cp = strchr(cp, ' ')+1;
for (i = 0; i < NROFATTACKS; i++) {
if (cp == NULL) {
mt->save[i] = 0;
continue;
}
if ((next = strchr(cp, ',')) != NULL)
*(next++) = '\0';
sscanf(cp, "%d", &value);
mt->mod[i] = (sint8)value;
cp = next;
}
}
}
free(mt->next);
mt->next = NULL;
LOG(llevDebug, "Done.\n");
fclose(fp);
}
/**
* Frees all memory allocated to materials.
*/
static void free_materials(void) {
materialtype_t *next;
while (materialt) {
next = materialt->next;
free(materialt);
materialt = next;
}
materialt = NULL;
}
/**
* This loads the settings file. There could be debate whether this should
* be here or in the common directory - but since only the server needs this
* information, having it here probably makes more sense.
*/
static void load_settings(void) {
char buf[MAX_BUF], *cp, dummy[1];
int has_val;
FILE *fp;
dummy[0] = '\0';
snprintf(buf, sizeof(buf), "%s/settings", settings.confdir);
/* We don't require a settings file at current time, but down the road,
* there will probably be so many values that not having a settings file
* will not be a good thing.
*/
if ((fp = fopen(buf, "r")) == NULL) {
LOG(llevError, "Warning: No settings file found\n");
return;
}
while (fgets(buf, MAX_BUF-1, fp) != NULL) {
if (buf[0] == '#')
continue;
/* eliminate newline */
if ((cp = strrchr(buf, '\n')) != NULL)
*cp = '\0';
/* Skip over empty lines */
if (buf[0] == 0)
continue;
/* Skip all the spaces and set them to nulls. If not space,
* set cp to "" to make strcpy's and the like easier down below.
*/
if ((cp = strchr(buf, ' ')) != NULL) {
while (*cp == ' ')
*cp++ = 0;
has_val = 1;
} else {
cp = dummy;
has_val = 0;
}
if (!strcasecmp(buf, "metaserver_notification")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.meta_on = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.meta_on = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for metaserver_notification: %s\n", cp);
}
} else if (!strcasecmp(buf, "metaserver_server")) {
if (has_val)
strcpy(settings.meta_server, cp);
else
LOG(llevError, "load_settings: metaserver_server must have a value.\n");
} else if (!strcasecmp(buf, "motd")) {
if (has_val)
strcpy(settings.motd, cp);
else
LOG(llevError, "load_settings: motd must have a value.\n");
} else if (!strcasecmp(buf, "dm_mail")) {
if (has_val)
strcpy(settings.dm_mail, cp);
else
LOG(llevError, "load_settings: dm_mail must have a value.\n");
} else if (!strcasecmp(buf, "metaserver_host")) {
if (has_val)
strcpy(settings.meta_host, cp);
else
LOG(llevError, "load_settings: metaserver_host must have a value.\n");
} else if (!strcasecmp(buf, "port")) {
set_csport(cp);
} else if (!strcasecmp(buf, "metaserver_port")) {
int port = atoi(cp);
if (port < 1 || port > 65535)
LOG(llevError, "load_settings: metaserver_port must be between 1 and 65535, %d is invalid\n", port);
else
settings.meta_port = port;
} else if (!strcasecmp(buf, "metaserver_comment")) {
strcpy(settings.meta_comment, cp);
} else if (!strcasecmp(buf, "worldmapstartx")) {
int size = atoi(cp);
if (size < 0)
LOG(llevError, "load_settings: worldmapstartx must be at least 0, %d is invalid\n", size);
else
settings.worldmapstartx = size;
} else if (!strcasecmp(buf, "worldmapstarty")) {
int size = atoi(cp);
if (size < 0)
LOG(llevError, "load_settings: worldmapstarty must be at least 0, %d is invalid\n", size);
else
settings.worldmapstarty = size;
} else if (!strcasecmp(buf, "worldmaptilesx")) {
int size = atoi(cp);
if (size < 1)
LOG(llevError, "load_settings: worldmaptilesx must be greater than 1, %d is invalid\n", size);
else
settings.worldmaptilesx = size;
} else if (!strcasecmp(buf, "worldmaptilesy")) {
int size = atoi(cp);
if (size < 1)
LOG(llevError, "load_settings: worldmaptilesy must be greater than 1, %d is invalid\n", size);
else
settings.worldmaptilesy = size;
} else if (!strcasecmp(buf, "worldmaptilesizex")) {
int size = atoi(cp);
if (size < 1)
LOG(llevError, "load_settings: worldmaptilesizex must be greater than 1, %d is invalid\n", size);
else
settings.worldmaptilesizex = size;
} else if (!strcasecmp(buf, "worldmaptilesizey")) {
int size = atoi(cp);
if (size < 1)
LOG(llevError, "load_settings: worldmaptilesizey must be greater than 1, %d is invalid\n", size);
else
settings.worldmaptilesizey = size;
} else if (!strcasecmp(buf, "fastclock")) {
int lev = atoi(cp);
if (lev < 0)
LOG(llevError, "load_settings: fastclock must be at least 0, %d is invalid\n", lev);
else
settings.fastclock = lev;
} else if (!strcasecmp(buf, "not_permadeth")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.not_permadeth = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.not_permadeth = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for not_permadeth: %s\n", cp);
}
} else if (!strcasecmp(buf, "resurrection")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.resurrection = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.resurrection = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for resurrection: %s\n", cp);
}
} else if (!strcasecmp(buf, "set_title")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.set_title = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.set_title = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for set_title: %s\n", cp);
}
} else if (!strcasecmp(buf, "search_items")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.search_items = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.search_items = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for search_items: %s\n", cp);
}
} else if (!strcasecmp(buf, "spell_encumbrance")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.spell_encumbrance = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.spell_encumbrance = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for spell_encumbrance: %s\n", cp);
}
} else if (!strcasecmp(buf, "spell_failure_effects")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.spell_failure_effects = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.spell_failure_effects = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for spell_failure_effects: %s\n", cp);
}
} else if (!strcasecmp(buf, "casting_time")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.casting_time = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.casting_time = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for casting_time: %s\n", cp);
}
} else if (!strcasecmp(buf, "real_wiz")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.real_wiz = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.real_wiz = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for real_wiz: %s\n", cp);
}
} else if (!strcasecmp(buf, "recycle_tmp_maps")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.recycle_tmp_maps = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.recycle_tmp_maps = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for recycle_tmp_maps: %s\n", cp);
}
} else if (!strcasecmp(buf, "who_format")) {
if (has_val)
strcpy(settings.who_format, cp);
} else if (!strcasecmp(buf, "who_wiz_format")) {
if (has_val)
strcpy(settings.who_wiz_format, cp);
} else if (!strcasecmp(buf, "spellpoint_level_depend")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.spellpoint_level_depend = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.spellpoint_level_depend = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for spellpoint_level_depend: %s\n", cp);
}
} else if (!strcasecmp(buf, "stat_loss_on_death")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.stat_loss_on_death = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.stat_loss_on_death = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for stat_loss_on_death: %s\n", cp);
}
} else if (!strcasecmp(buf, "use_permanent_experience")) {
LOG(llevError, "use_permanent_experience is deprecated, usepermenent_experience_percentage instead\n");
} else if (!strcasecmp(buf, "permanent_experience_percentage")) {
int val = atoi(cp);
if (val < 0 || val > 100)
LOG(llevError, "load_settings: permenent_experience_percentage must be between 0 and 100, %d is invalid\n", val);
else
settings.permanent_exp_ratio = val;
} else if (!strcasecmp(buf, "death_penalty_percentage")) {
int val = atoi(cp);
if (val < 0 || val > 100)
LOG(llevError, "load_settings: death_penalty_percentage must be between 0 and 100, %d is invalid\n", val);
else
settings.death_penalty_ratio = val;
} else if (!strcasecmp(buf, "death_penalty_levels")) {
int val = atoi(cp);
if (val < 0 || val > 255)
LOG(llevError, "load_settings: death_penalty_levels can not be negative, %d is invalid\n", val);
else
settings.death_penalty_level = val;
} else if (!strcasecmp(buf, "balanced_stat_loss")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.balanced_stat_loss = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.balanced_stat_loss = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for balanced_stat_loss: %s\n", cp);
}
} else if (!strcasecmp(buf, "simple_exp")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.simple_exp = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.simple_exp = FALSE;
} else {
LOG(llevError, "load_settings: Unknown value for simple_exp: %s\n", cp);
}
} else if (!strcasecmp(buf, "item_power_factor")) {
float tmp = atof(cp);
if (tmp < 0)
LOG(llevError, "load_settings: item_power_factor must be a positive number (%f < 0)\n", tmp);
else
settings.item_power_factor = tmp;
} else if (!strcasecmp(buf, "pk_luck_penalty")) {
sint16 val = atoi(cp);
if (val < -100 || val > 100)
LOG(llevError, "load_settings: pk_luck_penalty must be between -100 and 100, %d is invalid\n", val);
else
settings.pk_luck_penalty = val;
} else if (!strcasecmp(buf, "set_friendly_fire")) {
int val = atoi(cp);
if (val < 1 || val > 100)
LOG(llevError, "load_settings: set_friendly_fire must be between 1 an 100, %d is invalid\n", val);
else
settings.set_friendly_fire = val;
} else if (!strcasecmp(buf, "armor_max_enchant")) {
int max_e = atoi(cp);
if (max_e <= 0)
LOG(llevError, "load_settings: armor_max_enchant is %d\n", max_e);
else
settings.armor_max_enchant = max_e;
} else if (!strcasecmp(buf, "armor_weight_reduction")) {
int wr = atoi(cp);
if (wr < 0)
LOG(llevError, "load_settings: armor_weight_reduction is %d\n", wr);
else
settings.armor_weight_reduction = wr;
} else if (!strcasecmp(buf, "armor_weight_linear")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.armor_weight_linear = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.armor_weight_linear = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for armor_weight_linear: %s\n", cp);
}
} else if (!strcasecmp(buf, "armor_speed_improvement")) {
int wr = atoi(cp);
if (wr < 0)
LOG(llevError, "load_settings: armor_speed_improvement is %d\n", wr);
else
settings.armor_speed_improvement = wr;
} else if (!strcasecmp(buf, "armor_speed_linear")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.armor_speed_linear = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.armor_speed_linear = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp);
}
} else if (!strcasecmp(buf, "no_player_stealing")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.no_player_stealing = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.no_player_stealing = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for no_player_stealing: %s\n", cp);
}
} else if (!strcasecmp(buf, "create_home_portals")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.create_home_portals = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.create_home_portals = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for create_home_portals: %s\n", cp);
}
} else if (!strcasecmp(buf, "personalized_blessings")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.personalized_blessings = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.personalized_blessings = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for personalized_blessings: %s\n", cp);
}
} else if (!strcasecmp(buf, "pk_max_experience")) {
sint64 pkme = atoll(cp);
if (pkme < 0)
pkme = -1;
settings.pk_max_experience = pkme;
} else if (!strcasecmp(buf, "pk_max_experience_percent")) {
int pkmep = atoi(cp);
if (pkmep < 0) {
LOG(llevError, "load_settings: pk_max_experience_percent should be positive or zero (was \"%s\")\n", cp);
} else
settings.pk_max_experience_percent = pkmep;
} else if (!strcasecmp(buf, "allow_denied_spells_writing")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.allow_denied_spells_writing = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.allow_denied_spells_writing = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for allow_denied_spells_writing: %s\n", cp);
}
} else if (!strcasecmp(buf, "allow_broken_converters")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.allow_broken_converters = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.allow_broken_converters = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for allow_broken_converters: %s\n", cp);
}
} else if (!strcasecmp(buf, "log_timestamp")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.log_timestamp = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.log_timestamp = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for log_timestamp: %s\n", cp);
}
} else if (!strcasecmp(buf, "log_timestamp_format")) {
free(settings.log_timestamp_format);
settings.log_timestamp_format = strdup_local(cp);
} else if (!strcasecmp(buf, "starting_stat_min")) {
int val = atoi(cp);
if (val < 1 || val > settings.max_stat || val > settings.starting_stat_max)
LOG(llevError, "load_settings: starting_stat_min (%d) need to be within %d-%d (%d)\n",
val, 1, settings.max_stat, settings.starting_stat_max);
else
settings.starting_stat_min = val;
} else if (!strcasecmp(buf, "starting_stat_max")) {
int val = atoi(cp);
if (val < 1 || val > settings.max_stat || val<settings.starting_stat_min)
LOG(llevError, "load_settings: starting_stat_max (%d) need to be within %d-%d (%d)\n",
val, 1, settings.max_stat, settings.starting_stat_min);
else
settings.starting_stat_max = val;
} else if (!strcasecmp(buf, "starting_stat_points")) {
int val = atoi(cp);
if (val < NUM_STATS * settings.starting_stat_min ||
val > NUM_STATS * settings.starting_stat_max)
LOG(llevError, "load_settings: starting_stat_points (%d) need to be within %d-%d\n",
val, NUM_STATS * settings.starting_stat_min, NUM_STATS * settings.starting_stat_max);
else
settings.starting_stat_points = val;
} else if (!strcasecmp(buf, "roll_stat_points")) {
int val = atoi(cp);
/* The 3 and 18 values are hard coded in because we know that
* roll_stat() generates a value between 3 and 18 - if that ever
* changed, this code should change also, but that code will eventually
* go away.
*/
if (val < NUM_STATS * 3 || val > NUM_STATS * 18)
LOG(llevError, "load_settings: roll_stat_points need to be within %d-%d\n",
NUM_STATS * 3, NUM_STATS * 18);
else
settings.roll_stat_points = val;
} else if (!strcasecmp(buf, "special_break_map")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.special_break_map = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.special_break_map = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for special_break_map: %s\n", cp);
}
} else if (!strcasecmp(buf, "ignore_plugin_compatibility")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.ignore_plugin_compatibility = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.ignore_plugin_compatibility = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for ignore_plugin_compatibility: %s\n", cp);
}
} else if (!strcasecmp(buf, "account_block_create")) {
if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
settings.account_block_create = TRUE;
} else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
settings.account_block_create = FALSE;
} else {
LOG(llevError, "load_settings: unknown value for account_block_create: %s\n", cp);
}
} else if (!strcasecmp(buf, "account_trusted_host")) {
free(settings.account_trusted_host);
settings.account_trusted_host = strdup_local(cp);
} else {
LOG(llevError, "Unknown value in settings file: %s\n", buf);
}
}
fclose(fp);
if (settings.log_timestamp_format == NULL)
settings.log_timestamp_format = strdup_local("%y/%m/%d %H:%M:%S");
/*
* The who formats are defined in config to be blank. They should have been
* overridden by the settings file, if there are no entries however, it will
* have stayed blank. Since this probably isn't what is wanted, we will check if
* new formats have been specified, and if not we will use the old defaults.
*/
if (!strcmp(settings.who_format, ""))
strcpy(settings.who_format, "%N_%T%t%h%d%b%n<%m>");
if (!strcmp(settings.who_wiz_format, ""))
strcpy(settings.who_wiz_format, "%N_%T%t%h%d%b%nLevel %l <%m>(@%i)(%c)");
}
/**
* This is the main server initialization function.
*
* Called only once, when starting the program.
* @param argc argument count.
* @param argv arguments on the command line.
*/
void init(int argc, char **argv) {
init_done = 0; /* Must be done before init_signal() */
logfile = stderr;
/* First argument pass - right now it does nothing, but in the future specifying
* the LibDir in this pass would be reasonable. */
parse_args(argc, argv, 1);
init_library(); /* Must be called early */
load_settings(); /* Load the settings file */
load_materials();
parse_args(argc, argv, 2);
LOG(llevInfo, "Crossfire %s\n", FULL_VERSION);
SRANDOM(time(NULL));
init_startup(); /* Check shutdown/forbid files */
init_signals(); /* Sets up signal interceptions */
init_commands(); /* Sort command tables */
read_map_log(); /* Load up the old temp map files */
init_skills();
init_ob_methods();
cftimer_init();
hiscore_init();
parse_args(argc, argv, 3);
#ifndef WIN32 /* ***win32: no become_daemon in windows */
if (settings.daemonmode)
become_daemon();
#endif
init_beforeplay();
init_server();
metaserver2_init();
account_load_entries();
reset_sleep();
init_done = 1;
}
/**
* Frees all memory allocated around here:
* - materials
* - races
*/
void free_server(void) {
free_materials();
free_races();
free_quest();
free_quest_definitions();
while (settings.disabled_plugins) {
linked_char *next = settings.disabled_plugins->next;
free((void *)settings.disabled_plugins->name);
free(settings.disabled_plugins);
settings.disabled_plugins = next;
}
}
/**
* Display the command line options and exits.
*/
static void help(void) {
printf("usage: crossfire-server [-h] [options]\n\n");
printf("Options:\n");
printf(" -csport <port> Specifies the port to use for the new client/server code.\n");
printf(" -d Turns on some debugging.\n");
printf(" +d Turns off debugging (useful if server compiled with debugging\n");
printf(" as default).\n");
printf(" -detach The server will go in the background, closing all\n");
printf(" connections to the tty.\n");
printf(" -h Display this information.\n");
printf(" -log <file> Specifies which file to send output to.\n");
printf(" Only has meaning if -detach is specified.\n");
printf(" -mon Turns on monster debugging.\n");
printf(" -o Prints out info on what was defined at compile time.\n");
printf(" -s Display the high-score list.\n");
printf(" -score <name or class> Displays all high scores with matching name/class.\n");
printf(" -v Print version and developer contact information.\n");
printf(" -conf Sets the configuration dir (settings, motd, etc.)\n");
printf(" -data Sets the lib dir (archetypes, treasures, etc.)\n");
printf(" -local Read/write local data (hiscore, unique items, etc.)\n");
printf(" -maps Sets the directory for maps.\n");
printf(" -arch Sets the archetype file to use.\n");
printf(" -regions Sets the regions file to use.\n");
printf(" -playerdir Sets the directory for the player files.\n");
printf(" -templatedir Sets the directory for template generate maps.\n");
printf(" -treasures Sets the treasures file to use.\n");
printf(" -uniquedir Sets the unique items/maps directory.\n");
printf(" -tmpdir Sets the directory for temporary files (mostly maps.)\n");
printf(" -m Lists out suggested experience for all monsters.\n");
printf(" -m2 Dumps out abilities.\n");
printf(" -m3 Dumps out artifact information.\n");
printf(" -m4 Dumps out spell information.\n");
printf(" -m5 Dumps out skill information.\n");
printf(" -m6 Dumps out race information.\n");
printf(" -m7 Dumps out alchemy information.\n");
printf(" -m8 Dumps out gods information.\n");
printf(" -m9 Dumps out more alchemy information (formula checking).\n");
printf(" -mt <name> Dumps out list of treasures for a monster.\n");
printf(" -mexp Dumps out the experience table.\n");
printf(" -mq Dumps out the list of defined quests.\n");
printf(" -dump-anims Dumps out the animations.\n");
printf(" -disable-plugin\n"
" Disables specified plugin. Use the name without the extension.\n"
" Can be specified multiple times. 'All' disables all plugins.\n");
exit(0);
}
/**
* Called before the server starts listening to connections, processes various
* dump-related options.
*/
static void init_beforeplay(void) {
init_archetypes(); /* If not called before, reads all archetypes from file */
init_artifacts(); /* If not called before, reads all artifacts from file */
check_spells(); /* If not called before, links archtypes used by spells */
init_regions(); /* If not called before, reads all regions from file */
init_archetype_pointers(); /* Setup global pointers to archetypes */
init_races(); /* overwrite race designations using entries in lib/races file */
init_gods(); /* init linked list of gods from archs*/
init_readable(); /* inits useful arrays for readable texts */
init_formulae(); /* If not called before, reads formulae from file */
switch (settings.dumpvalues) {
case 1:
print_monsters();
cleanup();
case 2:
dump_abilities();
cleanup();
case 3:
dump_artifacts();
cleanup();
case 4:
dump_spells();
cleanup();
case 5:
cleanup();
case 6:
dump_races();
cleanup();
case 7:
dump_alchemy();
cleanup();
case 8:
dump_gods();
cleanup();
case 9:
dump_alchemy_costs();
cleanup();
case 10:
dump_monster_treasure(settings.dumparg);
cleanup();
}
}
/**
* Checks if starting the server is allowed.
*
* @todo describe forbid_play() and such restrictions.
*/
static void init_startup(void) {
char buf[MAX_BUF];
FILE *fp;
#ifdef SHUTDOWN_FILE
snprintf(buf, sizeof(buf), "%s/%s", settings.confdir, SHUTDOWN_FILE);
if ((fp = fopen(buf, "r")) != NULL) {
while (fgets(buf, MAX_BUF-1, fp) != NULL)
printf("%s", buf);
fclose(fp);
exit(1);
}
#endif
if (forbid_play()) { /* Maybe showing highscore should be allowed? */
LOG(llevError, "CrossFire: Playing not allowed.\n");
exit(-1);
}
}
/**
* Dump compilation information, activated with the -o flag.
*
* It writes out information on how Imakefile and config.h was configured
* at compile time.
*/
static void compile_info(void) {
int i = 0;
char err[MAX_BUF];
printf("Non-standard include files:\n");
#ifdef HAVE_MALLOC_H
printf("<malloc.h>\n");
i = 1;
#endif
#ifdef HAVE_MEMORY_H
printf("<memory.h\n");
i = 1;
#endif
if (!i)
printf("(none)\n");
printf("Datadir:\t\t%s\n", settings.datadir);
printf("Localdir:\t\t%s\n", settings.localdir);
#ifdef PERM_FILE
printf("Perm file:\t<ETC>/%s\n", PERM_FILE);
#endif
#ifdef SHUTDOWN_FILE
printf("Shutdown file:\t<ETC>/%s\n", SHUTDOWN_FILE);
#endif
printf("Save player:\t<true>\n");
printf("Save mode:\t%4.4o\n", SAVE_MODE);
printf("Playerdir:\t<VAR>/%s\n", settings.playerdir);
printf("Itemsdir:\t<VAR>/%s\n", settings.uniquedir);
printf("Tmpdir:\t\t%s\n", settings.tmpdir);
printf("Map max timeout:\t%d\n", MAP_MAXTIMEOUT);
printf("Max objects:\t%d\n", MAX_OBJECTS);
#ifdef USE_CALLOC
printf("Use_calloc:\t<true>\n");
#else
printf("Use_calloc:\t<false>\n");
#endif
printf("Max_time:\t%d\n", MAX_TIME);
#ifdef WIN32 /* ***win32 compile_info(): remove execl... */
printf("Logfilename:\t%s\n", settings.logfilename);
exit(0);
#else
execl("/bin/uname", "uname", "-a", NULL);
LOG(llevError, "Oops, shouldn't have gotten here: execl(/bin/uname) failed: %s\n", strerror_local(errno, err, sizeof(err)));
exit(-1);
#endif
}
/* Signal handlers: */
#ifndef DEBUG
/**
* SIGSERV handler.
* @param i
* unused.
*/
static void rec_sigsegv(int i) {
LOG(llevError, "\nSIGSEGV received.\n");
fatal_signal(1);
}
#endif
/**
* SIGINT handler.
* @param i
* unused.
*/
static void rec_sigint(int i) {
LOG(llevInfo, "\nSIGINT received.\n");
fatal_signal(0);
}
/**
* SIGHUP handler.
* SIGHUP handlers on daemons typically make them reread the config
* files and reinitialize itself. This behaviour is better left for
* an explicit shutdown and restart with Crossfire, as there is just
* too much persistent runtime state. However, another function of
* SIGHUP handlers is to reopen the log file for logrotate's benefit.
* We can do that here.
*
* @param i
* unused.
*/
static void rec_sighup(int i) {
/* Don't call LOG(). It calls non-reentrant functions. The other
* signal handlers shouldn't really call LOG() either. */
if (logfile != stderr) {
reopen_logfile = 1;
}
}
#ifndef DEBUG
/**
* SIGQUIT handler.
*
* @param i
* unused.
*/
static void rec_sigquit(int i) {
LOG(llevInfo, "\nSIGQUIT received\n");
fatal_signal(1);
}
#endif
#ifndef DEBUG
/**
* SIGPIPE handler.
*
* Keep running if we receive a sigpipe. Crossfire should really be able
* to handle this signal (at least at some point in the future if not
* right now). By causing a dump right when it is received, it is not
* doing much good. However, if it core dumps later on, at least it can
* be looked at later on, and maybe fix the problem that caused it to
* dump core. There is no reason that SIGPIPES should be fatal
*
* @param i
* unused.
*/
static void rec_sigpipe(int i) {
LOG(llevError, "\nSIGPIPE--------------\n------------\n--------\n---\n");
#if 1 && !defined(WIN32) /* ***win32: we don't want send SIGPIPE */
LOG(llevInfo, "\nReceived SIGPIPE, ignoring...\n");
signal(SIGPIPE, rec_sigpipe);/* hocky-pux clears signal handlers */
#else
LOG(llevError, "\nSIGPIPE received, not ignoring...\n");
fatal_signal(1); /*Might consider to uncomment this line */
#endif
}
#ifdef SIGBUS
/**
* SIGBUS handler.
*
* @param i
* unused.
*/
static void rec_sigbus(int i) {
LOG(llevError, "\nSIGBUS received\n");
fatal_signal(1);
}
#endif
/**
* SIGTERM handler.
*
* @param i
* unused.
*/
static void rec_sigterm(int i) {
LOG(llevInfo, "\nSIGTERM received\n");
fatal_signal(0);
}
#endif
/**
* General signal handling. Will exit() in any case.
*
* @param make_core
* if set abort() instead of exit() to generate a core dump.
*/
static void fatal_signal(int make_core) {
if (init_done) {
emergency_save(0);
clean_tmp_files();
}
if (make_core)
abort();
exit(0);
}
/**
* Setup our signal handlers.
*/
static void init_signals(void) {
#ifndef WIN32 /* init_signals() remove signals */
struct sigaction sa;
sa.sa_sigaction = NULL;
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sa.sa_handler = rec_sighup;
sigaction(SIGHUP, &sa, NULL);
signal(SIGINT, rec_sigint);
#ifndef DEBUG
signal(SIGQUIT, rec_sigquit);
signal(SIGSEGV, rec_sigsegv);
LOG(llevInfo, "\n---------registering SIGPIPE\n");
signal(SIGPIPE, rec_sigpipe);
#ifdef SIGBUS
signal(SIGBUS, rec_sigbus);
#endif
signal(SIGTERM, rec_sigterm);
#endif
#endif /* win32 */
}
/**
* Reads the races file in the lib/ directory, then
* overwrites old 'race' entries. This routine allow us to quickly
* re-configure the 'alignment' of monsters, objects. Useful for
* putting together lists of creatures, etc that belong to gods.
*/
static void init_races(void) {
FILE *file;
char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF];
archetype *mon = NULL;
static int init_done = 0;
if (init_done)
return;
init_done = 1;
first_race = NULL;
snprintf(fname, sizeof(fname), "%s/races", settings.datadir);
LOG(llevDebug, "Reading races from %s...\n", fname);
if (!(file = fopen(fname, "r"))) {
LOG(llevError, "Cannot open races file %s: %s\n", fname, strerror_local(errno, buf, sizeof(buf)));
return;
}
while (fgets(buf, MAX_BUF, file) != NULL) {
int set_race = 1, set_list = 1;
if (*buf == '#')
continue;
if ((cp = strchr(buf, '\n')) != NULL)
*cp = '\0';
cp = buf;
while (*cp == ' ' || *cp == '!' || *cp == '@') {
if (*cp == '!')
set_race = 0;
if (*cp == '@')
set_list = 0;
cp++;
}
if (sscanf(cp, "RACE %s", variable)) { /* set new race value */
strcpy(race, variable);
} else {
char *cp1;
/* Take out beginning spaces */
for (cp1 = cp; *cp1 == ' '; cp1++)
;
/* Remove newline and trailing spaces */
for (cp1 = cp+strlen(cp)-1; *cp1 == '\n' || *cp1 == ' '; cp1--) {
*cp1 = '\0';
if (cp == cp1)
break;
}
if (cp[strlen(cp)-1] == '\n')
cp[strlen(cp)-1] = '\0';
/* set creature race to race value */
if ((mon = find_archetype(cp)) == NULL)
LOG(llevError, "Creature %s in race file lacks archetype\n", cp);
else {
if (set_race && (!mon->clone.race || strcmp(mon->clone.race, race))) {
if (mon->clone.race) {
LOG(llevDebug, " Resetting race to %s from %s for archetype %s\n", race, mon->clone.race, mon->name);
free_string(mon->clone.race);
}
mon->clone.race = add_string(race);
}
/* if the arch is a monster, add it to the race list */
if (set_list && QUERY_FLAG(&mon->clone, FLAG_MONSTER))
add_to_racelist(race, &mon->clone);
}
}
}
fclose(file);
LOG(llevDebug, "done races.\n");
}
/**
* Dumps all race information to stderr.
*/
static void dump_races(void) {
racelink *list;
objectlink *tmp;
for (list = first_race; list; list = list->next) {
fprintf(stderr, "\nRACE %s:\t", list->name);
for (tmp = list->member; tmp; tmp = tmp->next)
fprintf(stderr, "%s(%d), ", tmp->ob->arch->name, tmp->ob->level);
}
fprintf(stderr, "\n");
}
/**
* Frees all race-related information.
*/
static void free_races(void) {
racelink *race;
objectlink *link;
LOG(llevDebug, "Freeing race information.\n");
while (first_race) {
race = first_race->next;
while (first_race->member) {
link = first_race->member->next;
free(first_race->member);
first_race->member = link;
}
free_string(first_race->name);
free(first_race);
first_race = race;
}
}
/**
* Add an object to the racelist.
*
* @param race_name
* race name.
* @param op
* what object to add to the race.
*/
static void add_to_racelist(const char *race_name, object *op) {
racelink *race;
if (!op || !race_name)
return;
race = find_racelink(race_name);
if (!race) { /* add in a new race list */
race = get_racelist();
race->next = first_race;
first_race = race;
race->name = add_string(race_name);
}
if (race->member->ob) {
objectlink *tmp = get_objectlink();
tmp->next = race->member;
race->member = tmp;
}
race->nrof++;
race->member->ob = op;
}
/**
* Create a new ::racelink structure.
*
* @note
* will call fatal() in case of memory allocation failure.
* @return
* empty structure.
*/
static racelink *get_racelist(void) {
racelink *list;
list = (racelink *)malloc(sizeof(racelink));
if (!list)
fatal(OUT_OF_MEMORY);
list->name = NULL;
list->nrof = 0;
list->member = get_objectlink();
list->next = NULL;
return list;
}
/**
* Find the race information for the specified name.
*
* @param name
* race to search for.
* @return
* race structure, NULL if not found.
*/
racelink *find_racelink(const char *name) {
racelink *test = NULL;
if (name && first_race)
for (test = first_race; test && test != test->next; test = test->next)
if (!test->name || !strcmp(name, test->name))
break;
return test;
}
|