--- deliantra/server/include/face.h 2007/05/28 21:15:56 1.15 +++ deliantra/server/include/face.h 2009/11/15 18:03:59 1.31 @@ -1,25 +1,23 @@ /* - * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game. + * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team - * Copyright (©) 1994,2007 Mark Wedel - * Copyright (©) 1992,2007 Frank Tore Johansen + * Copyright (©) 2005,2006,2007,2008,2009 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * - * Crossfire TRT 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 2 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. + * 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 Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * 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 + * The authors can be reached via e-mail to */ #ifndef FACE_H__ @@ -28,7 +26,7 @@ #include #include -#define CHKSUM_SIZE 6 +#define CHKSUM_MAXLEN 15 #define MAX_FACES 10000 // stupid gcfclient artificially limits typedef uint16 faceidx; @@ -38,7 +36,8 @@ struct facedata { std::string data; - uint8 chksum[CHKSUM_SIZE]; + uint8 chksum[CHKSUM_MAXLEN]; + uint8 chksum_len; }; /* New face structure - this enforces the notion that data is face by @@ -47,21 +46,35 @@ */ struct faceinfo { + faceinfo () + : number (0), smooth (0), type (0), smoothlevel (0), visibility (0), magicmap (0) + { + } + shstr name; - facedata data32, data64; + std::string meta; + facedata data32, data64; // either 32/64 face or data32 == generic resource faceidx number; /* This is the image id. It should be the */ /* same value as its position in the array */ faceidx smooth; /* the smooth face for this face, or 0 */ + uint8 type; // 0 normal face, otherwise other resource uint8 smoothlevel; // smoothlevel is per-face in 2.x servers uint8 visibility; uint8 magicmap; /* Color to show this in magic map */ - faceinfo () - : number (0), smooth (0), smoothlevel (0), visibility (0), magicmap (0) - { } + facedata *data (int faceset) const; }; -typedef std::tr1::unordered_map >, true> facehash_t; +inline void +object_freezer::put (const keyword_string k, faceinfo *v) +{ + if (expect_true (v)) + put (k, v->name); + else + put (k); +} + +typedef std::tr1::unordered_map > > facehash_t; extern facehash_t facehash; extern std::vector faces; @@ -90,11 +103,11 @@ struct animation { - shstr name; /* Name of the animation sequence */ - animidx number; - uint8 num_animations; /* How many different faces to animate */ - uint8 facings; /* How many facings (1,2,4,8) */ faceidx *faces; /* The different animations */ + int num_animations; /* How many different faces to animate */ + sint8 facings; /* How many facings (1,2,4,8) */ + animidx number; + shstr name; /* Name of the animation sequence */ static animation &create (const char *name, uint8 frames, uint8 facings = 1); static animation &find (const char *name); @@ -102,9 +115,8 @@ void resize (int new_size); }; -typedef std::tr1::unordered_map >, true> animhash_t; +typedef std::tr1::unordered_map > > animhash_t; -extern animhash_t animhash; extern std::vector animations; #endif