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.75 by root, Sat May 5 04:40:40 2007 UTC vs.
Revision 1.79 by root, Mon May 7 07:47:32 2007 UTC

257/* 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
258 * 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
259 * 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
260 * 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.
261 */ 261 */
262static void 262void
263check_loaded_object (object *op) 263object::post_load_check ()
264{ 264{
265 // as a kind of a hack, we now adjust the range, shield and combat slots
266 switch (type)
267 {
268 case BOW:
269 case WAND:
270 case ROD:
271 case HORN:
272 case SKILL: // maybe have to think about this one, as skills get applied togethr with their governing weapons
273 case SKILL_TOOL:
274 if (slot [body_range].info != -1)
275 {
276 LOG (llevInfo, "%s: body_range %d != -1\n", debug_desc (), slot [body_range].info);
277 slot [body_range].info = -1;
278 }
279 break;
280
281 case WEAPON:
282 if (slot [body_combat].info != -1)
283 {
284 LOG (llevInfo, "%s: body_combat %d != -1\n", debug_desc (), slot [body_combat].info);
285 slot [body_combat].info = -1;
286 }
287 break;
288
289 case SHIELD:
290 if (slot [body_shield].info != -1)
291 {
292 LOG (llevInfo, "%s: body_shield %d != -1\n", debug_desc (), slot [body_shield].info);
293 slot [body_shield].info = -1;
294 }
295 break;
296
297 case PLAYER:
298 if (slot [body_shield].info != 1)
299 {
300 LOG (llevInfo, "%s: body_shield %d != 1\n", debug_desc (), slot [body_shield].info);
301 slot [body_shield].info = 1;
302 }
303
304 if (slot [body_combat].info != 1)
305 {
306 LOG (llevInfo, "%s: body_combat %d != 1\n", debug_desc (), slot [body_combat].info);
307 slot [body_combat].info = 1;
308 }
309
310 if (slot [body_range].info != 1)
311 {
312 LOG (llevInfo, "%s: body_range %d != 1\n", debug_desc (), slot [body_range].info);
313 slot [body_range].info = 1;
314 }
315 break;
316 }
317
265 /* We do some specialised handling to handle legacy cases of name_pl. 318 /* We do some specialised handling to handle legacy cases of name_pl.
266 * If the object doesn't have a name_pl, we just use the object name - 319 * If the object doesn't have a name_pl, we just use the object name -
267 * this isn't perfect (things won't be properly pluralised), but works to 320 * this isn't perfect (things won't be properly pluralised), but works to
268 * that degree (5 heart is still quite understandable). But the case we 321 * that degree (5 heart is still quite understandable). But the case we
269 * also have to catch is if this object is not using the normal name for 322 * also have to catch is if this object is not using the normal name for
270 * the object. In that case, we also want to use the loaded name. 323 * the object. In that case, we also want to use the loaded name.
271 * Otherwise, what happens is that the the plural name will lose 324 * Otherwise, what happens is that the the plural name will lose
272 * information (appear as just 'hearts' and not 'goblins heart') 325 * information (appear as just 'hearts' and not 'goblins heart')
273 */ 326 */
274 if (op->arch && op->name != op->arch->clone.name && op->name_pl == op->arch->clone.name_pl) 327 if (arch && name != arch->clone.name && name_pl == arch->clone.name_pl)
275 op->name_pl = 0; 328 name_pl = 0;
276 329
277 if (!op->name_pl) 330 if (!name_pl)
278 op->name_pl = op->name; 331 name_pl = name;
279 332
280 /* objects now have a materialname. try to patch it in */ 333 /* objects now have a materialname. try to patch it in */
281 if (!(op->is_weapon () && op->level > 0)) 334 if (!(is_weapon () && level > 0))
282 { 335 set_materialname (this, map ? map->difficulty : 5, 0);
283 if (op->map != NULL)
284 set_materialname (op, op->map->difficulty, NULL);
285 else
286 set_materialname (op, 5, NULL);
287 }
288 336
289 /* only do these when program is first run - a bit 337 /* only do these when program is first run - a bit
290 * excessive to do this at every run - most of this is 338 * excessive to do this at every run - most of this is
291 * really just to catch any errors - program will still run, but 339 * really just to catch any errors - program will still run, but
292 * not in the ideal fashion. 340 * not in the ideal fashion.
293 */ 341 */
294 if ((op->type == WEAPON || op->type == BOW) && loading_arch) 342 if (loading_arch && (type == WEAPON || type == BOW || type == ROD || type == HORN || type == WAND))
295 { 343 {
296 if (!op->skill) 344 if (!skill)
297 LOG (llevError, "Weapon %s lacks a skill.\n", op->debug_desc ()); 345 LOG (llevError, "Weapon %s lacks a skill.\n", debug_desc ());
298 else if ((!strcmp (op->skill, "one handed weapons") && op->body_info[1] != -1) || 346 else if ((!strcmp (skill, "one handed weapons") && slot[body_arm].info != -1) ||
299 (!strcmp (op->skill, "two handed weapons") && op->body_info[1] != -2)) 347 (!strcmp (skill, "two handed weapons") && slot[body_arm].info != -2))
300 LOG (llevError, "weapon %s arm usage does not match skill: %d, %s\n", op->debug_desc (), op->body_info[1], &op->skill); 348 LOG (llevError, "weapon %s arm usage does not match skill: %d, %s\n", debug_desc (), slot[body_arm].info, &skill);
301 } 349 }
302 350
303 /* We changed last_heal to gen_sp_armour, which is what it 351 /* We changed last_heal to gen_sp_armour, which is what it
304 * really does for many objects. Need to catch any in maps 352 * really does for many objects. Need to catch any in maps
305 * that may have an old value. 353 * that may have an old value.
306 */ 354 */
307 if (op->type == WEAPON 355 if (type == WEAPON
308 || op->type == ARMOUR || op->type == HELMET 356 || type == ARMOUR || type == HELMET
309 || op->type == SHIELD || op->type == RING 357 || type == SHIELD || type == RING
310 || op->type == BOOTS || op->type == GLOVES 358 || type == BOOTS || type == GLOVES
311 || op->type == AMULET || op->type == GIRDLE 359 || type == AMULET || type == GIRDLE
312 || op->type == BRACERS || op->type == CLOAK) 360 || type == BRACERS || type == CLOAK)
313 { 361 {
314 if (op->last_heal) 362 if (last_heal)
315 { 363 {
316 LOG (llevDebug, "Object %s still has last_heal set, not gen_sp_armour\n", op->debug_desc ()); 364 LOG (llevDebug, "Object %s still has last_heal set, not gen_sp_armour\n", debug_desc ());
317 op->gen_sp_armour = op->last_heal; 365 gen_sp_armour = last_heal;
318 op->last_heal = 0; 366 last_heal = 0;
319 } 367 }
320 368
321 int ip = calc_item_power (op, 0); 369 int ip = calc_item_power (this, 0);
322 370
323 /* Legacy objects from before item power was in the game */ 371 /* Legacy objects from before item power was in the game */
324 if (!op->item_power && ip) 372 if (!item_power && ip)
325 { 373 {
326 if (ip > 3) 374 if (ip > 3)
327 LOG (llevDebug, "Object %s had no item power, using %d\n", op->debug_desc (), ip); 375 LOG (llevDebug, "Object %s had no item power, using %d\n", debug_desc (), ip);
328 376
329 op->item_power = ip; 377 item_power = ip;
330 } 378 }
331 379
332 /* Check for possibly bogus values. Has to meet both these criteria - 380 /* Check for possibly bogus values. Has to meet both these criteria -
333 * something that has item_power 1 is probably just fine if our calculated 381 * something that has item_power 1 is probably just fine if our calculated
334 * value is 1 or 2 - these values are small enough that hard to be precise. 382 * value is 1 or 2 - these values are small enough that hard to be precise.
335 * similarly, it item_power is 0, the first check will always pass, 383 * similarly, it item_power is 0, the first check will always pass,
336 * but not the second one. 384 * but not the second one.
337 */ 385 */
338 if (ip > 2 * op->item_power && ip > (op->item_power + 3)) 386 if (ip > 2 * item_power && ip > (item_power + 3))
339 LOG (llevDebug, "Object %s seems to have too low item power? %d > %d\n", op->debug_desc (), ip, op->item_power); 387 LOG (llevDebug, "Object %s seems to have too low item power? %d > %d\n", debug_desc (), ip, item_power);
340 } 388 }
341 389
342 /* Old spellcasting object - need to load in the appropiate object */ 390 /* Old spellcasting object - need to load in the appropiate object */
343 if ((op->type == ROD || op->type == WAND || op->type == SCROLL || op->type == HORN || op->type == FIREWALL || 391 if ((type == ROD || type == WAND || type == SCROLL || type == HORN || type == FIREWALL ||
344 /* POTIONS and ALTARS don't always cast spells, but if they do, update them */ 392 /* POTIONS and ALTARS don't always cast spells, but if they do, update them */
345 ((op->type == POTION || op->type == ALTAR) && op->stats.sp)) && !op->inv && !loading_arch) 393 ((type == POTION || type == ALTAR) && stats.sp)) && !inv && !loading_arch)
346 { 394 {
347 /* Fireall is bizarre in that spell type was stored in dam. Rest are 'normal' 395 /* Fireall is bizarre in that spell type was stored in dam. Rest are 'normal'
348 * in that spell was stored in sp. 396 * in that spell was stored in sp.
349 */ 397 */
350 object *tmp = get_archetype (spell_mapping[op->type == FIREWALL ? op->stats.dam : op->stats.sp]); 398 object *tmp = get_archetype (spell_mapping[type == FIREWALL ? stats.dam : stats.sp]);
351 insert_ob_in_ob (tmp, op); 399 insert_ob_in_ob (tmp, this);
352 op->randomitems = NULL; /* So another spell isn't created for this object */ 400 randomitems = NULL; /* So another spell isn't created for this object */
353 } 401 }
354 402
355 /* spellbooks & runes use slaying. But not to arch name, but to spell name */ 403 /* spellbooks & runes use slaying. But not to arch name, but to spell name */
356 if ((op->type == SPELLBOOK || op->type == RUNE) && op->slaying && !op->inv && !loading_arch) 404 if ((type == SPELLBOOK || type == RUNE) && slaying && !inv && !loading_arch)
357 { 405 {
358 object *tmp = get_archetype_by_object_name (op->slaying); 406 object *tmp = get_archetype_by_object_name (slaying);
359 insert_ob_in_ob (tmp, op); 407 insert_ob_in_ob (tmp, this);
360 op->randomitems = NULL; /* So another spell isn't created for this object */ 408 randomitems = NULL; /* So another spell isn't created for this object */
361 /* without this, value is all screwed up */ 409 /* without this, value is all screwed up */
362 op->value = op->arch->clone.value * op->inv->value; 410 value = arch->clone.value * inv->value;
363 } 411 }
364 412
365 if (QUERY_FLAG (op, FLAG_MONSTER)) 413 if (QUERY_FLAG (this, FLAG_MONSTER))
366 { 414 {
367 if (op->stats.hp > op->stats.maxhp) 415 if (stats.hp > stats.maxhp)
368 { 416 {
369 LOG (llevDebug, "Monster %s has hp set higher than maxhp (%d>%d)\n", op->debug_desc (), op->stats.hp, op->stats.maxhp); 417 LOG (llevDebug, "Monster %s has hp set higher than maxhp (%d>%d)\n", debug_desc (), stats.hp, stats.maxhp);
370 op->stats.maxhp = op->stats.hp; 418 stats.maxhp = stats.hp;
371 } 419 }
372 420
373 /* The archs just need to be updated for this */ 421 /* The archs just need to be updated for this */
374 if (op->move_type == 0) 422 if (move_type == 0)
375 op->move_type = MOVE_WALK; 423 move_type = MOVE_WALK;
376 } 424 }
377 425
378 if ((QUERY_FLAG (op, FLAG_GENERATOR) && QUERY_FLAG (op, FLAG_CONTENT_ON_GEN)) || op->type == CREATOR || op->type == CONVERTER) 426 if ((QUERY_FLAG (this, FLAG_GENERATOR) && QUERY_FLAG (this, FLAG_CONTENT_ON_GEN)) || type == CREATOR || type == CONVERTER)
379 { 427 {
380 /* Object will duplicate it's content as part of the 428 /* Object will duplicate it's content as part of the
381 * generation process. To do this, we must flag inventory 429 * generation process. To do this, we must flag inventory
382 * so it remains unevaluated concerning the randomitems and 430 * so it remains unevaluated concerning the randomitems and
383 * the living (a demonlord shouldn't cast from inside generator!) 431 * the living (a demonlord shouldn't cast from inside generator!)
384 */ 432 */
385 flag_inv (op, FLAG_IS_A_TEMPLATE); 433 flag_inv (this, FLAG_IS_A_TEMPLATE);
386 } 434 }
387 435
388 /* Handle player movers. We use move_type for player movers 436 /* Handle player movers. We use move_type for player movers
389 * because they operate on their own time (move_on 437 * because they operate on their own time (move_on
390 * would potentially cause them to be triggered when someone steps 438 * would potentially cause them to be triggered when someone steps
391 * on them). If move_type is set, presume person knows what they 439 * on them). If move_type is set, presume person knows what they
392 * are doing, otherwise, set move_type based on maxhp value. 440 * are doing, otherwise, set move_type based on maxhp value.
393 */ 441 */
394 if (op->type == PLAYERMOVER) 442 if (type == PLAYERMOVER)
395 { 443 {
396 if (!op->move_type) 444 if (!move_type)
397 { 445 {
398 if (op->stats.maxhp) 446 if (stats.maxhp)
399 { 447 {
400 op->move_type = MOVE_ALL; 448 move_type = MOVE_ALL;
401 op->stats.maxhp = 0; 449 stats.maxhp = 0;
402 } 450 }
403 else 451 else
404 op->move_type = MOVE_WALK; 452 move_type = MOVE_WALK;
405 } 453 }
406 } 454 }
407
408} 455}
409 456
410static void 457static void
411set_move (MoveType &mt, const char *str) 458set_move (MoveType &mt, const char *str)
412{ 459{
890 case KW_dam_modifier: f.get (dam_modifier); break; 937 case KW_dam_modifier: f.get (dam_modifier); break;
891 case KW_duration_modifier: f.get (duration_modifier); break; 938 case KW_duration_modifier: f.get (duration_modifier); break;
892 939
893 //TODO: mechanism to ensure that KW_xxx is consecutive needed from include/preprocess 940 //TODO: mechanism to ensure that KW_xxx is consecutive needed from include/preprocess
894 //TODO: parse from other include files 941 //TODO: parse from other include files
895 case KW_body_range: f.get (body_info[0]); break; 942 case KW_body_range: slot[body_range] .info = f.get_sint32 (); break;
896 case KW_body_arm: f.get (body_info[1]); break; 943 case KW_body_shield: slot[body_shield] .info = f.get_sint32 (); break;
897 case KW_body_torso: f.get (body_info[2]); break; 944 case KW_body_combat: slot[body_combat] .info = f.get_sint32 (); break;
898 case KW_body_head: f.get (body_info[3]); break; 945 case KW_body_arm: slot[body_arm] .info = f.get_sint32 (); break;
899 case KW_body_neck: f.get (body_info[4]); break; 946 case KW_body_torso: slot[body_torso] .info = f.get_sint32 (); break;
900 case KW_body_skill: f.get (body_info[5]); break; 947 case KW_body_head: slot[body_head] .info = f.get_sint32 (); break;
901 case KW_body_finger: f.get (body_info[6]); break; 948 case KW_body_neck: slot[body_neck] .info = f.get_sint32 (); break;
902 case KW_body_shoulder: f.get (body_info[7]); break; 949 case KW_body_skill: slot[body_skill] .info = f.get_sint32 (); break;
903 case KW_body_foot: f.get (body_info[8]); break; 950 case KW_body_finger: slot[body_finger] .info = f.get_sint32 (); break;
904 case KW_body_hand: f.get (body_info[9]); break; 951 case KW_body_shoulder: slot[body_shoulder].info = f.get_sint32 (); break;
905 case KW_body_wrist: f.get (body_info[10]); break; 952 case KW_body_foot: slot[body_foot] .info = f.get_sint32 (); break;
906 case KW_body_waist: f.get (body_info[11]); break; 953 case KW_body_hand: slot[body_hand] .info = f.get_sint32 (); break;
954 case KW_body_wrist: slot[body_wrist] .info = f.get_sint32 (); break;
955 case KW_body_waist: slot[body_waist] .info = f.get_sint32 (); break;
907 case KW_can_apply: 956 case KW_can_apply:
908 break; 957 break;
909 958
910 case KW_connected: 959 case KW_connected:
911 add_button_link (this, map, f.get_sint32 ()); 960 add_button_link (this, map, f.get_sint32 ());
950 case KW_editable: 999 case KW_editable:
951 case KW_editor_folder: 1000 case KW_editor_folder:
952 break; 1001 break;
953 1002
954 case KW_end: 1003 case KW_end:
955 check_loaded_object (this);
956
957 if (!loading_arch) 1004 if (!loading_arch)
958 instantiate (); 1005 instantiate ();
959 1006
960 f.next (); 1007 f.next ();
961 return true; 1008 return true;
1003 { 1050 {
1004 op->destroy (true); 1051 op->destroy (true);
1005 return 0; 1052 return 0;
1006 } 1053 }
1007 1054
1055 op->post_load_check ();
1008 return op; 1056 return op;
1009} 1057}
1010 1058
1011/* This takes a buffer, scans it for variables, and sets those variables 1059/* This takes a buffer, scans it for variables, and sets those variables
1012 * as appropriate in op. 1060 * as appropriate in op.
1363 if (op->flag != tmp->flag) 1411 if (op->flag != tmp->flag)
1364 for (i = 0; i <= NUM_FLAGS; i++) 1412 for (i = 0; i <= NUM_FLAGS; i++)
1365 if (flag_names [i] && op->flag [i] != tmp->flag [i]) 1413 if (flag_names [i] && op->flag [i] != tmp->flag [i])
1366 f.put (flag_names [i], op->flag [i] ? "1" : "0"); 1414 f.put (flag_names [i], op->flag [i] ? "1" : "0");
1367 1415
1368 /* Save body locations */ 1416 // save body locations
1369 for (i = 0; i < NUM_BODY_LOCATIONS; i++) 1417 for (i = 0; i < NUM_BODY_LOCATIONS; i++)
1370 if (op->body_info[i] != tmp->body_info[i]) 1418 if (op->slot[i].info != tmp->slot[i].info)
1371 f.put (body_locations[i].save_name, op->body_info[i]); 1419 f.put (body_locations[i].save_name, op->slot[i].info);
1372} 1420}
1373 1421
1374/* 1422/*
1375 * Dumps all variables in an object to a file. 1423 * Dumps all variables in an object to a file.
1376 * If bit 0 of flag is set, unpaid objects will be saved. As of now, 1424 * If bit 0 of flag is set, unpaid objects will be saved. As of now,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines