Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
41 lines (34 loc) · 975 Bytes

SDL_syspower.c

File metadata and controls

41 lines (34 loc) · 975 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 */