aboutsummaryrefslogtreecommitdiff
path: root/scumm/nut_renderer.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-12-25 13:04:01 +0000
committerPaweł Kołodziejski2002-12-25 13:04:01 +0000
commitfb47f2a24bfb74635af904fa7975b1f80420c41e (patch)
tree52c4c3b56a4f173cc07fc9f4ffdc1f4aca33ab2e /scumm/nut_renderer.h
parent0ef7d52448d972c13e203407f4f63c153f51f2d9 (diff)
downloadscummvm-rg350-fb47f2a24bfb74635af904fa7975b1f80420c41e.tar.gz
scummvm-rg350-fb47f2a24bfb74635af904fa7975b1f80420c41e.tar.bz2
scummvm-rg350-fb47f2a24bfb74635af904fa7975b1f80420c41e.zip
added nut renderer, there is bug with font width, fix later
svn-id: r6126
Diffstat (limited to 'scumm/nut_renderer.h')
-rw-r--r--scumm/nut_renderer.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/scumm/nut_renderer.h b/scumm/nut_renderer.h
new file mode 100644
index 0000000000..57fd7e5b4c
--- /dev/null
+++ b/scumm/nut_renderer.h
@@ -0,0 +1,53 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2001 Ludvig Strigeus
+ * Copyright (C) 2001/2002 The ScummVM project
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ */
+
+#ifndef NUT_RENDERER_H
+#define NUT_RENDERER_H
+
+#include "common/file.h"
+
+class NutRenderer {
+private:
+ int32 _offsets[256];
+ byte _tmpCodecBuffer[2000];
+ byte *_dataSrc;
+ byte *_dstPtr;
+ bool _initialized;
+ bool _loaded;
+ int32 _dstWidth, _dstHeight, _dstPitch;
+
+ void decodeCodec44(byte *dst, byte *src, uint32 length);
+
+public:
+ NutRenderer();
+ ~NutRenderer();
+
+ void bindDisplay(byte *dst, int32 width, int32 height, int32 pitch);
+ bool loadFont(char *filename, char *dir);
+ void drawChar(char c, int32 x, int32 y, byte color);
+ void drawString(char *string, int32 x, int32 y, byte color, int32 mode);
+ int32 getCharWidth(char c);
+ int32 getCharHeight(char c);
+ int32 getStringWidth(char *string);
+};
+
+
+#endif