aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins/gp2xwiz
diff options
context:
space:
mode:
authorTony Puccinelli2010-06-26 02:23:10 +0000
committerTony Puccinelli2010-06-26 02:23:10 +0000
commit32f2ef2a1337047643ff999d83a3b8e4cfa85e1a (patch)
tree16a28e4c8e0486a896562bddd9a48d69d221df4a /backends/plugins/gp2xwiz
parent741940fd385db42fd6047ee12f17ee152fd6b748 (diff)
downloadscummvm-rg350-32f2ef2a1337047643ff999d83a3b8e4cfa85e1a.tar.gz
scummvm-rg350-32f2ef2a1337047643ff999d83a3b8e4cfa85e1a.tar.bz2
scummvm-rg350-32f2ef2a1337047643ff999d83a3b8e4cfa85e1a.zip
added gp2xwiz plugin provider code
svn-id: r50299
Diffstat (limited to 'backends/plugins/gp2xwiz')
-rw-r--r--backends/plugins/gp2xwiz/gp2xwiz-provider.cpp108
1 files changed, 108 insertions, 0 deletions
diff --git a/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp b/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp
new file mode 100644
index 0000000000..2219f4275b
--- /dev/null
+++ b/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp
@@ -0,0 +1,108 @@
+/* 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.
+ *
+ * $URL$
+ * $Id$
+ *
+ */
+
+#if defined(DYNAMIC_MODULES) && defined(GP2XWIZ)
+
+#include "backends/plugins/gp2xwiz/gp2xwiz-provider.h"
+#include "backends/plugins/dynamic-plugin.h"
+#include "common/fs.h"
+
+#include "backends/platform/gp2xwiz/gp2xwiz-loader.h"
+
+
+class GP2XWIZPlugin : public DynamicPlugin {
+protected:
+ void *_dlHandle;
+ Common::String _filename;
+
+ virtual VoidFunc findSymbol(const char *symbol) {
+ void *func = dlsym(_dlHandle, symbol);
+ if (!func)
+ warning("Failed loading symbol '%s' from plugin '%s' (%s)", symbol, _filename.c_str(), dlerror());
+
+ // FIXME HACK: This is a HACK to circumvent a clash between the ISO C++
+ // standard and POSIX: ISO C++ disallows casting between function pointers
+ // and data pointers, but dlsym always returns a void pointer. For details,
+ // see e.g. <http://www.trilithium.com/johan/2004/12/problem-with-dlsym/>.
+ assert(sizeof(VoidFunc) == sizeof(func));
+ VoidFunc tmp;
+ memcpy(&tmp, &func, sizeof(VoidFunc));
+ return tmp;
+ }
+
+public:
+ GP2XWIZPlugin(const Common::String &filename)
+ : _dlHandle(0), _filename(filename) {}
+
+ ~GP2XWIZPlugin() {
+ if (_dlHandle) unloadPlugin();
+ }
+
+ bool loadPlugin() {
+ assert(!_dlHandle);
+ _dlHandle = dlopen(_filename.c_str(), RTLD_LAZY);
+
+ if (!_dlHandle) {
+ warning("Failed loading plugin '%s' (%s)", _filename.c_str(), dlerror());
+ return false;
+ }
+
+ bool ret = DynamicPlugin::loadPlugin();
+
+ if (ret)
+ dlforgetsyms(_dlHandle);
+
+ return ret;
+ }
+
+ void unloadPlugin() {
+ DynamicPlugin::unloadPlugin();
+ if (_dlHandle) {
+ if (dlclose(_dlHandle) != 0)
+ warning("Failed unloading plugin '%s' (%s)", _filename.c_str(), dlerror());
+ _dlHandle = 0;
+ }
+ }
+};
+
+
+Plugin* GP2XWIZPluginProvider::createPlugin(const Common::FSNode &node) const {
+ return new GP2XWIZPlugin(node.getPath());
+}
+
+bool GP2XWIZPluginProvider::isPluginFilename(const Common::FSNode &node) const {
+ // Check the plugin suffix
+ Common::String filename = node.getName();
+ printf("Testing name %s", filename.c_str());
+ if (!filename.hasSuffix(".PLG") && !filename.hasSuffix(".plg")) {
+ printf(" fail.\n");
+ return false;
+ }
+
+ printf(" success!\n");
+ return true;
+}
+
+#endif // defined(DYNAMIC_MODULES) && defined(GP2XWIZ)