You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#lockdown Nick.Penwarden #rb none ============================ MAJOR FEATURES & CHANGES ============================ Change 3805828 by Gil.Gribb UE4 - Fixed a bug in the lock free stalling task queue and adjusted a comment. The code is not current used, so this is not actually change the way the code works. Change 3806784 by Ben.Marsh UAT: Remove code to compile UBT when using UE4Build. It should already be compiled as a dependency of UAT. Change 3807549 by Graeme.Thornton Add a cook timer around VerifyCanCookPackage. A licensee reports this taking a lot of time so it'll be good to account for it. Change 3807727 by Graeme.Thornton Unhide the text asset format experimental editor option Change 3807746 by Josh.Engebretson Remove WER from iOS platform Change 3807928 by Robert.Manuszewski When async loading, GC Clusters will be created after packages have been processed to avoid situations where some of the objects that are being added to a cluster haven't been fully loaded yet Change 3808221 by Steve.Robb GitHub #4307 - Made GetModulePtr() thread safe by not using GetModule() ^ I'm not convinced by how much thread-safer this is really, but it's tidier anyway. Change 3809233 by Graeme.Thornton TBA: Misc changes to text asset commandlet - Rename mode to "loadsave" - Add -outputFormat option which can be assigned "text" or "binary" - When saving binary, use a differentiated filename so that source assets aren't overwritten Change 3809518 by Ben.Marsh Remove the outdated UnrealSync automation script. Change 3809643 by Steve.Robb GitHub #4277 : fix bug; FMath::FormatIntToHumanReadable 3rd comma and negative value #jira UE-53037 Change 3809862 by Steve.Robb GitHub #3342 : [FRotator.h] Fix to DecompressAxisFromByte to be more efficient and reflect its intent accurately #jira UE-42593 Change 3811190 by Graeme.Thornton Add support for writing specific log channels to their own files Change 3811197 by Graeme.Thornton Minor updates to output formatting and timing for the text asset commandlet Change 3811257 by Robert.Manuszewski Cluster creation will now be time-sliced Change 3811565 by Steve.Robb Define out non-monolithic module functions. Change 3812561 by Steve.Robb GitHub #3886 : Enable Brace-Initialization for Declaring Variables Incorrect semi-colon search removed after discussion with author. Test added. #jira UE-48242 Change 3812864 by Steve.Robb Removal of some unproven code which was supposed to fix hot reloading BP class functions in plugins. See: https://udn.unrealengine.com/questions/376978/aitask-blueprint-nodes-disappear-when-their-module.html #jira UE-53089 Change 3820358 by Ben.Marsh PR #4358: Incredibuild use ShowAgent by default (Contributed by projectgheist) Change 3822594 by Ben.Marsh UAT: Improvements to log file handling. - Always create log files in the final location, rather than writing to a temp directory and copying in later. - Now supports -Verbose and -VeryVerbose for increasing log verbosity, rather than -Verbose=XXX. - Keep a backlog of log output before the log system is initialized, and flush it to the log file once it is. - Allow buildmachines to specify the uebp_FinalLogFolder environment variable, which is used to form paths for display. When build machines copy log files elsewhere after UAT finishes (eg. a network share), this allows error messages to display the right location. Change 3823695 by Ben.Marsh UGS: Fix issue where precompiled binaries would not be shown as available for a change until scrolling the last submitted code change into the buffer (other symptoms, like de-focussing the main window would cause it to go back to an unavailable state, since the changes buffer was shrunk). Now always queries changes up to the last change for which zipped binaries are available. Change 3823845 by Ben.Marsh UBT: Exclude C# projects for unsupported platforms when generating project files. Change 3824180 by Ben.Marsh UGS: Add an option to show changes by build machines, and move the "only show reviewed" option in there too (Options > Show Changes). #jira Change 3825777 by Steve.Robb Fix to return value of StringToBytes. Change 3825810 by Ben.Marsh UBT: Reduce length of include paths for MSVC toolchain. Change 3825822 by Robert.Manuszewski Optimized PIE lazy pointer fixup. Should be up to 8x faster now. Change 3826734 by Ben.Marsh Remove code to disable TextureFormatAndroid on Linux. It seems to be an editor dependency. Change 3827730 by Steve.Robb Try to avoid decltype(auto) if it's not supported. See: https://udn.unrealengine.com/questions/395644/build-417-with-c11-on-linux-ttuple-errors.html Change 3827745 by Steve.Robb Initializer list support for TMap. Change 3827770 by Steve.Robb GitHub #4399 : Added a CONSTEXPR qualifiers to FVariant::GetType() #jira UE-53813 Change 3829189 by Ben.Marsh UBT: Now always writes a minimal log file. By default, just contains the regular console output and any reasons why actions are outdated and needed to be executed. UAT directs child UBT instances to output logs into its own log folder, so that build machines can save them off. Change 3830444 by Steve.Robb BuildVersion and ModuleManifest moved to Core, and parsing of these files reimplemented to avoid a JSON library. This should be revisited when Core has its own JSON library. Change 3830718 by Ben.Marsh Fix incorrect group name being returned by FStatNameAndInfo::GetGroupName() for stat groups. The editor populates the viewport stats list by calling this for every registered stat and stat group (via FLevelViewportCommands::HandleNewStatGroup). The menu entry attempts to show the stat name with STAT_XXX stripped from the start as the menu item label, with the free-form text description as a tooltip. For stat groups, the it would previously just return the stat group name as "Groups" (due to the raw naming convention of "//Groups//STATGROUP_Foo//..."). Since this didn't match the expected naming convention in FLevelViewportCommands::HandleNewStat (ie. STAT_XXX or STATGROUP_XXX), it would fail to add it. When the first actual stat belonging to that group is added, it would add a menu entry for the group based on that, but the stat description no longer makes sense as a tooltip for the group. As a result, all the editor tooltips were junk. #jira UE-53845 Change 3831064 by Ben.Marsh Fix log file contention when spawning UBT recursively. Change 3832654 by Ben.Marsh UGS: Fix error panel not being selected when opened, and weird alignment/color issues on it. Change 3832680 by Ben.Marsh UGS: Fix failing to detect workspace if synced to a different stream. Seems to be a regression caused by recent P4D upgrade. Change 3832695 by Ben.Marsh UGS: Invert the options in the 'Show Changes' submenu for simplicity. Change 3833528 by Ben.Marsh UAT: Script to rewrite source files with public include paths relative to the 'Public' folder. Usage is: RebasePublicIncludePaths -UpdateDir=<Dir> [-Project=<Dir>] [-Write]. Change 3833543 by Ben.Marsh UBT: Allow targets to opt-out of having public include paths added for every dependent module. This reduces the command line length when building a target, which has recently become a problem with larger games (due to Microsoft's compiler embedding the command line into each object file, with a maximum length of 64kb). All engine modules are compiled with this enabled; games may opt into it by setting bLegacyPublicIncludePaths = false; from their .target.cs, as may individual modules. Change 3834354 by Robert.Manuszewski Archetype pointer will now be cached to avoid locking the object tables when acquiring its info. It should also be faster this way regardless of any locks. #jira UE-52035 Change 3834400 by Robert.Manuszewski Fixing crash on exit caused by cached archetypes not being cleaned up before static exit cleanup. #jira UE-52035 Change 3834947 by Steve.Robb USE_FORMAT_STRING_TYPE_CHECKING removed from FMsg::Logf and FMsg::Logf_Internal. Change 3835004 by Ben.Marsh Fix code that relies on dubious behavior of requiring referenced "include path only" modules having their _API macros set to be empty, even if the module is actually implemented in a separate DLL. Change 3835340 by Ben.Marsh Fix errors making installed build from directories with spaces in the name. Change3835972by Ben.Marsh UBT: Improved diagnostic message for targets which don't need a version file. Change 3836019 by Ben.Marsh UBT: Fix warnings caused by defining linkage macros for third party libraries. Change 3836269 by Ben.Marsh Fix message box larger than the screen height being created when a large number of modules are incompatible on startup. Change 3836543 by Ben.Marsh Enable SoundMod plugin on Linux, since it's already supported through the editor. Change 3836546 by Ben.Marsh PR #4412: fix type mismatch (Contributed by nakapon) Change 3836805 by Ben.Marsh Fix commandlet to compile marketplace plugins. Change 3836829 by Ben.Marsh UBT: Fix ability to precompile plugins from installed engine builds. Change 3837036 by Ben.Marsh UBT: Write the previous and new contents of intermediate files to the log if they change. Makes it easier to debug unexpected rebuilds. Change 3837037 by Ben.Marsh UBT: Fix engine modules having inconsistent definitions depending on whether modules are only referenced for their include paths vs being linked into a binary (due to different _API macro). Change3837040by Ben.Marsh UBT: Remove code that initializes members in ModuleRules and TargetRules objects before the constructor is run. This is no longer necessary, now that the backwards-compatible default constructors have been removed. Change 3837247 by Ben.Marsh UBT: Remove UELinkerFixups module, now that plugins and precompiled modules do not require hacks to force initialization (since they're linked in as object files). Encryption and signing keys are now set via macros expanded from the IMPLEMENT_PRIMARY_GAME_MODULE macro, via project-specific macros added in the TargetRules constructor. Change 3837262 by Ben.Marsh UBT: Set whether a module is an engine module or not via a default value for the rules assembly. All non-program engine and enterprise modules are created with this flag set to true; program targets and modules are now created from a different assembly that sets it to false. This removes hacks from UEBuildModule needed to adjust behavior for different module types based on the directory containing the module. Also add a bUseBackwardsCompatibleDefaults flag to the TargetRules class, also initialized to a default value from a setting passed to the RulesAssembly constructor. This controls whether modules created for the target should be configured to allow breaking changes to default settings, and is set to false for all engine targets, and true for all project targets. Change 3837343 by Ben.Marsh UBT: Remove the OverrideExecutableFileExtension target property. Change the only current use for this (the MayaLiveLinkPlugin target) to use a post build step to copy the file instead. Change 3837356 by Ben.Marsh Fix invalid character encodings. Change 3837727 by Graeme.Thornton UnrealPak: KeyGenerator: Only generate prime table when required, not all the time Change 3837823 by Ben.Marsh UBT: Output warnings and errors when compiling module rules assembly in a way that allows them to be double-clicked in the Visual Studio output window. Change 3837831 by Graeme.Thornton UBT: When parsing crypto settings, always load legacy data first, then allow the new system to override it. Provides the same key backwards compatibility that the editor settings class gives Change 3837857 by Robert.Manuszewski PR #4404: Make FGCArrayPool singleton global instead of per-CU (Contributed by mhutch) Change 3837943 by Robert.Manuszewski PR #4405: Fix FGarbageCollectionTracer (Contributed by mhutch) Change 3838451 by Ben.Marsh UBT: Fix exceptions thrown on a background thread while caching C++ includes not being caught and logged correctly. Now captures exceptions and re-throws on the main thread. #jira UE-53996 Change 3839519 by Ben.Marsh UBT: Simplify configuring bPrecompile and bUsePrecompile settings for modules. Each rules assembly can now be configured as installed, which defaults the module rules it creates to use precompiled data. Change 3843790 by Graeme.Thornton UnrealPak: Log the size of all encrypted data Change 3844258 by Ben.Marsh Fix plugin compile failure when created via new plugin wizard. Passing -plugin on the command line is unnecessary, and is now reserved for packaging external plugins for the marketplace. Also extend the length of time that the error toast stays visible, and don't delete the plugin on failure. #jira UE-54157 Change 3845796 by Ben.Marsh Workaround for slow performance of String.EndsWith() on Mono. Change 3845823 by Ben.Marsh Fix case sensitive matching of platform names in -TargetPlatform=X argument to BuildCookRun. #jira UE-54123 Change 3845901 by Arciel.Rekman Linux: fix crash due to lambda lifetime issues (UE-54040). - The lambda goes out of scope in FBufferVisualizationMenuCommands::CreateVisualizationCommands, crashing the editor if compiled with a recent clang (5.0+). (Edigrating 3819174 to Dev-Core) Change 3846439 by Ben.Marsh Revert CL 3822742 to always call Process.WaitForExit(). The Android target platform module in the editor spawns ADB.EXE, which inherits the editor's stdout/stderr handles and forks itself. Process.WaitForExit() waits for EOF on those pipes, which never occurs because the forked process never terminates. Proper fix is probably to have the engine explicitly duplicate stdout/stderr handles for new pipes to output process, but too risky before copying up to Main. Change 3816608 by Ben.Marsh UBT: Use DirectoryReference objects for all include paths. Change 3816954 by Ben.Marsh UBT: Remove bIncludeDependentLibrariesInLibrary option. This is not widely supported by platform toolchains, and is not used anywhere. Change 3816986 by Ben.Marsh UBT: Remove UEBuildBinaryConfig; UEBuildBinary objects are now just created directly. Change 3816991 by Ben.Marsh UBT: Deprecate PlatformSpecificDynamicallyLoadedModules. We no longer have any special behavior for these modules. Change 3823090 by Ben.Marsh UAT: Improve logging for child UAT instances. - Calling RunUAT now requires an identifier for prefixing into the parent log, which is also used to determine the name of the log folder. - Stdout is no longer written to its own output file, since it's written to the parent stdout, the parent log file, and the child log file anyway. - Log folders for child UAT instances are left intact, rather than being copied to the parent folder. The derived names for the copied names were confusing and hard to read. - Output from UAT is no longer returned as a string. It should not be parsed anyway (but may be huge!). ProcessResult now supports running without capturing output. Change 3826082 by Ben.Marsh UBT: Add a check to make sure that all modules that are precompiled are correctly marked to enable it, even if they are part of the build target. Change 3827025 by Ben.Marsh UBT: Move the compile output directory into a property on the module, and explicitly pass it to the toolchain when compiling. Change 3829927 by James.Hopkin Made HTTP interface const correct Change 3833533 by Ben.Marsh Rewrite engine source files to base include paths relative to the "Public" directory. This allows reducing the number of public include paths that have to be added for engine modules. Change 3835826 by Ben.Marsh UBT: Precompiled targets now generate a separate manifest for each precompiled module, rather than adding object files to a library. This fixes issues where object files from static libraries would not be linked into a target if a symbol in them was not referenced. Change 3835969 by Ben.Marsh UBT: Fix cases where text is being written directly to the console rather than via logging functions. Change 3837777 by Steve.Robb Format string type checking added to FOutputDevice::Logf. Fixes for those. Change 3838569 by Steve.Robb Algo moved up a folder. [CL 3847482 by Ben Marsh in Main branch]
937 lines
30 KiB
C++
937 lines
30 KiB
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Misc/App.h"
|
|
#include "Misc/OutputDeviceError.h"
|
|
#include "LaunchEngineLoop.h"
|
|
#include <string.h>
|
|
#include <jni.h>
|
|
#include <pthread.h>
|
|
#include "Android/AndroidJNI.h"
|
|
#include "Android/AndroidEventManager.h"
|
|
#include "Android/AndroidInputInterface.h"
|
|
#include <android/log.h>
|
|
#include <android_native_app_glue.h>
|
|
#include <cstdio>
|
|
#include <sys/resource.h>
|
|
#include <dlfcn.h>
|
|
#include "Android/AndroidWindow.h"
|
|
#include "Android/AndroidApplication.h"
|
|
#include "HAL/PlatformApplicationMisc.h"
|
|
#include "IHeadMountedDisplayModule.h"
|
|
#include "ISessionServicesModule.h"
|
|
#include "ISessionService.h"
|
|
#include "Engine/Engine.h"
|
|
#include "HAL/PlatformFile.h"
|
|
#include "HAL/PlatformAffinity.h"
|
|
#include "HAL/PlatformInput.h"
|
|
#include "Modules/ModuleManager.h"
|
|
#include "IMessagingModule.h"
|
|
#include "Android/AndroidStats.h"
|
|
|
|
// Function pointer for retrieving joystick events
|
|
// Function has been part of the OS since Honeycomb, but only appeared in the
|
|
// NDK in r19. Querying via dlsym allows its use without tying to the newest
|
|
// NDK.
|
|
typedef float(*GetAxesType)(const AInputEvent*, int32_t axis, size_t pointer_index);
|
|
static GetAxesType GetAxes = NULL;
|
|
|
|
// List of default axes to query for each controller
|
|
// Ideal solution is to call out to Java and enumerate the list of axes.
|
|
static const int32_t AxisList[] =
|
|
{
|
|
AMOTION_EVENT_AXIS_X,
|
|
AMOTION_EVENT_AXIS_Y,
|
|
AMOTION_EVENT_AXIS_Z,
|
|
AMOTION_EVENT_AXIS_RX,
|
|
AMOTION_EVENT_AXIS_RY,
|
|
AMOTION_EVENT_AXIS_RZ,
|
|
|
|
//These are DPAD analogs
|
|
AMOTION_EVENT_AXIS_HAT_X,
|
|
AMOTION_EVENT_AXIS_HAT_Y,
|
|
};
|
|
|
|
// map of all supported keycodes
|
|
static TSet<uint32> MappedKeyCodes;
|
|
|
|
// List of desired gamepad keycodes
|
|
static const uint32 ValidGamepadKeyCodesList[] =
|
|
{
|
|
AKEYCODE_BUTTON_A,
|
|
AKEYCODE_DPAD_CENTER,
|
|
AKEYCODE_BUTTON_B,
|
|
AKEYCODE_BUTTON_C,
|
|
AKEYCODE_BUTTON_X,
|
|
AKEYCODE_BUTTON_Y,
|
|
AKEYCODE_BUTTON_Z,
|
|
AKEYCODE_BUTTON_L1,
|
|
AKEYCODE_BUTTON_R1,
|
|
AKEYCODE_BUTTON_START,
|
|
AKEYCODE_MENU,
|
|
AKEYCODE_BUTTON_SELECT,
|
|
AKEYCODE_BACK,
|
|
AKEYCODE_BUTTON_THUMBL,
|
|
AKEYCODE_BUTTON_THUMBR,
|
|
AKEYCODE_BUTTON_L2,
|
|
AKEYCODE_BUTTON_R2,
|
|
AKEYCODE_DPAD_UP,
|
|
AKEYCODE_DPAD_DOWN,
|
|
AKEYCODE_DPAD_LEFT,
|
|
AKEYCODE_DPAD_RIGHT
|
|
};
|
|
|
|
// map of gamepad keycodes that should be passed forward
|
|
static TSet<uint32> ValidGamepadKeyCodes;
|
|
|
|
// -nostdlib means no crtbegin_so.o, so we have to provide our own __dso_handle and atexit()
|
|
extern "C"
|
|
{
|
|
int atexit(void (*func)(void)) { return 0; }
|
|
|
|
extern void *__dso_handle __attribute__((__visibility__ ("hidden")));
|
|
void *__dso_handle;
|
|
}
|
|
|
|
extern void AndroidThunkCpp_InitHMDs();
|
|
extern void AndroidThunkCpp_ShowConsoleWindow();
|
|
extern bool AndroidThunkCpp_VirtualInputIgnoreClick(int, int);
|
|
extern bool AndroidThunkCpp_IsVirtuaKeyboardShown();
|
|
|
|
// Base path for file accesses
|
|
extern FString GFilePathBase;
|
|
|
|
/** The global EngineLoop instance */
|
|
FEngineLoop GEngineLoop;
|
|
|
|
bool GShowConsoleWindowNextTick = false;
|
|
|
|
static void AndroidProcessEvents(struct android_app* state);
|
|
|
|
//Event thread stuff
|
|
static void* AndroidEventThreadWorker(void* param);
|
|
|
|
// How often to process (read & dispatch) events, in seconds.
|
|
static const float EventRefreshRate = 1.0f / 20.0f;
|
|
|
|
//Android event callback functions
|
|
static int32_t HandleInputCB(struct android_app* app, AInputEvent* event); //Touch and key input events
|
|
static void OnAppCommandCB(struct android_app* app, int32_t cmd); //Lifetime events
|
|
|
|
|
|
bool GHasInterruptionRequest = false;
|
|
bool GIsInterrupted = false;
|
|
|
|
// Set 'SustainedPerformanceMode' via cvar sink.
|
|
static TAutoConsoleVariable<int32> CVarEnableSustainedPerformanceMode(
|
|
TEXT("Android.EnableSustainedPerformanceMode"),
|
|
0,
|
|
TEXT("Enable sustained performance mode, if supported. (API >= 24 req. not supported by all devices.)\n")
|
|
TEXT(" 0: Disabled (default)\n")
|
|
TEXT(" 1: Enabled"),
|
|
ECVF_Default);
|
|
|
|
extern void AndroidThunkCpp_SetSustainedPerformanceMode(bool);
|
|
static void SetSustainedPerformanceMode()
|
|
{
|
|
static bool bSustainedPerformanceMode = false;
|
|
bool bIncomingSustainedPerformanceMode = CVarEnableSustainedPerformanceMode.GetValueOnAnyThread() != 0;
|
|
if(bSustainedPerformanceMode != bIncomingSustainedPerformanceMode)
|
|
{
|
|
bSustainedPerformanceMode = bIncomingSustainedPerformanceMode;
|
|
UE_LOG(LogAndroid, Log, TEXT("Setting sustained performance mode: %d"), (int32)bSustainedPerformanceMode);
|
|
AndroidThunkCpp_SetSustainedPerformanceMode(bSustainedPerformanceMode);
|
|
}
|
|
}
|
|
FAutoConsoleVariableSink CVarEnableSustainedPerformanceModeSink(FConsoleCommandDelegate::CreateStatic(&SetSustainedPerformanceMode));
|
|
|
|
// Event for coordinating pausing of the main and event handling threads to prevent background spinning
|
|
static FEvent* EventHandlerEvent = NULL;
|
|
|
|
// Wait for Java onCreate to complete before resume main init
|
|
static volatile bool GResumeMainInit = false;
|
|
volatile bool GEventHandlerInitialized = false;
|
|
|
|
JNI_METHOD void Java_com_epicgames_ue4_GameActivity_nativeResumeMainInit(JNIEnv* jenv, jobject thiz)
|
|
{
|
|
GResumeMainInit = true;
|
|
|
|
// now wait for event handler to be set up before returning
|
|
while (!GEventHandlerInitialized)
|
|
{
|
|
FPlatformProcess::Sleep(0.01f);
|
|
FPlatformMisc::MemoryBarrier();
|
|
}
|
|
}
|
|
|
|
static volatile bool GHMDsInitialized = false;
|
|
static TArray<IHeadMountedDisplayModule*> GHMDImplementations;
|
|
void InitHMDs()
|
|
{
|
|
if (FParse::Param(FCommandLine::Get(), TEXT("nohmd")) || FParse::Param(FCommandLine::Get(), TEXT("emulatestereo")))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Get a list of plugins that implement this feature
|
|
GHMDImplementations = IModularFeatures::Get().GetModularFeatureImplementations<IHeadMountedDisplayModule>(IHeadMountedDisplayModule::GetModularFeatureName());
|
|
|
|
AndroidThunkCpp_InitHMDs();
|
|
|
|
while (!GHMDsInitialized)
|
|
{
|
|
FPlatformProcess::Sleep(0.01f);
|
|
FPlatformMisc::MemoryBarrier();
|
|
}
|
|
}
|
|
|
|
static void InitCommandLine()
|
|
{
|
|
static const uint32 CMD_LINE_MAX = 16384u;
|
|
|
|
// initialize the command line to an empty string
|
|
FCommandLine::Set(TEXT(""));
|
|
|
|
// read in the command line text file from the sdcard if it exists
|
|
FString CommandLineFilePath = GFilePathBase + FString("/UE4Game/") + (!FApp::IsProjectNameEmpty() ? FApp::GetProjectName() : FPlatformProcess::ExecutableName()) + FString("/UE4CommandLine.txt");
|
|
FILE* CommandLineFile = fopen(TCHAR_TO_UTF8(*CommandLineFilePath), "r");
|
|
if(CommandLineFile == NULL)
|
|
{
|
|
// if that failed, try the lowercase version
|
|
CommandLineFilePath = CommandLineFilePath.Replace(TEXT("UE4CommandLine.txt"), TEXT("ue4commandline.txt"));
|
|
CommandLineFile = fopen(TCHAR_TO_UTF8(*CommandLineFilePath), "r");
|
|
}
|
|
|
|
if(CommandLineFile)
|
|
{
|
|
char CommandLine[CMD_LINE_MAX];
|
|
fgets(CommandLine, ARRAY_COUNT(CommandLine) - 1, CommandLineFile);
|
|
|
|
fclose(CommandLineFile);
|
|
|
|
// chop off trailing spaces
|
|
while (*CommandLine && isspace(CommandLine[strlen(CommandLine) - 1]))
|
|
{
|
|
CommandLine[strlen(CommandLine) - 1] = 0;
|
|
}
|
|
|
|
FCommandLine::Append(UTF8_TO_TCHAR(CommandLine));
|
|
}
|
|
}
|
|
|
|
extern void AndroidThunkCpp_DismissSplashScreen();
|
|
|
|
//Main function called from the android entry point
|
|
int32 AndroidMain(struct android_app* state)
|
|
{
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Entered AndroidMain()");
|
|
|
|
// Force the first call to GetJavaEnv() to happen on the game thread, allowing subsequent calls to occur on any thread
|
|
FAndroidApplication::GetJavaEnv();
|
|
|
|
// Set window format to 8888
|
|
ANativeActivity_setWindowFormat(state->activity, WINDOW_FORMAT_RGBA_8888);
|
|
|
|
// adjust the file descriptor limits to allow as many open files as possible
|
|
rlimit cur_fd_limit;
|
|
{
|
|
int result = getrlimit(RLIMIT_NOFILE, & cur_fd_limit);
|
|
//FPlatformMisc::LowLevelOutputDebugStringf(TEXT("(%d) Current fd limits: soft = %lld, hard = %lld"), result, cur_fd_limit.rlim_cur, cur_fd_limit.rlim_max);
|
|
}
|
|
{
|
|
rlimit new_limit = cur_fd_limit;
|
|
new_limit.rlim_cur = cur_fd_limit.rlim_max;
|
|
new_limit.rlim_max = cur_fd_limit.rlim_max;
|
|
int result = setrlimit(RLIMIT_NOFILE, &new_limit);
|
|
//FPlatformMisc::LowLevelOutputDebugStringf(TEXT("(%d) Setting fd limits: soft = %lld, hard = %lld"), result, new_limit.rlim_cur, new_limit.rlim_max);
|
|
}
|
|
{
|
|
int result = getrlimit(RLIMIT_NOFILE, & cur_fd_limit);
|
|
//FPlatformMisc::LowLevelOutputDebugStringf(TEXT("(%d) Current fd limits: soft = %lld, hard = %lld"), result, cur_fd_limit.rlim_cur, cur_fd_limit.rlim_max);
|
|
}
|
|
|
|
// setup joystick support
|
|
// r19 is the first NDK to include AMotionEvent_getAxisValue in the headers
|
|
// However, it has existed in the so since Honeycomb, query for the symbol
|
|
// to determine whether to try controller support
|
|
{
|
|
void* Lib = dlopen("libandroid.so",0);
|
|
if (Lib != NULL)
|
|
{
|
|
GetAxes = (GetAxesType)dlsym(Lib, "AMotionEvent_getAxisValue");
|
|
}
|
|
|
|
if (GetAxes != NULL)
|
|
{
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Controller interface supported\n"));
|
|
}
|
|
else
|
|
{
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Controller interface UNsupported\n"));
|
|
}
|
|
}
|
|
|
|
// setup key filtering
|
|
static const uint32 MAX_KEY_MAPPINGS(256);
|
|
uint32 KeyCodes[MAX_KEY_MAPPINGS];
|
|
uint32 NumKeyCodes = FPlatformInput::GetKeyMap(KeyCodes, nullptr, MAX_KEY_MAPPINGS);
|
|
|
|
for (int i = 0; i < NumKeyCodes; ++i)
|
|
{
|
|
MappedKeyCodes.Add(KeyCodes[i]);
|
|
}
|
|
|
|
const int ValidGamepadKeyCodeCount = sizeof(ValidGamepadKeyCodesList)/sizeof(uint32);
|
|
for (int i = 0; i < ValidGamepadKeyCodeCount; ++i)
|
|
{
|
|
ValidGamepadKeyCodes.Add(ValidGamepadKeyCodesList[i]);
|
|
}
|
|
|
|
// wait for java activity onCreate to finish
|
|
while (!GResumeMainInit)
|
|
{
|
|
FPlatformProcess::Sleep(0.01f);
|
|
FPlatformMisc::MemoryBarrier();
|
|
}
|
|
|
|
// read the command line file
|
|
InitCommandLine();
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Final commandline: %s\n"), FCommandLine::Get());
|
|
|
|
EventHandlerEvent = FPlatformProcess::GetSynchEventFromPool(false);
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Created sync event");
|
|
FAppEventManager::GetInstance()->SetEventHandlerEvent(EventHandlerEvent);
|
|
|
|
// ready for onCreate to complete
|
|
GEventHandlerInitialized = true;
|
|
|
|
// Initialize file system access (i.e. mount OBBs, etc.).
|
|
// We need to do this really early for Android so that files in the
|
|
// OBBs and APK are found.
|
|
IPlatformFile::GetPlatformPhysical().Initialize(nullptr, FCommandLine::Get());
|
|
|
|
// initialize the engine
|
|
GEngineLoop.PreInit(0, NULL, FCommandLine::Get());
|
|
|
|
// initialize HMDs
|
|
InitHMDs();
|
|
|
|
UE_LOG(LogAndroid, Display, TEXT("Passed PreInit()"));
|
|
|
|
GLog->SetCurrentThreadAsMasterThread();
|
|
|
|
GEngineLoop.Init();
|
|
|
|
UE_LOG(LogAndroid, Log, TEXT("Passed GEngineLoop.Init()"));
|
|
|
|
AndroidThunkCpp_DismissSplashScreen();
|
|
|
|
FAppEventManager::GetInstance()->SetEmptyQueueHandlerEvent(FPlatformProcess::GetSynchEventFromPool(false));
|
|
|
|
#if !UE_BUILD_SHIPPING
|
|
if (FParse::Param(FCommandLine::Get(), TEXT("Messaging")))
|
|
{
|
|
// initialize messaging subsystem
|
|
FModuleManager::LoadModuleChecked<IMessagingModule>("Messaging");
|
|
TSharedPtr<ISessionService> SessionService = FModuleManager::LoadModuleChecked<ISessionServicesModule>("SessionServices").GetSessionService();
|
|
SessionService->Start();
|
|
|
|
// Initialize functional testing
|
|
FModuleManager::Get().LoadModule("FunctionalTesting");
|
|
}
|
|
#endif
|
|
|
|
// tick until done
|
|
while (!GIsRequestingExit)
|
|
{
|
|
FAndroidStats::UpdateAndroidStats();
|
|
|
|
FAppEventManager::GetInstance()->Tick();
|
|
if(!FAppEventManager::GetInstance()->IsGamePaused())
|
|
{
|
|
GEngineLoop.Tick();
|
|
}
|
|
else
|
|
{
|
|
// use less CPU when paused
|
|
FPlatformProcess::Sleep(0.10f);
|
|
}
|
|
|
|
#if !UE_BUILD_SHIPPING
|
|
// show console window on next game tick
|
|
if (GShowConsoleWindowNextTick)
|
|
{
|
|
GShowConsoleWindowNextTick = false;
|
|
AndroidThunkCpp_ShowConsoleWindow();
|
|
}
|
|
#endif
|
|
}
|
|
FAppEventManager::GetInstance()->TriggerEmptyQueue();
|
|
|
|
UE_LOG(LogAndroid, Log, TEXT("Exiting"));
|
|
|
|
// exit out!
|
|
GEngineLoop.Exit();
|
|
|
|
UE_LOG(LogAndroid, Log, TEXT("Exiting is over"));
|
|
|
|
FPlatformMisc::RequestExit(1);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
static void* AndroidEventThreadWorker( void* param )
|
|
{
|
|
struct android_app* state = (struct android_app*)param;
|
|
|
|
FPlatformProcess::SetThreadAffinityMask(FPlatformAffinity::GetMainGameMask());
|
|
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Entering event processing thread engine entry point");
|
|
|
|
ALooper* looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS);
|
|
ALooper_addFd(looper, state->msgread, LOOPER_ID_MAIN, ALOOPER_EVENT_INPUT, NULL,
|
|
&state->cmdPollSource);
|
|
state->looper = looper;
|
|
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Prepared looper for event thread");
|
|
|
|
//Assign the callbacks
|
|
state->onAppCmd = OnAppCommandCB;
|
|
state->onInputEvent = HandleInputCB;
|
|
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Passed callback initialization");
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Passed sensor initialization");
|
|
|
|
//continue to process events until the engine is shutting down
|
|
while (!GIsRequestingExit)
|
|
{
|
|
// FPlatformMisc::LowLevelOutputDebugString(L"AndroidEventThreadWorker");
|
|
|
|
AndroidProcessEvents(state);
|
|
|
|
sleep(EventRefreshRate); // this is really 0 since it takes int seconds.
|
|
}
|
|
|
|
UE_LOG(LogAndroid, Log, TEXT("Exiting"));
|
|
|
|
return NULL;
|
|
}
|
|
|
|
//Called from the separate event processing thread
|
|
static void AndroidProcessEvents(struct android_app* state)
|
|
{
|
|
int ident;
|
|
int fdesc;
|
|
int events;
|
|
struct android_poll_source* source;
|
|
|
|
while((ident = ALooper_pollAll(-1, &fdesc, &events, (void**)&source)) >= 0)
|
|
{
|
|
// process this event
|
|
if (source)
|
|
{
|
|
source->process(state, source);
|
|
}
|
|
}
|
|
}
|
|
|
|
pthread_t G_AndroidEventThread;
|
|
|
|
struct android_app* GNativeAndroidApp = NULL;
|
|
|
|
void android_main(struct android_app* state)
|
|
{
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Entering native app glue main function");
|
|
|
|
GNativeAndroidApp = state;
|
|
check(GNativeAndroidApp);
|
|
|
|
pthread_attr_t otherAttr;
|
|
pthread_attr_init(&otherAttr);
|
|
pthread_attr_setdetachstate(&otherAttr, PTHREAD_CREATE_DETACHED);
|
|
pthread_create(&G_AndroidEventThread, &otherAttr, AndroidEventThreadWorker, state);
|
|
|
|
FPlatformMisc::LowLevelOutputDebugString(L"Created event thread");
|
|
|
|
// Make sure glue isn't stripped. (not needed in ndk-15)
|
|
#if PLATFORM_ANDROID_NDK_VERSION < 150000
|
|
app_dummy();
|
|
#endif
|
|
|
|
//@todo android: replace with native activity, main loop off of UI thread, etc.
|
|
AndroidMain(state);
|
|
}
|
|
|
|
extern bool GAndroidGPUInfoReady;
|
|
|
|
//Called from the event process thread
|
|
static int32_t HandleInputCB(struct android_app* app, AInputEvent* event)
|
|
{
|
|
// FPlatformMisc::LowLevelOutputDebugStringf(L"INPUT - type: %x, action: %x, source: %x, keycode: %x, buttons: %x", AInputEvent_getType(event),
|
|
// AMotionEvent_getAction(event), AInputEvent_getSource(event), AKeyEvent_getKeyCode(event), AMotionEvent_getButtonState(event));
|
|
|
|
int32 EventType = AInputEvent_getType(event);
|
|
int32 EventSource = AInputEvent_getSource(event);
|
|
|
|
if (EventType == AINPUT_EVENT_TYPE_MOTION)
|
|
{
|
|
int action = AMotionEvent_getAction(event);
|
|
int actionType = action & AMOTION_EVENT_ACTION_MASK;
|
|
size_t actionPointer = (size_t)((action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) >> AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT);
|
|
bool isActionTargeted = (actionType == AMOTION_EVENT_ACTION_POINTER_DOWN || actionType == AMOTION_EVENT_ACTION_POINTER_UP);
|
|
int32 device = AInputEvent_getDeviceId(event);
|
|
|
|
// trap Joystick events first, with fallthrough if there is no joystick support
|
|
if (((EventSource & AINPUT_SOURCE_CLASS_JOYSTICK) == AINPUT_SOURCE_CLASS_JOYSTICK) &&
|
|
(GetAxes != NULL) &&
|
|
(actionType == AMOTION_EVENT_ACTION_MOVE))
|
|
{
|
|
const int axisCount = sizeof(AxisList)/sizeof(int32_t);
|
|
|
|
// poll all the axes and forward to update controller state
|
|
for (int axis = 0; axis < axisCount; axis++)
|
|
{
|
|
float val = GetAxes( event, AxisList[axis], 0);
|
|
FAndroidInputInterface::JoystickAxisEvent(device, AxisList[axis], val);
|
|
}
|
|
|
|
// handle L/R trigger and Brake/Gas special (all in 0..1 range)
|
|
// LTRIGGER will either be LTRIGGER or BRAKE, whichever is larger
|
|
// RTRIGGER will either be RTRIGGER or GAS, whichever is larger
|
|
float ltrigger = GetAxes(event, AMOTION_EVENT_AXIS_LTRIGGER, 0);
|
|
float rtrigger = GetAxes(event, AMOTION_EVENT_AXIS_RTRIGGER, 0);
|
|
float brake = GetAxes(event, AMOTION_EVENT_AXIS_BRAKE, 0);
|
|
float gas = GetAxes(event, AMOTION_EVENT_AXIS_GAS, 0);
|
|
FAndroidInputInterface::JoystickAxisEvent(device, AMOTION_EVENT_AXIS_LTRIGGER, ltrigger > brake ? ltrigger : brake);
|
|
FAndroidInputInterface::JoystickAxisEvent(device, AMOTION_EVENT_AXIS_RTRIGGER, rtrigger > gas ? rtrigger : gas);
|
|
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
TArray<TouchInput> TouchesArray;
|
|
|
|
TouchType type = TouchEnded;
|
|
|
|
switch (actionType)
|
|
{
|
|
case AMOTION_EVENT_ACTION_DOWN:
|
|
case AMOTION_EVENT_ACTION_POINTER_DOWN:
|
|
type = TouchBegan;
|
|
break;
|
|
case AMOTION_EVENT_ACTION_MOVE:
|
|
type = TouchMoved;
|
|
break;
|
|
case AMOTION_EVENT_ACTION_UP:
|
|
case AMOTION_EVENT_ACTION_POINTER_UP:
|
|
case AMOTION_EVENT_ACTION_CANCEL:
|
|
case AMOTION_EVENT_ACTION_OUTSIDE:
|
|
type = TouchEnded;
|
|
break;
|
|
case AMOTION_EVENT_ACTION_SCROLL:
|
|
case AMOTION_EVENT_ACTION_HOVER_ENTER:
|
|
case AMOTION_EVENT_ACTION_HOVER_MOVE:
|
|
case AMOTION_EVENT_ACTION_HOVER_EXIT:
|
|
return 0;
|
|
default:
|
|
UE_LOG(LogAndroid, Verbose, TEXT("Unknown AMOTION_EVENT %d ignored"), actionType);
|
|
return 0;
|
|
}
|
|
|
|
size_t pointerCount = AMotionEvent_getPointerCount(event);
|
|
|
|
if (pointerCount == 0)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
ANativeWindow* Window = (ANativeWindow*)FAndroidWindow::GetHardwareWindow();
|
|
if (!Window)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int32_t Width = 0 ;
|
|
int32_t Height = 0 ;
|
|
|
|
if(Window)
|
|
{
|
|
FAndroidWindow::CalculateSurfaceSize(Window, Width, Height);
|
|
}
|
|
|
|
// make sure OpenGL context created before accepting touch events.. FAndroidWindow::GetScreenRect() may try to create it early from wrong thread if this is the first call
|
|
if (!GAndroidGPUInfoReady)
|
|
{
|
|
return 1;
|
|
}
|
|
FPlatformRect ScreenRect = FAndroidWindow::GetScreenRect();
|
|
|
|
if (AndroidThunkCpp_IsVirtuaKeyboardShown() && (type == TouchBegan || type == TouchMoved))
|
|
{
|
|
int pointerId = AMotionEvent_getPointerId(event, actionPointer);
|
|
int32 x = AMotionEvent_getX(event, actionPointer);
|
|
int32 y = AMotionEvent_getY(event, actionPointer);
|
|
|
|
//ignore key down events when the native input was clicked or when the keyboard animation is playing
|
|
if (AndroidThunkCpp_VirtualInputIgnoreClick(x, y))
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
if(isActionTargeted)
|
|
{
|
|
if(actionPointer < 0 || pointerCount < (int)actionPointer)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int pointerId = AMotionEvent_getPointerId(event, actionPointer);
|
|
float x = FMath::Min<float>(AMotionEvent_getX(event, actionPointer) / Width, 1.f);
|
|
x *= (ScreenRect.Right - 1);
|
|
float y = FMath::Min<float>(AMotionEvent_getY(event, actionPointer) / Height, 1.f);
|
|
y *= (ScreenRect.Bottom - 1);
|
|
|
|
UE_LOG(LogAndroid, Verbose, TEXT("Received targeted motion event from pointer %u (id %d) action %d: (%.2f, %.2f)"), actionPointer, pointerId, action, x, y);
|
|
|
|
TouchInput TouchMessage;
|
|
TouchMessage.DeviceId = device;
|
|
TouchMessage.Handle = pointerId;
|
|
TouchMessage.Type = type;
|
|
TouchMessage.Position = FVector2D(x, y);
|
|
TouchMessage.LastPosition = FVector2D(x, y); //@todo android: AMotionEvent_getHistoricalRawX
|
|
TouchesArray.Add(TouchMessage);
|
|
}
|
|
else
|
|
{
|
|
for (size_t i = 0; i < pointerCount; ++i)
|
|
{
|
|
int pointerId = AMotionEvent_getPointerId(event, i);
|
|
|
|
float x = FMath::Min<float>(AMotionEvent_getX(event, i) / Width, 1.f);
|
|
x *= (ScreenRect.Right - 1);
|
|
float y = FMath::Min<float>(AMotionEvent_getY(event, i) / Height, 1.f);
|
|
y *= (ScreenRect.Bottom - 1);
|
|
|
|
UE_LOG(LogAndroid, Verbose, TEXT("Received motion event from index %u (id %d) action %d: (%.2f, %.2f)"), i, pointerId, action, x, y);
|
|
|
|
TouchInput TouchMessage;
|
|
TouchMessage.DeviceId= device;
|
|
TouchMessage.Handle = pointerId;
|
|
TouchMessage.Type = type;
|
|
TouchMessage.Position = FVector2D(x, y);
|
|
TouchMessage.LastPosition = FVector2D(x, y); //@todo android: AMotionEvent_getHistoricalRawX
|
|
TouchesArray.Add(TouchMessage);
|
|
}
|
|
}
|
|
|
|
FAndroidInputInterface::QueueTouchInput(TouchesArray);
|
|
|
|
#if !UE_BUILD_SHIPPING
|
|
if ((pointerCount >= 4) && (type == TouchBegan))
|
|
{
|
|
bool bShowConsole = true;
|
|
GConfig->GetBool(TEXT("/Script/Engine.InputSettings"), TEXT("bShowConsoleOnFourFingerTap"), bShowConsole, GInputIni);
|
|
|
|
if (bShowConsole)
|
|
{
|
|
GShowConsoleWindowNextTick = true;
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
if (EventType == AINPUT_EVENT_TYPE_KEY)
|
|
{
|
|
int keyCode = AKeyEvent_getKeyCode(event);
|
|
|
|
FPlatformMisc::LowLevelOutputDebugStringf(L"Received keycode: %d", keyCode);
|
|
|
|
//Trap codes handled as possible gamepad events
|
|
if (ValidGamepadKeyCodes.Contains(keyCode))
|
|
{
|
|
//Only pass on the device id if really a gamepad, joystick or dpad (allows menu and back to be treated as gamepad events)
|
|
int32 device = 0;
|
|
if ( (((EventSource & AINPUT_SOURCE_JOYSTICK) == AINPUT_SOURCE_JOYSTICK) && (GetAxes != NULL)) ||
|
|
((EventSource & AINPUT_SOURCE_GAMEPAD) == AINPUT_SOURCE_GAMEPAD) ||
|
|
((EventSource & AINPUT_SOURCE_DPAD) == AINPUT_SOURCE_DPAD) )
|
|
{
|
|
device = AInputEvent_getDeviceId(event);
|
|
}
|
|
bool down = AKeyEvent_getAction(event) != AKEY_EVENT_ACTION_UP;
|
|
FAndroidInputInterface::JoystickButtonEvent(device, keyCode, down);
|
|
FPlatformMisc::LowLevelOutputDebugStringf(L"Received gamepad button: %d", keyCode);
|
|
}
|
|
else
|
|
{
|
|
FPlatformMisc::LowLevelOutputDebugStringf(L"Received key event: %d", keyCode);
|
|
|
|
// only handle mapped key codes
|
|
if (!MappedKeyCodes.Contains(keyCode))
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
FDeferredAndroidMessage Message;
|
|
|
|
Message.messageType = AKeyEvent_getAction(event) == AKEY_EVENT_ACTION_UP ? MessageType_KeyUp : MessageType_KeyDown;
|
|
Message.KeyEventData.unichar = keyCode;
|
|
Message.KeyEventData.keyId = keyCode;
|
|
Message.KeyEventData.modifier = AKeyEvent_getMetaState(event);
|
|
Message.KeyEventData.isRepeat = AKeyEvent_getAction(event) == AKEY_EVENT_ACTION_MULTIPLE;
|
|
FAndroidInputInterface::DeferMessage(Message);
|
|
|
|
// allow event to be generated for volume up and down, but conditionally allow system to handle it, too
|
|
if (keyCode == AKEYCODE_VOLUME_UP || keyCode == AKEYCODE_VOLUME_DOWN)
|
|
{
|
|
if (FPlatformMisc::GetVolumeButtonsHandledBySystem())
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
//Called from the event process thread
|
|
static void OnAppCommandCB(struct android_app* app, int32_t cmd)
|
|
{
|
|
bool bNeedToSync = false;
|
|
//FPlatformMisc::LowLevelOutputDebugStringf(L"OnAppCommandCB cmd: %u, tid = %d", cmd, gettid());
|
|
|
|
switch (cmd)
|
|
{
|
|
case APP_CMD_SAVE_STATE:
|
|
/**
|
|
* Command from main thread: the app should generate a new saved state
|
|
* for itself, to restore from later if needed. If you have saved state,
|
|
* allocate it with malloc and place it in android_app.savedState with
|
|
* the size in android_app.savedStateSize. The will be freed for you
|
|
* later.
|
|
*/
|
|
// the OS asked us to save the state of the app
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_SAVE_STATE"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_SAVE_STATE);
|
|
break;
|
|
case APP_CMD_INIT_WINDOW:
|
|
/**
|
|
* Command from main thread: a new ANativeWindow is ready for use. Upon
|
|
* receiving this command, android_app->window will contain the new window
|
|
* surface.
|
|
*/
|
|
// get the window ready for showing
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Case APP_CMD_INIT_WINDOW"));
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_INIT_WINDOW"));
|
|
FAppEventManager::GetInstance()->HandleWindowCreated(app->pendingWindow);
|
|
|
|
bNeedToSync = true;
|
|
break;
|
|
case APP_CMD_TERM_WINDOW:
|
|
/**
|
|
* Command from main thread: the existing ANativeWindow needs to be
|
|
* terminated. Upon receiving this command, android_app->window still
|
|
* contains the existing window; after calling android_app_exec_cmd
|
|
* it will be set to NULL.
|
|
*/
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Case APP_CMD_TERM_WINDOW, tid = %d"), gettid());
|
|
// clean up the window because it is being hidden/closed
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_TERM_WINDOW"));
|
|
FAppEventManager::GetInstance()->HandleWindowClosed();
|
|
|
|
bNeedToSync = true;
|
|
break;
|
|
case APP_CMD_LOST_FOCUS:
|
|
/**
|
|
* Command from main thread: the app's activity window has lost
|
|
* input focus.
|
|
*/
|
|
// if the app lost focus, avoid unnecessary processing (like monitoring the accelerometer)
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_LOST_FOCUS"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_WINDOW_LOST_FOCUS, NULL);
|
|
break;
|
|
case APP_CMD_GAINED_FOCUS:
|
|
/**
|
|
* Command from main thread: the app's activity window has gained
|
|
* input focus.
|
|
*/
|
|
// bring back a certain functionality, like monitoring the accelerometer
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_GAINED_FOCUS"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_WINDOW_GAINED_FOCUS, NULL);
|
|
break;
|
|
case APP_CMD_INPUT_CHANGED:
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_INPUT_CHANGED"));
|
|
break;
|
|
case APP_CMD_WINDOW_RESIZED:
|
|
/**
|
|
* Command from main thread: the current ANativeWindow has been resized.
|
|
* Please redraw with its new size.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_WINDOW_RESIZED"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_WINDOW_RESIZED );
|
|
break;
|
|
case APP_CMD_WINDOW_REDRAW_NEEDED:
|
|
/**
|
|
* Command from main thread: the system needs that the current ANativeWindow
|
|
* be redrawn. You should redraw the window before handing this to
|
|
* android_app_exec_cmd() in order to avoid transient drawing glitches.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_WINDOW_REDRAW_NEEDED"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_WINDOW_REDRAW_NEEDED );
|
|
break;
|
|
case APP_CMD_CONTENT_RECT_CHANGED:
|
|
/**
|
|
* Command from main thread: the content area of the window has changed,
|
|
* such as from the soft input window being shown or hidden. You can
|
|
* find the new content rect in android_app::contentRect.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_CONTENT_RECT_CHANGED"));
|
|
break;
|
|
/* receive this event from Java instead to work around NDK bug with AConfiguration_getOrientation in Oreo
|
|
case APP_CMD_CONFIG_CHANGED:
|
|
{
|
|
// Command from main thread: the current device configuration has changed.
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_CONFIG_CHANGED"));
|
|
|
|
bool bPortrait = (AConfiguration_getOrientation(app->config) == ACONFIGURATION_ORIENTATION_PORT);
|
|
if (FAndroidWindow::OnWindowOrientationChanged(bPortrait))
|
|
{
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_WINDOW_CHANGED, nullptr);
|
|
}
|
|
}
|
|
break;
|
|
*/
|
|
case APP_CMD_LOW_MEMORY:
|
|
/**
|
|
* Command from main thread: the system is running low on memory.
|
|
* Try to reduce your memory use.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_LOW_MEMORY"));
|
|
break;
|
|
case APP_CMD_START:
|
|
/**
|
|
* Command from main thread: the app's activity has been started.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_START"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_ON_START);
|
|
|
|
break;
|
|
case APP_CMD_RESUME:
|
|
/**
|
|
* Command from main thread: the app's activity has been resumed.
|
|
*/
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Case APP_CMD_RESUME"));
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_RESUME"));
|
|
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_ON_RESUME);
|
|
|
|
break;
|
|
case APP_CMD_PAUSE:
|
|
/**
|
|
* Command from main thread: the app's activity has been paused.
|
|
*/
|
|
FPlatformMisc::LowLevelOutputDebugStringf(TEXT("Case APP_CMD_PAUSE"));
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_PAUSE"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_ON_PAUSE);
|
|
|
|
bNeedToSync = true;
|
|
break;
|
|
case APP_CMD_STOP:
|
|
/**
|
|
* Command from main thread: the app's activity has been stopped.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_STOP"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_ON_STOP);
|
|
|
|
break;
|
|
case APP_CMD_DESTROY:
|
|
/**
|
|
* Command from main thread: the app's activity is being destroyed,
|
|
* and waiting for the app thread to clean up and exit before proceeding.
|
|
*/
|
|
UE_LOG(LogAndroid, Log, TEXT("Case APP_CMD_DESTROY"));
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_ON_DESTROY);
|
|
break;
|
|
}
|
|
|
|
if (EventHandlerEvent)
|
|
{
|
|
EventHandlerEvent->Trigger();
|
|
}
|
|
|
|
if (bNeedToSync)
|
|
{
|
|
FAppEventManager::GetInstance()->WaitForEmptyQueue();
|
|
}
|
|
//FPlatformMisc::LowLevelOutputDebugStringf(L"#### END OF OnAppCommandCB cmd: %u, tid = %d", cmd, gettid());
|
|
}
|
|
|
|
//Native-defined functions
|
|
|
|
//This function is declared in the Java-defined class, GameActivity.java: "public native void nativeOnConfigurationChanged(boolean bPortrait);
|
|
JNI_METHOD void Java_com_epicgames_ue4_GameActivity_nativeOnConfigurationChanged(JNIEnv* jenv, jobject thiz, jboolean bPortrait)
|
|
{
|
|
bool bChangedToPortrait = bPortrait == JNI_TRUE;
|
|
|
|
// enqueue a window changed event if orientation changed
|
|
if (FAndroidWindow::OnWindowOrientationChanged(bChangedToPortrait))
|
|
{
|
|
FAppEventManager::GetInstance()->EnqueueAppEvent(APP_EVENT_STATE_WINDOW_CHANGED, nullptr);
|
|
|
|
if (EventHandlerEvent)
|
|
{
|
|
EventHandlerEvent->Trigger();
|
|
}
|
|
}
|
|
}
|
|
|
|
//This function is declared in the Java-defined class, GameActivity.java: "public native void nativeConsoleCommand(String commandString);"
|
|
JNI_METHOD void Java_com_epicgames_ue4_GameActivity_nativeConsoleCommand(JNIEnv* jenv, jobject thiz, jstring commandString)
|
|
{
|
|
const char* javaChars = jenv->GetStringUTFChars(commandString, 0);
|
|
|
|
new(GEngine->DeferredCommands) FString(UTF8_TO_TCHAR(javaChars));
|
|
|
|
//Release the string
|
|
jenv->ReleaseStringUTFChars(commandString, javaChars);
|
|
}
|
|
|
|
// This is called from the Java UI thread for initializing VR HMDs
|
|
JNI_METHOD void Java_com_epicgames_ue4_GameActivity_nativeInitHMDs(JNIEnv* jenv, jobject thiz)
|
|
{
|
|
for (auto HMDModuleIt = GHMDImplementations.CreateIterator(); HMDModuleIt; ++HMDModuleIt)
|
|
{
|
|
(*HMDModuleIt)->PreInit();
|
|
}
|
|
|
|
GHMDsInitialized = true;
|
|
}
|
|
|
|
JNI_METHOD void Java_com_epicgames_ue4_GameActivity_nativeSetAndroidVersionInformation(JNIEnv* jenv, jobject thiz, jstring androidVersion, jstring phoneMake, jstring phoneModel, jstring osLanguage )
|
|
{
|
|
const char *javaAndroidVersion = jenv->GetStringUTFChars(androidVersion, 0 );
|
|
FString UEAndroidVersion = FString(UTF8_TO_TCHAR( javaAndroidVersion ));
|
|
|
|
const char *javaPhoneMake = jenv->GetStringUTFChars(phoneMake, 0 );
|
|
FString UEPhoneMake = FString(UTF8_TO_TCHAR( javaPhoneMake ));
|
|
|
|
const char *javaPhoneModel = jenv->GetStringUTFChars(phoneModel, 0 );
|
|
FString UEPhoneModel = FString(UTF8_TO_TCHAR( javaPhoneModel ));
|
|
|
|
const char *javaOSLanguage = jenv->GetStringUTFChars(osLanguage, 0);
|
|
FString UEOSLanguage = FString(UTF8_TO_TCHAR(javaOSLanguage));
|
|
|
|
FAndroidMisc::SetVersionInfo( UEAndroidVersion, UEPhoneMake, UEPhoneModel, UEOSLanguage );
|
|
}
|
|
|
|
bool WaitForAndroidLoseFocusEvent(double TimeoutSeconds)
|
|
{
|
|
return FAppEventManager::GetInstance()->WaitForEventInQueue(EAppEventState::APP_EVENT_STATE_WINDOW_LOST_FOCUS, TimeoutSeconds);
|
|
}
|