2011-06-10 05:45:18 +00:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is based on original Soltys source code
|
|
|
|
* Copyright (c) 1994-1995 Janus B. Wisniewski and L.K. Avalon
|
|
|
|
*/
|
|
|
|
|
2011-06-09 06:20:53 +00:00
|
|
|
#ifndef __TALK__
|
|
|
|
#define __TALK__
|
|
|
|
|
2011-06-10 05:45:18 +00:00
|
|
|
#include "cge/vga13h.h"
|
2011-06-11 07:33:17 +00:00
|
|
|
//#include <dir.h>
|
2011-06-09 06:20:53 +00:00
|
|
|
|
2011-06-10 20:57:09 +00:00
|
|
|
namespace CGE {
|
2011-06-09 06:20:53 +00:00
|
|
|
|
|
|
|
#define TEXT_FG DARK // foreground color
|
|
|
|
#define TEXT_BG GRAY // background color
|
|
|
|
#define TEXT_HM (6&~1) // EVEN horizontal margins!
|
|
|
|
#define TEXT_VM 5 // vertical margins
|
|
|
|
#define TEXT_LS 2 // line spacing
|
|
|
|
#define TEXT_RD 3 // rounded corners
|
|
|
|
|
|
|
|
#define FONT_HIG 8
|
|
|
|
#define FONT_EXT ".CFT"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FONT
|
|
|
|
{
|
|
|
|
char Path[MAXPATH];
|
|
|
|
void Load (void);
|
|
|
|
public:
|
2011-06-10 17:02:13 +00:00
|
|
|
// static uint8 Wid[256];
|
|
|
|
// static uint16 Pos[256];
|
|
|
|
// static uint8 Map[256*8];
|
|
|
|
uint8 * Wid;
|
|
|
|
uint16 * Pos;
|
|
|
|
uint8 * Map;
|
2011-06-09 06:20:53 +00:00
|
|
|
FONT (const char * name);
|
|
|
|
~FONT (void);
|
2011-06-10 17:02:13 +00:00
|
|
|
uint16 Width (const char * text);
|
2011-06-09 06:20:53 +00:00
|
|
|
void Save (void);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum TBOX_STYLE { PURE, RECT, ROUND };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TALK : public SPRITE
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
TBOX_STYLE Mode;
|
|
|
|
BITMAP * TS[2];
|
2011-06-10 17:02:13 +00:00
|
|
|
BITMAP * Box(uint16 w, uint16 h);
|
2011-06-09 06:20:53 +00:00
|
|
|
public:
|
|
|
|
static FONT Font;
|
|
|
|
TALK (const char * tx, TBOX_STYLE mode = PURE);
|
|
|
|
TALK (void);
|
|
|
|
//~TALK (void);
|
|
|
|
virtual void Update (const char * tx);
|
|
|
|
virtual void Update (void) {}
|
|
|
|
void PutLine (int line, const char * text);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class INFO_LINE : public TALK
|
|
|
|
{
|
|
|
|
const char * OldTxt;
|
|
|
|
public:
|
2011-06-10 17:02:13 +00:00
|
|
|
INFO_LINE (uint16 wid);
|
2011-06-09 06:20:53 +00:00
|
|
|
void Update (const char * tx);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-10 20:57:09 +00:00
|
|
|
} // End of namespace CGE
|
2011-06-09 06:20:53 +00:00
|
|
|
|
|
|
|
#endif
|