aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/charset.h')
-rw-r--r--scumm/charset.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/scumm/charset.h b/scumm/charset.h
index baa4480649..72328c03a8 100644
--- a/scumm/charset.h
+++ b/scumm/charset.h
@@ -35,7 +35,6 @@ public:
int _top;
int _left, _startLeft;
int _right;
- int _nbChars;
protected:
byte _color;
@@ -98,18 +97,29 @@ public:
void printChar(int chr);
};
-class CharsetRendererOld256 : public CharsetRendererCommon {
+class CharsetRendererV3 : public CharsetRendererCommon {
protected:
+ int _nbChars;
+ byte *_widthTable;
+
int getCharWidth(byte chr);
public:
- CharsetRendererOld256(Scumm *vm) : CharsetRendererCommon(vm) {}
+ CharsetRendererV3(Scumm *vm) : CharsetRendererCommon(vm) {}
void printChar(int chr);
-
+ void setCurID(byte id);
void setColor(byte color);
};
+class CharsetRendererV2 : public CharsetRendererV3 {
+public:
+ CharsetRendererV2(Scumm *vm) : CharsetRendererV3(vm) {}
+
+ void setCurID(byte id);
+ int getFontHeight() { return 8; }
+};
+
class CharsetRendererNut : public CharsetRenderer {
protected:
int getCharWidth(byte chr);