From cf82bef02ee2941ddad6664e34f3c94e35e015a3 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 8 Oct 2010 22:30:39 +0000 Subject: TOON: Merged Toon engine to ScummVM trunk svn-id: r53087 --- engines/toon/font.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 engines/toon/font.h (limited to 'engines/toon/font.h') diff --git a/engines/toon/font.h b/engines/toon/font.h new file mode 100644 index 0000000000..e6e765654c --- /dev/null +++ b/engines/toon/font.h @@ -0,0 +1,52 @@ +/* ScummVM - Graphic Adventure Engine +* +* ScummVM is the legal property of its developers, whose names +* are too numerous to list here. Please refer to the COPYRIGHT +* file distributed with this source distribution. +* +* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +* +* $URL$ +* $Id$ +* +*/ + +#ifndef TOON_FONT_H +#define TOON_FONT_H + +#include "toon.h" + +namespace Toon { + +class FontRenderer { +public: + FontRenderer(ToonEngine *vm); + ~FontRenderer(void); + + void setFont(Animation *font); + void computeSize(Common::String origText, int32 *retX, int32 *retY); + void renderText(int32 x, int32 y, Common::String origText, int32 mode); + void renderMultiLineText(int32 x, int32 y, Common::String origText, int32 mode); + void setFontColorByCharacter(int32 characterId); + void setFontColor(int32 fontColor1, int32 fontColor2, int32 fontColor3); +protected: + Animation *_currentFont; + ToonEngine *_vm; + byte _currentFontColor[4]; +}; + +} // End of namespace Toon + +#endif -- cgit v1.2.3 From e11637c7bc41d59dc6a666d3f0399b9a699b2443 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 8 Oct 2010 22:45:28 +0000 Subject: TOON: Normalized include paths svn-id: r53089 --- engines/toon/font.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/toon/font.h') diff --git a/engines/toon/font.h b/engines/toon/font.h index e6e765654c..713d8c3409 100644 --- a/engines/toon/font.h +++ b/engines/toon/font.h @@ -26,7 +26,7 @@ #ifndef TOON_FONT_H #define TOON_FONT_H -#include "toon.h" +#include "toon/toon.h" namespace Toon { -- cgit v1.2.3