aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/font.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-18 23:43:06 -0500
committerPaul Gilbert2014-02-18 23:43:06 -0500
commit530cbb4bc3406757ee3daeb3fc1972f79fd9199b (patch)
tree79b90fa862807e108b85e0ceac2cf7e14813b961 /engines/mads/font.cpp
parent0e46c809d10dcd8fd766d7adcb966785e7955f5b (diff)
downloadscummvm-rg350-530cbb4bc3406757ee3daeb3fc1972f79fd9199b.tar.gz
scummvm-rg350-530cbb4bc3406757ee3daeb3fc1972f79fd9199b.tar.bz2
scummvm-rg350-530cbb4bc3406757ee3daeb3fc1972f79fd9199b.zip
MADS: Adding in classes for fonts, game, user interfaec, and graphics
Diffstat (limited to 'engines/mads/font.cpp')
-rw-r--r--engines/mads/font.cpp283
1 files changed, 283 insertions, 0 deletions
diff --git a/engines/mads/font.cpp b/engines/mads/font.cpp
new file mode 100644
index 0000000000..b7400ed337
--- /dev/null
+++ b/engines/mads/font.cpp
@@ -0,0 +1,283 @@
+/* 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.
+ *
+ */
+
+#include "common/scummsys.h"
+#include "mads/mads.h"
+#include "mads/compression.h"
+#include "mads/font.h"
+#include "mads/msurface.h"
+
+namespace MADS {
+
+Font *Font::init(MADSEngine *vm) {
+ if (vm->getGameFeatures() & GF_MADS) {
+ return new FontMADS(vm);
+ } else {
+ return new FontM4(vm);
+ }
+}
+
+Font::Font(MADSEngine *vm) : _vm(vm) {
+ _sysFont = true;
+
+ _fontColors[0] = _vm->_palette->BLACK;
+ _fontColors[1] = _vm->_palette->WHITE;
+ _fontColors[2] = _vm->_palette->BLACK;
+ _fontColors[3] = _vm->_palette->DARK_GRAY;
+}
+
+Font::~Font() {
+ if (!_sysFont) {
+ delete[] _charWidths;
+ delete[] _charOffs;
+ delete[] _charData;
+ }
+}
+
+void Font::setColor(uint8 color) {
+ if (_sysFont)
+ _fontColors[1] = color;
+ else
+ _fontColors[3] = color;
+}
+
+void Font::setColors(uint8 alt1, uint8 alt2, uint8 foreground) {
+ if (_sysFont)
+ _fontColors[1] = foreground;
+ else {
+ _fontColors[1] = alt1;
+ _fontColors[2] = alt2;
+ _fontColors[3] = foreground;
+ }
+}
+
+int Font::write(MSurface *surface, const Common::String &msg, const Common::Point &pt, int width, int spaceWidth, uint8 colors[]) {
+
+ /*TODO
+ if (custom_ascii_converter) { // if there is a function to convert the extended ASCII characters
+ custom_ascii_converter(out_string); // call it with the string
+ }
+ */
+
+ if (width > 0)
+ width = MIN(surface->width(), pt.x + width);
+ else
+ width = surface->width();
+
+ int x = pt.x + 1;
+ int y = pt.y + 1;
+
+ int skipY = 0;
+ if (y < 0) {
+ skipY = -y;
+ y = 0;
+ }
+
+ int height = MAX(0, _maxHeight - skipY);
+ if (height == 0)
+ return x;
+
+ int bottom = y + height - 1;
+ if (bottom > surface->height() - 1) {
+ height -= MIN(height, bottom - (surface->height() - 1));
+ }
+
+ if (height <= 0)
+ return x;
+
+ byte *destPtr = surface->getBasePtr(x, y);
+ uint8 *oldDestPtr = destPtr;
+
+ int xPos = x;
+
+ const char *text = msg.c_str();
+ while (*text) {
+ char theChar = (*text++) & 0x7F;
+ int charWidth = _charWidths[theChar];
+
+ if (charWidth > 0) {
+
+ if (xPos + charWidth >= width)
+ return xPos;
+
+ uint8 *charData = &_charData[_charOffs[theChar]];
+ int bpp = getBpp(charWidth);
+
+ if (skipY != 0)
+ charData += bpp * skipY;
+
+ for (int i = 0; i < height; i++) {
+ for (int j = 0; j < bpp; j++) {
+ if (*charData & 0xc0)
+ *destPtr = colors[(*charData & 0xc0) >> 6];
+ destPtr++;
+ if (*charData & 0x30)
+ *destPtr = colors[(*charData & 0x30) >> 4];
+ destPtr++;
+ if (*charData & 0x0C)
+ *destPtr = colors[(*charData & 0x0C) >> 2];
+ destPtr++;
+ if (*charData & 0x03)
+ *destPtr = colors[*charData & 0x03];
+ destPtr++;
+ charData++;
+ }
+
+ destPtr += surface->width() - bpp * 4;
+
+ }
+
+ destPtr = oldDestPtr + charWidth + spaceWidth;
+ oldDestPtr = destPtr;
+
+ }
+
+ xPos += charWidth + spaceWidth;
+
+ }
+
+ surface->freeData();
+ return xPos;
+
+}
+
+int Font::getWidth(const Common::String &msg, int spaceWidth) {
+ /*
+ if (custom_ascii_converter) { // if there is a function to convert the extended ASCII characters
+ custom_ascii_converter(out_string); // call it with the string
+ }
+ */
+ int width = 0;
+ const char *text = msg.c_str();
+
+ while (*text)
+ width += _charWidths[*text++ & 0x7F] + spaceWidth;
+ return width;
+}
+
+/*------------------------------------------------------------------------*/
+
+void FontMADS::setFont(const Common::String &filename) {
+ if (!_filename.empty() && (filename == _filename))
+ // Already using specified font, so don't bother reloading
+ return;
+
+ _sysFont = false;
+ _filename = filename;
+
+ MadsPack fontData(filename, _vm);
+ Common::SeekableReadStream *fontFile = fontData.getItemStream(0);
+
+ _maxHeight = fontFile->readByte();
+ _maxWidth = fontFile->readByte();
+
+ _charWidths = new uint8[128];
+ // Char data is shifted by 1
+ _charWidths[0] = 0;
+ fontFile->read(_charWidths + 1, 127);
+ fontFile->readByte(); // remainder
+
+ _charOffs = new uint16[128];
+
+ uint startOffs = 2 + 128 + 256;
+ uint fontSize = fontFile->size() - startOffs;
+
+ // Char data is shifted by 1
+ _charOffs[0] = 0;
+ for (int i = 1; i < 128; i++)
+ _charOffs[i] = fontFile->readUint16LE() - startOffs;
+ fontFile->readUint16LE(); // remainder
+
+ _charData = new uint8[fontSize];
+ fontFile->read(_charData, fontSize);
+
+ delete fontFile;
+}
+
+int FontMADS::getBpp(int charWidth) {
+ if (charWidth > 12)
+ return 4;
+ else if (charWidth > 8)
+ return 3;
+ else if (charWidth > 4)
+ return 2;
+ else
+ return 1;
+}
+
+/*------------------------------------------------------------------------*/
+
+void FontM4::setFont(const Common::String &filename) {
+ if (!_filename.empty() && (filename == _filename))
+ // Already using specified font, so don't bother reloading
+ return;
+
+ _sysFont = false;
+ _filename = filename;
+
+ Common::SeekableReadStream *fontFile = _vm->_resources->openFile(filename);
+
+ if (fontFile->readUint32LE() != MKTAG('F', 'O', 'N', 'T')) {
+ warning("Font: FONT tag expected");
+ return;
+ }
+
+ _maxHeight = fontFile->readByte();
+ _maxWidth = fontFile->readByte();
+ uint fontSize = fontFile->readUint32LE();
+
+ //printf("Font::Font: _maxWidth = %d, _maxHeight = %d, fontSize = %d\n", _maxWidth, _maxHeight, fontSize);
+
+ if (fontFile->readUint32LE() != MKTAG('W', 'I', 'D', 'T')) {
+ warning("Font: WIDT tag expected");
+ return;
+ }
+
+ _charWidths = new uint8[256];
+ fontFile->read(_charWidths, 256);
+
+ if (fontFile->readUint32LE() != MKTAG('O', 'F', 'F', 'S')) {
+ warning("Font: OFFS tag expected\n");
+ return;
+ }
+
+ _charOffs = new uint16[256];
+
+ for (int i = 0; i < 256; i++)
+ _charOffs[i] = fontFile->readUint16LE();
+
+ if (fontFile->readUint32LE() != MKTAG('P', 'I', 'X', 'S')) {
+ warning("Font: PIXS tag expected\n");
+ return;
+ }
+
+ _charData = new uint8[fontSize];
+ fontFile->read(_charData, fontSize);
+
+ _vm->_resources->toss(filename);
+}
+
+int FontM4::getBpp(int charWidth) {
+ return charWidth / 4 + 1;
+}
+
+} // End of namespace MADS