1 | // SuperTux - Decal |
2 | // Copyright (C) 2008 Christoph Sommer <christoph.sommer@2008.expires.deltadevelopment.de> |
3 | // |
4 | // This program is free software: you can redistribute it and/or modify |
5 | // it under the terms of the GNU General Public License as published by |
6 | // the Free Software Foundation, either version 3 of the License, or |
7 | // (at your option) any later version. |
8 | // |
9 | // This program is distributed in the hope that it will be useful, |
10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | // GNU General Public License for more details. |
13 | // |
14 | // You should have received a copy of the GNU General Public License |
15 | // along with this program. If not, see <http://www.gnu.org/licenses/>. |
16 | |
17 | #include "object/decal.hpp" |
18 | |
19 | #include "util/reader.hpp" |
20 | #include "util/reader_mapping.hpp" |
21 | |
22 | Decal::Decal(const ReaderMapping& reader) : |
23 | MovingSprite(reader, "images/decal/explanations/billboard-bigtux.png" , LAYER_OBJECTS, COLGROUP_DISABLED), |
24 | default_action("default" ), |
25 | solid() |
26 | { |
27 | m_layer = reader_get_layer(reader, LAYER_OBJECTS); |
28 | |
29 | reader.get("solid" , solid, false); |
30 | if (solid) |
31 | set_group(COLGROUP_STATIC); |
32 | if (reader.get("action" , default_action)) |
33 | set_action(default_action, -1); |
34 | } |
35 | |
36 | ObjectSettings |
37 | Decal::get_settings() |
38 | { |
39 | ObjectSettings result = MovingSprite::get_settings(); |
40 | |
41 | result.add_int(_("Z-pos" ), &m_layer, "z-pos" , LAYER_OBJECTS); |
42 | result.add_bool(_("Solid" ), &solid, "solid" , false); |
43 | result.add_text(_("Action" ), &default_action, "action" , std::string("default" )); |
44 | |
45 | result.reorder({"z-pos" , "sprite" , "x" , "y" }); |
46 | |
47 | return result; |
48 | } |
49 | |
50 | Decal::~Decal() |
51 | { |
52 | } |
53 | |
54 | /* EOF */ |
55 | |