another try
[supertux.git] / src / scripting / functions.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 #include <config.h>
21
22 #include <memory>
23 #include <stdio.h>
24 #include <string>
25 #include <squirrel.h>
26 #include <sqstdio.h>
27 #include "textscroller.hpp"
28 #include "functions.hpp"
29 #include "game_session.hpp"
30 #include "tinygettext/tinygettext.hpp"
31 #include "physfs/physfs_stream.hpp"
32 #include "resources.hpp"
33 #include "gettext.hpp"
34 #include "log.hpp"
35 #include "mainloop.hpp"
36 #include "worldmap/worldmap.hpp"
37 #include "world.hpp"
38 #include "sector.hpp"
39 #include "gameconfig.hpp"
40 #include "object/player.hpp"
41 #include "object/tilemap.hpp"
42 #include "main.hpp"
43 #include "fadeout.hpp"
44 #include "shrinkfade.hpp"
45 #include "object/camera.hpp"
46 #include "flip_level_transformer.hpp"
47 #include "audio/sound_manager.hpp"
48 #include "random_generator.hpp"
49
50 #include "squirrel_error.hpp"
51 #include "squirrel_util.hpp"
52 #include "time_scheduler.hpp"
53
54 namespace Scripting
55 {
56
57 SQInteger display(HSQUIRRELVM vm)
58 {
59   Console::output << squirrel2string(vm, -1) << std::endl;
60   return 0;
61 }
62
63 void print_stacktrace(HSQUIRRELVM vm)
64 {
65   print_squirrel_stack(vm);
66 }
67
68 SQInteger get_current_thread(HSQUIRRELVM vm)
69 {
70   sq_pushobject(vm, vm_to_object(vm));
71   return 1;
72 }
73
74 void wait(HSQUIRRELVM vm, float seconds)
75 {
76   TimeScheduler::instance->schedule_thread(vm, game_time + seconds);
77 }
78
79 void wait_for_screenswitch(HSQUIRRELVM vm)
80 {
81   main_loop->waiting_threads.add(vm);
82 }
83
84 void exit_screen()
85 {
86   main_loop->exit_screen();
87 }
88
89 void fadeout_screen(float seconds)
90 {
91   main_loop->set_screen_fade(new FadeOut(seconds));
92 }
93
94 void shrink_screen(float dest_x, float dest_y, float seconds)
95 {
96   main_loop->set_screen_fade(new ShrinkFade(Vector(dest_x, dest_y), seconds));
97 }
98
99 std::string translate(const std::string& text)
100 {
101   return dictionary_manager.get_dictionary().translate(text);
102 }
103
104 void display_text_file(const std::string& filename)
105 {
106   main_loop->push_screen(new TextScroller(filename));
107 }
108
109 void load_worldmap(const std::string& filename)
110 {
111   using namespace WorldMapNS;
112
113   main_loop->push_screen(new WorldMap(filename));
114 }
115
116 void load_level(const std::string& filename)
117 {
118   main_loop->push_screen(new GameSession(filename));
119 }
120
121 static SQInteger squirrel_read_char(SQUserPointer file)
122 {
123   std::istream* in = reinterpret_cast<std::istream*> (file);
124   char c = in->get();
125   if(in->eof())
126     return 0;
127
128   return c;
129 }
130
131 void import(HSQUIRRELVM vm, const std::string& filename)
132 {
133   IFileStream in(filename);
134     
135   if(SQ_FAILED(sq_compile(vm, squirrel_read_char, &in,
136           filename.c_str(), SQTrue)))
137     throw SquirrelError(vm, "Couldn't parse script");
138     
139   sq_pushroottable(vm);
140   if(SQ_FAILED(sq_call(vm, 1, SQFalse, SQTrue))) {
141     sq_pop(vm, 1);
142     throw SquirrelError(vm, "Couldn't execute script");
143   }
144   sq_pop(vm, 1);
145 }
146
147 void debug_collrects(bool enable)
148 {
149   Sector::show_collrects = enable;
150 }
151
152 void debug_draw_fps(bool enable)
153 {
154   config->show_fps = enable;
155 }
156
157 void debug_draw_solids_only(bool enable)
158 {
159   Sector::draw_solids_only = enable;
160 }
161
162 void save_state()
163 {
164   using namespace WorldMapNS;
165   
166   if(World::current() == NULL)
167     throw std::runtime_error("Can't save state without active World");
168
169   if(WorldMap::current() != NULL)
170     WorldMap::current()->save_state();
171   World::current()->save_state();
172 }
173
174 // not added to header, function to only be used by others
175 // in this file
176 bool validate_sector_player()
177 {
178   if (Sector::current() == 0)
179   {
180     log_info << "No current sector." << std::endl;
181         return false;
182   }
183
184   if (Sector::current()->player == 0)
185   {
186     log_info << "No player." << std::endl;
187         return false;
188   }
189   return true;
190 }
191
192 void play_music(const std::string& filename)
193 {
194   sound_manager->play_music(filename);
195 }
196
197 void play_sound(const std::string& filename)
198 {
199   sound_manager->play(filename);
200 }
201
202 void grease()
203 {
204   if (!validate_sector_player()) return;
205   ::Player* tux = Sector::current()->player; // Scripting::Player != ::Player
206   tux->physic.set_velocity_x(tux->physic.get_velocity_x()*3);
207 }
208
209 void invincible()
210 {
211   if (!validate_sector_player()) return;
212   ::Player* tux = Sector::current()->player;
213   tux->invincible_timer.start(10000);
214 }
215
216 void mortal()
217 {
218   if (!validate_sector_player()) return;
219   ::Player* tux = Sector::current()->player;
220   tux->invincible_timer.stop();
221 }
222
223 void restart()
224 {
225   if (GameSession::current() == 0)
226   {
227     log_info << "No game session" << std::endl;
228     return;
229   }
230   GameSession::current()->restart_level();
231 }
232
233 void whereami()
234 {
235   if (!validate_sector_player()) return;
236   ::Player* tux = Sector::current()->player;
237   log_info << "You are at x " << tux->get_pos().x << ", y " << tux->get_pos().y << std::endl;
238 }
239
240 void gotoend()
241 {
242   if (!validate_sector_player()) return;
243   ::Player* tux = Sector::current()->player;
244   tux->move(Vector(
245           (Sector::current()->solids->get_width()*32) - (SCREEN_WIDTH*2), 0));
246   Sector::current()->camera->reset(
247         Vector(tux->get_pos().x, tux->get_pos().y));
248 }
249
250 void camera()
251 {
252   if (!validate_sector_player()) return;
253   log_info << "Camera is at " << Sector::current()->camera->get_translation().x << "," << Sector::current()->camera->get_translation().y << std::endl;
254 }
255
256 void quit()
257 {
258   main_loop->quit();
259 }
260
261 int rand()
262 {
263   return systemRandom.rand();
264 }
265
266 }
267