aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/talk.h
blob: c84891f7a06f0faab771b1156ed5af66acc063a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* 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
 */

#ifndef		__TALK__
#define		__TALK__

#include	"cge/vga13h.h"
#include	<dir.h>



#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:
//  static byte Wid[256];
//  static word Pos[256];
//  static byte Map[256*8];
  byte * Wid;
  word * Pos;
  byte * Map;
  FONT (const char * name);
  ~FONT (void);
  word Width (const char * text);
  void Save (void);
};





enum	TBOX_STYLE	{ PURE, RECT, ROUND };



class TALK : public SPRITE
{
protected:
  TBOX_STYLE Mode;
  BITMAP * TS[2];
  BITMAP * Box(word w, word h);
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:
  INFO_LINE (word wid);
  void Update (const char * tx);
};




#endif