- sounds are on both channels
[supertux.git] / src / sprite / sprite.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.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 <math.h>
18
19 #include "sprite/sprite.hpp"
20 #include "supertux/timer.hpp"
21
22 Sprite::Sprite(SpriteData& newdata) :
23   data(newdata),
24   frame(0),
25   animation_loops(-1),
26   last_ticks(),
27   angle(0.0f),
28   color(1.0f, 1.0f, 1.0f, 1.0f),
29   blend(),
30   action()
31 {
32   action = data.get_action("normal");
33   if(!action)
34     action = data.actions.begin()->second;
35   last_ticks = game_time;
36 }
37
38 Sprite::Sprite(const Sprite& other) :
39   data(other.data), 
40   frame(other.frame),
41   animation_loops(other.animation_loops),
42   last_ticks(game_time),
43   angle(0.0f), // FIXME: this can't be right
44   color(1.0f, 1.0f, 1.0f, 1.0f),
45   blend(),
46   action(other.action)
47 {
48 }
49
50 Sprite::~Sprite()
51 {
52 }
53
54 SpritePtr
55 Sprite::clone() const
56 {
57   return SpritePtr(new Sprite(*this));
58 }
59
60 void
61 Sprite::set_action(const std::string& name, int loops)
62 {
63   if(action && action->name == name)
64     return;
65
66   const SpriteData::Action* newaction = data.get_action(name);
67   if(!newaction) {
68     log_debug << "Action '" << name << "' not found." << std::endl;
69     return;
70   }
71
72   action = newaction;
73   animation_loops = loops;
74   frame = 0;
75 }
76
77 void
78 Sprite::set_action_continued(const std::string& name)
79 {
80   if(action && action->name == name)
81     return;
82
83   const SpriteData::Action* newaction = data.get_action(name);
84   if(!newaction) {
85     log_debug << "Action '" << name << "' not found." << std::endl;
86     return;
87   }
88
89   action = newaction;
90   if(frame >= get_frames()) {
91     frame = fmodf(frame, get_frames());
92
93     if (animation_loops > 0) animation_loops--;
94     if(animation_done())
95       frame = get_frames()-1;
96   }
97 }
98
99 bool
100 Sprite::animation_done()
101 {
102   return animation_loops == 0;
103 }
104
105 void
106 Sprite::update()
107 {
108   if(animation_done())
109     return;
110
111   float frame_inc = action->fps * (game_time - last_ticks);
112   last_ticks = game_time;
113
114   frame += frame_inc;
115
116   if(frame >= get_frames()) {
117     frame = fmodf(frame, get_frames());
118
119     animation_loops--;
120     if(animation_done())
121       frame = get_frames()-1;
122   }
123 }
124
125 void
126 Sprite::draw(DrawingContext& context, const Vector& pos, int layer)
127 {
128   assert(action != 0);
129   update();
130
131   if((int)frame >= get_frames() || (int)frame < 0)
132     log_warning << "frame out of range: " << (int)frame << "/" << get_frames() << " at " << get_name() << "/" << get_action() << std::endl;
133   else
134     context.draw_surface(action->surfaces[(int)frame],
135                          pos - Vector(action->x_offset, action->y_offset),
136                          angle,
137                          color,
138                          blend,
139                          layer + action->z_order);
140 }
141
142 void
143 Sprite::draw_part(DrawingContext& context, const Vector& source,
144                   const Vector& size, const Vector& pos, int layer)
145 {
146   assert(action != 0);
147   update();
148
149   int frameidx = (int) frame;
150
151   if(frameidx >= get_frames() || frameidx < 0) {
152 #ifdef NDEBUG
153     // in optimized mode we get some small rounding errors in floating point
154     // number sometimes...
155     log_warning << "frame out of range: " << frameidx << "/" << get_frames() << " at sprite: " << get_name() << "/" << get_action() << std::endl;
156 #endif
157     frameidx = get_frames() - 1;
158   }
159
160   context.draw_surface_part(action->surfaces[frameidx], source, size,
161                             pos - Vector(action->x_offset, action->y_offset),
162                             layer + action->z_order);
163 }
164
165 int
166 Sprite::get_width() const
167 {
168   if((int)frame >= get_frames() || (int)frame < 0)
169   {
170     log_warning << "frame out of range: " << (int)frame << "/" << get_frames() << " at " << get_name() << "/" << get_action() << std::endl;
171     return 0;
172   }
173   else
174   {
175     return (int) action->surfaces[get_frame()]->get_width();
176   }
177 }
178
179 int
180 Sprite::get_height() const
181 {
182   if((int)frame >= get_frames() || (int)frame < 0)
183   {
184     log_warning << "frame out of range: " << (int)frame << "/" << get_frames() << " at " << get_name() << "/" << get_action() << std::endl;
185     return 0;
186   }
187   else
188   {
189   return (int) action->surfaces[get_frame()]->get_height();
190   }
191 }
192
193 float
194 Sprite::get_current_hitbox_x_offset() const
195 {
196   return action->x_offset;
197 }
198
199 float
200 Sprite::get_current_hitbox_y_offset() const
201 {
202   return action->y_offset;
203 }
204
205 float
206 Sprite::get_current_hitbox_width() const
207 {
208   return action->hitbox_w;
209 }
210
211 float
212 Sprite::get_current_hitbox_height() const
213 {
214   return action->hitbox_h;
215 }
216
217 Rectf
218 Sprite::get_current_hitbox() const
219 {
220   return Rectf(action->x_offset, action->y_offset, action->x_offset + action->hitbox_w, action->y_offset + action->hitbox_h);
221 }
222
223 void
224 Sprite::set_angle(float a)
225 {
226   angle = a;
227 }
228
229 float
230 Sprite::get_angle() const
231 {
232   return angle;
233 }
234
235 void
236 Sprite::set_color(const Color& c)
237 {
238   color = c;
239 }
240
241 Color
242 Sprite::get_color() const
243 {
244   return color;
245 }
246
247 void
248 Sprite::set_blend(const Blend& b)
249 {
250   blend = b;
251 }
252
253 Blend
254 Sprite::get_blend() const
255 {
256   return blend;
257 }
258
259 /* EOF */