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