--- deliantra/server/common/loader.C 2008/09/30 07:51:17 1.124 +++ deliantra/server/common/loader.C 2009/11/07 18:30:05 1.138 @@ -1,22 +1,23 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * Copyright (©) 2005,2006,2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team * Copyright (©) 1992,2007 Frank Tore Johansen * - * Deliantra is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * Deliantra is free software: you can redistribute it and/or modify it under + * the terms of the Affero GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * You should have received a copy of the Affero GNU General Public License + * and the GNU General Public License along with this program. If not, see + * . * * The authors can be reached via e-mail to */ @@ -29,6 +30,8 @@ extern archetype *loading_arch; +//+GPL + /* This table is only necessary to convert objects that existed before the * spell object conversion to the new object. It was not practical * to go through every mapping looking for every potion, rod, wand, etc @@ -341,8 +344,8 @@ { if (!skill) LOG (llevError, "ITEMBUG: weapon %s lacks a skill.\n", debug_desc ()); - else if ((!strcmp (skill, "one handed weapons") && slot[body_arm].info != -1) || - (!strcmp (skill, "two handed weapons") && slot[body_arm].info != -2)) + else if ((skill == shstr_one_handed_weapons && slot[body_arm].info != -1) || + (skill == shstr_two_handed_weapons && slot[body_arm].info != -2)) LOG (llevError, "ITEMBUG: weapon %s arm usage does not match skill: %d, %s\n", debug_desc (), slot[body_arm].info, &skill); } @@ -463,6 +466,19 @@ move_type = MOVE_WALK; } } + + // if the object has an animation, try to provide a default face + if (has_anim ()) + { + const animation &anim_ob = anim (); + + if (anim_speed) + // if this item is time-animated, force the last frame + animate_object (this, 0); + else if (flag [FLAG_MONSTER]) + // if it is a monster, set appropriate facing + animate_object (this, direction); + } } static void @@ -525,6 +541,8 @@ } } +//-GPL + #define GET_FLAG(op,flg) op->flag [flg] = f.get_bool () bool @@ -929,10 +947,9 @@ case KW_will_apply: f.get (will_apply); break; case KW_attack_movement: f.get (attack_movement); break; case KW_move_state: f.get (move_status); break; - case KW_expmul: f.get (expmul); break; + //case KW_expmul: f.get (expmul); break;//D declared const for the time being case KW_glow_radius: f.get (glow_radius); break; case KW_weapontype: f.get (weapontype); break; - case KW_tooltype: f.get (tooltype); break; case KW_casting_time: f.get (casting_time); break; // elevation is deprecated @@ -966,7 +983,12 @@ break; case KW_connected: - add_button_link (this, map, f.get_sint32 ()); + { + shstr connected; + + f.get (connected); + add_link (map, connected); + } break; case KW_randomitems: @@ -978,7 +1000,10 @@ : treasurelist::find (f.get_str ()); if (!randomitems) - LOG (llevError, "%s uses unknown randomitems '%s'.\n", debug_desc (), f.get_str ()); + { + LOG (llevError, "%s uses unknown randomitems '%s'.\n", debug_desc (), f.get_str ()); + randomitems = treasurelist::get (shstr_none); // avoid crashes + } } else randomitems = 0; @@ -1047,7 +1072,7 @@ if (!arch) { LOG (llevError, "object refering to nonexistant archetype '%s'.\n", f.get_str ()); - arch = archetype::find ("earthwall"); + arch = archetype::find (shstr_earthwall); } assert (arch); //D maybe use exception handling of sorts? @@ -1083,57 +1108,6 @@ return op->parse_kv (f); } -/* This returns a string of the integer movement type */ -#if 0 -// unused function -static char * -get_string_move_type (MoveType mt) -{ - static char retbuf[MAX_BUF], retbuf_all[MAX_BUF]; - int i, all_count = 0, count; - - strcpy (retbuf, ""); - strcpy (retbuf_all, " all"); - - /* Quick check, and probably fairly common */ - if (mt == MOVE_ALL) - return retbuf_all + 1; - if (mt == 0) - { - strcpy (retbuf, "0"); - return retbuf; - } - - /* We basically slide the bits down. Why look at MOVE_ALL? - * because we may want to return a string like 'all -swim', - * and if we just looked at mt, we couldn't get that. - */ - for (i = MOVE_ALL, count = 0; i != 0; i >>= 1, count++) - { - if (mt & (1 << count)) - { - strcat (retbuf, " "); - strcat (retbuf, move_name[count]); - } - else - { - strcat (retbuf_all, " -"); - strcat (retbuf_all, move_name[count]); - all_count++; - } - } - /* Basically, if there is a single negation, return it, eg - * 'all -swim'. But more than that, just return the - * enumerated values. It doesn't make sense to return - * 'all -walk -fly_low' - it is shorter to return 'fly_high swim' - */ - if (all_count <= 1) - return retbuf_all + 1; - else - return retbuf + 1; -} -#endif - // compare *op against *tmp and output differences static void write_diff (object_freezer &f, object *op, object *tmp) @@ -1287,7 +1261,8 @@ * will get taken care of the copy_to method. */ - f.put (KW_uuid, op->uuid.c_str ()); + if (op->uuid) + f.put (KW_uuid, op->uuid.c_str ()); #define CMP_OUT(v) if (expect_false (op->v != tmp->v)) f.put (KW_ ## v, op->v) #define CMP_OUT2(k,v) if (expect_false (op->v != tmp->v)) f.put (KW_ ## k, op->v) @@ -1313,8 +1288,8 @@ if (op->sound_destroy != tmp->sound_destroy) f.put (KW_sound_destroy, op->sound_destroy ? &faces [op->sound_destroy] : 0); if (op->animation_id != tmp->animation_id) - if (op->animation_id) - f.put (KW_animation, animations[GET_ANIM_ID (op)].name); + if (op->has_anim ()) + f.put (KW_animation, op->anim ().name); else { f.put (KW_animation, (const char *)0); @@ -1381,8 +1356,8 @@ CMP_OUT (glow_radius); if (op->flag [FLAG_IS_LINKED]) - if (int i = get_button_value (op)) - f.put (KW_connected, i); + if (auto (ol, op->find_link ())) + f.put (KW_connected, ol->id); CMP_OUT (randomitems); CMP_OUT2 (container, weight_limit); @@ -1392,7 +1367,6 @@ CMP_OUT (will_apply); CMP_OUT (smoothlevel); CMP_OUT (weapontype); - CMP_OUT (tooltype); CMP_OUT (client_type); CMP_OUT (item_power); CMP_OUT (duration); @@ -1429,10 +1403,16 @@ bool object::write (object_freezer &f) { - archetype *at = arch ? arch : archetype::empty; - - f.put (KW_arch, at->archname); - write_diff (f, this, at); + if (is_arch ()) + { + f.put (KW_object, arch->archname); + write_diff (f, this, archetype::empty); + } + else + { + f.put (KW_arch, arch->archname); + write_diff (f, this, arch); + } for (object *tmp = inv; tmp; tmp = tmp->below) tmp->write (f);