8def2731ff646ea6bad0ab4f2156d9d4a2502c6a
[supertux.git] / src / scripting / scripted_object.hpp
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 #ifndef HEADER_SUPERTUX_SCRIPTING_SCRIPTED_OBJECT_HPP
18 #define HEADER_SUPERTUX_SCRIPTING_SCRIPTED_OBJECT_HPP
19
20 namespace Scripting {
21
22 class ScriptedObject
23 {
24 public:
25 #ifndef SCRIPTING_API
26   virtual ~ScriptedObject()
27   {}
28 #endif
29
30   virtual void set_action(const std::string& animation) = 0;
31   virtual std::string get_action() = 0;
32
33   virtual void move(float x, float y) = 0;
34   virtual void set_pos(float x, float y) = 0;
35   virtual float get_pos_x() = 0;
36   virtual float get_pos_y() = 0;
37
38   virtual void set_velocity(float x, float y) = 0;
39   virtual float get_velocity_x() = 0;
40   virtual float get_velocity_y() = 0;
41
42   virtual void set_visible(bool visible) = 0;
43   virtual bool is_visible() = 0;
44
45   virtual void set_solid(bool solid) = 0;
46   virtual bool is_solid() = 0;
47
48   virtual std::string get_name() = 0;
49 };
50
51 }
52
53 #endif
54
55 /* EOF */