]> git.jsancho.org Git - lugaru.git/blob - Source/Animation.cpp
License: Update GPLv2+ header to match current FSF recommendation
[lugaru.git] / Source / Animation.cpp
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 #include "Skeleton.h"
21 #include "Animation.h"
22
23 struct animation_data_elt {
24     const char *filename;
25     int height;
26     int attack;
27 };
28
29 static animation_data_elt animation_data[animation_count] = {
30 #define DECLARE_ANIM(id, file, height, attack, ...) {file, height, attack},
31 #include "Animation.def"
32 #undef DECLARE_ANIM
33 };
34
35 void loadAllAnimations()
36 {
37     for (int i = 0; i < loadable_anim_end; i++) {
38         animation_data_elt *e = animation_data + i;
39         animation[i].Load(e->filename, e->height, e->attack);
40     }
41 }