8ec495a6dbd1f18ba6b93172073ff0247c628804
[supertux.git] / src / object / text_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_OBJECT_TEXT_OBJECT_HPP
18 #define HEADER_SUPERTUX_OBJECT_TEXT_OBJECT_HPP
19
20 #include "object/anchor_point.hpp"
21 #include "scripting/text.hpp"
22 #include "supertux/game_object.hpp"
23 #include "supertux/script_interface.hpp"
24 #include "video/color.hpp"
25
26 class Font;
27
28 /** A text object intended for scripts that want to tell a story */
29 class TextObject : public GameObject, 
30                    public Scripting::Text,
31                    public ScriptInterface
32 {
33   static Color default_color;
34 public:
35   TextObject(std::string name = "");
36   virtual ~TextObject();
37
38   void expose(HSQUIRRELVM vm, SQInteger table_idx);
39   void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
40
41   void set_text(const std::string& text);
42   void set_font(const std::string& name);
43   void fade_in(float fadetime);
44   void fade_out(float fadetime);
45   void set_visible(bool visible);
46   void set_centered(bool centered);
47   bool is_visible();
48
49   void set_anchor_point(AnchorPoint anchor) {
50     this->anchor = anchor;
51   }
52   AnchorPoint get_anchor_point() const {
53     return anchor;
54   }
55
56   void set_pos(const Vector& pos) {
57     this->pos = pos; 
58   } 
59   void set_pos(float x, float y) {
60     set_pos(Vector(x, y));
61   }
62   const Vector& get_pos() const {
63     return pos; 
64   }
65   float get_pos_x() {
66     return pos.x;
67   }
68   float get_pos_y() {
69     return pos.y;
70   }
71
72   void set_anchor_point(int anchor) {
73     set_anchor_point((AnchorPoint) anchor);
74   }
75   int get_anchor_point() {
76     return (int) get_anchor_point();
77   }
78
79   void draw(DrawingContext& context);
80   void update(float elapsed_time);
81
82 private:
83   Font* font;
84   std::string text;
85   float fading;
86   float fadetime;
87   bool visible;
88   bool centered;
89   AnchorPoint anchor;
90   Vector pos;
91
92 private:
93   TextObject(const TextObject&);
94   TextObject& operator=(const TextObject&);
95 };
96
97 #endif
98
99 /* EOF */