2 // Copyright (C) 2006 Matthias Braun <matze@braunis.de>
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.
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.
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/>.
17 #include "supertux/textscroller.hpp"
19 #include "audio/sound_manager.hpp"
20 #include "control/input_manager.hpp"
21 #include "lisp/parser.hpp"
22 #include "supertux/fadeout.hpp"
23 #include "supertux/info_box_line.hpp"
24 #include "supertux/globals.hpp"
25 #include "supertux/screen_manager.hpp"
26 #include "supertux/resources.hpp"
27 #include "util/reader.hpp"
28 #include "video/drawing_context.hpp"
33 static const float DEFAULT_SPEED = 20;
34 static const float LEFT_BORDER = 50;
35 static const float SCROLL = 60;
37 TextScroller::TextScroller(const std::string& filename) :
46 defaultspeed = DEFAULT_SPEED;
50 std::string background_file;
54 const lisp::Lisp* root = parser.parse(filename);
56 const lisp::Lisp* text_lisp = root->get_lisp("supertux-text");
58 throw std::runtime_error("File isn't a supertux-text file");
60 if(!text_lisp->get("text", text))
61 throw std::runtime_error("file doesn't contain a text field");
62 if(!text_lisp->get("background", background_file))
63 throw std::runtime_error("file doesn't contain a background file");
64 text_lisp->get("speed", defaultspeed);
65 text_lisp->get("music", music);
66 } catch(std::exception& e) {
67 std::ostringstream msg;
68 msg << "Couldn't load file '" << filename << "': " << e.what() << std::endl;
69 throw std::runtime_error(msg.str());
72 // Split text string lines into a vector
73 lines = InfoBoxLine::split(text, SCREEN_WIDTH - 2*LEFT_BORDER);
75 // load background image
76 background = Surface::create("images/background/" + background_file);
82 TextScroller::~TextScroller()
84 for(std::vector<InfoBoxLine*>::iterator i = lines.begin(); i != lines.end(); ++i) delete *i;
90 SoundManager::current()->play_music(music);
94 TextScroller::update(float elapsed_time)
96 Controller* controller = InputManager::current()->get_controller();
97 if(controller->hold(Controller::UP)) {
98 speed = -defaultspeed*5;
99 } else if(controller->hold(Controller::DOWN)) {
100 speed = defaultspeed*5;
102 speed = defaultspeed;
104 if((controller->pressed(Controller::JUMP)
105 || controller->pressed(Controller::ACTION)
106 || controller->pressed(Controller::MENU_SELECT)
107 )&& !(controller->pressed(Controller::UP))) // prevent skipping if jump with up is enabled
109 if(controller->pressed(Controller::START) ||
110 controller->pressed(Controller::ESCAPE)) {
111 ScreenManager::current()->pop_screen(std::unique_ptr<ScreenFade>(new FadeOut(0.5)));
114 scroll += speed * elapsed_time;
121 TextScroller::draw(DrawingContext& context)
123 context.draw_filled_rect(Vector(0, 0), Vector(SCREEN_WIDTH, SCREEN_HEIGHT),
124 Color(0.6f, 0.7f, 0.8f, 0.5f), 0);
125 context.draw_surface_part(background, Rectf(0, 0, background->get_width(), background->get_height()),
126 Rectf(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT), 0);
129 float y = SCREEN_HEIGHT - scroll;
130 for(size_t i = 0; i < lines.size(); i++) {
131 if (y + lines[i]->get_height() >= 0 && SCREEN_HEIGHT - y >= 0) {
132 lines[i]->draw(context, Rectf(LEFT_BORDER, y, SCREEN_WIDTH - 2*LEFT_BORDER, y), LAYER_GUI);
135 y += lines[i]->get_height();
138 if(y < 0 && !fading ) {
140 ScreenManager::current()->pop_screen(std::unique_ptr<ScreenFade>(new FadeOut(0.5)));