2 // Copyright (C) 2006 Matthias Braun <matze@braunis.de>
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.
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.
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/>.
17 #ifndef HEADER_SUPERTUX_OBJECT_TEXT_OBJECT_HPP
18 #define HEADER_SUPERTUX_OBJECT_TEXT_OBJECT_HPP
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 #include "video/font_ptr.hpp"
27 /** A text object intended for scripts that want to tell a story */
28 class TextObject : public GameObject,
29 public scripting::Text,
30 public ScriptInterface
32 static Color default_color;
34 TextObject(std::string name = "");
35 virtual ~TextObject();
37 void expose(HSQUIRRELVM vm, SQInteger table_idx);
38 void unexpose(HSQUIRRELVM vm, SQInteger table_idx);
40 void set_text(const std::string& text);
41 void set_font(const std::string& name);
42 void fade_in(float fadetime);
43 void fade_out(float fadetime);
44 void set_visible(bool visible);
45 void set_centered(bool centered);
48 void set_anchor_point(AnchorPoint anchor_) {
49 this->anchor = anchor_;
51 AnchorPoint get_anchor_point() const {
55 void set_pos(const Vector& pos_) {
58 void set_pos(float x, float y) {
59 set_pos(Vector(x, y));
61 const Vector& get_pos() const {
71 void set_anchor_point(int anchor_) {
72 set_anchor_point((AnchorPoint) anchor_);
74 int get_anchor_point() {
75 return (int) get_anchor_point();
78 void draw(DrawingContext& context);
79 void update(float elapsed_time);
92 TextObject(const TextObject&);
93 TextObject& operator=(const TextObject&);