112 lines
3.7 KiB
C++
112 lines
3.7 KiB
C++
// SuperTuxKart - a fun racing game with go-kart
|
|
// Copyright (C) 2016-2017 SuperTuxKart-Team
|
|
//
|
|
// 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 3
|
|
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#ifdef ANDROID
|
|
|
|
#include "config/user_config.hpp"
|
|
#include "graphics/irr_driver.hpp"
|
|
#include "utils/log.hpp"
|
|
|
|
#include "../../../lib/irrlicht/source/Irrlicht/CIrrDeviceAndroid.h"
|
|
|
|
extern int main(int argc, char *argv[]);
|
|
|
|
struct android_app* global_android_app;
|
|
|
|
void override_default_params()
|
|
{
|
|
// It has an effect only on the first run, when config file is created.
|
|
// So that we can still modify these params in STK options and user's
|
|
// choice will be then remembered.
|
|
|
|
// Set smaller texture size to avoid high RAM usage
|
|
UserConfigParams::m_max_texture_size = 256;
|
|
UserConfigParams::m_high_definition_textures = false;
|
|
|
|
// Disable advanced lighting by default to make the game playable
|
|
UserConfigParams::m_dynamic_lights = false;
|
|
|
|
// Enable multitouch device when touchscreen is available
|
|
int32_t touch = AConfiguration_getTouchscreen(global_android_app->config);
|
|
|
|
if (touch != ACONFIGURATION_TOUCHSCREEN_NOTOUCH)
|
|
{
|
|
UserConfigParams::m_multitouch_enabled = true;
|
|
}
|
|
|
|
// Set multitouch device scale depending on actual screen size
|
|
int32_t screen_size = AConfiguration_getScreenSize(global_android_app->config);
|
|
|
|
switch (screen_size)
|
|
{
|
|
case ACONFIGURATION_SCREENSIZE_SMALL:
|
|
case ACONFIGURATION_SCREENSIZE_NORMAL:
|
|
UserConfigParams::m_multitouch_scale = 1.3f;
|
|
break;
|
|
case ACONFIGURATION_SCREENSIZE_LARGE:
|
|
UserConfigParams::m_multitouch_scale = 1.2f;
|
|
break;
|
|
case ACONFIGURATION_SCREENSIZE_XLARGE:
|
|
UserConfigParams::m_multitouch_scale = 1.1f;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
// Enable screen keyboard
|
|
UserConfigParams::m_screen_keyboard = 1;
|
|
|
|
// Set bigger fonts and buttons
|
|
UserConfigParams::m_hidpi_enabled = true;
|
|
|
|
// It shouldn't matter, but STK is always run in fullscreen on android
|
|
UserConfigParams::m_fullscreen = true;
|
|
|
|
// Make sure that user can play every track even if there are installed
|
|
// only few tracks and it's impossible to finish overworld challenges
|
|
UserConfigParams::m_everything_unlocked = true;
|
|
|
|
// Create default user istead of showing login screen to make life easier
|
|
UserConfigParams::m_enforce_current_player = true;
|
|
}
|
|
|
|
void android_main(struct android_app* app)
|
|
{
|
|
Log::info("AndroidMain", "Loading application...");
|
|
|
|
global_android_app = app;
|
|
|
|
// Initialize global Android window state variables
|
|
CIrrDeviceAndroid::onCreate();
|
|
|
|
app_dummy();
|
|
override_default_params();
|
|
|
|
main(0, {});
|
|
|
|
Log::info("AndroidMain", "Closing STK...");
|
|
|
|
// TODO: Irrlicht device is properly waiting for destroy event, but
|
|
// some global variables are not initialized/cleared in functions and thus
|
|
// its state is remembered when the window is restored. We will use exit
|
|
// call to make sure that all variables are cleared until a proper fix will
|
|
// be done.
|
|
exit(0);
|
|
}
|
|
|
|
#endif
|