zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SDL_syspower.m
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 #include "SDL_config.h"
22 
23 #ifndef SDL_POWER_DISABLED
24 #if SDL_POWER_UIKIT
25 
26 #import <UIKit/UIKit.h>
27 
28 #include "SDL_power.h"
29 #include "SDL_timer.h"
30 #include "SDL_assert.h"
31 #include "SDL_syspower.h"
32 
33 /* turn off the battery monitor if it's been more than X ms since last check. */
34 static const int BATTERY_MONITORING_TIMEOUT = 3000;
35 static Uint32 SDL_UIKitLastPowerInfoQuery = 0;
36 
37 void
38 SDL_UIKit_UpdateBatteryMonitoring(void)
39 {
40  if (SDL_UIKitLastPowerInfoQuery) {
41  const Uint32 prev = SDL_UIKitLastPowerInfoQuery;
42  const UInt32 now = SDL_GetTicks();
43  const UInt32 ticks = now - prev;
44  /* if timer wrapped (now < prev), shut down, too. */
45  if ((now < prev) || (ticks >= BATTERY_MONITORING_TIMEOUT)) {
46  UIDevice *uidev = [UIDevice currentDevice];
47  SDL_assert([uidev isBatteryMonitoringEnabled] == YES);
48  [uidev setBatteryMonitoringEnabled:NO];
49  SDL_UIKitLastPowerInfoQuery = 0;
50  }
51  }
52 }
53 
55 SDL_GetPowerInfo_UIKit(SDL_PowerState * state, int *seconds, int *percent)
56 {
57  UIDevice *uidev = [UIDevice currentDevice];
58 
59  if (!SDL_UIKitLastPowerInfoQuery) {
60  SDL_assert([uidev isBatteryMonitoringEnabled] == NO);
61  [uidev setBatteryMonitoringEnabled:YES];
62  }
63 
64  /* UIKit_GL_SwapWindow() (etc) will check this and disable the battery
65  * monitoring if the app hasn't queried it in the last X seconds.
66  * Apparently monitoring the battery burns battery life. :)
67  * Apple's docs say not to monitor the battery unless you need it.
68  */
69  SDL_UIKitLastPowerInfoQuery = SDL_GetTicks();
70 
71  *seconds = -1; /* no API to estimate this in UIKit. */
72 
73  switch ([uidev batteryState])
74  {
75  case UIDeviceBatteryStateCharging:
76  *state = SDL_POWERSTATE_CHARGING;
77  break;
78 
79  case UIDeviceBatteryStateFull:
80  *state = SDL_POWERSTATE_CHARGED;
81  break;
82 
83  case UIDeviceBatteryStateUnplugged:
85  break;
86 
87  case UIDeviceBatteryStateUnknown:
88  default:
89  *state = SDL_POWERSTATE_UNKNOWN;
90  break;
91  }
92 
93  const float level = [uidev batteryLevel];
94  *percent = ( (level < 0.0f) ? -1 : (((int) (level + 0.5f)) * 100) );
95  return SDL_TRUE; /* always the definitive answer on iPhoneOS. */
96 }
97 
98 #endif /* SDL_POWER_UIKIT */
99 #endif /* SDL_POWER_DISABLED */
100 
101 /* vi: set ts=4 sw=4 expandtab: */
GLclampf f
Definition: glew.h:3390
SDL_bool
Definition: SDL_stdinc.h:116
SDL_bool SDL_GetPowerInfo_UIKit(SDL_PowerState *, int *, int *)
uint32_t Uint32
An unsigned 32-bit integer type.
Definition: SDL_stdinc.h:145
DECLSPEC Uint32 SDLCALL SDL_GetTicks(void)
Get the number of milliseconds since the SDL library initialization.
Definition: SDL_systimer.c:44
#define SDL_assert(condition)
Definition: SDL_assert.h:159
SDL_PowerState
The basic state for the system&#39;s power supply.
Definition: SDL_power.h:42
GLint level
Definition: gl2ext.h:845