aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/switch/switch.cpp
diff options
context:
space:
mode:
authorCpasjuste2018-09-20 16:33:08 +0200
committerFilippos Karapetis2019-05-12 11:59:44 +0300
commit488bbb267a4a96db51794d424131817a8afc50c6 (patch)
tree7615c92e6297ca670333705047cab61735a1d7c0 /backends/platform/sdl/switch/switch.cpp
parent29028731c65e299aa264231b7caa4d6e853f0b85 (diff)
downloadscummvm-rg350-488bbb267a4a96db51794d424131817a8afc50c6.tar.gz
scummvm-rg350-488bbb267a4a96db51794d424131817a8afc50c6.tar.bz2
scummvm-rg350-488bbb267a4a96db51794d424131817a8afc50c6.zip
SWITCH: add nintendo switch support
Diffstat (limited to 'backends/platform/sdl/switch/switch.cpp')
-rw-r--r--backends/platform/sdl/switch/switch.cpp111
1 files changed, 111 insertions, 0 deletions
diff --git a/backends/platform/sdl/switch/switch.cpp b/backends/platform/sdl/switch/switch.cpp
new file mode 100644
index 0000000000..7ce3372d8d
--- /dev/null
+++ b/backends/platform/sdl/switch/switch.cpp
@@ -0,0 +1,111 @@
+/* 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.
+ *
+ */
+
+#define FORBIDDEN_SYMBOL_EXCEPTION_printf
+#define FORBIDDEN_SYMBOL_EXCEPTION_unistd_h
+
+#include <sys/stat.h>
+#include "common/scummsys.h"
+#include "common/config-manager.h"
+#include "backends/platform/sdl/switch/switch.h"
+#include "backends/events/switchsdl/switchsdl-events.h"
+#include "backends/saves/posix/posix-saves.h"
+#include "backends/fs/posix/posix-fs-factory.h"
+#include "backends/fs/posix/posix-fs.h"
+
+OSystem_Switch::OSystem_Switch(Common::String baseConfigName)
+ : _baseConfigName(baseConfigName) {
+}
+
+void OSystem_Switch::init() {
+
+ // Initialze File System Factory
+ _fsFactory = new POSIXFilesystemFactory();
+
+ // Invoke parent implementation of this method
+ OSystem_SDL::init();
+}
+
+void OSystem_Switch::initBackend() {
+
+ ConfMan.registerDefault("joystick_num", 0);
+ ConfMan.registerDefault("fullscreen", true);
+ ConfMan.registerDefault("aspect_ratio", false);
+ ConfMan.registerDefault("gfx_mode", "2x");
+ ConfMan.registerDefault("output_rate", 48000);
+ ConfMan.registerDefault("touchpad_mouse_mode", true);
+
+ if (!ConfMan.hasKey("joystick_num")) {
+ ConfMan.setInt("joystick_num", 0);
+ }
+ if (!ConfMan.hasKey("fullscreen")) {
+ ConfMan.setBool("fullscreen", true);
+ }
+ if (!ConfMan.hasKey("aspect_ratio")) {
+ ConfMan.setBool("aspect_ratio", false);
+ }
+ if (!ConfMan.hasKey("gfx_mode")) {
+ ConfMan.set("gfx_mode", "2x");
+ }
+ if (!ConfMan.hasKey("output_rate")) {
+ ConfMan.setInt("output_rate", 48000);
+ }
+ if (!ConfMan.hasKey("touchpad_mouse_mode")) {
+ ConfMan.setBool("touchpad_mouse_mode", true);
+ }
+
+ // Create the savefile manager
+ if (_savefileManager == 0) {
+ _savefileManager = new POSIXSaveFileManager();
+ }
+
+ // Event source
+ if (_eventSource == 0) {
+ _eventSource = new SwitchEventSource();
+ }
+
+ // Invoke parent implementation of this method
+ OSystem_SDL::initBackend();
+}
+
+bool OSystem_Switch::hasFeature(Feature f) {
+
+ if (f == kFeatureDisplayLogFile)
+ return false;
+ if (f == kFeatureOpenUrl)
+ return false;
+
+ return OSystem_SDL::hasFeature(f);
+}
+
+void OSystem_Switch::logMessage(LogMessageType::Type type, const char *message) {
+ printf("%s\n", message);
+}
+
+Common::String OSystem_Switch::getDefaultConfigFileName() {
+ return _baseConfigName;
+}
+
+Common::WriteStream *OSystem_Switch::createLogFile() {
+ Common::FSNode file("scummvm.log");
+ return file.createWriteStream();
+}