Added missing Android source that was supposed to go with changeset 64a6297a8b93
Thank you buildbot!
This commit is contained in:
parent
48b953ddbe
commit
260faacb11
1 changed files with 41 additions and 0 deletions
41
src/power/android/SDL_syspower.c
Normal file
41
src/power/android/SDL_syspower.c
Normal file
|
@ -0,0 +1,41 @@
|
|||
#include "SDL_config.h"
|
||||
|
||||
#ifndef SDL_POWER_DISABLED
|
||||
#if SDL_POWER_ANDROID
|
||||
|
||||
#include "SDL_power.h"
|
||||
|
||||
#include "../../core/android/SDL_android.h"
|
||||
|
||||
SDL_bool
|
||||
SDL_GetPowerInfo_Android(SDL_PowerState * state, int *seconds, int *percent)
|
||||
{
|
||||
int battery;
|
||||
int plugged;
|
||||
int charged;
|
||||
|
||||
if (Android_JNI_GetPowerInfo(&plugged, &charged, &battery, seconds, percent) != -1) {
|
||||
if (plugged) {
|
||||
if (charged) {
|
||||
*state = SDL_POWERSTATE_CHARGED;
|
||||
} else if (battery) {
|
||||
*state = SDL_POWERSTATE_CHARGING;
|
||||
} else {
|
||||
*state = SDL_POWERSTATE_NO_BATTERY;
|
||||
*seconds = -1;
|
||||
*percent = -1;
|
||||
}
|
||||
} else {
|
||||
*state = SDL_POWERSTATE_ON_BATTERY;
|
||||
}
|
||||
} else {
|
||||
*state = SDL_POWERSTATE_UNKNOWN;
|
||||
*seconds = -1;
|
||||
*percent = -1;
|
||||
}
|
||||
|
||||
return SDL_TRUE;
|
||||
}
|
||||
|
||||
#endif /* SDL_POWER_ANDROID */
|
||||
#endif /* SDL_POWER_DISABLED */
|
Loading…
Add table
Add a link
Reference in a new issue