aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwhitertandrek2018-03-18 15:56:53 +0200
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit45458542da30b544f9ac3ba2adc9aeffac3ab93e (patch)
tree46fbe34991d3b2420a1f082559b4f605326d75cf
parentd6f0613adfa229133734a9373a0065e19454083a (diff)
downloadscummvm-rg350-45458542da30b544f9ac3ba2adc9aeffac3ab93e.tar.gz
scummvm-rg350-45458542da30b544f9ac3ba2adc9aeffac3ab93e.tar.bz2
scummvm-rg350-45458542da30b544f9ac3ba2adc9aeffac3ab93e.zip
PINK: Added Handler and HandlerStartPage
-rw-r--r--engines/pink/handlers/handler.cpp31
-rw-r--r--engines/pink/handlers/handler.h39
-rw-r--r--engines/pink/handlers/handler_start_page.cpp25
-rw-r--r--engines/pink/handlers/handler_start_page.h36
-rw-r--r--engines/pink/sequences/sequence.cpp1
5 files changed, 132 insertions, 0 deletions
diff --git a/engines/pink/handlers/handler.cpp b/engines/pink/handlers/handler.cpp
new file mode 100644
index 0000000000..e2d35394a7
--- /dev/null
+++ b/engines/pink/handlers/handler.cpp
@@ -0,0 +1,31 @@
+/* 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 "handler.h"
+
+namespace Pink {
+
+void Handler::deserialize(Archive &archive) {
+
+}
+
+} // End of namespace Pink
diff --git a/engines/pink/handlers/handler.h b/engines/pink/handlers/handler.h
new file mode 100644
index 0000000000..803c4f4a06
--- /dev/null
+++ b/engines/pink/handlers/handler.h
@@ -0,0 +1,39 @@
+/* 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 PINK_HANDLER_H
+#define PINK_HANDLER_H
+
+#include <engines/pink/object.h>
+
+namespace Pink {
+
+class Handler : public Object {
+public:
+ virtual void deserialize(Archive &archive);
+ //_conditions
+ //_sideEffects
+};
+
+} // End of namespace Pink
+
+#endif
diff --git a/engines/pink/handlers/handler_start_page.cpp b/engines/pink/handlers/handler_start_page.cpp
new file mode 100644
index 0000000000..58d8830ddc
--- /dev/null
+++ b/engines/pink/handlers/handler_start_page.cpp
@@ -0,0 +1,25 @@
+/* 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.
+ *
+ */
+
+namespace Pink {
+
+} // End of namespace Pink \ No newline at end of file
diff --git a/engines/pink/handlers/handler_start_page.h b/engines/pink/handlers/handler_start_page.h
new file mode 100644
index 0000000000..9e76d367d2
--- /dev/null
+++ b/engines/pink/handlers/handler_start_page.h
@@ -0,0 +1,36 @@
+/* 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 PINK_HANDLER_START_PAGE_H
+#define PINK_HANDLER_START_PAGE_H
+
+#include "handler.h"
+
+namespace Pink {
+
+class HandlerStartPage : public Handler {
+
+};
+
+} // End of namespace Pink
+
+#endif
diff --git a/engines/pink/sequences/sequence.cpp b/engines/pink/sequences/sequence.cpp
index fbee15ef5b..d3a6872a30 100644
--- a/engines/pink/sequences/sequence.cpp
+++ b/engines/pink/sequences/sequence.cpp
@@ -21,6 +21,7 @@
*/
#include "sequence.h"
+#include "sequencer.h"
#include "../archive.h"
namespace Pink {