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.115 by root, Sun May 4 19:14:23 2008 UTC vs.
Revision 1.118 by elmex, Sun Aug 31 15:49:13 2008 UTC

386 LOG (llevDebug, "Object %s seems to have too low item power? %d > %d\n", debug_desc (), ip, item_power); 386 LOG (llevDebug, "Object %s seems to have too low item power? %d > %d\n", debug_desc (), ip, item_power);
387#endif 387#endif
388 } 388 }
389 389
390 /* Old spellcasting object - need to load in the appropiate object */ 390 /* Old spellcasting object - need to load in the appropiate object */
391 if ((type == ROD || type == WAND || type == SCROLL || type == HORN || type == FIREWALL || 391 if ((type == ROD
392 || type == WAND
393 || type == SCROLL
394 || type == HORN
395 || type == FIREWALL
392 /* POTIONS and ALTARS don't always cast spells, but if they do, update them */ 396 /* POTIONS and ALTARS don't always cast spells, but if they do, update them */
393 ((type == POTION || type == ALTAR) && stats.sp)) && !inv && !loading_arch) 397 || ((type == POTION || type == ALTAR) && stats.sp)) // watchout: sp = 0 is still magic bullet.
398 && !inv
399 && !loading_arch
400 && !randomitems) // by elmex: not _any_ rod or horn we find on a map, which has randomitems is an old spellcasting
401 // object. For instance lythanders pipe got it's spell in the treasurelist in the randomitems,
402 // same goes for normal rods.
394 { 403 {
395 /* Firewall is bizarre in that spell type was stored in dam. Rest are 'normal' 404 /* Firewall is bizarre in that spell type was stored in dam. Rest are 'normal'
396 * in that spell was stored in sp. 405 * in that spell was stored in sp.
397 */ 406 */
398 LOG (llevError, "old spellcasting object found: %s", debug_desc ()); 407 LOG (llevError, "old spellcasting object found: %s", debug_desc ());
399 object *tmp = get_archetype (spell_mapping[type == FIREWALL ? stats.dam : stats.sp]); 408 object *tmp = get_archetype (spell_mapping[type == FIREWALL ? stats.dam : stats.sp]);
400 insert_ob_in_ob (tmp, this); 409 insert_ob_in_ob (tmp, this);
401 randomitems = NULL; /* So another spell isn't created for this object */
402 } 410 }
403 411
404 /* spellbooks & runes use slaying. But not to arch name, but to spell name */ 412 /* spellbooks & runes use slaying. But not to arch name, but to spell name */
405 if ((type == SPELLBOOK || type == RUNE) && slaying && !inv && !loading_arch) 413 if ((type == SPELLBOOK || type == RUNE) && slaying && !inv && !loading_arch)
406 { 414 {
607 CLEAR_FLAG (this, FLAG_ANIMATE); 615 CLEAR_FLAG (this, FLAG_ANIMATE);
608 animation_id = 0; 616 animation_id = 0;
609 617
610 const char *str = f.get_str (); 618 const char *str = f.get_str ();
611 if (str && (animation_id = find_animation (str))) 619 if (str && (animation_id = find_animation (str)))
612 SET_FLAG (this, FLAG_ANIMATE); 620 SET_FLAG (this, FLAG_ANIMATE); //TODO: should not be forced to true here
613 } 621 }
614 break; 622 break;
615 623
616 case KW_last_heal: f.get (last_heal); break; 624 case KW_last_heal: f.get (last_heal); break;
617 case KW_last_sp: f.get (last_sp); break; 625 case KW_last_sp: f.get (last_sp); break;
921 case KW_expmul: f.get (expmul); break; 929 case KW_expmul: f.get (expmul); break;
922 case KW_glow_radius: f.get (glow_radius); break; 930 case KW_glow_radius: f.get (glow_radius); break;
923 case KW_weapontype: f.get (weapontype); break; 931 case KW_weapontype: f.get (weapontype); break;
924 case KW_tooltype: f.get (tooltype); break; 932 case KW_tooltype: f.get (tooltype); break;
925 case KW_casting_time: f.get (casting_time); break; 933 case KW_casting_time: f.get (casting_time); break;
934
935 // elevation is deprecated
926 case KW_elevation: f.get (elevation); break; 936 case KW_elevation: break;
937
927 case KW_smoothlevel: f.get (smoothlevel); smoothlevel = clamp (smoothlevel, 0, 255); break; 938 case KW_smoothlevel: f.get (smoothlevel); smoothlevel = clamp (smoothlevel, 0, 255); break;
928 case KW_client_type: f.get (client_type); break; 939 case KW_client_type: f.get (client_type); break;
929 case KW_duration: f.get (duration); break; 940 case KW_duration: f.get (duration); break;
930 case KW_range: f.get (range); break; 941 case KW_range: f.get (range); break;
931 case KW_range_modifier: f.get (range_modifier); break; 942 case KW_range_modifier: f.get (range_modifier); break;
1298 if (op->sound != tmp->sound ) f.put (KW_sound , op->sound ? &faces [op->sound ] : 0); 1309 if (op->sound != tmp->sound ) f.put (KW_sound , op->sound ? &faces [op->sound ] : 0);
1299 if (op->sound_destroy != tmp->sound_destroy) f.put (KW_sound_destroy, op->sound_destroy ? &faces [op->sound_destroy] : 0); 1310 if (op->sound_destroy != tmp->sound_destroy) f.put (KW_sound_destroy, op->sound_destroy ? &faces [op->sound_destroy] : 0);
1300 1311
1301 if (op->animation_id != tmp->animation_id) 1312 if (op->animation_id != tmp->animation_id)
1302 if (op->animation_id) 1313 if (op->animation_id)
1314 f.put (KW_animation, animations[GET_ANIM_ID (op)].name);
1315 else
1303 { 1316 {
1304 f.put (KW_animation, animations[GET_ANIM_ID (op)].name); 1317 f.put (KW_animation, (const char *)0);
1305 1318 op->flag [FLAG_ANIMATE] = false; // TODO: why force to false here?
1306 if (!QUERY_FLAG (op, FLAG_ANIMATE))
1307 f.put (KW_is_animated, (sint32)0);
1308 } 1319 }
1309 else
1310 f.put (KW_animation, (const char *)0);
1311 1320
1312 CMP_OUT2 (str, stats.Str); 1321 CMP_OUT2 (str, stats.Str);
1313 CMP_OUT2 (dex, stats.Dex); 1322 CMP_OUT2 (dex, stats.Dex);
1314 CMP_OUT2 (con, stats.Con); 1323 CMP_OUT2 (con, stats.Con);
1315 CMP_OUT2 (wis, stats.Wis); 1324 CMP_OUT2 (wis, stats.Wis);
1379 CMP_OUT (pick_up); 1388 CMP_OUT (pick_up);
1380 CMP_OUT (will_apply); 1389 CMP_OUT (will_apply);
1381 CMP_OUT (smoothlevel); 1390 CMP_OUT (smoothlevel);
1382 CMP_OUT (weapontype); 1391 CMP_OUT (weapontype);
1383 CMP_OUT (tooltype); 1392 CMP_OUT (tooltype);
1384 CMP_OUT (elevation);
1385 CMP_OUT (client_type); 1393 CMP_OUT (client_type);
1386 CMP_OUT (item_power); 1394 CMP_OUT (item_power);
1387 CMP_OUT (duration); 1395 CMP_OUT (duration);
1388 CMP_OUT (range); 1396 CMP_OUT (range);
1389 CMP_OUT (range_modifier); 1397 CMP_OUT (range_modifier);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines