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.5 by root, Wed Aug 30 16:30:37 2006 UTC vs.
Revision 1.43 by root, Tue Mar 6 14:01:11 2007 UTC

1/* 1/*
2 * static char *rcsid_init_c = 2 * CrossFire, A Multiplayer game
3 * "$Id: init.C,v 1.5 2006/08/30 16:30:37 root Exp $"; 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen
7 *
8 * This program 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 2 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, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 * The authors can be reached via e-mail at <crossfire@schmorp.de>
4 */ 23 */
5
6/*
7 CrossFire, A Multiplayer game for X-windows
8
9 Copyright (C) 2002 Mark Wedel & Crossfire Development Team
10 Copyright (C) 1992 Frank Tore Johansen
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25
26 The authors can be reached via e-mail at crossfire-devel@real-time.com
27*/
28 24
29#include <global.h> 25#include <global.h>
30#include <material.h> 26#include <material.h>
31#include <loader.h> 27#include <loader.h>
32#ifndef __CEXTRACT__
33#include <sproto.h> 28#include <sproto.h>
34#endif
35 29
36/* global weathermap */ 30void
37weathermap_t **weathermap; 31set_logfile (char *val)
32{
33 settings.logfilename = val;
34}
38 35
39void set_logfile(char *val) { settings.logfilename=val; } 36void
40void call_version(void) { version(NULL); exit(0); } 37call_version (void)
41void showscores(void) { display_high_score(NULL,9999,NULL); exit(0); } 38{
42void set_debug(void) { settings.debug=llevDebug; } 39 version (NULL);
43void unset_debug(void) { settings.debug=llevInfo; } 40 exit (0);
44void set_mondebug(void) { settings.debug=llevMonster; } 41}
45void set_dumpmon1(void) {settings.dumpvalues=1; }
46void set_dumpmon2(void) {settings.dumpvalues=2; }
47void set_dumpmon3(void) {settings.dumpvalues=3; }
48void set_dumpmon4(void) {settings.dumpvalues=4; }
49void set_dumpmon5(void) {settings.dumpvalues=5; }
50void set_dumpmon6(void) {settings.dumpvalues=6; }
51void set_dumpmon7(void) {settings.dumpvalues=7; }
52void set_dumpmon8(void) {settings.dumpvalues=8; }
53void set_dumpmon9(void) {settings.dumpvalues=9; }
54void set_dumpmont(char *name) {settings.dumpvalues=10; settings.dumparg=name; }
55void set_daemon(void) {settings.daemonmode=1; }
56void set_datadir(char *path) { settings.datadir=path; }
57void set_confdir(char *path) { settings.confdir=path; }
58void set_localdir(char *path) { settings.localdir=path; }
59void set_mapdir(char *path) { settings.mapdir=path; }
60void set_archetypes(char *path) { settings.archetypes=path; }
61void set_regions(char *path) { settings.regions=path; }
62void set_treasures(char *path) { settings.treasures=path; }
63void set_uniquedir(char *path) { settings.uniquedir=path; }
64void set_templatedir(char *path) { settings.templatedir=path; }
65void set_playerdir(char *path) { settings.playerdir=path; }
66void set_tmpdir(char *path) { settings.tmpdir=path; }
67 42
43void
44showscores (void)
45{
46 display_high_score (NULL, 9999, NULL);
47 exit (0);
48}
49
50void
51set_debug (void)
52{
53 settings.debug = llevDebug;
54}
55
56void
57unset_debug (void)
58{
59 settings.debug = llevInfo;
60}
61
62void
63set_mondebug (void)
64{
65 settings.debug = llevMonster;
66}
67
68void
69set_dumpmon1 (void)
70{
71 settings.dumpvalues = 1;
72}
73
74void
75set_dumpmon2 (void)
76{
77 settings.dumpvalues = 2;
78}
79
80void
81set_dumpmon3 (void)
82{
83 settings.dumpvalues = 3;
84}
85
86void
87set_dumpmon4 (void)
88{
89 settings.dumpvalues = 4;
90}
91
92void
93set_dumpmon5 (void)
94{
95 settings.dumpvalues = 5;
96}
97
98void
99set_dumpmon6 (void)
100{
101 settings.dumpvalues = 6;
102}
103
104void
105set_dumpmon7 (void)
106{
107 settings.dumpvalues = 7;
108}
109
110void
111set_dumpmon8 (void)
112{
113 settings.dumpvalues = 8;
114}
115
116void
117set_dumpmon9 (void)
118{
119 settings.dumpvalues = 9;
120}
121
122void
123set_dumpmont (char *name)
124{
125 settings.dumpvalues = 10;
126 settings.dumparg = name;
127}
128
129void
130set_daemon (void)
131{
132 settings.daemonmode = 1;
133}
134
135void
136set_datadir (char *path)
137{
138 settings.datadir = path;
139}
140
141void
142set_confdir (char *path)
143{
144 settings.confdir = path;
145}
146
147void
148set_localdir (char *path)
149{
150 settings.localdir = path;
151}
152
153void
154set_mapdir (char *path)
155{
156 settings.mapdir = path;
157}
158
159void
160set_archetypes (char *path)
161{
162 settings.archetypes = path;
163}
164
165void
166set_regions (char *path)
167{
168 settings.regions = path;
169}
170
171void
172set_treasures (char *path)
173{
174 settings.treasures = path;
175}
176
177void
178set_uniquedir (char *path)
179{
180 settings.uniquedir = path;
181}
182
183void
184set_templatedir (char *path)
185{
186 settings.templatedir = path;
187}
188
189void
190set_playerdir (char *path)
191{
192 settings.playerdir = path;
193}
194
195void
196set_tmpdir (char *path)
197{
198 settings.tmpdir = path;
199}
200
201void
68void showscoresparm(char *data) { 202showscoresparm (char *data)
203{
69 display_high_score(NULL,9999,data); 204 display_high_score (NULL, 9999, data);
70 exit(0); 205 exit (0);
71} 206}
72 207
208void
73void set_csport(char *val) 209set_csport (char *val)
74{ 210{
75 settings.csport=atoi(val); 211 settings.csport = atoi (val);
76#ifndef WIN32 /* ***win32: set_csport: we remove csport error secure check here, do this later */ 212 if (settings.csport <= 0 || settings.csport > 32765 || (settings.csport < 1024 && getuid () != 0))
77 if (settings.csport<=0 || settings.csport>32765 || 213 {
78 (settings.csport<1024 && getuid()!=0)) {
79 LOG(llevError, "%d is an invalid csport number.\n", settings.csport); 214 LOG (llevError, "%d is an invalid csport number.\n", settings.csport);
80 exit(1); 215 exit (1);
81 } 216 }
82#endif /* win32 */
83} 217}
84 218
85/* Most of this is shamelessly stolen from XSysStats. But since that is 219/* Most of this is shamelessly stolen from XSysStats. But since that is
86 * also my program, no problem. 220 * also my program, no problem.
87 */ 221 */
88struct Command_Line_Options { 222struct Command_Line_Options
223{
89 const char *cmd_option; /* how it is called on the command line */ 224 const char *cmd_option; /* how it is called on the command line */
90 uint8 num_args; /* Number or args it takes */ 225 uint8 num_args; /* Number or args it takes */
91 uint8 pass; /* What pass this should be processed on. */ 226 uint8 pass; /* What pass this should be processed on. */
92 void (*func)(); /* function to call when we match this. 227 void (*func) (); /* function to call when we match this.
93 * if num_args is true, than that gets passed 228 * if num_args is true, than that gets passed
94 * to the function, otherwise nothing is passed 229 * to the function, otherwise nothing is passed
95 */ 230 */
96}; 231};
97 232
98/* The way this system works is pretty simple - parse_args takes 233/* The way this system works is pretty simple - parse_args takes
99 * the options passed to the program and a pass number. If an option 234 * the options passed to the program and a pass number. If an option
100 * matches both in name and in pass (and we have enough options), 235 * matches both in name and in pass (and we have enough options),
102 * pass system very easy, and it is very easy to add in new options. 237 * pass system very easy, and it is very easy to add in new options.
103 */ 238 */
104struct Command_Line_Options options[] = { 239struct Command_Line_Options options[] = {
105 240
106/* Pass 1 functions - STuff that can/should be called before we actually 241/* Pass 1 functions - STuff that can/should be called before we actually
107 * initialize any data. 242 * initialise any data.
108 */ 243 */
109{"-h", 0, 1, help}, 244 {"-h", 0, 1, help},
245
110/* Honor -help also, since it is somewhat common */ 246/* Honor -help also, since it is somewhat common */
111{"-help", 0, 1, help}, 247 {"-help", 0, 1, help},
112{"-v", 0, 1, call_version}, 248 {"-v", 0, 1, call_version},
113{"-d", 0, 1, set_debug}, 249 {"-d", 0, 1, set_debug},
114{"+d", 0, 1, unset_debug}, 250 {"+d", 0, 1, unset_debug},
115{"-mon", 0, 1, set_mondebug}, 251 {"-mon", 0, 1, set_mondebug},
116{"-data",1,1, (void (*)())set_datadir}, 252 {"-data", 1, 1, (void (*)()) set_datadir},
117{"-conf",1,1, (void (*)())set_confdir}, 253 {"-conf", 1, 1, (void (*)()) set_confdir},
118{"-local",1,1,(void (*)()) set_localdir}, 254 {"-local", 1, 1, (void (*)()) set_localdir},
119{"-maps", 1, 1,(void (*)()) set_mapdir}, 255 {"-maps", 1, 1, (void (*)()) set_mapdir},
120{"-arch", 1, 1,(void (*)()) set_archetypes}, 256 {"-arch", 1, 1, (void (*)()) set_archetypes},
121{"-regions", 1, 1,(void (*)()) set_regions}, 257 {"-regions", 1, 1, (void (*)()) set_regions},
122{"-playerdir", 1, 1,(void (*)()) set_playerdir}, 258 {"-playerdir", 1, 1, (void (*)()) set_playerdir},
123{"-treasures", 1, 1,(void (*)()) set_treasures}, 259 {"-treasures", 1, 1, (void (*)()) set_treasures},
124{"-uniquedir", 1, 1,(void (*)()) set_uniquedir}, 260 {"-uniquedir", 1, 1, (void (*)()) set_uniquedir},
125{"-templatedir", 1, 1,(void (*)()) set_templatedir}, 261 {"-templatedir", 1, 1, (void (*)()) set_templatedir},
126{"-tmpdir", 1, 1,(void (*)()) set_tmpdir}, 262 {"-tmpdir", 1, 1, (void (*)()) set_tmpdir},
127{"-log", 1, 1,(void (*)()) set_logfile}, 263 {"-log", 1, 1, (void (*)()) set_logfile},
128
129#ifdef WIN32
130/* Windows service stuff */
131{"-regsrv", 0, 1, service_register},
132{"-unregsrv", 0, 1, service_unregister},
133{"-srv", 0, 1, service_handle},
134#endif
135 264
136/* Pass 2 functions. Most of these could probably be in pass 1, 265/* Pass 2 functions. Most of these could probably be in pass 1,
137 * as they don't require much of anything to bet set up. 266 * as they don't require much of anything to bet set up.
138 */ 267 */
139{"-csport", 1, 2,(void (*)()) set_csport}, 268 {"-csport", 1, 2, (void (*)()) set_csport},
140{"-detach", 0, 2, set_daemon}, 269 {"-detach", 0, 2, set_daemon},
141 270
142/* Start of pass 3 information. In theory, by pass 3, all data paths 271/* Start of pass 3 information. In theory, by pass 3, all data paths
143 * and defaults should have been set up. 272 * and defaults should have been set up.
144 */ 273 */
145{"-o", 0, 3, compile_info}, 274 {"-o", 0, 3, compile_info},
146{"-m", 0, 3, set_dumpmon1}, 275 {"-m", 0, 3, set_dumpmon1},
147{"-m2", 0, 3, set_dumpmon2}, 276 {"-m2", 0, 3, set_dumpmon2},
148{"-m3", 0, 3, set_dumpmon3}, 277 {"-m3", 0, 3, set_dumpmon3},
149{"-m4", 0, 3, set_dumpmon4}, 278 {"-m4", 0, 3, set_dumpmon4},
150{"-m5", 0, 3, set_dumpmon5}, 279 {"-m5", 0, 3, set_dumpmon5},
151{"-m6", 0, 3, set_dumpmon6}, 280 {"-m6", 0, 3, set_dumpmon6},
152{"-m7", 0, 3, set_dumpmon7}, 281 {"-m7", 0, 3, set_dumpmon7},
153{"-m8", 0, 3, set_dumpmon8}, 282 {"-m8", 0, 3, set_dumpmon8},
154{"-m9", 0, 3, set_dumpmon9}, 283 {"-m9", 0, 3, set_dumpmon9},
155{"-mt", 1, 3, (void (*)())set_dumpmont}, 284 {"-mt", 1, 3, (void (*)()) set_dumpmont},
156{"-mexp", 0, 3, dump_experience}, 285 {"-mexp", 0, 3, dump_experience},
157{"-s", 0, 3, showscores}, 286 {"-s", 0, 3, showscores},
158{"-score", 1, 3, (void (*)())showscoresparm} 287 {"-score", 1, 3, (void (*)()) showscoresparm}
159}; 288};
160 289
161 290
162/* Note since this may be called before the library has been set up, 291/* Note since this may be called before the library has been set up,
163 * we don't use any of crossfires built in logging functions. 292 * we don't use any of crossfires built in logging functions.
164 */ 293 */
294static void
165static void parse_args(int argc, char *argv[], int pass) 295parse_args (int argc, char *argv[], int pass)
166{ 296{
167 size_t i; 297 size_t i;
168 int on_arg=1; 298 int on_arg = 1;
169 299
170 while (on_arg<argc) { 300 while (on_arg < argc)
301 {
171 for (i=0; i<sizeof(options)/sizeof(struct Command_Line_Options); i++) { 302 for (i = 0; i < sizeof (options) / sizeof (struct Command_Line_Options); i++)
303 {
172 if (!strcmp(options[i].cmd_option, argv[on_arg])) { 304 if (!strcmp (options[i].cmd_option, argv[on_arg]))
305 {
173 /* Found a matching option, but should not be processed on 306 /* Found a matching option, but should not be processed on
174 * this pass. Just skip over it 307 * this pass. Just skip over it
175 */ 308 */
176 if (options[i].pass != pass) { 309 if (options[i].pass != pass)
310 {
177 on_arg += options[i].num_args+1; 311 on_arg += options[i].num_args + 1;
178 break; 312 break;
179 } 313 }
180 if (options[i].num_args) { 314 if (options[i].num_args)
315 {
181 if ((on_arg+options[i].num_args)>=argc) { 316 if ((on_arg + options[i].num_args) >= argc)
317 {
182 fprintf(stderr,"%s requires an argument.\n", options[i].cmd_option); 318 fprintf (stderr, "%s requires an argument.\n", options[i].cmd_option);
183 exit(1); 319 exit (1);
184 } 320 }
185 else { 321 else
322 {
186 if (options[i].num_args==1) 323 if (options[i].num_args == 1)
187 ((void (*)(char*))options[i].func)(argv[on_arg+1]); 324 ((void (*)(char *)) options[i].func) (argv[on_arg + 1]);
188 if (options[i].num_args==2) 325 if (options[i].num_args == 2)
189 ((void (*)(char*,char*))options[i].func)(argv[on_arg+1],argv[on_arg+2]); 326 ((void (*)(char *, char *)) options[i].func) (argv[on_arg + 1], argv[on_arg + 2]);
190 on_arg +=options[i].num_args+1; 327 on_arg += options[i].num_args + 1;
191 } 328 }
192 } 329 }
330 else
193 else { /* takes no args */ 331 { /* takes no args */
194 options[i].func(); 332 options[i].func ();
195 on_arg++; 333 on_arg++;
196 } 334 }
197 break; 335 break;
198 }
199 } 336 }
337 }
200 if (i==sizeof(options)/sizeof(struct Command_Line_Options)) { 338 if (i == sizeof (options) / sizeof (struct Command_Line_Options))
339 {
201 fprintf(stderr,"Unknown option: %s\n", argv[on_arg]); 340 fprintf (stderr, "Unknown option: %s\n", argv[on_arg]);
202 usage(); 341 usage ();
203 exit(1); 342 exit (1);
204 } 343 }
205 } 344 }
206} 345}
207 346
208static materialtype_t *get_empty_mat(void) { 347//TODO: make this a constructor
348static materialtype_t *
349get_empty_mat (void)
350{
209 materialtype_t *mt; 351 materialtype_t *mt;
210 int i; 352 int i;
211 353
212 mt = (materialtype_t *)malloc(sizeof(materialtype_t)); 354 mt = new materialtype_t;
213 if (mt == NULL) 355
214 fatal(OUT_OF_MEMORY);
215 mt->name = NULL; 356 mt->name = NULL;
216 mt->description = NULL; 357 mt->description = NULL;
217 for (i=0; i < NROFATTACKS; i++) { 358 for (i = 0; i < NROFATTACKS; i++)
359 {
218 mt->save[i] = 0; 360 mt->save[i] = 0;
219 mt->mod[i] = 0; 361 mt->mod[i] = 0;
220 } 362 }
221 mt->chance = 0; 363 mt->chance = 0;
222 mt->difficulty = 0; 364 mt->difficulty = 0;
223 mt->magic = 0; 365 mt->magic = 0;
224 mt->damage = 0; 366 mt->damage = 0;
225 mt->wc = 0; 367 mt->wc = 0;
226 mt->ac = 0; 368 mt->ac = 0;
227 mt->sp = 0; 369 mt->sp = 0;
228 mt->weight = 100; 370 mt->weight = 100;
229 mt->value = 100; 371 mt->value = 100;
230 mt->next = NULL; 372 mt->next = NULL;
231 return mt; 373 return mt;
232} 374}
233 375
376static void
234static void load_materials(void) 377load_materials (void)
235{ 378{
236 char buf[MAX_BUF], filename[MAX_BUF], *cp, *next; 379 char filename[MAX_BUF];
237 FILE *fp;
238 materialtype_t *mt; 380 materialtype_t *mt;
239 int i, value;
240 381
241 sprintf(filename, "%s/materials", settings.datadir); 382 sprintf (filename, "%s/materials", settings.datadir);
242 LOG(llevDebug, "Reading material type data from %s...", filename); 383 LOG (llevDebug, "Reading material type data from %s...\n", filename);
243 if ((fp = fopen(filename, "r")) == NULL) { 384
385 object_thawer thawer (filename);
386
387 if (!thawer)
388 {
244 LOG(llevError, "Cannot open %s for reading\n", filename); 389 LOG (llevError, "Cannot open %s for reading\n", filename);
245 mt = get_empty_mat(); 390 mt = get_empty_mat ();
246 mt->next = NULL; 391 mt->next = 0;
247 materialt = mt; 392 materialt = mt;
248 return; 393 return;
249 } 394 }
395
250 mt = get_empty_mat(); 396 mt = get_empty_mat ();
251 materialt = mt; 397 materialt = mt;
252 while (fgets(buf, MAX_BUF, fp) != NULL) { 398
253 if (*buf=='#') 399 for (;;)
254 continue; 400 {
255 if ((cp=strchr(buf, '\n'))!=NULL) 401 switch (thawer.get_kv ())
256 *cp='\0'; 402 {
257 cp=buf; 403 case KW_name:
258 while(*cp==' ') /* Skip blanks */
259 cp++;
260 if (!strncmp(cp, "name", 4)) {
261 /* clean up the previous entry */ 404 /* clean up the previous entry */
262 if (mt->next != NULL) { 405 if (mt->next)
406 {
263 if (mt->description == NULL) 407 if (!mt->description)
264 mt->description = add_string(mt->name); 408 mt->description = mt->name;
409
265 mt = mt->next; 410 mt = mt->next;
266 } 411 }
412
267 mt->next = get_empty_mat(); 413 mt->next = get_empty_mat ();
268 mt->name = add_string(strchr(cp, ' ') + 1); 414 thawer.get (mt->name);
269 } else if (!strncmp(cp, "description", 11)) { 415 break;
270 mt->description = add_string(strchr(cp, ' ') + 1); 416
271 } else if (sscanf(cp, "material %d", &value)) { 417 case KW_description:
272 mt->material = value; 418 thawer.get (mt->description);
273 } else if (!strncmp(cp, "saves", 5)) { 419 break;
274 cp = strchr(cp, ' ') + 1; 420
421 case KW_material:
422 thawer.get (mt->material);
423 break;
424
425 case KW_saves:
426 {
427 const char *cp = thawer.get_str () - 1;
428
275 for (i=0; i < NROFATTACKS; i++) { 429 for (int i = 0; i < NROFATTACKS; i++)
430 {
276 if (cp == NULL) { 431 if (!cp)
432 {
277 mt->save[i] = 0; 433 mt->save[i] = 0;
278 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, ',');
279 } 442 }
280 if ((next=strchr(cp,',')) != NULL) 443 }
281 *(next++) = '\0'; 444 break;
282 sscanf(cp, "%d", &value); 445
283 mt->save[i] = (sint8)value; 446 case KW_mods:
284 cp = next;
285 } 447 {
286 } else if (!strncmp(cp, "mods", 4)) { 448 const char *cp = thawer.get_str () - 1;
287 cp = strchr(cp, ' ') + 1; 449
288 for (i=0; i < NROFATTACKS; i++) { 450 for (int i = 0; i < NROFATTACKS; i++)
451 {
289 if (cp == NULL) { 452 if (!cp)
453 {
290 mt->save[i] = 0; 454 mt->save[i] = 0;
291 continue; 455 continue;
292 } 456 }
293 if ((next=strchr(cp,',')) != NULL) 457
294 *(next++) = '\0'; 458 ++cp;
459 int value;
295 sscanf(cp, "%d", &value); 460 sscanf (cp, "%d", &value);
296 mt->mod[i] = (sint8)value; 461 mt->mod[i] = (sint8) value;
297 cp = next; 462 cp = strchr (cp, ',');
298 } 463 }
299 } else if (sscanf(cp, "chance %d\n", &value)) {
300 mt->chance = (sint8)value;
301 } else if (sscanf(cp, "diff %d\n", &value)) {
302 mt->difficulty = (sint8)value;
303 } else if (sscanf(cp, "magic %d\n", &value)) {
304 mt->magic = (sint8)value;
305 } else if (sscanf(cp, "damage %d\n", &value)) {
306 mt->damage= (sint8)value;
307 } else if (sscanf(cp, "wc %d\n", &value)) {
308 mt->wc = (sint8)value;
309 } else if (sscanf(cp, "ac %d\n", &value)) {
310 mt->ac = (sint8)value;
311 } else if (sscanf(cp, "sp %d\n", &value)) {
312 mt->sp = (sint8)value;
313 } else if (sscanf(cp, "weight %d\n", &value)) {
314 mt->weight = value;
315 } else if (sscanf(cp, "value %d\n", &value)) {
316 mt->value = value;
317 } 464 }
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;
487 }
318 } 488 }
489
490done:
319 if (mt->next) 491 if (mt->next)
320 { 492 {
321 free(mt->next); 493 delete mt->next;
494
322 mt->next = NULL; 495 mt->next = 0;
323 } 496 }
497
324 LOG(llevDebug, "Done.\n"); 498 LOG (llevDebug, "Done.\n");
325 fclose(fp);
326} 499}
327 500
328/* 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
329 * 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
330 * information, having it here probably makes more sense. 503 * information, having it here probably makes more sense.
331 */ 504 */
332static void load_settings(void) 505static void
506load_settings (void)
333{ 507{
334 char buf[MAX_BUF],*cp; 508 char buf[MAX_BUF], *cp;
335 int has_val,comp; 509 int has_val, comp;
336 FILE *fp; 510 FILE *fp;
337 511
338 sprintf(buf,"%s/settings",settings.confdir); 512 sprintf (buf, "%s/settings", settings.confdir);
339 513
340 /* 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,
341 * 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
342 * will not be a good thing. 516 * will not be a good thing.
343 */ 517 */
344 if ((fp = open_and_uncompress(buf, 0, &comp)) == NULL) { 518 if (!(fp = open_and_uncompress (buf, 0, &comp)))
519 {
345 LOG(llevError,"Warning: No settings file found\n"); 520 LOG (llevError, "Error: No settings file found\n");
346 return; 521 exit (1);
347 } 522 }
523
348 while (fgets(buf, MAX_BUF-1, fp) != NULL) { 524 while (fgets (buf, MAX_BUF - 1, fp) != NULL)
525 {
349 if (buf[0] == '#') continue; 526 if (buf[0] == '#')
527 continue;
350 /* eliminate newline */ 528 /* eliminate newline */
351 if ((cp=strrchr(buf,'\n'))!=NULL) *cp='\0'; 529 if ((cp = strrchr (buf, '\n')) != NULL)
530 *cp = '\0';
352 531
353 /* Skip over empty lines */ 532 /* Skip over empty lines */
354 if (buf[0] == 0) continue; 533 if (buf[0] == 0)
534 continue;
355 535
356 /* Skip all the spaces and set them to nulls. If not space, 536 /* Skip all the spaces and set them to nulls. If not space,
357 * set cp to "" to make strcpy's and the like easier down below. 537 * set cp to "" to make strcpy's and the like easier down below.
358 */ 538 */
359 if ((cp = strchr(buf,' '))!=NULL) { 539 if ((cp = strchr (buf, ' ')) != NULL)
540 {
360 while (*cp==' ') *cp++=0; 541 while (*cp == ' ')
542 *cp++ = 0;
361 has_val=1; 543 has_val = 1;
544 }
362 } else { 545 else
546 {
363 cp=""; 547 cp = "";
364 has_val=0; 548 has_val = 0;
549 }
550
551 if (!strcasecmp (buf, "motd"))
365 } 552 {
366
367 if (!strcasecmp(buf,"metaserver_notification")) {
368 if (!strcasecmp(cp,"on") || !strcasecmp(cp,"true")) {
369 settings.meta_on=TRUE;
370 } else if (!strcasecmp(cp,"off") || !strcasecmp(cp,"false")) {
371 settings.meta_on=FALSE;
372 } else {
373 LOG(llevError,"load_settings: Unknown value for metaserver_notification: %s\n",
374 cp);
375 }
376 } else if (!strcasecmp(buf,"metaserver_server")) {
377 if (has_val) strcpy(settings.meta_server, cp);
378 else
379 LOG(llevError,"load_settings: metaserver_server must have a value.\n");
380 } else if (!strcasecmp(buf,"motd")) {
381 if (has_val) 553 if (has_val)
382 strcpy(settings.motd, cp); 554 strcpy (settings.motd, cp);
383 else 555 else
384 LOG(llevError,"load_settings: motd must have a value.\n"); 556 LOG (llevError, "load_settings: motd must have a value.\n");
557 }
385 } else if (!strcasecmp(buf,"dm_mail")) { 558 else if (!strcasecmp (buf, "dm_mail"))
559 {
386 if (has_val) 560 if (has_val)
387 strcpy(settings.dm_mail, cp); 561 strcpy (settings.dm_mail, cp);
388 else 562 else
389 LOG(llevError,"load_settings: dm_mail must have a value.\n"); 563 LOG (llevError, "load_settings: dm_mail must have a value.\n");
390 } else if (!strcasecmp(buf,"metaserver_host")) { 564 }
391 if (has_val) strcpy(settings.meta_host, cp);
392 else
393 LOG(llevError,"load_settings: metaserver_host must have a value.\n");
394 } else if (!strcasecmp(buf,"metaserver_port")) {
395 int port = atoi(cp);
396
397 if (port<1 || port>65535)
398 LOG(llevError,"load_settings: metaserver_port must be between 1 and 65535, %d is invalid\n",
399 port);
400 else settings.meta_port = port;
401 } else if (!strcasecmp(buf,"metaserver_comment")) {
402 strcpy(settings.meta_comment, cp);
403 } else if (!strcasecmp(buf, "worldmapstartx")) { 565 else if (!strcasecmp (buf, "worldmapstartx"))
566 {
404 int size = atoi(cp); 567 int size = atoi (cp);
405 568
406 if (size < 0) 569 if (size < 0)
407 LOG(llevError, "load_settings: worldmapstartx must be at least " 570 LOG (llevError, "load_settings: worldmapstartx must be at least " "0, %d is invalid\n", size);
408 "0, %d is invalid\n", size);
409 else 571 else
410 settings.worldmapstartx = size; 572 settings.worldmapstartx = size;
573 }
411 } else if (!strcasecmp(buf, "worldmapstarty")) { 574 else if (!strcasecmp (buf, "worldmapstarty"))
575 {
412 int size = atoi(cp); 576 int size = atoi (cp);
413 577
414 if (size < 0) 578 if (size < 0)
415 LOG(llevError, "load_settings: worldmapstarty must be at least " 579 LOG (llevError, "load_settings: worldmapstarty must be at least " "0, %d is invalid\n", size);
416 "0, %d is invalid\n", size);
417 else 580 else
418 settings.worldmapstarty = size; 581 settings.worldmapstarty = size;
582 }
419 } else if (!strcasecmp(buf, "worldmaptilesx")) { 583 else if (!strcasecmp (buf, "worldmaptilesx"))
584 {
420 int size = atoi(cp); 585 int size = atoi (cp);
421 586
422 if (size < 1) 587 if (size < 1)
423 LOG(llevError, "load_settings: worldmaptilesx must be greater " 588 LOG (llevError, "load_settings: worldmaptilesx must be greater " "than 1, %d is invalid\n", size);
424 "than 1, %d is invalid\n", size);
425 else 589 else
426 settings.worldmaptilesx = size; 590 settings.worldmaptilesx = size;
591 }
427 } else if (!strcasecmp(buf, "worldmaptilesy")) { 592 else if (!strcasecmp (buf, "worldmaptilesy"))
593 {
428 int size = atoi(cp); 594 int size = atoi (cp);
429 595
430 if (size < 1) 596 if (size < 1)
431 LOG(llevError, "load_settings: worldmaptilesy must be greater " 597 LOG (llevError, "load_settings: worldmaptilesy must be greater " "than 1, %d is invalid\n", size);
432 "than 1, %d is invalid\n", size);
433 else 598 else
434 settings.worldmaptilesy = size; 599 settings.worldmaptilesy = size;
600 }
435 } else if (!strcasecmp(buf, "worldmaptilesizex")) { 601 else if (!strcasecmp (buf, "worldmaptilesizex"))
602 {
436 int size = atoi(cp); 603 int size = atoi (cp);
437 604
438 if (size < 1) 605 if (size < 1)
439 LOG(llevError, "load_settings: worldmaptilesizex must be " 606 LOG (llevError, "load_settings: worldmaptilesizex must be " "greater than 1, %d is invalid\n", size);
440 "greater than 1, %d is invalid\n", size);
441 else 607 else
442 settings.worldmaptilesizex = size; 608 settings.worldmaptilesizex = size;
609 }
443 } else if (!strcasecmp(buf, "worldmaptilesizey")) { 610 else if (!strcasecmp (buf, "worldmaptilesizey"))
611 {
444 int size = atoi(cp); 612 int size = atoi (cp);
445 613
446 if (size < 1) 614 if (size < 1)
447 LOG(llevError, "load_settings: worldmaptilesizey must be " 615 LOG (llevError, "load_settings: worldmaptilesizey must be " "greater than 1, %d is invalid\n", size);
448 "greater than 1, %d is invalid\n", size);
449 else 616 else
450 settings.worldmaptilesizey = size; 617 settings.worldmaptilesizey = size;
618 }
451 } else if (!strcasecmp(buf, "dynamiclevel")) { 619 else if (!strcasecmp (buf, "dynamiclevel"))
620 {
452 int lev = atoi(cp); 621 int lev = atoi (cp);
453 622
454 if (lev < 0) 623 if (lev < 0)
455 LOG(llevError, "load_settings: dynamiclevel must be " 624 LOG (llevError, "load_settings: dynamiclevel must be " "at least 0, %d is invalid\n", lev);
456 "at least 0, %d is invalid\n", lev);
457 else 625 else
458 settings.dynamiclevel = lev; 626 settings.dynamiclevel = lev;
627 }
459 } else if (!strcasecmp(buf, "fastclock")) { 628 else if (!strcasecmp (buf, "fastclock"))
629 {
460 int lev = atoi(cp); 630 int lev = atoi (cp);
461 631
462 if (lev < 0) 632 if (lev < 0)
463 LOG(llevError, "load_settings: fastclock must be at least 0" 633 LOG (llevError, "load_settings: fastclock must be at least 0" ", %d is invalid\n", lev);
464 ", %d is invalid\n", lev);
465 else 634 else
466 settings.fastclock = lev; 635 settings.fastclock = lev;
636 }
467 } else if (!strcasecmp(buf, "not_permadeth")) { 637 else if (!strcasecmp (buf, "not_permadeth"))
638 {
468 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 639 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
640 {
469 settings.not_permadeth=TRUE; 641 settings.not_permadeth = TRUE;
642 }
470 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 643 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
644 {
471 settings.not_permadeth=FALSE; 645 settings.not_permadeth = FALSE;
646 }
472 } else { 647 else
473 LOG(llevError, "load_settings: Unknown value for not_permadeth"
474 ": %s\n", cp);
475 } 648 {
649 LOG (llevError, "load_settings: Unknown value for not_permadeth" ": %s\n", cp);
650 }
651 }
476 } else if (!strcasecmp(buf, "resurrection")) { 652 else if (!strcasecmp (buf, "resurrection"))
653 {
477 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 654 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
655 {
478 settings.resurrection=TRUE; 656 settings.resurrection = TRUE;
657 }
479 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 658 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
659 {
480 settings.resurrection=FALSE; 660 settings.resurrection = FALSE;
661 }
481 } else { 662 else
482 LOG(llevError, "load_settings: Unknown value for resurrection"
483 ": %s\n", cp);
484 } 663 {
664 LOG (llevError, "load_settings: Unknown value for resurrection" ": %s\n", cp);
665 }
666 }
485 } else if (!strcasecmp(buf, "set_title")) { 667 else if (!strcasecmp (buf, "set_title"))
668 {
486 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 669 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
670 {
487 settings.set_title=TRUE; 671 settings.set_title = TRUE;
672 }
488 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 673 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
674 {
489 settings.set_title=FALSE; 675 settings.set_title = FALSE;
676 }
490 } else { 677 else
491 LOG(llevError, "load_settings: Unknown value for set_title"
492 ": %s\n", cp);
493 } 678 {
679 LOG (llevError, "load_settings: Unknown value for set_title" ": %s\n", cp);
680 }
681 }
494 } else if (!strcasecmp(buf, "search_items")) { 682 else if (!strcasecmp (buf, "search_items"))
683 {
495 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 684 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
685 {
496 settings.search_items=TRUE; 686 settings.search_items = TRUE;
687 }
497 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 688 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
689 {
498 settings.search_items=FALSE; 690 settings.search_items = FALSE;
691 }
499 } else { 692 else
500 LOG(llevError, "load_settings: Unknown value for search_items"
501 ": %s\n", cp);
502 } 693 {
694 LOG (llevError, "load_settings: Unknown value for search_items" ": %s\n", cp);
695 }
696 }
503 } else if (!strcasecmp(buf, "spell_encumbrance")) { 697 else if (!strcasecmp (buf, "spell_encumbrance"))
698 {
504 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 699 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
700 {
505 settings.spell_encumbrance=TRUE; 701 settings.spell_encumbrance = TRUE;
702 }
506 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 703 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
704 {
507 settings.spell_encumbrance=FALSE; 705 settings.spell_encumbrance = FALSE;
706 }
508 } else { 707 else
509 LOG(llevError, "load_settings: Unknown value for "
510 "spell_encumbrance: %s\n", cp);
511 } 708 {
709 LOG (llevError, "load_settings: Unknown value for " "spell_encumbrance: %s\n", cp);
710 }
711 }
512 } else if (!strcasecmp(buf, "spell_failure_effects")) { 712 else if (!strcasecmp (buf, "spell_failure_effects"))
713 {
513 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 714 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
715 {
514 settings.spell_failure_effects=TRUE; 716 settings.spell_failure_effects = TRUE;
717 }
515 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 718 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
719 {
516 settings.spell_failure_effects=FALSE; 720 settings.spell_failure_effects = FALSE;
721 }
517 } else { 722 else
518 LOG(llevError, "load_settings: Unknown value for "
519 "spell_failure_effects: %s\n", cp);
520 } 723 {
724 LOG (llevError, "load_settings: Unknown value for " "spell_failure_effects: %s\n", cp);
725 }
726 }
521 } else if (!strcasecmp(buf, "casting_time")) { 727 else if (!strcasecmp (buf, "casting_time"))
728 {
522 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 729 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
730 {
523 settings.casting_time=TRUE; 731 settings.casting_time = TRUE;
732 }
524 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 733 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
734 {
525 settings.casting_time=FALSE; 735 settings.casting_time = FALSE;
736 }
526 } else { 737 else
527 LOG(llevError, "load_settings: Unknown value for "
528 "casting_time: %s\n", cp);
529 } 738 {
739 LOG (llevError, "load_settings: Unknown value for " "casting_time: %s\n", cp);
740 }
741 }
530 } else if (!strcasecmp(buf, "real_wiz")) { 742 else if (!strcasecmp (buf, "real_wiz"))
743 {
531 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 744 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
745 {
532 settings.real_wiz=TRUE; 746 settings.real_wiz = TRUE;
747 }
533 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 748 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
749 {
534 settings.real_wiz=FALSE; 750 settings.real_wiz = FALSE;
751 }
535 } else { 752 else
536 LOG(llevError, "load_settings: Unknown value for "
537 "real_wiz: %s\n", cp);
538 } 753 {
539 } else if (!strcasecmp(buf, "recycle_tmp_maps")) { 754 LOG (llevError, "load_settings: Unknown value for " "real_wiz: %s\n", cp);
755 }
756 }
757 else if (!strcasecmp (buf, "spellpoint_level_depend"))
758 {
540 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 759 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
541 settings.recycle_tmp_maps=TRUE;
542 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
543 settings.recycle_tmp_maps=FALSE;
544 } else {
545 LOG(llevError, "load_settings: Unknown value for "
546 "recycle_tmp_maps: %s\n", cp);
547 } 760 {
548 } else if (!strcasecmp(buf, "explore_mode")) {
549 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
550 settings.explore_mode=TRUE;
551 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) {
552 settings.explore_mode=FALSE;
553 } else {
554 LOG(llevError, "load_settings: Unknown value for "
555 "explore_mode: %s\n", cp);
556 }
557 } else if (!strcasecmp(buf,"who_format")) {
558 if (has_val)
559 strcpy(settings.who_format, cp);
560 } else if (!strcasecmp(buf,"who_wiz_format")) {
561 if (has_val)
562 strcpy(settings.who_wiz_format, cp);
563 } else if (!strcasecmp(buf, "spellpoint_level_depend")) {
564 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) {
565 settings.spellpoint_level_depend=TRUE; 761 settings.spellpoint_level_depend = TRUE;
762 }
566 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 763 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
764 {
567 settings.spellpoint_level_depend=FALSE; 765 settings.spellpoint_level_depend = FALSE;
766 }
568 } else { 767 else
569 LOG(llevError, "load_settings: Unknown value for "
570 "spellpoint_level_depend: %s\n", cp);
571 } 768 {
769 LOG (llevError, "load_settings: Unknown value for " "spellpoint_level_depend: %s\n", cp);
770 }
771 }
572 } else if (!strcasecmp(buf, "stat_loss_on_death")) { 772 else if (!strcasecmp (buf, "stat_loss_on_death"))
773 {
573 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 774 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
775 {
574 settings.stat_loss_on_death=TRUE; 776 settings.stat_loss_on_death = TRUE;
777 }
575 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 778 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
779 {
576 settings.stat_loss_on_death=FALSE; 780 settings.stat_loss_on_death = FALSE;
781 }
577 } else { 782 else
578 LOG(llevError, "load_settings: Unknown value for "
579 "stat_loss_on_death: %s\n", cp);
580 } 783 {
784 LOG (llevError, "load_settings: Unknown value for " "stat_loss_on_death: %s\n", cp);
785 }
786 }
581 } else if (!strcasecmp(buf, "use_permanent_experience")) { 787 else if (!strcasecmp (buf, "use_permanent_experience"))
582 LOG(llevError, "use_permanent_experience is deprecated, use" 788 {
583 "permenent_experience_percentage instead\n"); 789 LOG (llevError, "use_permanent_experience is deprecated, use" "permenent_experience_percentage instead\n");
790 }
584 } else if (!strcasecmp(buf, "permanent_experience_percentage")) { 791 else if (!strcasecmp (buf, "permanent_experience_percentage"))
792 {
585 int val = atoi(cp); 793 int val = atoi (cp);
794
586 if (val < 0 || val >100) 795 if (val < 0 || val > 100)
587 LOG(llevError, "load_settings: permenent_experience_percentage" 796 LOG (llevError, "load_settings: permenent_experience_percentage" "must be between 0 and 100, %d is invalid\n", val);
588 "must be between 0 and 100, %d is invalid\n", val);
589 else 797 else
590 settings.permanent_exp_ratio = val; 798 settings.permanent_exp_ratio = val;
799 }
591 } else if (!strcasecmp(buf, "death_penalty_percentage")) { 800 else if (!strcasecmp (buf, "death_penalty_percentage"))
801 {
592 int val = atoi(cp); 802 int val = atoi (cp);
803
593 if (val < 0 || val >100) 804 if (val < 0 || val > 100)
594 LOG(llevError, "load_settings: death_penalty_percentage" 805 LOG (llevError, "load_settings: death_penalty_percentage" "must be between 0 and 100, %d is invalid\n", val);
595 "must be between 0 and 100, %d is invalid\n", val);
596 else 806 else
597 settings.death_penalty_ratio = val; 807 settings.death_penalty_ratio = val;
808 }
598 } else if (!strcasecmp(buf, "death_penalty_levels")) { 809 else if (!strcasecmp (buf, "death_penalty_levels"))
810 {
599 int val = atoi(cp); 811 int val = atoi (cp);
812
600 if (val < 0 || val > 255) 813 if (val < 0 || val > 255)
601 LOG(llevError, "load_settings: death_penalty_levels" 814 LOG (llevError, "load_settings: death_penalty_levels" "can not be negative, %d is invalid\n", val);
602 "can not be negative, %d is invalid\n", val);
603 else 815 else
604 settings.death_penalty_level = val; 816 settings.death_penalty_level = val;
817 }
605 }else if (!strcasecmp(buf, "balanced_stat_loss")) { 818 else if (!strcasecmp (buf, "balanced_stat_loss"))
819 {
606 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 820 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
821 {
607 settings.balanced_stat_loss=TRUE; 822 settings.balanced_stat_loss = TRUE;
823 }
608 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 824 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
825 {
609 settings.balanced_stat_loss=FALSE; 826 settings.balanced_stat_loss = FALSE;
827 }
610 } else { 828 else
611 LOG(llevError, "load_settings: Unknown value for "
612 "balanced_stat_loss: %s\n", cp);
613 } 829 {
830 LOG (llevError, "load_settings: Unknown value for " "balanced_stat_loss: %s\n", cp);
831 }
832 }
614 } else if (!strcasecmp(buf,"simple_exp")) { 833 else if (!strcasecmp (buf, "simple_exp"))
834 {
615 if (!strcasecmp(cp,"on") || !strcasecmp(cp,"true")) { 835 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
836 {
616 settings.simple_exp=TRUE; 837 settings.simple_exp = TRUE;
838 }
617 } else if (!strcasecmp(cp,"off") || !strcasecmp(cp,"false")) { 839 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
840 {
618 settings.simple_exp=FALSE; 841 settings.simple_exp = FALSE;
842 }
619 } else { 843 else
844 {
620 LOG(llevError,"load_settings: Unknown value for simple_exp: %s\n", 845 LOG (llevError, "load_settings: Unknown value for simple_exp: %s\n", cp);
621 cp); 846 }
622 } 847 }
623 } else if (!strcasecmp(buf, "item_power_factor")) { 848 else if (!strcasecmp (buf, "item_power_factor"))
849 {
624 float tmp = atof(cp); 850 float tmp = atof (cp);
851
625 if (tmp < 0) 852 if (tmp < 0)
626 LOG(llevError, "load_settings: item_power_factor must be a positive number (%f < 0)\n", 853 LOG (llevError, "load_settings: item_power_factor must be a positive number (%f < 0)\n", tmp);
627 tmp);
628 else 854 else
629 settings.item_power_factor = tmp; 855 settings.item_power_factor = tmp;
856 }
630 } else if (!strcasecmp(buf, "pk_luck_penalty")) { 857 else if (!strcasecmp (buf, "pk_luck_penalty"))
858 {
631 sint16 val = atoi(cp); 859 sint16 val = atoi (cp);
632 860
633 if (val < -100 || val >100) 861 if (val < -100 || val > 100)
634 LOG(llevError, "load_settings: pk_luck_penalty must be between -100 and 100" 862 LOG (llevError, "load_settings: pk_luck_penalty must be between -100 and 100" ", %d is invalid\n", val);
635 ", %d is invalid\n", val);
636 else 863 else
637 settings.pk_luck_penalty = val; 864 settings.pk_luck_penalty = val;
865 }
638 } else if (!strcasecmp(buf, "set_friendly_fire")) { 866 else if (!strcasecmp (buf, "set_friendly_fire"))
867 {
639 int val = atoi(cp); 868 int val = atoi (cp);
640 869
641#if COZY_SERVER 870#if COZY_SERVER
642 if (val < 0 || val >100) 871 if (val < 0 || val > 100)
643 LOG(llevError, "load_settings: set_friendly_fire must be between 0 an 100" 872 LOG (llevError, "load_settings: set_friendly_fire must be between 0 an 100" ", %d is invalid\n", val);
644 ", %d is invalid\n", val);
645#else 873#else
646 if (val < 1 || val >100) 874 if (val < 1 || val > 100)
647 LOG(llevError, "load_settings: set_friendly_fire must be between 1 an 100" 875 LOG (llevError, "load_settings: set_friendly_fire must be between 1 an 100" ", %d is invalid\n", val);
648 ", %d is invalid\n", val);
649#endif 876#endif
650 else 877 else
651 settings.set_friendly_fire = val; 878 settings.set_friendly_fire = val;
879 }
652 } else if ( !strcasecmp( buf, "armor_max_enchant" ) ) { 880 else if (!strcasecmp (buf, "armor_max_enchant"))
881 {
653 int max_e = atoi( cp ); 882 int max_e = atoi (cp);
883
654 if ( max_e <= 0 ) 884 if (max_e <= 0)
655 LOG( llevError, "load_settings: armor_max_enchant is %d\n", max_e ); 885 LOG (llevError, "load_settings: armor_max_enchant is %d\n", max_e);
656 else 886 else
657 settings.armor_max_enchant = max_e; 887 settings.armor_max_enchant = max_e;
888 }
658 } else if ( !strcasecmp( buf, "armor_weight_reduction" ) ) { 889 else if (!strcasecmp (buf, "armor_weight_reduction"))
890 {
659 int wr = atoi( cp ); 891 int wr = atoi (cp);
892
660 if ( wr < 0 ) 893 if (wr < 0)
661 LOG( llevError, "load_settings: armor_weight_reduction is %d\n", wr ); 894 LOG (llevError, "load_settings: armor_weight_reduction is %d\n", wr);
662 else 895 else
663 settings.armor_weight_reduction = wr; 896 settings.armor_weight_reduction = wr;
897 }
664 } else if ( !strcasecmp( buf, "armor_weight_linear" ) ) { 898 else if (!strcasecmp (buf, "armor_weight_linear"))
899 {
665 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 900 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
901 {
666 settings.armor_weight_linear=TRUE; 902 settings.armor_weight_linear = TRUE;
903 }
667 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 904 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
905 {
668 settings.armor_weight_linear=FALSE; 906 settings.armor_weight_linear = FALSE;
907 }
669 } else { 908 else
909 {
670 LOG(llevError, "load_settings: unknown value for armor_weight_linear: %s\n", cp); 910 LOG (llevError, "load_settings: unknown value for armor_weight_linear: %s\n", cp);
671 } 911 }
672 912
913 }
673 } else if ( !strcasecmp( buf, "armor_speed_improvement" ) ) { 914 else if (!strcasecmp (buf, "armor_speed_improvement"))
915 {
674 int wr = atoi( cp ); 916 int wr = atoi (cp);
917
675 if ( wr < 0 ) 918 if (wr < 0)
676 LOG( llevError, "load_settings: armor_speed_improvement is %d\n", wr ); 919 LOG (llevError, "load_settings: armor_speed_improvement is %d\n", wr);
677 else 920 else
678 settings.armor_speed_improvement = wr; 921 settings.armor_speed_improvement = wr;
922 }
679 } else if ( !strcasecmp( buf, "armor_speed_linear" ) ) { 923 else if (!strcasecmp (buf, "armor_speed_linear"))
924 {
680 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 925 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
926 {
681 settings.armor_speed_linear = TRUE; 927 settings.armor_speed_linear = TRUE;
928 }
682 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 929 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
930 {
683 settings.armor_speed_linear = FALSE; 931 settings.armor_speed_linear = FALSE;
932 }
684 } else { 933 else
934 {
685 LOG(llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp); 935 LOG (llevError, "load_settings: unknown value for armor_speed_linear: %s\n", cp);
686 } 936 }
687 937
938 }
688 } else if ( !strcasecmp( buf, "no_player_stealing" ) ) { 939 else if (!strcasecmp (buf, "no_player_stealing"))
940 {
689 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 941 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
942 {
690 settings.no_player_stealing = TRUE; 943 settings.no_player_stealing = TRUE;
944 }
691 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 945 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
946 {
692 settings.no_player_stealing = FALSE; 947 settings.no_player_stealing = FALSE;
948 }
693 } else { 949 else
950 {
694 LOG(llevError, "load_settings: unknown value for no_player_stealing: %s\n", cp); 951 LOG (llevError, "load_settings: unknown value for no_player_stealing: %s\n", cp);
695 } 952 }
696 953
954 }
697 } else if ( !strcasecmp( buf, "create_home_portals" ) ) { 955 else if (!strcasecmp (buf, "create_home_portals"))
956 {
698 if (!strcasecmp(cp, "on") || !strcasecmp(cp, "true")) { 957 if (!strcasecmp (cp, "on") || !strcasecmp (cp, "true"))
958 {
699 settings.create_home_portals = TRUE; 959 settings.create_home_portals = TRUE;
960 }
700 } else if (!strcasecmp(cp, "off") || !strcasecmp(cp, "false")) { 961 else if (!strcasecmp (cp, "off") || !strcasecmp (cp, "false"))
962 {
701 settings.create_home_portals = FALSE; 963 settings.create_home_portals = FALSE;
964 }
702 } else { 965 else
966 {
703 LOG(llevError, "load_settings: Unknown value for create_home_portals: %s\n", cp); 967 LOG (llevError, "load_settings: Unknown value for create_home_portals: %s\n", cp);
968 }
969
970 }
971 else
704 } 972 {
705
706 } else {
707 LOG(llevError,"Unknown value in settings file: %s\n", buf); 973 LOG (llevError, "Unknown value in settings file: %s\n", buf);
708 } 974 }
709 } 975 }
976
710 close_and_delete(fp, comp); 977 close_and_delete (fp, comp);
711} 978}
712
713 979
714/* 980/*
715 * init() is called only once, when starting the program. 981 * init() is called only once, when starting the program.
716 */ 982 */
717 983
984void
718void init(int argc, char **argv) { 985init (int argc, char **argv)
719 986{
720 init_done=0; /* Must be done before init_signal() */ 987 init_done = 0; /* Must be done before init_signal() */
988 rndm.seed (time (0));
989
721 logfile=stderr; 990 logfile = stderr;
991 init_environ ();
722 parse_args(argc, argv, 1); /* First arg pass - right now it does 992 parse_args (argc, argv, 1); /* First arg pass - right now it does
723 * nothing, but in future specifying the 993 * nothing, but in future specifying the
724 * LibDir in this pass would be reasonable*/ 994 * LibDir in this pass would be reasonable*/
725 995
996 cfperl_init ();
726 init_library(); /* Must be called early */ 997 init_library (); /* Must be called early */
727 load_settings(); /* Load the settings file */ 998 load_settings (); /* Load the settings file */
728 init_weather();
729 load_materials(); 999 load_materials ();
730 parse_args(argc, argv, 2); 1000 parse_args (argc, argv, 2);
731 fprintf(logfile,"Welcome to CrossFire, v%s\n",VERSION); 1001 fprintf (logfile, "Welcome to CrossFire, v%s\n", VERSION);
1002 fprintf (logfile, "Copyright (C) 2005, 2006, 2007 Marc Lehmann.\n");
732 fprintf(logfile,"Copyright (C) 1994 Mark Wedel.\n"); 1003 fprintf (logfile, "Copyright (C) 1994 Mark Wedel.\n");
733 fprintf(logfile,"Copyright (C) 1992 Frank Tore Johansen.\n"); 1004 fprintf (logfile, "Copyright (C) 1992 Frank Tore Johansen.\n");
734 1005
735 if (strcmp(settings.dm_mail, "") != 0) { 1006 if (strcmp (settings.dm_mail, "") != 0)
1007 {
736 fprintf(logfile,"Maintained locally by: %s\n", settings.dm_mail); 1008 fprintf (logfile, "Maintained locally by: %s\n", settings.dm_mail);
737 fprintf(logfile,"Questions and bugs should be mailed to above address.\n"); 1009 fprintf (logfile, "Questions and bugs should be mailed to above address.\n");
738 } 1010 }
739 SRANDOM(time(NULL));
740 1011
741 init_startup(); /* Write (C), check shutdown/forbid files */ 1012 init_startup (); /* Write (C), check shutdown/forbid files */
1013 init_uuid ();
742 init_signals(); /* Sets up signal interceptions */ 1014 init_signals (); /* Sets up signal interceptions */
743 init_commands(); /* Sort command tables */ 1015 init_commands (); /* Sort command tables */
744 read_map_log(); /* Load up the old temp map files */
745 init_skills(); 1016 init_skills ();
746 1017
747 parse_args(argc, argv, 3); 1018 parse_args (argc, argv, 3);
748 1019
749#ifndef WIN32 /* ***win32: no BecomeDaemon in windows */
750 if (settings.daemonmode) 1020 if (settings.daemonmode)
751 logfile = BecomeDaemon(settings.logfilename[0]=='\0'?"logfile":settings.logfilename); 1021 logfile = BecomeDaemon (settings.logfilename[0] == '\0' ? "logfile" : settings.logfilename);
752#endif
753 1022
754 init_beforeplay(); 1023 init_beforeplay ();
755 init_ericserver(); 1024 init_ericserver ();
756 metaserver_init();
757 init_done=1; 1025 init_done = 1;
758} 1026}
759 1027
760void usage(void) { 1028void
761 (void) fprintf(logfile, 1029usage (void)
1030{
762 "Usage: crossfire [-h] [-<flags>]...\n"); 1031 (void) fprintf (logfile, "Usage: crossfire [-h] [-<flags>]...\n");
763} 1032}
764 1033
765void help(void) { 1034void
1035help (void)
1036{
1037
766/* The information in usage is redundant with what is given below, so why call it? */ 1038/* The information in usage is redundant with what is given below, so why call it? */
1039
767/* usage();*/ 1040/* usage();*/
768 printf("Flags:\n"); 1041 printf ("Flags:\n");
769 printf(" -csport <port> Specifies the port to use for the new client/server code.\n"); 1042 printf (" -csport <port> Specifies the port to use for the new client/server code.\n");
770 printf(" -d Turns on some debugging.\n"); 1043 printf (" -d Turns on some debugging.\n");
771 printf(" +d Turns off debugging (useful if server compiled with debugging\n"); 1044 printf (" +d Turns off debugging (useful if server compiled with debugging\n");
772 printf(" as default).\n"); 1045 printf (" as default).\n");
773 printf(" -detach The server will go in the background, closing all\n"); 1046 printf (" -detach The server will go in the background, closing all\n");
774 printf(" connections to the tty.\n"); 1047 printf (" connections to the tty.\n");
775 printf(" -h Display this information.\n"); 1048 printf (" -h Display this information.\n");
776 printf(" -log <file> Specifies which file to send output to.\n"); 1049 printf (" -log <file> Specifies which file to send output to.\n");
777 printf(" Only has meaning if -detach is specified.\n"); 1050 printf (" Only has meaning if -detach is specified.\n");
778 printf(" -mon Turns on monster debugging.\n"); 1051 printf (" -mon Turns on monster debugging.\n");
779 printf(" -o Prints out info on what was defined at compile time.\n"); 1052 printf (" -o Prints out info on what was defined at compile time.\n");
780 printf(" -s Display the high-score list.\n"); 1053 printf (" -s Display the high-score list.\n");
781 printf(" -score <name or class> Displays all high scores with matching name/class.\n"); 1054 printf (" -score <name or class> Displays all high scores with matching name/class.\n");
782 printf(" -v Print version and contributors.\n"); 1055 printf (" -v Print version and contributors.\n");
783 printf(" -data Sets the lib dir (archetypes, treasures, etc.)\n"); 1056 printf (" -data Sets the lib dir (archetypes, treasures, etc.)\n");
784 printf(" -local Read/write local data (hiscore, unique items, etc.)\n"); 1057 printf (" -local Read/write local data (hiscore, unique items, etc.)\n");
785 printf(" -maps Sets the directory for maps.\n"); 1058 printf (" -maps Sets the directory for maps.\n");
786 printf(" -arch Sets the archetype file to use.\n"); 1059 printf (" -arch Sets the archetype file to use.\n");
787 printf(" -regions Sets the regions file to use.\n"); 1060 printf (" -regions Sets the regions file to use.\n");
788 printf(" -playerdir Sets the directory for the player files.\n"); 1061 printf (" -playerdir Sets the directory for the player files.\n");
789 printf(" -templatedir Sets the directory for template generate maps.\n"); 1062 printf (" -templatedir Sets the directory for template generate maps.\n");
790 printf(" -treasures Sets the treasures file to use.\n"); 1063 printf (" -treasures Sets the treasures file to use.\n");
791 printf(" -uniquedir Sets the unique items/maps directory.\n"); 1064 printf (" -uniquedir Sets the unique items/maps directory.\n");
792 printf(" -tmpdir Sets the directory for temporary files (mostly maps.)\n"); 1065 printf (" -tmpdir Sets the directory for temporary files (mostly maps.)\n");
793 printf(" -m Lists out suggested experience for all monsters.\n"); 1066 printf (" -m Lists out suggested experience for all monsters.\n");
794 printf(" -m2 Dumps out abilities.\n"); 1067 printf (" -m2 Dumps out abilities.\n");
795 printf(" -m3 Dumps out artifact information.\n"); 1068 printf (" -m3 Dumps out artifact information.\n");
796 printf(" -m4 Dumps out spell information.\n"); 1069 printf (" -m4 Dumps out spell information.\n");
797 printf(" -m5 Dumps out skill information.\n"); 1070 printf (" -m5 Dumps out skill information.\n");
798 printf(" -m6 Dumps out race information.\n"); 1071 printf (" -m6 Dumps out race information.\n");
799 printf(" -m7 Dumps out alchemy information.\n"); 1072 printf (" -m7 Dumps out alchemy information.\n");
800 printf(" -m8 Dumps out gods information.\n"); 1073 printf (" -m8 Dumps out gods information.\n");
801 printf(" -m9 Dumps out more alchemy information (formula checking).\n"); 1074 printf (" -m9 Dumps out more alchemy information (formula checking).\n");
802 printf(" -mt <name> Dumps out list of treasures for a monster.\n"); 1075 printf (" -mt <name> Dumps out list of treasures for a monster.\n");
803 exit(0); 1076 exit (0);
804} 1077}
805 1078
1079void
806void init_beforeplay(void) { 1080init_beforeplay (void)
1081{
807 init_archetypes(); /* If not called before, reads all archetypes from file */ 1082 init_archetypes (); /* If not called before, reads all archetypes from file */
808 init_artifacts(); /* If not called before, reads all artifacts from file */ 1083 init_artifacts (); /* If not called before, reads all artifacts from file */
809 init_spells(); /* If not called before, links archtypes used by spells */ 1084 init_spells (); /* If not called before, links archtypes used by spells */
810 init_regions(); /* If not called before, reads all regions from file */ 1085 init_regions (); /* If not called before, reads all regions from file */
811 init_archetype_pointers(); /* Setup global pointers to archetypes */ 1086 init_archetype_pointers (); /* Setup global pointers to archetypes */
812 init_races(); /* overwrite race designations using entries in lib/races file */ 1087 init_races (); /* overwrite race designations using entries in lib/races file */
813 init_gods(); /* init linked list of gods from archs*/ 1088 init_gods (); /* init linked list of gods from archs */
814 init_readable(); /* inits useful arrays for readable texts */ 1089 init_readable (); /* inits useful arrays for readable texts */
815 init_formulae(); /* If not called before, reads formulae from file */ 1090 init_formulae (); /* If not called before, reads formulae from file */
816 1091
817 switch(settings.dumpvalues) { 1092 switch (settings.dumpvalues)
1093 {
818 case 1: 1094 case 1:
819 print_monsters(); 1095 print_monsters ();
820 exit(0); 1096 exit (0);
821 case 2: 1097 case 2:
822 dump_abilities(); 1098 dump_abilities ();
823 exit(0); 1099 exit (0);
824 case 3: 1100 case 3:
825 dump_artifacts(); 1101 dump_artifacts ();
826 exit(0); 1102 exit (0);
827 case 4: 1103 case 4:
828 dump_spells(); 1104 dump_spells ();
829 exit(0); 1105 exit (0);
830 case 5: 1106 case 5:
831 exit(0); 1107 exit (0);
832 case 6: 1108 case 6:
833 dump_races(); 1109 dump_races ();
834 exit(0); 1110 exit (0);
835 case 7: 1111 case 7:
836 dump_alchemy(); 1112 dump_alchemy ();
837 exit(0); 1113 exit (0);
838 case 8:
839 dump_gods();
840 exit(0);
841 case 9: 1114 case 9:
842 dump_alchemy_costs(); 1115 dump_alchemy_costs ();
843 exit(0); 1116 exit (0);
844 case 10: 1117 case 10:
845 dump_monster_treasure(settings.dumparg); 1118 dump_monster_treasure (settings.dumparg);
846 exit(0); 1119 exit (0);
847 } 1120 }
848} 1121}
849 1122
1123void
850void init_startup(void) { 1124init_startup (void)
1125{
851 char buf[MAX_BUF]; 1126 char buf[MAX_BUF];
852 FILE *fp; 1127 FILE *fp;
853 int comp; 1128 int comp;
854 1129
855#ifdef SHUTDOWN_FILE 1130#ifdef SHUTDOWN_FILE
856 sprintf(buf,"%s/%s",settings.confdir,SHUTDOWN_FILE); 1131 sprintf (buf, "%s/%s", settings.confdir, SHUTDOWN_FILE);
857 if ((fp = open_and_uncompress(buf, 0, &comp)) != NULL) { 1132 if ((fp = open_and_uncompress (buf, 0, &comp)) != NULL)
1133 {
858 while (fgets(buf, MAX_BUF-1, fp) != NULL) 1134 while (fgets (buf, MAX_BUF - 1, fp) != NULL)
859 printf("%s", buf); 1135 printf ("%s", buf);
860 close_and_delete(fp, comp); 1136 close_and_delete (fp, comp);
861 exit(1); 1137 exit (1);
862 } 1138 }
863#endif 1139#endif
864 1140
865 if (forbid_play()) { /* Maybe showing highscore should be allowed? */ 1141 if (forbid_play ())
1142 { /* Maybe showing highscore should be allowed? */
866 LOG(llevError, "CrossFire: Playing not allowed.\n"); 1143 LOG (llevError, "CrossFire: Playing not allowed.\n");
867 exit(-1); 1144 exit (-1);
868 } 1145 }
869} 1146}
870 1147
871/* 1148/*
872 * compile_info(): activated with the -o flag. 1149 * compile_info(): activated with the -o flag.
873 * It writes out information on how Imakefile and config.h was configured 1150 * It writes out information on how Imakefile and config.h was configured
874 * at compile time. 1151 * at compile time.
875 */ 1152 */
876 1153
1154void
877void compile_info(void) { 1155compile_info (void)
1156{
878 int i=0; 1157 int i = 0;
1158
879 printf("Non-standard include files:\n"); 1159 printf ("Non-standard include files:\n");
880#if !defined (__STRICT_ANSI__) || defined (__sun__) 1160#if !defined (__STRICT_ANSI__) || defined (__sun__)
881#if !defined (Mips) 1161# if !defined (Mips)
882 printf("<stdlib.h>\n"); 1162 printf ("<stdlib.h>\n");
883 i=1; 1163 i = 1;
884#endif 1164# endif
885#if !defined (MACH) && !defined (sony) 1165# if !defined (MACH) && !defined (sony)
886 printf("<malloc.h>\n"); 1166 printf ("<malloc.h>\n");
887 i=1; 1167 i = 1;
888#endif 1168# endif
889#endif 1169#endif
890#ifndef __STRICT_ANSI__ 1170#ifndef __STRICT_ANSI__
891#ifndef MACH 1171# ifndef MACH
892 printf("<memory.h\n"); 1172 printf ("<memory.h\n");
893 i=1; 1173 i = 1;
894#endif 1174# endif
895#endif 1175#endif
896#ifndef sgi 1176#ifndef sgi
897 printf("<sys/timeb.h>\n"); 1177 printf ("<sys/timeb.h>\n");
898 i=1; 1178 i = 1;
899#endif 1179#endif
900 if(!i) 1180 if (!i)
901 printf("(none)\n"); 1181 printf ("(none)\n");
902 printf("Datadir:\t\t%s\n",settings.datadir); 1182 printf ("Datadir:\t\t%s\n", settings.datadir);
903 printf("Localdir:\t\t%s\n",settings.localdir); 1183 printf ("Localdir:\t\t%s\n", settings.localdir);
904#ifdef PERM_FILE 1184#ifdef PERM_FILE
905 printf("Perm file:\t<ETC>/%s\n",PERM_FILE); 1185 printf ("Perm file:\t<ETC>/%s\n", PERM_FILE);
906#endif 1186#endif
907#ifdef SHUTDOWN_FILE 1187#ifdef SHUTDOWN_FILE
908 printf("Shutdown file:\t<ETC>/%s\n",SHUTDOWN_FILE); 1188 printf ("Shutdown file:\t<ETC>/%s\n", SHUTDOWN_FILE);
909#endif 1189#endif
910 printf("Save player:\t<true>\n"); 1190 printf ("Save player:\t<true>\n");
911 printf("Save mode:\t%4.4o\n",SAVE_MODE); 1191 printf ("Save mode:\t%4.4o\n", SAVE_MODE);
912 printf("Playerdir:\t<VAR>/%s\n",settings.playerdir); 1192 printf ("Playerdir:\t<VAR>/%s\n", settings.playerdir);
913 printf("Itemsdir:\t<VAR>/%s\n", settings.uniquedir); 1193 printf ("Itemsdir:\t<VAR>/%s\n", settings.uniquedir);
914 printf("Tmpdir:\t\t%s\n",settings.tmpdir); 1194 printf ("Tmpdir:\t\t%s\n", settings.tmpdir);
915 printf("Map max timeout:\t%d\n",MAP_MAXTIMEOUT);
916 printf("Max objects:\t%d\n",MAX_OBJECTS);
917#ifdef USE_CALLOC 1195#ifdef USE_CALLOC
918 printf("Use_calloc:\t<true>\n"); 1196 printf ("Use_calloc:\t<true>\n");
919#else 1197#else
920 printf("Use_calloc:\t<false>\n"); 1198 printf ("Use_calloc:\t<false>\n");
921#endif 1199#endif
922 1200
923#ifdef X_EDITOR 1201#ifdef X_EDITOR
924 printf("Editor:\t\t%s\n",X_EDITOR); 1202 printf ("Editor:\t\t%s\n", X_EDITOR);
925#endif 1203#endif
926 1204
927 printf("Max_time:\t%d\n",MAX_TIME); 1205 printf ("Max_time:\t%d\n", MAX_TIME);
928 1206
929#ifdef WIN32 /* ***win32 compile_info(): remove execl... */
930 printf("Logfilename:\t%s\n",settings.logfilename);
931 exit(0);
932#else
933 execl("/bin/uname", "uname", "-a", NULL); 1207 execl ("/bin/uname", "uname", "-a", NULL);
934 LOG(llevError, "Oops, shouldn't have gotten here: execl(/bin/uname) failed: %s\n", strerror(errno)); 1208 LOG (llevError, "Oops, shouldn't have gotten here: execl(/bin/uname) failed: %s\n", strerror (errno));
935 exit(-1); 1209 exit (-1);
936#endif
937} 1210}
938 1211
939/* Signal handlers: */ 1212/* Signal handlers: */
940 1213
1214void
1215rec_sigabrt (int i)
1216{
1217 signal (SIGABRT, SIG_DFL);
1218
1219 LOG (llevError, "SIGABRT received.\n");
1220 cleanup ("SIGABRT received", 1);
1221}
1222
1223void
941void rec_sigsegv(int i) { 1224rec_sigsegv (int i)
1225{
1226 signal (SIGSEGV, SIG_DFL);
1227
942 LOG(llevError,"\nSIGSEGV received.\n"); 1228 LOG (llevError, "SIGSEGV received.\n");
943 fatal_signal(1, 1); 1229 cleanup ("SIGSEGV received", 1);
944} 1230}
945 1231
946void rec_sigint(int i) { 1232void
947 LOG(llevInfo,"\nSIGINT received.\n");
948 fatal_signal(0, 1);
949}
950
951void rec_sighup(int i) {
952 LOG(llevInfo,"\nSIGHUP received\n");
953 if(init_done) {
954 emergency_save(0);
955 cleanup();
956 }
957 exit(0);
958}
959
960void rec_sigquit(int i) { 1233rec_sigquit (int i)
1234{
1235 signal (SIGQUIT, SIG_IGN);
1236
961 LOG(llevInfo,"\nSIGQUIT received\n"); 1237 LOG (llevInfo, "SIGQUIT received\n");
962 fatal_signal(1, 1); 1238 cleanup ("SIGQUIT received", 1);
963} 1239}
964 1240
1241void
965void rec_sigbus(int i) { 1242rec_sigbus (int i)
966#ifdef SIGBUS 1243{
1244 signal (SIGBUS, SIG_DFL);
1245
967 LOG(llevError,"\nSIGBUS received\n"); 1246 LOG (llevError, "SIGBUS received\n");
968 fatal_signal(1, 1); 1247 cleanup ("SIGBUS received", 1);
969#endif
970} 1248}
971 1249
972void rec_sigterm(int i) { 1250void
973 LOG(llevInfo,"\nSIGTERM received\n");
974 fatal_signal(0, 1);
975}
976
977void fatal_signal(int make_core, int close_sockets) {
978 if(init_done) {
979 emergency_save(0);
980 clean_tmp_files();
981 }
982 if(make_core)
983 abort();
984 exit(0);
985}
986
987void init_signals(void) { 1251init_signals (void)
988#ifndef WIN32 /* init_signals() remove signals */ 1252{
989 signal(SIGHUP,rec_sighup); 1253 // large stack, but it's important data we want to save, and it is not usually
990 signal(SIGINT,rec_sigint); 1254 // being physically allocated anyways
991 signal(SIGQUIT,rec_sigquit); 1255 const size_t stacksize = 8 * 1024 * 1024 + SIGSTKSZ;
992 signal(SIGSEGV,rec_sigsegv); 1256
993 signal(SIGPIPE,SIG_IGN); 1257 stack_t ss;
994#ifdef SIGBUS 1258 ss.ss_sp = malloc (stacksize);
995 signal(SIGBUS,rec_sigbus); 1259 ss.ss_flags = 0;
996#endif 1260 ss.ss_size = stacksize;
997 signal(SIGTERM,rec_sigterm); 1261 sigaltstack (&ss, 0);
998#endif 1262
1263 struct sigaction sa;
1264
1265 sigfillset (&sa.sa_mask);
1266 sa.sa_flags = SA_ONSTACK | SA_RESTART;
1267
1268 sa.sa_handler = SIG_IGN; sigaction (SIGPIPE, &sa, 0);
1269 sa.sa_handler = rec_sigabrt; sigaction (SIGABRT, &sa, 0);
1270 sa.sa_handler = rec_sigquit; sigaction (SIGQUIT, &sa, 0);
1271 sa.sa_handler = rec_sigsegv; sigaction (SIGSEGV, &sa, 0);
1272 sa.sa_handler = rec_sigbus; sigaction (SIGBUS, &sa, 0);
999} 1273}
1000 1274
1001/* init_races() - reads the races file in the lib/ directory, then 1275/* init_races() - reads the races file in the lib/ directory, then
1002 * overwrites old 'race' entries. This routine allow us to quickly 1276 * overwrites old 'race' entries. This routine allow us to quickly
1003 * re-configure the 'alignment' of monsters, objects. Useful for 1277 * re-configure the 'alignment' of monsters, objects. Useful for
1004 * putting together lists of creatures, etc that belong to gods. 1278 * putting together lists of creatures, etc that belong to gods.
1005 */ 1279 */
1006 1280void
1007void init_races (void) { 1281init_races (void)
1282{
1008 FILE *file; 1283 FILE *file;
1009 char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF]; 1284 char race[MAX_BUF], fname[MAX_BUF], buf[MAX_BUF], *cp, variable[MAX_BUF];
1010 archetype *mon=NULL; 1285 archetype *mon = NULL;
1011 static int init_done=0; 1286 static int init_done = 0;
1012 1287
1013 if (init_done) return; 1288 if (init_done)
1014 init_done=1;
1015 first_race=NULL;
1016
1017 sprintf(fname,"%s/races",settings.datadir);
1018 LOG(llevDebug, "Reading races from %s...",fname);
1019 if(! (file=fopen(fname,"r"))) {
1020 LOG(llevError, "Cannot open races file %s: %s\n", fname, strerror(errno));
1021 return; 1289 return;
1290 init_done = 1;
1291 first_race = 0;
1292
1293 sprintf (fname, "%s/races", settings.datadir);
1294 LOG (llevDebug, "Reading races from %s...\n", fname);
1295 if (!(file = fopen (fname, "r")))
1296 {
1297 LOG (llevError, "Cannot open races file %s: %s\n", fname, strerror (errno));
1298 return;
1022 } 1299 }
1023 1300
1024 while(fgets(buf,MAX_BUF,file)!=NULL) { 1301 while (fgets (buf, MAX_BUF, file) != NULL)
1302 {
1025 int set_race=1,set_list=1; 1303 int set_race = 1, set_list = 1;
1026 if(*buf=='#') continue; 1304
1305 if (*buf == '#')
1306 continue;
1307
1027 if((cp=strchr(buf,'\n'))!=NULL) 1308 if ((cp = strchr (buf, '\n')) != NULL)
1028 *cp='\0'; 1309 *cp = '\0';
1310
1029 cp=buf; 1311 cp = buf;
1030 while(*cp==' '||*cp=='!'||*cp=='@') { 1312 while (*cp == ' ' || *cp == '!' || *cp == '@')
1031 if(*cp=='!') set_race=0; 1313 {
1032 if(*cp=='@') set_list=0; 1314 if (*cp == '!')
1315 set_race = 0;
1316 if (*cp == '@')
1317 set_list = 0;
1033 cp++; 1318 cp++;
1034 } 1319 }
1035 if(sscanf(cp,"RACE %s",variable)) { /* set new race value */ 1320
1321 if (sscanf (cp, "RACE %s", variable))
1322 /* set new race value */
1036 strcpy(race,variable); 1323 strcpy (race, variable);
1037 } else { 1324 else
1325 {
1038 char *cp1; 1326 char *cp1;
1327
1039 /* Take out beginning spaces */ 1328 /* Take out beginning spaces */
1040 for (cp1 = cp; *cp1==' '; cp1++); 1329 for (cp1 = cp; *cp1 == ' '; cp1++)
1330 ;
1041 /* Remove newline and trailing spaces */ 1331 /* Remove newline and trailing spaces */
1042 for (cp1 = cp + strlen(cp) -1; *cp1 == '\n' || *cp1 == ' '; cp1 --) { 1332 for (cp1 = cp + strlen (cp) - 1; *cp1 == '\n' || *cp1 == ' '; cp1--)
1333 {
1043 *cp1='\0'; 1334 *cp1 = '\0';
1044 if (cp==cp1) break; 1335 if (cp == cp1)
1336 break;
1045 } 1337 }
1046 1338
1047 if (cp[strlen(cp)-1]=='\n') cp[strlen(cp)-1]='\0'; 1339 if (cp[strlen (cp) - 1] == '\n')
1340 cp[strlen (cp) - 1] = '\0';
1341
1048 /* set creature race to race value */ 1342 /* set creature race to race value */
1049 if((mon=find_archetype(cp))==NULL) 1343 if ((mon = archetype::find (cp)) == NULL)
1050 LOG(llevError,"\nCreature %s in race file lacks archetype",cp); 1344 LOG (llevError, "Creature %s in race file lacks archetype\n", cp);
1051 else { 1345 else
1346 {
1052 if(set_race&&(!mon->clone.race||strcmp(mon->clone.race,race))) { 1347 if (set_race && (!mon->clone.race || strcmp (mon->clone.race, race)))
1348 {
1053 if(mon->clone.race) { 1349 if (mon->clone.race)
1054 LOG(llevDebug,"\n Resetting race to %s from %s for archetype %s", 1350 LOG (llevDebug, "Resetting race to %s from %s for archetype %s\n", race, &mon->clone.race, &mon->name);
1055 race,mon->clone.race,mon->name); 1351
1056 free_string(mon->clone.race); 1352 mon->clone.race = race;
1057 } 1353 }
1058 mon->clone.race=add_string(race); 1354
1059 }
1060 /* if the arch is a monster, add it to the race list */ 1355 /* if the arch is a monster, add it to the race list */
1061 if(set_list&&QUERY_FLAG(&mon->clone,FLAG_MONSTER)) 1356 if (set_list && QUERY_FLAG (&mon->clone, FLAG_MONSTER))
1062 add_to_racelist(race, &mon->clone); 1357 add_to_racelist (race, &mon->clone);
1063 } 1358 }
1064 } 1359 }
1065 } 1360 }
1361
1066 fclose(file); 1362 fclose (file);
1067 LOG(llevDebug,"done.\n"); 1363 LOG (llevDebug, "done.\n");
1068} 1364}
1069 1365
1366void
1070void dump_races(void) 1367dump_races (void)
1071{ 1368{
1072 racelink *list; 1369 racelink *list;
1073 objectlink *tmp; 1370 objectlink *tmp;
1371
1074 for(list=first_race;list;list=list->next) { 1372 for (list = first_race; list; list = list->next)
1373 {
1075 fprintf(stderr,"\nRACE %s:\t",list->name); 1374 fprintf (stderr, "\nRACE %s:\t", &list->name);
1076 for(tmp=list->member;tmp;tmp=tmp->next) 1375 for (tmp = list->member; tmp; tmp = tmp->next)
1077 fprintf(stderr,"%s(%d), ",tmp->ob->arch->name,tmp->ob->level); 1376 fprintf (stderr, "%s(%d), ", &tmp->ob->arch->name, tmp->ob->level);
1078 } 1377 }
1378
1079 fprintf(stderr,"\n"); 1379 fprintf (stderr, "\n");
1080} 1380}
1081 1381
1382void
1082void add_to_racelist (const char *race_name, object *op) { 1383add_to_racelist (const char *race_name, object *op)
1384{
1083 racelink *race; 1385 racelink *race;
1084 1386
1085 if(!op||!race_name) return; 1387 if (!op || !race_name)
1388 return;
1389
1086 race=find_racelink(race_name); 1390 race = find_racelink (race_name);
1087 1391
1088 if(!race) { /* add in a new race list */ 1392 if (!race)
1393 { /* add in a new race list */
1089 race = get_racelist(); 1394 race = get_racelist ();
1090 race->next = first_race; 1395 race->next = first_race;
1091 first_race = race; 1396 first_race = race;
1092 race->name=add_string(race_name); 1397 race->name = race_name;
1093 } 1398 }
1094 1399
1095 if(race->member->ob) { 1400 if (race->member->ob)
1401 {
1096 objectlink *tmp = get_objectlink(); 1402 objectlink *tmp = get_objectlink ();
1403
1097 tmp->next=race->member; 1404 tmp->next = race->member;
1098 race->member = tmp; 1405 race->member = tmp;
1099 } 1406 }
1407
1100 race->nrof++; 1408 race->nrof++;
1101 race->member->ob = op; 1409 race->member->ob = op;
1102} 1410}
1103 1411
1104racelink * get_racelist ( ) { 1412racelink *
1105 racelink *list; 1413get_racelist ()
1106 1414{
1107 list = (racelink *) malloc(sizeof(racelink )); 1415 racelink *list = new racelink;
1416
1108 list->name=NULL; 1417 list->name = 0;
1109 list->nrof=0; 1418 list->nrof = 0;
1419 list->next = 0;
1110 list->member=get_objectlink(); 1420 list->member = get_objectlink ();
1111 list->next=NULL;
1112 1421
1113 return list; 1422 return list;
1114} 1423}
1115 1424
1425racelink *
1116racelink * find_racelink( const char *name ) { 1426find_racelink (const char *name)
1117 racelink *test=NULL; 1427{
1118 1428 if (name)
1119 if(name&&first_race) 1429 for (racelink *link = first_race; link; link = link->next)
1120 for(test=first_race;test&&test!=test->next;test=test->next) 1430 if (!link->name || !strcmp (name, link->name))
1121 if(!test->name||!strcmp(name,test->name)) break; 1431 return link;
1122 1432
1123 return test; 1433 return 0;
1124} 1434}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines