/***************************************************************************** * Copyright (c) 2014-2018 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #ifdef __ANDROID__ # include "../core/Guard.hpp" # include "Platform2.h" namespace Platform { std::string GetFolderPath(SPECIAL_FOLDER folder) { // Android builds currently only read from /sdcard/openrct2* switch (folder) { case SPECIAL_FOLDER::USER_CACHE: case SPECIAL_FOLDER::USER_CONFIG: case SPECIAL_FOLDER::USER_DATA: case SPECIAL_FOLDER::USER_HOME: return "/sdcard"; default: return std::string(); } } std::string GetDocsPath() { return std::string(); } std::string GetInstallPath() { return "/sdcard/openrct2"; } std::string GetCurrentExecutablePath() { Guard::Assert(false, "GetCurrentExecutablePath() not implemented for Android."); return std::string(); } } // namespace Platform #endif