ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/image.C
(Generate patch)

Comparing deliantra/server/common/image.C (file contents):
Revision 1.21 by root, Wed Mar 14 04:12:27 2007 UTC vs.
Revision 1.25 by root, Sun Jul 1 04:08:14 2007 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game 2 * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * Crossfire TRT is free software; you can redistribute it and/or modify it
9 * it under the terms of the GNU General Public License as published by 9 * under the terms of the GNU General Public License as published by the Free
10 * the Free Software Foundation; either version 2 of the License, or 10 * Software Foundation; either version 2 of the License, or (at your option)
11 * (at your option) any later version. 11 * any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful, but
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * GNU General Public License for more details. 16 * for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License along
19 * along with this program; if not, write to the Free Software 19 * with Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * 21 *
22 * The maintainer of this code can be reached at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail to <crossfire@schmorp.de>
23 */ 23 */
24
25 24
26#include <global.h> 25#include <global.h>
27#include <stdio.h> 26#include <stdio.h>
28 27
29#include "face.h" 28#include "face.h"
75} 74}
76 75
77faceidx 76faceidx
78face_find (const char *name, faceidx defidx) 77face_find (const char *name, faceidx defidx)
79{ 78{
79 if (!name)
80 return defidx;
81
80 facehash_t::iterator i = facehash.find (name); 82 facehash_t::iterator i = facehash.find (name);
81 83
82 return i == facehash.end () 84 return i == facehash.end ()
83 ? defidx : i->second; 85 ? defidx : i->second;
84} 86}
96 98
97facedata * 99facedata *
98face_data (faceidx idx, int faceset) 100face_data (faceidx idx, int faceset)
99{ 101{
100 if (faceinfo *f = face_info (idx)) 102 if (faceinfo *f = face_info (idx))
101 return &(faceset ? f->data32 : f->data64); 103 return &(faceset && !f->type ? f->data64 : f->data32);
102 104
103 return 0; 105 return 0;
104} 106}
105 107

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines