Bug 563: Reset backflipping when Tux spawns.
[supertux.git] / src / object / background.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 "object/background.hpp"
18
19 #include <iostream>
20 #include "math/sizef.hpp"
21 #include "supertux/globals.hpp"
22 #include "supertux/object_factory.hpp"
23 #include "supertux/sector.hpp"
24 #include "util/log.hpp"
25 #include "util/reader.hpp"
26
27 #include <stdexcept>
28
29 Background::Background() :
30   alignment(NO_ALIGNMENT),
31   layer(LAYER_BACKGROUND0),
32   imagefile_top(),
33   imagefile(),
34   imagefile_bottom(),
35   pos(),
36   speed(),
37   speed_y(),
38   scroll_speed(),
39   scroll_offset(),
40   image_top(),
41   image(),
42   image_bottom()
43 {
44 }
45
46 Background::Background(const Reader& reader) :
47   alignment(NO_ALIGNMENT),
48   layer(LAYER_BACKGROUND0),
49   imagefile_top(),
50   imagefile(),
51   imagefile_bottom(),
52   pos(),
53   speed(),
54   speed_y(),
55   scroll_speed(),
56   scroll_offset(),
57   image_top(),
58   image(),
59   image_bottom()
60 {
61   // read position, defaults to (0,0)
62   float px = 0;
63   float py = 0;
64   reader.get("x", px);
65   reader.get("y", py);
66   this->pos = Vector(px,py);
67
68   speed = 1.0;
69   speed_y = 1.0;
70
71   std::string alignment_str;
72   if (reader.get("alignment", alignment_str))
73   {
74     if (alignment_str == "left")
75     {
76       alignment = LEFT_ALIGNMENT;
77     }
78     else if (alignment_str == "right")
79     {
80       alignment = RIGHT_ALIGNMENT;
81     }
82     else if (alignment_str == "top")
83     {
84       alignment = TOP_ALIGNMENT;
85     }
86     else if (alignment_str == "bottom")
87     {
88       alignment = BOTTOM_ALIGNMENT;
89     }
90     else if (alignment_str == "none")
91     {
92       alignment = NO_ALIGNMENT;
93     }
94     else
95     {
96       log_warning << "Background: invalid alignment: '" << alignment_str << "'" << std::endl;
97       alignment = NO_ALIGNMENT;
98     }
99   }
100
101   reader.get("scroll-offset-x", scroll_offset.x);
102   reader.get("scroll-offset-y", scroll_offset.y);
103
104   reader.get("scroll-speed-x", scroll_speed.x);
105   reader.get("scroll-speed-y", scroll_speed.y);
106
107   reader.get("layer", layer);
108   if(!reader.get("image", imagefile) || !reader.get("speed", speed))
109     throw std::runtime_error("Must specify image and speed for background");
110
111   set_image(imagefile, speed);
112   if (!reader.get("speed-y", speed_y))
113   {
114     speed_y = speed;
115   }
116
117   if (reader.get("image-top", imagefile_top)) {
118     image_top = Surface::create(imagefile_top);
119   }
120   if (reader.get("image-bottom", imagefile_bottom)) {
121     image_bottom = Surface::create(imagefile_bottom);
122   }
123 }
124
125 Background::~Background()
126 {
127 }
128
129 void
130 Background::update(float delta)
131 {
132   scroll_offset += scroll_speed * delta;
133 }
134
135 void
136 Background::set_image(const std::string& name, float speed)
137 {
138   this->imagefile = name;
139   this->speed = speed;
140
141   image = Surface::create(name);
142 }
143
144 void
145 Background::draw_image(DrawingContext& context, const Vector& pos)
146 {
147   Sizef level(Sector::current()->get_width(), Sector::current()->get_height());
148   Sizef screen(SCREEN_WIDTH, SCREEN_HEIGHT);
149   Sizef parallax_image_size = (1.0f - speed) * screen + level * speed;
150
151   // FIXME: Implement proper clipping here
152   int start_x = -parallax_image_size.width  / 2.0f / image->get_width()  - 1;
153   int end_x   =  parallax_image_size.width  / 2.0f / image->get_width()  + 1;
154   int start_y = -parallax_image_size.height / 2.0f / image->get_height() - 1;
155   int end_y   =  parallax_image_size.height / 2.0f / image->get_height() + 1;
156
157   switch(alignment)
158   {
159     case LEFT_ALIGNMENT:
160       for(int y = start_y; y <= end_y; ++y)
161       {
162         Vector p(pos.x - parallax_image_size.width / 2.0f,
163                  pos.y + y * image->get_height()  - image->get_height() / 2.0f);
164         context.draw_surface(image, p, layer);
165       }
166       break;
167
168     case RIGHT_ALIGNMENT:
169       for(int y = start_y; y <= end_y; ++y)
170       {
171         Vector p(pos.x + parallax_image_size.width / 2.0f - image->get_width(),
172                  pos.y + y * image->get_height() - image->get_height() / 2.0f);
173         context.draw_surface(image, p, layer);
174       }
175       break;
176
177     case TOP_ALIGNMENT:
178       for(int x = start_x; x <= end_x; ++x)
179       {
180         Vector p(pos.x + x * image->get_width() - image->get_width() / 2.0f, 
181                  pos.y - parallax_image_size.height / 2.0f);       
182         context.draw_surface(image, p, layer);
183       }
184       break;
185
186     case BOTTOM_ALIGNMENT:
187       for(int x = start_x; x <= end_x; ++x)
188       {
189         Vector p(pos.x + x * image->get_width()  - image->get_width() / 2.0f, 
190                  pos.y - image->get_height() + parallax_image_size.height / 2.0f);       
191         context.draw_surface(image, p, layer);
192       }
193       break;
194
195     case NO_ALIGNMENT:
196       for(int y = start_y; y <= end_y; ++y)
197         for(int x = start_x; x <= end_x; ++x)
198         {
199           Vector p(pos.x + x * image->get_width()  - image->get_width()/2, 
200                    pos.y + y * image->get_height() - image->get_height()/2);
201
202           if (image_top.get() != NULL && (y < 0))
203           {
204             context.draw_surface(image_top, p, layer);
205           }
206           else if (image_bottom.get() != NULL && (y > 0))
207           {
208             context.draw_surface(image_bottom, p, layer);
209           }
210           else
211           {
212             context.draw_surface(image, p, layer);
213           }
214         }
215       break;
216   }
217 }
218
219 void
220 Background::draw(DrawingContext& context)
221 {
222   if(image.get() == NULL)
223     return;
224
225   Sizef level_size(Sector::current()->get_width(),
226                    Sector::current()->get_height());
227   Sizef screen(SCREEN_WIDTH, SCREEN_HEIGHT);
228   Sizef translation_range = level_size - screen;
229   Vector center_offset(context.get_translation().x - translation_range.width  / 2.0f, 
230                        context.get_translation().y - translation_range.height / 2.0f);
231
232   // FIXME: We are not handling 'pos'
233   draw_image(context, Vector(level_size.width / 2.0f, level_size.height / 2.0f) + center_offset * (1.0f - speed));
234 }
235
236 /* EOF */