Major rewrite of scripting support:
[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   script_manager->set_wakeup_event(vm, ScriptManager::TIME, seconds);
54 }
55
56 void wait_for_screenswitch(HSQUIRRELVM vm)
57 {
58   script_manager->set_wakeup_event(vm, ScriptManager::SCREEN_SWITCHED);
59 }
60
61 std::string translate(const std::string& text)
62 {
63   return dictionary_manager.get_dictionary().translate(text);
64 }
65
66 void display_text_file(const std::string& filename)
67 {
68   main_loop->push_screen(new TextScroller(filename));
69 }
70
71 void load_worldmap(const std::string& filename)
72 {
73   using namespace WorldMapNS;
74
75   std::auto_ptr<WorldMap> worldmap(new WorldMap());
76   worldmap->loadmap(filename);
77   main_loop->push_screen(worldmap.release());
78 }
79
80 void load_level(const std::string& filename)
81 {
82   main_loop->push_screen(new GameSession(filename, ST_GL_PLAY));
83 }
84
85 static SQInteger squirrel_read_char(SQUserPointer file)
86 {
87   std::istream* in = reinterpret_cast<std::istream*> (file);
88   char c = in->get();
89   if(in->eof())
90     return 0;
91
92   return c;
93 }
94
95
96 void import(HSQUIRRELVM vm, const std::string& filename)
97 {
98   IFileStream in(filename);
99     
100   if(SQ_FAILED(sq_compile(vm, squirrel_read_char, &in,
101           filename.c_str(), SQTrue)))
102     throw SquirrelError(vm, "Couldn't parse script");
103     
104   sq_pushroottable(vm);
105   if(SQ_FAILED(sq_call(vm, 1, SQFalse))) {
106     sq_pop(vm, 1);
107     throw SquirrelError(vm, "Couldn't execute script");
108   }
109   sq_pop(vm, 1);
110 }
111
112 void add_key(int new_key)
113 {
114   player_status->set_keys(new_key);
115 }
116
117 }
118