X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fobject%2Ftext_object.hpp;h=46337ec0c1cb09b2de7e15af8cb7e52fd7905c2c;hb=2bfc38ef3208dee885452cfa59a7c7df671eb24d;hp=352696df7eedea358f8c1dc219f437a852e8c35c;hpb=5b7f9214cb929399f1a855ef5807018a9447d510;p=supertux.git diff --git a/src/object/text_object.hpp b/src/object/text_object.hpp index 352696df7..46337ec0c 100644 --- a/src/object/text_object.hpp +++ b/src/object/text_object.hpp @@ -1,23 +1,48 @@ +// $Id$ +// +// SuperTux +// Copyright (C) 2006 Matthias Braun +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + #ifndef __TEXTOBJECT_H__ #define __TEXTOBJECT_H__ #include "game_object.hpp" #include "scripting/text.hpp" +#include "script_interface.hpp" class Font; /** A text object intended for scripts that want to tell a story */ -class TextObject : public GameObject, public Scripting::Text +class TextObject : public GameObject, public Scripting::Text, + public ScriptInterface { public: TextObject(); virtual ~TextObject(); + void expose(HSQUIRRELVM vm, int table_idx); + void unexpose(HSQUIRRELVM vm, int table_idx); + void set_text(const std::string& text); void set_font(const std::string& name); void fade_in(float fadetime); void fade_out(float fadetime); void set_visible(bool visible); + void set_centered(bool centered); bool is_visible(); void draw(DrawingContext& context); @@ -29,6 +54,7 @@ private: float fading; float fadetime; bool visible; + bool centered; }; #endif