ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/skills.h
Revision: 1.19
Committed: Mon May 28 21:15:56 2007 UTC (16 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.18: +17 -17 lines
Log Message:
- update copyrights in .h files, where applicable
- rename preprocess to genkeywords

File Contents

# Content
1 /*
2 * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game.
3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 * Copyright (©) 2003,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 *
8 * Crossfire TRT is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51
20 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 *
22 * The authors can be reached via e-mail to <crossfire@schmorp.de>
23 */
24
25 #ifndef SKILLS_H__
26 #define SKILLS_H__
27
28 /* This list is just a subtype <-> skill (code wise) in the
29 * server translation. In theory, the processing of the different
30 * skills could be done via strncmp
31 * 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 * to denote improperly set objects.
34 */
35 enum {
36 SK_NONE = 0,
37 # define def(uc, flags) SK_ ## uc,
38 # include "skillinc.h"
39 # undef def
40 NUM_SKILLS,
41 };
42
43 enum {
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
53 };
54
55 /* This is used in the exp functions - basically what to do if
56 * the player doesn't have the skill he should get exp in.
57 */
58
59 #define SK_EXP_ADD_SKILL 0 /* Give the player the skill */
60 #define SK_EXP_TOTAL 1 /* Give player exp to total, no skill */
61 #define SK_EXP_NONE 2 /* Player gets nothing */
62 #define SK_SUBTRACT_SKILL_EXP 3 /* Used when removing exp */
63 #define SK_EXP_SKILL_ONLY 4 /* Player gets only skill experience */
64
65 #define USING_SKILL(op, skill) ((op)->chosen_skill && (op)->chosen_skill->subtype == skill)
66
67 /* This macro is used in fix_player() to define if this is a skill
68 * that should be used to calculate wc's and the like.
69 */
70 #define IS_COMBAT_SKILL(num) (skill_flags [num] & SF_COMBAT)
71 #define IS_RANGED_SKILL(num) (skill_flags [num] & SF_RANGED)
72
73 /* Like IS_COMBAT_SKILL above, but instead this is used to determine
74 * how many mana points the player has.
75 */
76 #define IS_MANA_SKILL(num) (skill_flags [num] & SF_MANA)
77
78 /* Currently only one of these, but put the define here to make
79 * it easier to expand it in the future */
80 #define IS_GRACE_SKILL(num) (skill_flags [num] & SF_GRACE)
81
82 extern const uint8_t skill_flags[NUM_SKILLS];
83 extern shstr skill_names[NUM_SKILLS];
84
85 #endif
86