hopefully fixed the crash on exit, keep sectors script bundled in the sector and...
[supertux.git] / src / scripting / functions.cpp
1 //  $Id: main.cpp 3275 2006-04-09 00:32:34Z sommer $
2 // 
3 //  SuperTux
4 //  Copyright (C) 2005 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
19 //  02111-1307, USA.
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 "script_manager.hpp"
33 #include "resources.hpp"
34 #include "gettext.hpp"
35 #include "msg.hpp"
36 #include "mainloop.hpp"
37 #include "worldmap.hpp"
38
39 #include "squirrel_error.hpp"
40 #include "wrapper_util.hpp"
41
42 namespace Scripting
43 {
44
45 int display(HSQUIRRELVM vm)
46 {
47   Console::output << squirrel2string(vm, -1) << std::endl;
48   return 0;
49 }
50
51 void wait(HSQUIRRELVM vm, float seconds)
52 {
53   SQUserPointer ptr = sq_getforeignptr(vm);
54   ScriptManager* script_manager = reinterpret_cast<ScriptManager*> (ptr);
55   script_manager->set_wakeup_event(vm, ScriptManager::TIME, seconds);
56 }
57
58 void wait_for_screenswitch(HSQUIRRELVM vm)
59 {
60   SQUserPointer ptr = sq_getforeignptr(vm);
61   ScriptManager* script_manager = reinterpret_cast<ScriptManager*> (ptr);
62   script_manager->set_wakeup_event(vm, ScriptManager::SCREEN_SWITCHED);
63 }
64
65 std::string translate(const std::string& text)
66 {
67   return dictionary_manager.get_dictionary().translate(text);
68 }
69
70 void display_text_file(const std::string& filename)
71 {
72   main_loop->push_screen(new TextScroller(filename));
73 }
74
75 void load_worldmap(const std::string& filename)
76 {
77   using namespace WorldMapNS;
78
79   std::auto_ptr<WorldMap> worldmap(new WorldMap());
80   worldmap->loadmap(filename);
81   main_loop->push_screen(worldmap.release());
82 }
83
84 void load_level(const std::string& filename)
85 {
86   main_loop->push_screen(new GameSession(filename, ST_GL_PLAY));
87 }
88
89 static SQInteger squirrel_read_char(SQUserPointer file)
90 {
91   std::istream* in = reinterpret_cast<std::istream*> (file);
92   char c = in->get();
93   if(in->eof())
94     return 0;
95
96   return c;
97 }
98
99
100 void import(HSQUIRRELVM vm, const std::string& filename)
101 {
102   IFileStream in(filename);
103     
104   if(SQ_FAILED(sq_compile(vm, squirrel_read_char, &in,
105           filename.c_str(), SQTrue)))
106     throw SquirrelError(vm, "Couldn't parse script");
107     
108   sq_pushroottable(vm);
109   if(SQ_FAILED(sq_call(vm, 1, SQFalse))) {
110     sq_pop(vm, 1);
111     throw SquirrelError(vm, "Couldn't execute script");
112   }
113   sq_pop(vm, 1);
114 }
115
116 void add_key(int new_key)
117 {
118   player_status->set_keys(new_key);
119 }
120
121 }
122