aboutsummaryrefslogtreecommitdiff
path: root/engines/access/bubble_box.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-08-17 11:14:30 -0400
committerPaul Gilbert2014-08-17 11:14:30 -0400
commit404c7cd5d33e81c7724cb78dfce5701b26b4659b (patch)
tree8a12ed71a663b1ddf224d9cacdd9bbac6fa9c611 /engines/access/bubble_box.h
parent3e61eb9cc3f233fabf34f54069a1a1209e257008 (diff)
downloadscummvm-rg350-404c7cd5d33e81c7724cb78dfce5701b26b4659b.tar.gz
scummvm-rg350-404c7cd5d33e81c7724cb78dfce5701b26b4659b.tar.bz2
scummvm-rg350-404c7cd5d33e81c7724cb78dfce5701b26b4659b.zip
ACCESS: Split the bubble box code from Room into it's own file
Diffstat (limited to 'engines/access/bubble_box.h')
-rw-r--r--engines/access/bubble_box.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/engines/access/bubble_box.h b/engines/access/bubble_box.h
new file mode 100644
index 0000000000..e02fa7c572
--- /dev/null
+++ b/engines/access/bubble_box.h
@@ -0,0 +1,75 @@
+/* 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 ACCESS_BUBBLE_BOX_H
+#define ACCESS_BUBBLE_BOX_H
+
+#include "common/scummsys.h"
+#include "common/array.h"
+#include "common/rect.h"
+#include "common/stream.h"
+#include "common/types.h"
+#include "graphics/surface.h"
+#include "access/data.h"
+
+namespace Access {
+
+class AccessEngine;
+
+class Box: public Manager {
+public:
+ int _edgeSize;
+ Common::Rect _bounds;
+public:
+ Box(AccessEngine *vm);
+
+ void doBox(int item, int box);
+};
+
+class BubbleBox: public Box {
+public:
+ Common::String _bubbleTitle;
+ const char *_bubblePtr;
+ int _maxChars;
+ Common::Array<Common::Rect> _bubbles;
+public:
+ BubbleBox(AccessEngine *vm);
+
+ void load(Common::SeekableReadStream *stream);
+
+ void clearBubbles();
+
+ void placeBubble();
+ void placeBubble1();
+
+ void calcBubble();
+
+ void printBubble();
+
+ void drawBubble(int index);
+
+
+};
+
+} // End of namespace Access
+
+#endif /* ACCESS_BUBBLE_BOX_H */