Skip to content

Commit

Permalink
Bug 2739 - [Android] No support for SDL_DisableScreenSaver by Martin …
Browse files Browse the repository at this point in the history
…Gerhardy
  • Loading branch information
gabomdq committed Oct 20, 2014
1 parent ec4dfdf commit 79035b3
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
7 changes: 7 additions & 0 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -187,6 +187,13 @@ public boolean dispatchKeyEvent(KeyEvent event) {
return super.dispatchKeyEvent(event);
}

public static void suspendScreenSaver(boolean suspend) {
if (suspend)
mSingleton.getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
else
mSingleton.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
}

/** Called by onPause or surfaceDestroyed. Even if surfaceDestroyed
* is the first to be called, mIsSurfaceReady should still be set
* to 'true' during the call to onPause (in a usual scenario).
Expand Down
11 changes: 10 additions & 1 deletion src/core/android/SDL_android.c
Expand Up @@ -77,6 +77,7 @@ static jmethodID midAudioWriteShortBuffer;
static jmethodID midAudioWriteByteBuffer;
static jmethodID midAudioQuit;
static jmethodID midPollInputDevices;
static jmethodID midSuspendScreenSaver;

/* Accelerometer data storage */
static float fLastAccelerometer[3];
Expand Down Expand Up @@ -131,6 +132,8 @@ JNIEXPORT void JNICALL SDL_Android_Init(JNIEnv* mEnv, jclass cls)
"audioQuit", "()V");
midPollInputDevices = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
"pollInputDevices", "()V");
midSuspendScreenSaver = (*mEnv)->GetStaticMethodID(mEnv, mActivityClass,
"suspendScreenSaver", "(Z)V");

bHasNewData = false;

Expand Down Expand Up @@ -444,7 +447,13 @@ static void LocalReferenceHolder_Cleanup(struct LocalReferenceHolder *refholder)

static SDL_bool LocalReferenceHolder_IsActive()
{
return s_active > 0;
return s_active > 0;
}

void Android_JNI_SuspendScreenSaver(SDL_bool suspend)
{
JNIEnv *env = Android_JNI_GetEnv();
(*env)->CallStaticObjectMethod(env, mActivityClass, midSuspendScreenSaver, suspend);
}

ANativeWindow* Android_JNI_GetNativeWindow(void)
Expand Down
2 changes: 2 additions & 0 deletions src/core/android/SDL_android.h
Expand Up @@ -68,6 +68,8 @@ int Android_JNI_GetPowerInfo(int* plugged, int* charged, int* battery, int* seco
/* Joystick support */
void Android_JNI_PollInputDevices();

/* Video */
void Android_JNI_SuspendScreenSaver(SDL_bool suspend);

/* Touch support */
int Android_JNI_GetTouchDeviceIds(int **ids);
Expand Down
9 changes: 9 additions & 0 deletions src/video/android/SDL_androidvideo.c
Expand Up @@ -75,6 +75,12 @@ Android_Available(void)
return 1;
}

static void
Android_SuspendScreenSaver(_THIS)
{
Android_JNI_SuspendScreenSaver(_this->suspend_screensaver);
}

static void
Android_DeleteDevice(SDL_VideoDevice * device)
{
Expand Down Expand Up @@ -126,6 +132,9 @@ Android_CreateDevice(int devindex)
device->GL_SwapWindow = Android_GLES_SwapWindow;
device->GL_DeleteContext = Android_GLES_DeleteContext;

/* Screensaver */
device->SuspendScreenSaver = Android_SuspendScreenSaver;

/* Text input */
device->StartTextInput = Android_StartTextInput;
device->StopTextInput = Android_StopTextInput;
Expand Down

0 comments on commit 79035b3

Please sign in to comment.