aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/resource_mgr.h
diff options
context:
space:
mode:
authorwhitertandrek2018-03-17 17:36:18 +0200
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit5d1c4af5f6b1f197eb4c3af7dbc05b591047406d (patch)
tree9e30e98fc569aaf17ce97259ef7bf2255a07927a /engines/pink/resource_mgr.h
parentd058e5dfe6b146373ce89c5710b6e723de687da5 (diff)
downloadscummvm-rg350-5d1c4af5f6b1f197eb4c3af7dbc05b591047406d.tar.gz
scummvm-rg350-5d1c4af5f6b1f197eb4c3af7dbc05b591047406d.tar.bz2
scummvm-rg350-5d1c4af5f6b1f197eb4c3af7dbc05b591047406d.zip
PINK: Implemented MFC archive, some pink objects and their initialization
Thanks fullpipe engine developer for MFC archive
Diffstat (limited to 'engines/pink/resource_mgr.h')
-rw-r--r--engines/pink/resource_mgr.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/engines/pink/resource_mgr.h b/engines/pink/resource_mgr.h
new file mode 100644
index 0000000000..7672e84bb0
--- /dev/null
+++ b/engines/pink/resource_mgr.h
@@ -0,0 +1,57 @@
+/* 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 <common/scummsys.h>
+
+#ifndef PINK_RESOURCE_MGR_H
+#define PINK_RESOURCE_MGR_H
+
+namespace Pink {
+
+class GamePage;
+class PinkEngine;
+class OrbFile;
+class BroFile;
+
+struct ResourceDescription;
+
+class ResourceMgr {
+public:
+ ResourceMgr();
+ ~ResourceMgr();
+
+ void init(PinkEngine *game, GamePage *page);
+ //compiler must do RVO
+ //Common::String loadText(Common::String &name);
+ //Sound loadSound(Common::String &name);
+ // loadCEL();
+
+private:
+ OrbFile *_orb;
+ BroFile *_bro;
+ ResourceDescription *_resDescTable;
+ uint32 _resCount;
+};
+
+} // End of namespace Pink
+
+#endif