diff options
Diffstat (limited to 'backends/platform/sdl/macosx')
| -rw-r--r-- | backends/platform/sdl/macosx/macosx-main.cpp | 54 | ||||
| -rw-r--r-- | backends/platform/sdl/macosx/macosx.cpp | 79 | ||||
| -rw-r--r-- | backends/platform/sdl/macosx/macosx.h | 41 | 
3 files changed, 174 insertions, 0 deletions
| diff --git a/backends/platform/sdl/macosx/macosx-main.cpp b/backends/platform/sdl/macosx/macosx-main.cpp new file mode 100644 index 0000000000..023860b19f --- /dev/null +++ b/backends/platform/sdl/macosx/macosx-main.cpp @@ -0,0 +1,54 @@ +/* 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$ + * + */ + +#ifdef MACOSX + +#include "backends/platform/sdl/macosx/macosx.h" +#include "backends/plugins/sdl/sdl-provider.h" +#include "base/main.h" + +int main(int argc, char *argv[]) { + +	// Create our OSystem instance +	g_system = new OSystem_MacOSX(); +	assert(g_system); + +	// Pre initialize the backend +	((OSystem_MacOSX *)g_system)->init(); + +#ifdef DYNAMIC_MODULES +	PluginManager::instance().addPluginProvider(new SDLPluginProvider()); +#endif + +	// Invoke the actual ScummVM main entry point: +	int res = scummvm_main(argc, argv); + +	// Free OSystem +	delete (OSystem_MacOSX *)g_system; + +	return res; +} + +#endif diff --git a/backends/platform/sdl/macosx/macosx.cpp b/backends/platform/sdl/macosx/macosx.cpp new file mode 100644 index 0000000000..814badbca4 --- /dev/null +++ b/backends/platform/sdl/macosx/macosx.cpp @@ -0,0 +1,79 @@ +/* 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$ + * + */ + +#ifdef MACOSX + +// Disable symbol overrides so that we can use system headers. +#define FORBIDDEN_SYMBOL_ALLOW_ALL + +#include "backends/platform/sdl/macosx/macosx.h" +#include "backends/mixer/doublebuffersdl/doublebuffersdl-mixer.h" + +#include "common/archive.h" +#include "common/fs.h" + +#include "CoreFoundation/CoreFoundation.h" + +OSystem_MacOSX::OSystem_MacOSX() +	: +	OSystem_POSIX("Library/Preferences/ScummVM Preferences") { +} + +void OSystem_MacOSX::initBackend() { +	// Create the mixer manager +	if (_mixer == 0) { +		_mixerManager = new DoubleBufferSDLMixerManager(); + +		// Setup and start mixer +		_mixerManager->init(); +	} + +	// Invoke parent implementation of this method +	OSystem_POSIX::initBackend(); +} + +void OSystem_MacOSX::addSysArchivesToSearchSet(Common::SearchSet &s, int priority) { +	// Invoke parent implementation of this method +	OSystem_POSIX::addSysArchivesToSearchSet(s, priority); + +	// Get URL of the Resource directory of the .app bundle +	CFURLRef fileUrl = CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle()); +	if (fileUrl) { +		// Try to convert the URL to an absolute path +		UInt8 buf[MAXPATHLEN]; +		if (CFURLGetFileSystemRepresentation(fileUrl, true, buf, sizeof(buf))) { +			// Success: Add it to the search path +			Common::String bundlePath((const char *)buf); +			s.add("__OSX_BUNDLE__", new Common::FSDirectory(bundlePath), priority); +		} +		CFRelease(fileUrl); +	} +} + +void OSystem_MacOSX::setupIcon() { +	// Don't set icon on OS X, as we use a nicer external icon there.  +} + +#endif diff --git a/backends/platform/sdl/macosx/macosx.h b/backends/platform/sdl/macosx/macosx.h new file mode 100644 index 0000000000..3c583a0ac0 --- /dev/null +++ b/backends/platform/sdl/macosx/macosx.h @@ -0,0 +1,41 @@ +/* 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$ + * + */ + +#ifndef PLATFORM_SDL_MACOSX_H +#define PLATFORM_SDL_MACOSX_H + +#include "backends/platform/sdl/posix/posix.h" + +class OSystem_MacOSX : public OSystem_POSIX { +public: +	OSystem_MacOSX(); +	virtual ~OSystem_MacOSX() {} + +	virtual void initBackend(); +	virtual void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0); +	virtual void setupIcon(); +}; + +#endif | 
