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.13 by pippijn, Mon Jan 15 21:06:19 2007 UTC vs.
Revision 1.19 by root, Mon May 28 21:15:56 2007 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 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) 2003 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2003,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 authors can be reached via e-mail at crossfire@schmorp.de 22 * The authors can be reached via e-mail to <crossfire@schmorp.de>
23 */ 23 */
24 24
25#ifndef SKILLS_H__ 25#ifndef SKILLS_H__
26#define SKILLS_H__ 26#define SKILLS_H__
27 27
32 * The order of this list has no special meaning. 0 is not used 32 * The order of this list has no special meaning. 0 is not used
33 * to denote improperly set objects. 33 * to denote improperly set objects.
34 */ 34 */
35enum { 35enum {
36 SK_NONE = 0, 36 SK_NONE = 0,
37# define def(uc) SK_ ## uc, 37# define def(uc, flags) SK_ ## uc,
38# include "skillinc.h" 38# include "skillinc.h"
39# undef def 39# undef def
40 NUM_SKILLS, 40 NUM_SKILLS,
41};
42
43enum {
44 SF_COMBAT = 0x01, // skill is used only in direct attack combat
45 SF_NEED_WEAPON = 0x02, // skill requires a weapon object
46 SF_RANGED = 0x04, // skill is only used for ranged attacks
47 SF_NEED_BOW = 0x08, // skill requires a bow object
48 SF_USE = 0x10, // skill can be used but is directionless
49 SF_APPLY = 0x20, // skill can be independently applied and is never a chosen skill
50
51 SF_MANA = 0x40, // skill requires a mana-consuming spell
52 SF_GRACE = 0x80, // skill can use a grace-consuming spell
41}; 53};
42 54
43/* This is used in the exp functions - basically what to do if 55/* This is used in the exp functions - basically what to do if
44 * the player doesn't have the skill he should get exp in. 56 * the player doesn't have the skill he should get exp in.
45 */ 57 */
53#define USING_SKILL(op, skill) ((op)->chosen_skill && (op)->chosen_skill->subtype == skill) 65#define USING_SKILL(op, skill) ((op)->chosen_skill && (op)->chosen_skill->subtype == skill)
54 66
55/* This macro is used in fix_player() to define if this is a skill 67/* This macro is used in fix_player() to define if this is a skill
56 * that should be used to calculate wc's and the like. 68 * that should be used to calculate wc's and the like.
57 */ 69 */
58#define IS_COMBAT_SKILL(num) \ 70#define IS_COMBAT_SKILL(num) (skill_flags [num] & SF_COMBAT)
59 ((num==SK_PUNCHING) || (num==SK_FLAME_TOUCH) || (num==SK_KARATE) || \ 71#define IS_RANGED_SKILL(num) (skill_flags [num] & SF_RANGED)
60 (num==SK_ONE_HANDED_WEAPON) || (num==SK_MISSILE_WEAPON) || \
61 (num==SK_THROWING) || (num==SK_CLAWING) || (num==SK_TWO_HANDED_WEAPON) || \
62 (num==SK_SPARK_TOUCH) || (num==SK_SHIVER) || \
63 (num==SK_ACID_SPLASH) || (num==SK_POISON_NAIL))
64 72
65/* Like IS_COMBAT_SKILL above, but instead this is used to determine 73/* Like IS_COMBAT_SKILL above, but instead this is used to determine
66 * how many mana points the player has. 74 * how many mana points the player has.
67 */ 75 */
68#define IS_MANA_SKILL(num) \ 76#define IS_MANA_SKILL(num) (skill_flags [num] & SF_MANA)
69 ((num==SK_SORCERY) || (num==SK_EVOCATION) || \
70 (num==SK_PYROMANCY) || (num==SK_SUMMONING))
71 77
72/* 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
73 * it easier to expand it in the future */ 79 * it easier to expand it in the future */
74#define IS_GRACE_SKILL(num) \ 80#define IS_GRACE_SKILL(num) (skill_flags [num] & SF_GRACE)
75 (num==SK_PRAYING)
76 81
82extern const uint8_t skill_flags[NUM_SKILLS];
77extern shstr skill_names[NUM_SKILLS]; 83extern shstr skill_names[NUM_SKILLS];
78 84
79#endif 85#endif
80 86

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines