aboutsummaryrefslogtreecommitdiff
path: root/engines/toon/subtitles.h
diff options
context:
space:
mode:
authorBLooperZ2019-08-01 00:21:07 +0300
committerEugene Sandulenko2019-11-18 02:02:14 +0100
commit83285746b0cbaa7223592fa008af22b31484e0d6 (patch)
tree098748cb88cfc67cd39982e0f4fabaee69ec03df /engines/toon/subtitles.h
parentfd7efe4fb6fd07b4c3831cbe0082027b9782f919 (diff)
downloadscummvm-rg350-83285746b0cbaa7223592fa008af22b31484e0d6.tar.gz
scummvm-rg350-83285746b0cbaa7223592fa008af22b31484e0d6.tar.bz2
scummvm-rg350-83285746b0cbaa7223592fa008af22b31484e0d6.zip
TOON: add support for cutscene subtitles
Diffstat (limited to 'engines/toon/subtitles.h')
-rw-r--r--engines/toon/subtitles.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/engines/toon/subtitles.h b/engines/toon/subtitles.h
new file mode 100644
index 0000000000..7eb7fe12f0
--- /dev/null
+++ b/engines/toon/subtitles.h
@@ -0,0 +1,59 @@
+/* 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.
+ *
+ */
+
+#ifndef TOON_SUBTITLES_H
+#define TOON_SUBTITLES_H
+
+#include "toon/toon.h"
+#include "graphics/surface.h"
+
+namespace Toon {
+
+typedef struct {
+ uint32 fstart;
+ uint32 fend;
+ uint32 foffset;
+} TimeWindow;
+
+class SubtitleRenderer {
+public:
+ SubtitleRenderer(ToonEngine *vm);
+ ~SubtitleRenderer();
+
+ bool load(const Common::String &video);
+ void render(const Graphics::Surface& frame, uint32 frameNumber, char color);
+protected:
+ ToonEngine *_vm;
+ Graphics::Surface* _subSurface;
+ bool _hasSubtitles;
+
+ char* _lines[384];
+ TimeWindow _tw[384];
+ uint8 *_fileData;
+ uint16 _index;
+ uint16 _last;
+ char* _currentLine;
+};
+
+} // End of namespace Toon
+
+#endif \ No newline at end of file