]> git.jsancho.org Git - lugaru.git/blob - Source/Animation.h
License: Update GPLv2+ header to match current FSF recommendation
[lugaru.git] / Source / Animation.h
1 /*
2 Copyright (C) 2010 - Lugaru authors
3
4 This file is part of Lugaru.
5
6 Lugaru is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Lugaru is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Lugaru.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef ANIMATION_H
21 #define ANIMATION_H
22
23 enum anim_attack_type {
24     neutral, normalattack, reversed, reversal
25 };
26
27 enum anim_height_type {
28     lowheight, middleheight, highheight
29 };
30
31
32 enum animation_types {
33 #define DECLARE_ANIM(id, ...) id,
34 #include "Animation.def"
35 #undef DECLARE_ANIM
36     animation_count
37 };
38
39 enum animation_bit_offsets {
40 #define DECLARE_ANIM_BIT(bit) o_##bit,
41 #include "Animation.def"
42 #undef DECLARE_ANIM_BIT
43     animation_bit_count
44 };
45
46 enum animation_bits_def {
47 #define DECLARE_ANIM_BIT(bit) bit = 1 << o_##bit,
48 #include "Animation.def"
49 #undef DECLARE_ANIM_BIT
50 };
51
52 static const int animation_bits[animation_count] = {
53 #define DECLARE_ANIM(id, name, height, type, bits) bits,
54 #include "Animation.def"
55 #undef DECLARE_ANIM
56 };
57
58 extern Animation animation[animation_count];
59
60 extern void loadAllAnimations();
61 #endif