--- deliantra/server/common/arch.C 2010/04/11 02:04:54 1.103 +++ deliantra/server/common/arch.C 2016/11/18 04:46:35 1.114 @@ -1,24 +1,24 @@ /* * 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,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002 Mark Wedel & Crossfire Development Team * Copyright (©) 1992 Frank Tore Johansen - * + * * 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 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 */ @@ -26,14 +26,14 @@ #include -#include -#include +#include +#include archetype *loading_arch; // ugly flag to object loader etc. to suppress/request special processing arch_ptr archetype::empty; // the hashtable -typedef std::tr1::unordered_map +typedef std::unordered_map < const char *, arch_ptr, @@ -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 * @@ -523,7 +532,7 @@ void archetype::gc () { - int cnt = max (1, min (allarch.size () / 128, dirtycnt)); + int cnt = max (1, min (allarch.size () / 128, dirtycnt)); dirtycnt = max (0, dirtycnt - cnt); do @@ -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);