aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/pages
diff options
context:
space:
mode:
authorwhiterandrek2018-06-01 22:31:35 +0300
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit9f23b4238c0643e6e9fa5af52be2747219f0bfe0 (patch)
tree594285f1df4471d236e02f96a3cdec245f58f644 /engines/pink/objects/pages
parent11d2c1aa5232148d530713b93d95efff4d322ceb (diff)
downloadscummvm-rg350-9f23b4238c0643e6e9fa5af52be2747219f0bfe0.tar.gz
scummvm-rg350-9f23b4238c0643e6e9fa5af52be2747219f0bfe0.tar.bz2
scummvm-rg350-9f23b4238c0643e6e9fa5af52be2747219f0bfe0.zip
PINK: add Pokus World Book implementation
Diffstat (limited to 'engines/pink/objects/pages')
-rw-r--r--engines/pink/objects/pages/pda_page.cpp60
-rw-r--r--engines/pink/objects/pages/pda_page.h45
2 files changed, 105 insertions, 0 deletions
diff --git a/engines/pink/objects/pages/pda_page.cpp b/engines/pink/objects/pages/pda_page.cpp
new file mode 100644
index 0000000000..1b13c2afaf
--- /dev/null
+++ b/engines/pink/objects/pages/pda_page.cpp
@@ -0,0 +1,60 @@
+/* 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 "pink/pda_mgr.h"
+#include "pink/objects/actors/actor.h"
+#include "pink/objects/pages/pda_page.h"
+#include "pink/pink.h"
+
+namespace Pink {
+
+
+PDAPage PDAPage::create(const Common::String &pageName, PDAMgr &pdaMgr) {
+ PDAPage page(pageName, pdaMgr);
+ page._name = pageName;
+ page._resMgr.init(pdaMgr.getGame(), &page);
+ return page;
+}
+
+Array<Actor *> PDAPage::takeActors() {
+ Array<Actor *> actorsCopy = _actors;
+ _actors.clear();
+ return actorsCopy;
+}
+
+void PDAPage::init() {
+ for (uint i = 0; i < _actors.size(); ++i) {
+ if (_actors[i]->initPallete(_pdaMgr.getGame()->getDirector()))
+ break;
+ }
+
+ for (uint i = 0; i < _actors.size(); ++i) {
+ _actors[i]->init(0);
+ }
+}
+
+PDAPage::PDAPage(const Common::String &name, PDAMgr &pdaMgr)
+ : _pdaMgr(pdaMgr) {
+ _name = name;
+}
+
+} // End of namespace Pink
diff --git a/engines/pink/objects/pages/pda_page.h b/engines/pink/objects/pages/pda_page.h
new file mode 100644
index 0000000000..f6cf2a5cf0
--- /dev/null
+++ b/engines/pink/objects/pages/pda_page.h
@@ -0,0 +1,45 @@
+/* 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_PDA_PAGE_H
+#define PINK_PDA_PAGE_H
+
+#include "page.h"
+
+namespace Pink {
+
+class PDAMgr;
+
+class PDAPage : public Page {
+public:
+ static PDAPage create(const Common::String &pageName, PDAMgr &pdaMgr);
+
+ Array<Actor *> takeActors();
+ void init();
+private:
+ PDAPage(const Common::String &name, PDAMgr &pdaMgr);
+ PDAMgr &_pdaMgr;
+};
+
+} // End of namespace Pink
+
+#endif