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

Comparing deliantra/server/common/loader.C (file contents):
Revision 1.62 by root, Mon Feb 19 19:10:31 2007 UTC vs.
Revision 1.72 by root, Sat Apr 21 12:28:31 2007 UTC

29#include <global.h> 29#include <global.h>
30#include <loader.h> 30#include <loader.h>
31#include <sproto.h> 31#include <sproto.h>
32 32
33///////////////////////////////////////////////////////////////////////////// 33/////////////////////////////////////////////////////////////////////////////
34
35/* Maps the MOVE_* values to names */
36static const char *const move_name[] = { "walk", "fly_low", "fly_high", "swim", "boat", NULL };
37 34
38/* This table is only necessary to convert objects that existed before the 35/* This table is only necessary to convert objects that existed before the
39 * spell object conversion to the new object. It was not practical 36 * spell object conversion to the new object. It was not practical
40 * to go through every mapping looking for every potion, rod, wand, etc 37 * to go through every mapping looking for every potion, rod, wand, etc
41 * that had a sp set and update to the new value. So this maps the 38 * that had a sp set and update to the new value. So this maps the
253 "spell_cause_rabies", /* 204 */ 250 "spell_cause_rabies", /* 204 */
254 "spell_glyph", /* 205 */ 251 "spell_glyph", /* 205 */
255 NULL 252 NULL
256}; 253};
257 254
258extern int arch_init; 255extern bool loading_arch;
259 256
260/* This function checks the object after it has been loaded (when we 257/* This function checks the object after it has been loaded (when we
261 * get the 'end' in the input stream). This function can be used to 258 * get the 'end' in the input stream). This function can be used to
262 * deal with legacy objects where fields may have changed. It can also be used 259 * deal with legacy objects where fields may have changed. It can also be used
263 * to check for objects to make sure there are no common errors. 260 * to check for objects to make sure there are no common errors.
292 /* only do these when program is first run - a bit 289 /* only do these when program is first run - a bit
293 * excessive to do this at every run - most of this is 290 * excessive to do this at every run - most of this is
294 * really just to catch any errors - program will still run, but 291 * really just to catch any errors - program will still run, but
295 * not in the ideal fashion. 292 * not in the ideal fashion.
296 */ 293 */
297 if ((op->type == WEAPON || op->type == BOW) && arch_init) 294 if ((op->type == WEAPON || op->type == BOW) && loading_arch)
298 { 295 {
299 if (!op->skill) 296 if (!op->skill)
300 LOG (llevError, "Weapon %s lacks a skill.\n", op->debug_desc ()); 297 LOG (llevError, "Weapon %s lacks a skill.\n", op->debug_desc ());
301 else if ((!strcmp (op->skill, "one handed weapons") && op->body_info[1] != -1) || 298 else if ((!strcmp (op->skill, "one handed weapons") && op->body_info[1] != -1) ||
302 (!strcmp (op->skill, "two handed weapons") && op->body_info[1] != -2)) 299 (!strcmp (op->skill, "two handed weapons") && op->body_info[1] != -2))
343 } 340 }
344 341
345 /* Old spellcasting object - need to load in the appropiate object */ 342 /* Old spellcasting object - need to load in the appropiate object */
346 if ((op->type == ROD || op->type == WAND || op->type == SCROLL || op->type == HORN || op->type == FIREWALL || 343 if ((op->type == ROD || op->type == WAND || op->type == SCROLL || op->type == HORN || op->type == FIREWALL ||
347 /* POTIONS and ALTARS don't always cast spells, but if they do, update them */ 344 /* POTIONS and ALTARS don't always cast spells, but if they do, update them */
348 ((op->type == POTION || op->type == ALTAR) && op->stats.sp)) && !op->inv && !arch_init) 345 ((op->type == POTION || op->type == ALTAR) && op->stats.sp)) && !op->inv && !loading_arch)
349 { 346 {
350 /* Fireall is bizarre in that spell type was stored in dam. Rest are 'normal' 347 /* Fireall is bizarre in that spell type was stored in dam. Rest are 'normal'
351 * in that spell was stored in sp. 348 * in that spell was stored in sp.
352 */ 349 */
353 object *tmp = get_archetype (spell_mapping[op->type == FIREWALL ? op->stats.dam : op->stats.sp]); 350 object *tmp = get_archetype (spell_mapping[op->type == FIREWALL ? op->stats.dam : op->stats.sp]);
354 insert_ob_in_ob (tmp, op); 351 insert_ob_in_ob (tmp, op);
355 op->randomitems = NULL; /* So another spell isn't created for this object */ 352 op->randomitems = NULL; /* So another spell isn't created for this object */
356 } 353 }
357 354
358 /* spellbooks & runes use slaying. But not to arch name, but to spell name */ 355 /* spellbooks & runes use slaying. But not to arch name, but to spell name */
359 if ((op->type == SPELLBOOK || op->type == RUNE) && op->slaying && !op->inv && !arch_init) 356 if ((op->type == SPELLBOOK || op->type == RUNE) && op->slaying && !op->inv && !loading_arch)
360 { 357 {
361 object *tmp = get_archetype_by_object_name (op->slaying); 358 object *tmp = get_archetype_by_object_name (op->slaying);
362 insert_ob_in_ob (tmp, op); 359 insert_ob_in_ob (tmp, op);
363 op->randomitems = NULL; /* So another spell isn't created for this object */ 360 op->randomitems = NULL; /* So another spell isn't created for this object */
364 /* without this, value is all screwed up */ 361 /* without this, value is all screwed up */
409 } 406 }
410 407
411} 408}
412 409
413static void 410static void
414set_move (MoveType & mt, const char *str) 411set_move (MoveType &mt, const char *str)
415{ 412{
413 static const struct flagstr {
414 const char *name;
415 MoveType flags;
416 } move_flags[] = {
417 { "walk" , MOVE_WALK },
418 { "flying" , MOVE_FLY_LOW | MOVE_FLY_HIGH },
419 { "fly_low" , MOVE_FLY_LOW },
420 { "fly_high", MOVE_FLY_HIGH },
421 { "swim" , MOVE_SWIM },
422 { "boat" , MOVE_BOAT },
423 { "ship" , MOVE_SHIP },
424 { "all" , MOVE_ALL },
425 };
426
416 if (!str) 427 if (!str)
417 { 428 {
418 mt = 0; 429 mt = 0;
419 return; 430 return;
420 } 431 }
427 438
428 mt = 0; 439 mt = 0;
429 440
430 for (str = strtok ((char *) str, " "); str; str = strtok (0, " ")) 441 for (str = strtok ((char *) str, " "); str; str = strtok (0, " "))
431 { 442 {
432 if (!strcasecmp (str, "all")) 443 bool negate = 0;
433 mt |= MOVE_ALL; 444
434 else 445 if (*str == '-')
435 { 446 {
436 int i, negate = 0; 447 negate = 1;
448 str++;
449 }
437 450
438 if (*str == '-') 451 for (const flagstr *f = move_flags; f < move_flags + sizeof (move_flags) / sizeof (move_flags [0]); ++f)
452 {
453 if (!strcmp (f->name, str))
439 { 454 {
440 negate = 1;
441 str++;
442 }
443
444 for (i = 0; move_name[i]; i++)
445 {
446 if (!strcasecmp (move_name[i], str))
447 {
448 if (negate) 455 if (negate)
449 mt &= ~(1 << i); 456 mt &= ~f->flags;
450 else
451 mt |= (1 << i);
452
453 break;
454 }
455 }
456
457 if (!move_name[i])
458 {
459 /* fly is a special case - covers both fly_low and
460 * fly_high - since it doesn't match to a specific
461 * single bit, have to special case it.
462 */
463 if (!strcasecmp (str, "flying"))
464 {
465 if (negate)
466 mt &= ~MOVE_FLYING;
467 else
468 mt |= MOVE_FLYING;
469 }
470 else 457 else
471 LOG (llevDebug, "common/loader.l: set_move - unknown move string '%s'\n", str); 458 mt |= f->flags;
459
460 goto next;
472 } 461 }
473 } 462 }
463
464 LOG (llevDebug, "common/loader.C: set_move - unknown move string '%s'\n", str);
465
466next: ;
474 } 467 }
475} 468}
476 469
477#define GET_FLAG(op,flag) \ 470#define GET_FLAG(op,flag) \
478 if (f.get_sint32 ()) \ 471 if (f.get_sint32 ()) \
481 CLEAR_FLAG (op, flag) \ 474 CLEAR_FLAG (op, flag) \
482 475
483bool 476bool
484object::parse_kv (object_thawer &f) 477object::parse_kv (object_thawer &f)
485{ 478{
486 assert (f.kw == KW_object || f.kw == KW_arch);
487
488 if (f.kw == KW_object)
489 f.get (name); // preset name from object name
490
491 f.next ();
492
493 object *op_inv = inv; 479 object *op_inv = inv;
494 480
495 for (;;) 481 for (;;)
496 { 482 {
497 switch (f.kw) 483 switch (f.kw)
559 } 545 }
560 } 546 }
561 continue; 547 continue;
562 548
563 case KW_other_arch: 549 case KW_other_arch:
550 other_arch =
551 loading_arch
552 ? archetype::get (f.get_str ())
564 other_arch = archetype::find (f.get_str ()); 553 : archetype::find (f.get_str ());
554
555 if (!other_arch)
556 LOG (llevError, "%s uses unknown other_arch '%s'.\n", debug_desc (), f.get_str ());
565 break; 557 break;
566 558
567 case KW_animation: 559 case KW_animation:
568 { 560 {
569 CLEAR_FLAG (this, FLAG_ANIMATE); 561 CLEAR_FLAG (this, FLAG_ANIMATE);
595 move_slow |= MOVE_WALK; 587 move_slow |= MOVE_WALK;
596 f.get (move_slow_penalty); 588 f.get (move_slow_penalty);
597 break; 589 break;
598 590
599 case KW_face: 591 case KW_face:
600 face = &new_faces[FindFace (f.get_str (), 0)]; 592 face = face_find (f.get_str ());
601 break; 593 break;
602 594
603 case KW_x: f.get (x); break; 595 case KW_x: f.get (x); break;
604 case KW_y: f.get (y); break; 596 case KW_y: f.get (y); break;
605 597
886 case KW_glow_radius: f.get (glow_radius); break; 878 case KW_glow_radius: f.get (glow_radius); break;
887 case KW_weapontype: f.get (weapontype); break; 879 case KW_weapontype: f.get (weapontype); break;
888 case KW_tooltype: f.get (tooltype); break; 880 case KW_tooltype: f.get (tooltype); break;
889 case KW_casting_time: f.get (casting_time); break; 881 case KW_casting_time: f.get (casting_time); break;
890 case KW_elevation: f.get (elevation); break; 882 case KW_elevation: f.get (elevation); break;
891 case KW_smoothlevel: f.get (smoothlevel); break; 883 case KW_smoothlevel: f.get (smoothlevel); smoothlevel = clamp (smoothlevel, 0, 255); break;
892 case KW_client_type: f.get (client_type); break; 884 case KW_client_type: f.get (client_type); break;
893 case KW_duration: f.get (duration); break; 885 case KW_duration: f.get (duration); break;
894 case KW_range: f.get (range); break; 886 case KW_range: f.get (range); break;
895 case KW_range_modifier: f.get (range_modifier); break; 887 case KW_range_modifier: f.get (range_modifier); break;
896 case KW_dam_modifier: f.get (dam_modifier); break; 888 case KW_dam_modifier: f.get (dam_modifier); break;
916 case KW_connected: 908 case KW_connected:
917 add_button_link (this, map, f.get_sint32 ()); 909 add_button_link (this, map, f.get_sint32 ());
918 break; 910 break;
919 911
920 case KW_randomitems: 912 case KW_randomitems:
921 randomitems = find_treasurelist (f.get_str ()); 913 if (f.get_str ())
914 {
915 randomitems =
916 loading_arch
917 ? treasurelist::get (f.get_str ())
918 : treasurelist::find (f.get_str ());
919
922 //if (!randomitems) 920 if (!randomitems)
923 // LOG (llevError, "%s uses unknown randomitems '%s'.\n", debug_desc (), f.get_str ()); 921 LOG (llevError, "%s uses unknown randomitems '%s'.\n", debug_desc (), f.get_str ());
922 }
924 break; 923 break;
925 924
926 case KW_msg: 925 case KW_msg:
927 f.get_ml (KW_endmsg, msg); 926 f.get_ml (KW_endmsg, msg);
928 //TODO: allow longer messages 927 //TODO: allow longer messages
949 break; 948 break;
950 949
951 case KW_end: 950 case KW_end:
952 check_loaded_object (this); 951 check_loaded_object (this);
953 952
954 if (!arch_init) 953 if (!loading_arch)
955 instantiate (); 954 instantiate ();
956 955
957 f.next (); 956 f.next ();
958 return true; 957 return true;
959 958
985 arch = archetype::find ("earthwall"); 984 arch = archetype::find ("earthwall");
986 } 985 }
987 986
988 assert (arch); //D maybe use exception handling of sorts? 987 assert (arch); //D maybe use exception handling of sorts?
989 988
989 f.next ();
990
990 object *op = object::create (); 991 object *op = object::create ();
991 992
992 op->map = map; 993 op->map = map;
993 op->arch = arch;
994 arch->clone.copy_to (op); 994 arch->clone.copy_to (op);
995 // copy_to activates, this should be fixed properly 995 // copy_to activates, this should be fixed properly
996 op->deactivate (); 996 op->deactivate ();
997 997
998 if (!op->parse_kv (f)) 998 if (!op->parse_kv (f))
999 { 999 {
1000 delete op; 1000 op->destroy (true);
1001 return 0; 1001 return 0;
1002 } 1002 }
1003 1003
1004 return op; 1004 return op;
1005} 1005}
1013int 1013int
1014set_variable (object *op, char *buf) 1014set_variable (object *op, char *buf)
1015{ 1015{
1016 object_thawer f (buf, (AV *)0); 1016 object_thawer f (buf, (AV *)0);
1017 1017
1018 f.kw = KW_arch; // special hack so that parse_kv skips 1018 f.next ();
1019 return op->parse_kv (f); 1019 return op->parse_kv (f);
1020} 1020}
1021 1021
1022/* This returns a string of the integer movement type */ 1022/* This returns a string of the integer movement type */
1023#if 0 1023#if 0
1251 f.put (KW_msg, KW_endmsg, op->msg); 1251 f.put (KW_msg, KW_endmsg, op->msg);
1252 if (op->lore != tmp->lore) 1252 if (op->lore != tmp->lore)
1253 f.put (KW_lore, KW_endlore, op->lore); 1253 f.put (KW_lore, KW_endlore, op->lore);
1254 1254
1255 CMP_OUT (other_arch); 1255 CMP_OUT (other_arch);
1256 CMP_OUT (face); 1256
1257 if (op->face != tmp->face) f.put (KW_face, op->face ? &faces [op->face] : 0);
1257 1258
1258 if (op->animation_id != tmp->animation_id) 1259 if (op->animation_id != tmp->animation_id)
1259 if (op->animation_id) 1260 if (op->animation_id)
1260 { 1261 {
1261 f.put (KW_animation, animations[GET_ANIM_ID (op)].name); 1262 f.put (KW_animation, animations[GET_ANIM_ID (op)].name);
1394 return true; 1395 return true;
1395} 1396}
1396 1397
1397///////////////////////////////////////////////////////////////////////////// 1398/////////////////////////////////////////////////////////////////////////////
1398 1399
1400// generic resource file load,
1401// currently supports: region, treasures, archetypes
1399bool load_resource_file (const char *filename) 1402bool load_resource_file (const char *filename)
1400{ 1403{
1401 object_thawer f (filename); 1404 object_thawer f (filename);
1405
1406 bool success = false;
1407 bool seen_arch = false;
1402 1408
1403 f.next (); 1409 f.next ();
1404 1410
1405 for (;;) 1411 for (;;)
1406 { 1412 {
1407 switch (f.kw) 1413 switch (f.kw)
1408 { 1414 {
1409 case KW_region: 1415 case KW_region:
1410 if (!region::read (f)) 1416 if (!region::read (f))
1411 return false; 1417 goto finish;
1418 break;
1419
1420 case KW_treasure:
1421 case KW_treasureone:
1422 if (!treasurelist::read (f))
1423 goto finish;
1424 break;
1425
1426 case KW_object:
1427 seen_arch = true;
1428 if (!archetype::read (f))
1429 goto finish;
1412 break; 1430 break;
1413 1431
1414 case KW_EOF: 1432 case KW_EOF:
1415 return true; 1433 success = true;
1434 goto finish;
1416 1435
1417 default: 1436 default:
1418 if (!f.parse_error ("resource file")) 1437 if (!f.parse_error ("resource file"))
1419 return false; 1438 goto finish;
1420 } 1439 }
1421
1422 f.next ();
1423 } 1440 }
1441
1442finish:
1443 if (seen_arch)
1444 init_archetype_pointers ();
1445
1446 return success;
1424} 1447}
1425 1448

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines