ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skills.h
(Generate patch)

Comparing deliantra/server/include/skills.h (file contents):
Revision 1.30 by root, Sun Apr 4 20:00:05 2010 UTC vs.
Revision 1.37 by root, Sat Nov 17 23:40:01 2018 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 5 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2003 Mark Wedel & Crossfire Development Team 6 * Copyright (©) 2003 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 7 * Copyright (©) 1992 Frank Tore Johansen
7 * 8 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 9 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 10 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 11 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 12 * option) any later version.
12 * 13 *
13 * This program is distributed in the hope that it will be useful, 14 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 17 * GNU General Public License for more details.
17 * 18 *
18 * You should have received a copy of the Affero GNU General Public License 19 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see 20 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>. 21 * <http://www.gnu.org/licenses/>.
21 * 22 *
22 * The authors can be reached via e-mail to <support@deliantra.net> 23 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 24 */
24 25
25#ifndef SKILLS_H__ 26#ifndef SKILLS_H__
26#define SKILLS_H__ 27#define SKILLS_H__
27 28
28/* This list is just a subtype <-> skill (code wise) in the 29/* This list is just a subtype <-> skill (code wise) in the
29 * server translation. In theory, the processing of the different 30 * server translation. In theory, the processing of the different
30 * skills could be done via strncmp 31 * skills could be done via strncmp
31 * This list doesn't really try to identify what the skills do. 32 * This list doesn't really try to identify what the skills do.
32 * The order of this list has no special meaning. 0 is not used 33 * The order of this list has no special meaning. 0 is not used
33 * to denote improperly set objects. 34 * to denote improperly set objects.
77/* Currently only one of these, but put the define here to make 78/* Currently only one of these, but put the define here to make
78 * it easier to expand it in the future */ 79 * it easier to expand it in the future */
79#define IS_GRACE_SKILL(num) (skill_flags [num] & SF_GRACE) 80#define IS_GRACE_SKILL(num) (skill_flags [num] & SF_GRACE)
80 81
81extern const uint8_t skill_flags[NUM_SKILLS]; 82extern const uint8_t skill_flags[NUM_SKILLS];
82// defined in shstr.C for initialisation order 83
83extern shstr skill_names[NUM_SKILLS]; 84// would like to use object_vector here...
85extern vector<object_ptr> skillvec;
86void add_skill_archetype (object *o);
87#define SKILL_INDEX(o) (o)->arch->cached_sp
84 88
85#endif 89#endif
86 90

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines