--- deliantra/server/common/arch.C 2010/04/11 02:04:54 1.103 +++ deliantra/server/common/arch.C 2011/05/01 16:58:15 1.108 @@ -1,7 +1,7 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * Copyright (©) 2005,2006,2007,2008,2009,2010,2011 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002 Mark Wedel & Crossfire Development Team * Copyright (©) 1992 Frank Tore Johansen * @@ -55,9 +55,9 @@ //+GPL /* - * Creates an object. This function is called by get_archetype () + * Creates an object. This function is called by archetype::get () * if it fails to find the appropriate archetype. - * Thus get_archetype() will be guaranteed to always return + * Thus archetype::get() will be guaranteed to always return * an object, and never NULL. */ static object * @@ -301,6 +301,12 @@ //-GPL +void +archetype::do_delete () +{ + delete this; +} + archetype::archetype (const char *name) { arch = this; @@ -353,9 +359,12 @@ void archetype::post_load_check () { - object::post_load_check (); - assert (("obj_original MUST NOT be set for archetypes", !flag [FLAG_OBJ_ORIGINAL])); + + if (type == SKILL) + add_skill_archetype (this); + + object::post_load_check (); } archetype * @@ -542,7 +551,7 @@ ++idx; else { - LOG (llevDebug, "garbage collect arch %s", &at->archname); + //LOG (llevDebug, "garbage collect arch %s", &at->archname); assert (at->arch == at); // verify that refcnt == 1 is truly valid allarch.erase (idx); @@ -577,12 +586,6 @@ * object containing a copy of the archetype. */ object * -get_archetype (const char *name) -{ - return archetype::get (name); -} - -object * archetype::get (const char *name) { archetype *at = find (name);