More animation work
[potpourri.git] / src / SDLAnimation / parse_animation.h
blob490567958d8cddec135d3f33d38a5f5eef0ab49e
1 // Copyright 2008 Brian Caine
3 // This file is part of Potpourri.
5 // Potpourri is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Potpourri is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTIBILITY of FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Potpourri. If not, see <http://www.gnu.org/licenses/>.
19 // NOTES:
20 // Parses the animation xml file.
22 #ifndef __PARSE_ANIMATION_H
23 #define __PARSE_ANIMATION_H
25 #include <libxml++/libxml++.h>
27 #include "../../include/core/XmlExtra.h"
28 #include "../../include/plugins/graphics/Graphics.h"
30 #include <string>
31 #include <map>
32 #include <vector>
34 namespace XMLParser
36 namespace parse_animation
38 struct XMLAnimationSection
40 std::string name;
41 std::string source;
43 GraphicsPair pos;
44 GraphicsPair size;
45 GraphicsPair offset;
48 struct XMLAnimationFrame
50 std::string source;
51 int duration;
54 struct XMLAnimationData
56 std::map<std::string, std::string> sources;
57 // sources[name] = filename;
59 std::vector<XMLAnimationSection> sections;
60 std::vector<std::string> includes;
61 std::vector<XMLAnimationFrame> sequence;
64 XMLAnimationData parse_animationFromBuffer(std::string buffer);
68 #endif