2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* app_delegate.mm */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2018-01-01 14:40:08 +01:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#import "app_delegate.h"
|
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
#include "core/project_settings.h"
|
2017-09-29 20:22:42 +02:00
|
|
|
#include "drivers/coreaudio/audio_driver_coreaudio.h"
|
2017-04-09 14:18:49 +02:00
|
|
|
#import "gl_view.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "main/main.h"
|
2017-04-09 14:18:49 +02:00
|
|
|
#include "os_iphone.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
#import "GameController/GameController.h"
|
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
#define kFilteringFactor 0.1
|
|
|
|
#define kRenderingFrequency 60
|
|
|
|
#define kAccelerometerFrequency 100.0 // Hz
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-11-16 01:07:21 +01:00
|
|
|
Error _shell_open(String);
|
2015-11-29 05:18:21 +01:00
|
|
|
void _set_keep_screen_on(bool p_enabled);
|
2015-11-16 01:07:21 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Error _shell_open(String p_uri) {
|
2017-04-09 14:18:49 +02:00
|
|
|
NSString *url = [[NSString alloc] initWithUTF8String:p_uri.utf8().get_data()];
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
if (![[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:url]])
|
|
|
|
return ERR_CANT_OPEN;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
printf("opening url %ls\n", p_uri.c_str());
|
2014-02-10 02:10:30 +01:00
|
|
|
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
|
|
|
|
[url release];
|
|
|
|
return OK;
|
|
|
|
};
|
|
|
|
|
2015-11-29 05:18:21 +01:00
|
|
|
void _set_keep_screen_on(bool p_enabled) {
|
|
|
|
[[UIApplication sharedApplication] setIdleTimerDisabled:(BOOL)p_enabled];
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
@implementation AppDelegate
|
|
|
|
|
2014-12-02 18:02:41 +01:00
|
|
|
@synthesize window;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
extern int gargc;
|
2017-04-09 14:18:49 +02:00
|
|
|
extern char **gargv;
|
2017-10-04 11:11:57 +02:00
|
|
|
extern int iphone_main(int, int, int, char **, String);
|
2014-02-10 02:10:30 +01:00
|
|
|
extern void iphone_finish();
|
|
|
|
|
2016-11-13 12:11:00 +01:00
|
|
|
CMMotionManager *motionManager;
|
2017-04-09 14:18:49 +02:00
|
|
|
bool motionInitialised;
|
2016-11-13 12:11:00 +01:00
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
static ViewController *mainViewController = nil;
|
|
|
|
+ (ViewController *)getViewController {
|
2014-02-10 02:10:30 +01:00
|
|
|
return mainViewController;
|
|
|
|
}
|
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
NSMutableDictionary *ios_joysticks = nil;
|
2018-04-10 12:35:30 +02:00
|
|
|
NSMutableArray *pending_ios_joysticks = nil;
|
2017-05-14 09:28:59 +02:00
|
|
|
|
|
|
|
- (GCControllerPlayerIndex)getFreePlayerIndex {
|
|
|
|
bool have_player_1 = false;
|
|
|
|
bool have_player_2 = false;
|
|
|
|
bool have_player_3 = false;
|
|
|
|
bool have_player_4 = false;
|
|
|
|
|
|
|
|
if (ios_joysticks == nil) {
|
|
|
|
NSArray *keys = [ios_joysticks allKeys];
|
|
|
|
for (NSNumber *key in keys) {
|
|
|
|
GCController *controller = [ios_joysticks objectForKey:key];
|
|
|
|
if (controller.playerIndex == GCControllerPlayerIndex1) {
|
|
|
|
have_player_1 = true;
|
|
|
|
} else if (controller.playerIndex == GCControllerPlayerIndex2) {
|
|
|
|
have_player_2 = true;
|
|
|
|
} else if (controller.playerIndex == GCControllerPlayerIndex3) {
|
|
|
|
have_player_3 = true;
|
|
|
|
} else if (controller.playerIndex == GCControllerPlayerIndex4) {
|
|
|
|
have_player_4 = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!have_player_1) {
|
|
|
|
return GCControllerPlayerIndex1;
|
|
|
|
} else if (!have_player_2) {
|
|
|
|
return GCControllerPlayerIndex2;
|
|
|
|
} else if (!have_player_3) {
|
|
|
|
return GCControllerPlayerIndex3;
|
|
|
|
} else if (!have_player_4) {
|
|
|
|
return GCControllerPlayerIndex4;
|
|
|
|
} else {
|
|
|
|
return GCControllerPlayerIndexUnset;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-04-10 12:35:30 +02:00
|
|
|
void _ios_add_joystick(GCController *controller, AppDelegate *delegate) {
|
|
|
|
// get a new id for our controller
|
|
|
|
int joy_id = OSIPhone::get_singleton()->get_unused_joy_id();
|
|
|
|
if (joy_id != -1) {
|
|
|
|
// assign our player index
|
|
|
|
if (controller.playerIndex == GCControllerPlayerIndexUnset) {
|
|
|
|
controller.playerIndex = [delegate getFreePlayerIndex];
|
|
|
|
};
|
|
|
|
|
|
|
|
// tell Godot about our new controller
|
|
|
|
OSIPhone::get_singleton()->joy_connection_changed(
|
|
|
|
joy_id, true, [controller.vendorName UTF8String]);
|
|
|
|
|
|
|
|
// add it to our dictionary, this will retain our controllers
|
|
|
|
[ios_joysticks setObject:controller
|
|
|
|
forKey:[NSNumber numberWithInt:joy_id]];
|
|
|
|
|
|
|
|
// set our input handler
|
|
|
|
[delegate setControllerInputHandler:controller];
|
|
|
|
} else {
|
|
|
|
printf("Couldn't retrieve new joy id\n");
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-05-07 10:44:07 +02:00
|
|
|
static void on_focus_out(ViewController *view_controller, bool *is_focus_out) {
|
|
|
|
if (!*is_focus_out) {
|
|
|
|
*is_focus_out = true;
|
|
|
|
if (OS::get_singleton()->get_main_loop())
|
|
|
|
OS::get_singleton()->get_main_loop()->notification(
|
|
|
|
MainLoop::NOTIFICATION_WM_FOCUS_OUT);
|
|
|
|
|
|
|
|
[view_controller.view stopAnimation];
|
|
|
|
if (OS::get_singleton()->native_video_is_playing()) {
|
|
|
|
OSIPhone::get_singleton()->native_video_focus_out();
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioDriverCoreAudio *audio = dynamic_cast<AudioDriverCoreAudio *>(AudioDriverCoreAudio::get_singleton());
|
|
|
|
if (audio)
|
|
|
|
audio->stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void on_focus_in(ViewController *view_controller, bool *is_focus_out) {
|
|
|
|
if (*is_focus_out) {
|
|
|
|
*is_focus_out = false;
|
|
|
|
if (OS::get_singleton()->get_main_loop())
|
|
|
|
OS::get_singleton()->get_main_loop()->notification(
|
|
|
|
MainLoop::NOTIFICATION_WM_FOCUS_IN);
|
|
|
|
|
|
|
|
[view_controller.view startAnimation];
|
|
|
|
if (OSIPhone::get_singleton()->native_video_is_playing()) {
|
|
|
|
OSIPhone::get_singleton()->native_video_unpause();
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioDriverCoreAudio *audio = dynamic_cast<AudioDriverCoreAudio *>(AudioDriverCoreAudio::get_singleton());
|
|
|
|
if (audio)
|
|
|
|
audio->start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
- (void)controllerWasConnected:(NSNotification *)notification {
|
|
|
|
// create our dictionary if we don't have one yet
|
|
|
|
if (ios_joysticks == nil) {
|
|
|
|
ios_joysticks = [[NSMutableDictionary alloc] init];
|
|
|
|
};
|
|
|
|
|
|
|
|
// get our controller
|
|
|
|
GCController *controller = (GCController *)notification.object;
|
|
|
|
if (controller == nil) {
|
|
|
|
printf("Couldn't retrieve new controller\n");
|
|
|
|
} else if ([[ios_joysticks allKeysForObject:controller] count] != 0) {
|
|
|
|
printf("Controller is already registered\n");
|
2018-04-10 12:35:30 +02:00
|
|
|
} else if (frame_count > 1) {
|
|
|
|
_ios_add_joystick(controller, self);
|
2017-05-14 09:28:59 +02:00
|
|
|
} else {
|
2018-04-10 12:35:30 +02:00
|
|
|
if (pending_ios_joysticks == nil)
|
|
|
|
pending_ios_joysticks = [[NSMutableArray alloc] init];
|
|
|
|
[pending_ios_joysticks addObject:controller];
|
2017-05-14 09:28:59 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
- (void)controllerWasDisconnected:(NSNotification *)notification {
|
|
|
|
if (ios_joysticks != nil) {
|
|
|
|
// find our joystick, there should be only one in our dictionary
|
|
|
|
GCController *controller = (GCController *)notification.object;
|
|
|
|
NSArray *keys = [ios_joysticks allKeysForObject:controller];
|
|
|
|
for (NSNumber *key in keys) {
|
|
|
|
// tell Godot this joystick is no longer there
|
|
|
|
int joy_id = [key intValue];
|
|
|
|
OSIPhone::get_singleton()->joy_connection_changed(joy_id, false, "");
|
|
|
|
|
|
|
|
// and remove it from our dictionary
|
|
|
|
[ios_joysticks removeObjectForKey:key];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
- (int)getJoyIdForController:(GCController *)controller {
|
|
|
|
if (ios_joysticks != nil) {
|
|
|
|
// find our joystick, there should be only one in our dictionary
|
|
|
|
NSArray *keys = [ios_joysticks allKeysForObject:controller];
|
|
|
|
for (NSNumber *key in keys) {
|
|
|
|
int joy_id = [key intValue];
|
|
|
|
return joy_id;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
};
|
|
|
|
|
|
|
|
- (void)setControllerInputHandler:(GCController *)controller {
|
|
|
|
// Hook in the callback handler for the correct gamepad profile.
|
|
|
|
// This is a bit of a weird design choice on Apples part.
|
|
|
|
// You need to select the most capable gamepad profile for the
|
|
|
|
// gamepad attached.
|
|
|
|
if (controller.extendedGamepad != nil) {
|
|
|
|
// The extended gamepad profile has all the input you could possibly find on
|
|
|
|
// a gamepad but will only be active if your gamepad actually has all of
|
|
|
|
// these...
|
|
|
|
controller.extendedGamepad.valueChangedHandler = ^(
|
|
|
|
GCExtendedGamepad *gamepad, GCControllerElement *element) {
|
|
|
|
int joy_id = [self getJoyIdForController:controller];
|
|
|
|
|
|
|
|
if (element == gamepad.buttonA) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_0,
|
|
|
|
gamepad.buttonA.isPressed);
|
|
|
|
} else if (element == gamepad.buttonB) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_1,
|
|
|
|
gamepad.buttonB.isPressed);
|
|
|
|
} else if (element == gamepad.buttonX) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_2,
|
|
|
|
gamepad.buttonX.isPressed);
|
|
|
|
} else if (element == gamepad.buttonY) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_3,
|
|
|
|
gamepad.buttonY.isPressed);
|
|
|
|
} else if (element == gamepad.leftShoulder) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_L,
|
|
|
|
gamepad.leftShoulder.isPressed);
|
|
|
|
} else if (element == gamepad.rightShoulder) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_R,
|
|
|
|
gamepad.rightShoulder.isPressed);
|
|
|
|
} else if (element == gamepad.leftTrigger) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_L2,
|
|
|
|
gamepad.leftTrigger.isPressed);
|
|
|
|
} else if (element == gamepad.rightTrigger) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_R2,
|
|
|
|
gamepad.rightTrigger.isPressed);
|
|
|
|
} else if (element == gamepad.dpad) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_UP,
|
|
|
|
gamepad.dpad.up.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_DOWN,
|
|
|
|
gamepad.dpad.down.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_LEFT,
|
|
|
|
gamepad.dpad.left.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_RIGHT,
|
|
|
|
gamepad.dpad.right.isPressed);
|
|
|
|
};
|
|
|
|
|
|
|
|
InputDefault::JoyAxis jx;
|
|
|
|
jx.min = -1;
|
|
|
|
if (element == gamepad.leftThumbstick) {
|
|
|
|
jx.value = gamepad.leftThumbstick.xAxis.value;
|
|
|
|
OSIPhone::get_singleton()->joy_axis(joy_id, JOY_ANALOG_LX, jx);
|
|
|
|
jx.value = -gamepad.leftThumbstick.yAxis.value;
|
|
|
|
OSIPhone::get_singleton()->joy_axis(joy_id, JOY_ANALOG_LY, jx);
|
|
|
|
} else if (element == gamepad.rightThumbstick) {
|
|
|
|
jx.value = gamepad.rightThumbstick.xAxis.value;
|
|
|
|
OSIPhone::get_singleton()->joy_axis(joy_id, JOY_ANALOG_RX, jx);
|
|
|
|
jx.value = -gamepad.rightThumbstick.yAxis.value;
|
|
|
|
OSIPhone::get_singleton()->joy_axis(joy_id, JOY_ANALOG_RY, jx);
|
|
|
|
} else if (element == gamepad.leftTrigger) {
|
|
|
|
jx.value = gamepad.leftTrigger.value;
|
|
|
|
OSIPhone::get_singleton()->joy_axis(joy_id, JOY_ANALOG_L2, jx);
|
|
|
|
} else if (element == gamepad.rightTrigger) {
|
|
|
|
jx.value = gamepad.rightTrigger.value;
|
|
|
|
OSIPhone::get_singleton()->joy_axis(joy_id, JOY_ANALOG_R2, jx);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
} else if (controller.gamepad != nil) {
|
|
|
|
// gamepad is the standard profile with 4 buttons, shoulder buttons and a
|
|
|
|
// D-pad
|
|
|
|
controller.gamepad.valueChangedHandler = ^(GCGamepad *gamepad,
|
|
|
|
GCControllerElement *element) {
|
|
|
|
int joy_id = [self getJoyIdForController:controller];
|
|
|
|
|
|
|
|
if (element == gamepad.buttonA) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_0,
|
|
|
|
gamepad.buttonA.isPressed);
|
|
|
|
} else if (element == gamepad.buttonB) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_1,
|
|
|
|
gamepad.buttonB.isPressed);
|
|
|
|
} else if (element == gamepad.buttonX) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_2,
|
|
|
|
gamepad.buttonX.isPressed);
|
|
|
|
} else if (element == gamepad.buttonY) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_3,
|
|
|
|
gamepad.buttonY.isPressed);
|
|
|
|
} else if (element == gamepad.leftShoulder) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_L,
|
|
|
|
gamepad.leftShoulder.isPressed);
|
|
|
|
} else if (element == gamepad.rightShoulder) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_R,
|
|
|
|
gamepad.rightShoulder.isPressed);
|
|
|
|
} else if (element == gamepad.dpad) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_UP,
|
|
|
|
gamepad.dpad.up.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_DOWN,
|
|
|
|
gamepad.dpad.down.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_LEFT,
|
|
|
|
gamepad.dpad.left.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_RIGHT,
|
|
|
|
gamepad.dpad.right.isPressed);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
#ifdef ADD_MICRO_GAMEPAD // disabling this for now, only available on iOS 9+,
|
|
|
|
// while we are setting that as the minimum, seems our
|
|
|
|
// build environment doesn't like it
|
|
|
|
} else if (controller.microGamepad != nil) {
|
|
|
|
// micro gamepads were added in OS 9 and feature just 2 buttons and a d-pad
|
|
|
|
controller.microGamepad.valueChangedHandler =
|
|
|
|
^(GCMicroGamepad *gamepad, GCControllerElement *element) {
|
|
|
|
int joy_id = [self getJoyIdForController:controller];
|
|
|
|
|
|
|
|
if (element == gamepad.buttonA) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_0,
|
|
|
|
gamepad.buttonA.isPressed);
|
|
|
|
} else if (element == gamepad.buttonX) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_BUTTON_2,
|
|
|
|
gamepad.buttonX.isPressed);
|
|
|
|
} else if (element == gamepad.dpad) {
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_UP,
|
|
|
|
gamepad.dpad.up.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_DOWN,
|
|
|
|
gamepad.dpad.down.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_LEFT,
|
|
|
|
gamepad.dpad.left.isPressed);
|
|
|
|
OSIPhone::get_singleton()->joy_button(joy_id, JOY_DPAD_RIGHT,
|
|
|
|
gamepad.dpad.right.isPressed);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
///@TODO need to add support for controller.motion which gives us access to
|
|
|
|
/// the orientation of the device (if supported)
|
|
|
|
|
|
|
|
///@TODO need to add support for controllerPausedHandler which should be a
|
|
|
|
/// toggle
|
|
|
|
};
|
|
|
|
|
|
|
|
- (void)initGameControllers {
|
|
|
|
// get told when controllers connect, this will be called right away for
|
|
|
|
// already connected controllers
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
addObserver:self
|
|
|
|
selector:@selector(controllerWasConnected:)
|
|
|
|
name:GCControllerDidConnectNotification
|
|
|
|
object:nil];
|
|
|
|
|
|
|
|
// get told when controllers disconnect
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
addObserver:self
|
|
|
|
selector:@selector(controllerWasDisconnected:)
|
|
|
|
name:GCControllerDidDisconnectNotification
|
|
|
|
object:nil];
|
|
|
|
};
|
|
|
|
|
|
|
|
- (void)deinitGameControllers {
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
removeObserver:self
|
|
|
|
name:GCControllerDidConnectNotification
|
|
|
|
object:nil];
|
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
removeObserver:self
|
|
|
|
name:GCControllerDidDisconnectNotification
|
|
|
|
object:nil];
|
|
|
|
|
|
|
|
if (ios_joysticks != nil) {
|
|
|
|
[ios_joysticks dealloc];
|
|
|
|
ios_joysticks = nil;
|
|
|
|
};
|
2018-04-10 12:35:30 +02:00
|
|
|
|
|
|
|
if (pending_ios_joysticks != nil) {
|
|
|
|
[pending_ios_joysticks dealloc];
|
|
|
|
pending_ios_joysticks = nil;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
OS::VideoMode _get_video_mode() {
|
|
|
|
int backingWidth;
|
|
|
|
int backingHeight;
|
|
|
|
glGetRenderbufferParameterivOES(GL_RENDERBUFFER_OES,
|
|
|
|
GL_RENDERBUFFER_WIDTH_OES, &backingWidth);
|
|
|
|
glGetRenderbufferParameterivOES(GL_RENDERBUFFER_OES,
|
|
|
|
GL_RENDERBUFFER_HEIGHT_OES, &backingHeight);
|
|
|
|
|
|
|
|
OS::VideoMode vm;
|
|
|
|
vm.fullscreen = true;
|
|
|
|
vm.width = backingWidth;
|
|
|
|
vm.height = backingHeight;
|
|
|
|
vm.resizable = false;
|
|
|
|
return vm;
|
2017-05-14 09:28:59 +02:00
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
static int frame_count = 0;
|
2017-04-09 14:18:49 +02:00
|
|
|
- (void)drawView:(GLView *)view;
|
|
|
|
{
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
switch (frame_count) {
|
2017-04-09 13:22:40 +02:00
|
|
|
case 0: {
|
2018-04-10 12:35:30 +02:00
|
|
|
OS::get_singleton()->set_video_mode(_get_video_mode());
|
2017-04-09 13:22:40 +02:00
|
|
|
|
|
|
|
if (!OS::get_singleton()) {
|
|
|
|
exit(0);
|
|
|
|
};
|
|
|
|
++frame_count;
|
|
|
|
|
2017-05-26 20:50:22 +02:00
|
|
|
NSString *locale_code = [[NSLocale currentLocale] localeIdentifier];
|
2017-05-14 09:28:59 +02:00
|
|
|
OSIPhone::get_singleton()->set_locale(
|
|
|
|
String::utf8([locale_code UTF8String]));
|
2017-04-09 13:22:40 +02:00
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
NSString *uuid;
|
2017-05-14 09:28:59 +02:00
|
|
|
if ([[UIDevice currentDevice]
|
|
|
|
respondsToSelector:@selector(identifierForVendor)]) {
|
2017-04-09 13:22:40 +02:00
|
|
|
uuid = [UIDevice currentDevice].identifierForVendor.UUIDString;
|
|
|
|
} else {
|
|
|
|
// before iOS 6, so just generate an identifier and store it
|
2017-05-14 09:28:59 +02:00
|
|
|
uuid = [[NSUserDefaults standardUserDefaults]
|
|
|
|
objectForKey:@"identiferForVendor"];
|
2017-04-09 14:18:49 +02:00
|
|
|
if (!uuid) {
|
2017-04-09 13:22:40 +02:00
|
|
|
CFUUIDRef cfuuid = CFUUIDCreate(NULL);
|
2017-04-09 14:18:49 +02:00
|
|
|
uuid = (__bridge_transfer NSString *)CFUUIDCreateString(NULL, cfuuid);
|
2017-04-09 13:22:40 +02:00
|
|
|
CFRelease(cfuuid);
|
2017-05-14 09:28:59 +02:00
|
|
|
[[NSUserDefaults standardUserDefaults]
|
|
|
|
setObject:uuid
|
|
|
|
forKey:@"identifierForVendor"];
|
2017-04-09 13:22:40 +02:00
|
|
|
}
|
2014-04-05 17:39:30 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-07 12:17:31 +02:00
|
|
|
OSIPhone::get_singleton()->set_unique_id(String::utf8([uuid UTF8String]));
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
2017-12-10 12:08:51 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
case 1: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
Main::setup2();
|
|
|
|
++frame_count;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-04-10 12:35:30 +02:00
|
|
|
if (pending_ios_joysticks != nil) {
|
|
|
|
for (GCController *controller in pending_ios_joysticks) {
|
|
|
|
_ios_add_joystick(controller, self);
|
|
|
|
}
|
|
|
|
[pending_ios_joysticks dealloc];
|
|
|
|
pending_ios_joysticks = nil;
|
|
|
|
}
|
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
// this might be necessary before here
|
2017-04-09 14:18:49 +02:00
|
|
|
NSDictionary *dict = [[NSBundle mainBundle] infoDictionary];
|
|
|
|
for (NSString *key in dict) {
|
|
|
|
NSObject *value = [dict objectForKey:key];
|
2017-04-09 13:22:40 +02:00
|
|
|
String ukey = String::utf8([key UTF8String]);
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
// we need a NSObject to Variant conversor
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
if ([value isKindOfClass:[NSString class]]) {
|
2017-04-09 14:18:49 +02:00
|
|
|
NSString *str = (NSString *)value;
|
2017-04-09 13:22:40 +02:00
|
|
|
String uval = String::utf8([str UTF8String]);
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
ProjectSettings::get_singleton()->set("Info.plist/" + ukey, uval);
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
} else if ([value isKindOfClass:[NSNumber class]]) {
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
NSNumber *n = (NSNumber *)value;
|
2017-04-09 13:22:40 +02:00
|
|
|
double dval = [n doubleValue];
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
ProjectSettings::get_singleton()->set("Info.plist/" + ukey, dval);
|
2017-04-09 13:22:40 +02:00
|
|
|
};
|
|
|
|
// do stuff
|
|
|
|
}
|
2015-06-30 16:28:43 +02:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
2017-12-10 12:08:51 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
case 2: {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
Main::start();
|
|
|
|
++frame_count;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break; // no fallthrough
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
default: {
|
|
|
|
if (OSIPhone::get_singleton()) {
|
2017-05-14 09:28:59 +02:00
|
|
|
// OSIPhone::get_singleton()->update_accelerometer(accel[0], accel[1],
|
|
|
|
// accel[2]);
|
2017-04-09 13:22:40 +02:00
|
|
|
if (motionInitialised) {
|
2017-05-14 09:28:59 +02:00
|
|
|
// Just using polling approach for now, we can set this up so it sends
|
|
|
|
// data to us in intervals, might be better. See Apple reference pages
|
|
|
|
// for more details:
|
2017-04-09 13:22:40 +02:00
|
|
|
// https://developer.apple.com/reference/coremotion/cmmotionmanager?language=objc
|
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
// Apple splits our accelerometer date into a gravity and user movement
|
|
|
|
// component. We add them back together
|
2017-04-09 13:22:40 +02:00
|
|
|
CMAcceleration gravity = motionManager.deviceMotion.gravity;
|
2017-05-14 09:28:59 +02:00
|
|
|
CMAcceleration acceleration =
|
|
|
|
motionManager.deviceMotion.userAcceleration;
|
2017-04-09 13:22:40 +02:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
///@TODO We don't seem to be getting data here, is my device broken or
|
|
|
|
/// is this code incorrect?
|
|
|
|
CMMagneticField magnetic =
|
|
|
|
motionManager.deviceMotion.magneticField.field;
|
2017-04-09 13:22:40 +02:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
///@TODO we can access rotationRate as a CMRotationRate variable
|
|
|
|
///(processed date) or CMGyroData (raw data), have to see what works
|
|
|
|
/// best
|
2017-04-09 13:22:40 +02:00
|
|
|
CMRotationRate rotation = motionManager.deviceMotion.rotationRate;
|
|
|
|
|
|
|
|
// Adjust for screen orientation.
|
2017-05-14 09:28:59 +02:00
|
|
|
// [[UIDevice currentDevice] orientation] changes even if we've fixed
|
|
|
|
// our orientation which is not a good thing when you're trying to get
|
|
|
|
// your user to move the screen in all directions and want consistent
|
|
|
|
// output
|
|
|
|
|
|
|
|
///@TODO Using [[UIApplication sharedApplication] statusBarOrientation]
|
|
|
|
/// is a bit of a hack. Godot obviously knows the orientation so maybe
|
|
|
|
/// we
|
2017-04-09 13:22:40 +02:00
|
|
|
// can use that instead? (note that left and right seem swapped)
|
|
|
|
|
|
|
|
switch ([[UIApplication sharedApplication] statusBarOrientation]) {
|
|
|
|
case UIDeviceOrientationLandscapeLeft: {
|
2017-05-14 09:28:59 +02:00
|
|
|
OSIPhone::get_singleton()->update_gravity(-gravity.y, gravity.x,
|
|
|
|
gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_accelerometer(
|
|
|
|
-(acceleration.y + gravity.y), (acceleration.x + gravity.x),
|
|
|
|
acceleration.z + gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_magnetometer(
|
|
|
|
-magnetic.y, magnetic.x, magnetic.z);
|
|
|
|
OSIPhone::get_singleton()->update_gyroscope(-rotation.y, rotation.x,
|
|
|
|
rotation.z);
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
|
|
|
case UIDeviceOrientationLandscapeRight: {
|
2017-05-14 09:28:59 +02:00
|
|
|
OSIPhone::get_singleton()->update_gravity(gravity.y, -gravity.x,
|
|
|
|
gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_accelerometer(
|
|
|
|
(acceleration.y + gravity.y), -(acceleration.x + gravity.x),
|
|
|
|
acceleration.z + gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_magnetometer(
|
|
|
|
magnetic.y, -magnetic.x, magnetic.z);
|
|
|
|
OSIPhone::get_singleton()->update_gyroscope(rotation.y, -rotation.x,
|
|
|
|
rotation.z);
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
|
|
|
case UIDeviceOrientationPortraitUpsideDown: {
|
2017-05-14 09:28:59 +02:00
|
|
|
OSIPhone::get_singleton()->update_gravity(-gravity.x, gravity.y,
|
|
|
|
gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_accelerometer(
|
|
|
|
-(acceleration.x + gravity.x), (acceleration.y + gravity.y),
|
|
|
|
acceleration.z + gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_magnetometer(
|
|
|
|
-magnetic.x, magnetic.y, magnetic.z);
|
|
|
|
OSIPhone::get_singleton()->update_gyroscope(-rotation.x, rotation.y,
|
|
|
|
rotation.z);
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
|
|
|
default: { // assume portrait
|
2017-05-14 09:28:59 +02:00
|
|
|
OSIPhone::get_singleton()->update_gravity(gravity.x, gravity.y,
|
|
|
|
gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_accelerometer(
|
|
|
|
acceleration.x + gravity.x, acceleration.y + gravity.y,
|
|
|
|
acceleration.z + gravity.z);
|
|
|
|
OSIPhone::get_singleton()->update_magnetometer(magnetic.x, magnetic.y,
|
|
|
|
magnetic.z);
|
|
|
|
OSIPhone::get_singleton()->update_gyroscope(rotation.x, rotation.y,
|
|
|
|
rotation.z);
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
bool quit_request = OSIPhone::get_singleton()->iterate();
|
|
|
|
};
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
}; break;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
|
2017-05-14 09:28:59 +02:00
|
|
|
OS::get_singleton()->get_main_loop()->notification(
|
|
|
|
MainLoop::NOTIFICATION_OS_MEMORY_WARNING);
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-12-07 02:09:05 +01:00
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
2014-02-10 02:10:30 +01:00
|
|
|
CGRect rect = [[UIScreen mainScreen] bounds];
|
|
|
|
|
2018-05-07 10:44:07 +02:00
|
|
|
is_focus_out = false;
|
|
|
|
|
2014-02-19 15:57:14 +01:00
|
|
|
[application setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
|
2014-02-10 02:10:30 +01:00
|
|
|
// disable idle timer
|
2017-05-14 09:28:59 +02:00
|
|
|
// application.idleTimerDisabled = YES;
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
// Create a full-screen window
|
2014-02-10 02:10:30 +01:00
|
|
|
window = [[UIWindow alloc] initWithFrame:rect];
|
2017-05-14 09:28:59 +02:00
|
|
|
// window.autoresizesSubviews = YES;
|
|
|
|
//[window setAutoresizingMask:UIViewAutoresizingFlexibleWidth |
|
|
|
|
// UIViewAutoresizingFlexibleWidth];
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
// Create the OpenGL ES view and add it to the window
|
2014-02-10 02:10:30 +01:00
|
|
|
GLView *glView = [[GLView alloc] initWithFrame:rect];
|
|
|
|
printf("glview is %p\n", glView);
|
|
|
|
//[window addSubview:glView];
|
|
|
|
glView.delegate = self;
|
2017-05-14 09:28:59 +02:00
|
|
|
// glView.autoresizesSubviews = YES;
|
|
|
|
//[glView setAutoresizingMask:UIViewAutoresizingFlexibleWidth |
|
|
|
|
// UIViewAutoresizingFlexibleWidth];
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-04-10 12:35:30 +02:00
|
|
|
OS::VideoMode vm = _get_video_mode();
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2017-10-04 11:11:57 +02:00
|
|
|
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
|
|
|
|
NSUserDomainMask, YES);
|
|
|
|
NSString *documentsDirectory = [paths objectAtIndex:0];
|
|
|
|
|
2018-04-10 12:35:30 +02:00
|
|
|
int err = iphone_main(vm.width, vm.height, gargc, gargv, String::utf8([documentsDirectory UTF8String]));
|
2017-05-13 05:51:40 +02:00
|
|
|
if (err != 0) {
|
|
|
|
// bail, things did not go very well for us, should probably output a message on screen with our error code...
|
|
|
|
exit(0);
|
2017-12-10 12:08:51 +01:00
|
|
|
return FALSE;
|
2017-05-13 05:51:40 +02:00
|
|
|
};
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
view_controller = [[ViewController alloc] init];
|
|
|
|
view_controller.view = glView;
|
|
|
|
window.rootViewController = view_controller;
|
|
|
|
|
2018-07-16 16:09:22 +02:00
|
|
|
_set_keep_screen_on(bool(GLOBAL_DEF("display/window/energy_saving/keep_screen_on", true)) ? YES : NO);
|
2017-05-14 09:28:59 +02:00
|
|
|
glView.useCADisplayLink =
|
|
|
|
bool(GLOBAL_DEF("display.iOS/use_cadisplaylink", true)) ? YES : NO;
|
2015-10-23 02:31:09 +02:00
|
|
|
printf("cadisaplylink: %d", glView.useCADisplayLink);
|
2014-02-10 02:10:30 +01:00
|
|
|
glView.animationInterval = 1.0 / kRenderingFrequency;
|
|
|
|
[glView startAnimation];
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
// Show the window
|
2014-02-10 02:10:30 +01:00
|
|
|
[window makeKeyAndVisible];
|
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
// Configure and start accelerometer
|
2016-11-13 12:11:00 +01:00
|
|
|
if (!motionInitialised) {
|
|
|
|
motionManager = [[CMMotionManager alloc] init];
|
|
|
|
if (motionManager.deviceMotionAvailable) {
|
2017-04-09 14:18:49 +02:00
|
|
|
motionManager.deviceMotionUpdateInterval = 1.0 / 70.0;
|
2017-05-14 09:28:59 +02:00
|
|
|
[motionManager startDeviceMotionUpdatesUsingReferenceFrame:
|
|
|
|
CMAttitudeReferenceFrameXMagneticNorthZVertical];
|
2016-11-13 12:11:00 +01:00
|
|
|
motionInitialised = YES;
|
|
|
|
};
|
|
|
|
};
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
[self initGameControllers];
|
|
|
|
|
2018-05-07 10:44:07 +02:00
|
|
|
[[NSNotificationCenter defaultCenter]
|
|
|
|
addObserver:self
|
|
|
|
selector:@selector(onAudioInterruption:)
|
|
|
|
name:AVAudioSessionInterruptionNotification
|
|
|
|
object:[AVAudioSession sharedInstance]];
|
|
|
|
|
2017-05-14 09:28:59 +02:00
|
|
|
// OSIPhone::screen_width = rect.size.width - rect.origin.x;
|
|
|
|
// OSIPhone::screen_height = rect.size.height - rect.origin.y;
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2014-07-02 05:09:36 +02:00
|
|
|
mainViewController = view_controller;
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2017-11-06 12:16:34 +01:00
|
|
|
// prevent to stop music in another background app
|
|
|
|
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:nil];
|
|
|
|
|
2017-12-07 02:09:05 +01:00
|
|
|
return TRUE;
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2018-05-07 10:44:07 +02:00
|
|
|
- (void)onAudioInterruption:(NSNotification *)notification {
|
|
|
|
if ([notification.name isEqualToString:AVAudioSessionInterruptionNotification]) {
|
|
|
|
if ([[notification.userInfo valueForKey:AVAudioSessionInterruptionTypeKey] isEqualToNumber:[NSNumber numberWithInt:AVAudioSessionInterruptionTypeBegan]]) {
|
|
|
|
NSLog(@"Audio interruption began");
|
|
|
|
on_focus_out(view_controller, &is_focus_out);
|
|
|
|
} else if ([[notification.userInfo valueForKey:AVAudioSessionInterruptionTypeKey] isEqualToNumber:[NSNumber numberWithInt:AVAudioSessionInterruptionTypeEnded]]) {
|
|
|
|
NSLog(@"Audio interruption ended");
|
|
|
|
on_focus_in(view_controller, &is_focus_out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
- (void)applicationWillTerminate:(UIApplication *)application {
|
2017-05-14 09:28:59 +02:00
|
|
|
[self deinitGameControllers];
|
|
|
|
|
2016-11-13 12:11:00 +01:00
|
|
|
if (motionInitialised) {
|
|
|
|
///@TODO is this the right place to clean this up?
|
2017-01-07 09:33:11 +01:00
|
|
|
[motionManager stopDeviceMotionUpdates];
|
|
|
|
[motionManager release];
|
|
|
|
motionManager = nil;
|
2017-04-09 14:18:49 +02:00
|
|
|
motionInitialised = NO;
|
2016-11-13 12:11:00 +01:00
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
iphone_finish();
|
|
|
|
};
|
|
|
|
|
2018-05-11 12:07:43 +02:00
|
|
|
// When application goes to background (e.g. user switches to another app or presses Home),
|
|
|
|
// then applicationWillResignActive -> applicationDidEnterBackground are called.
|
|
|
|
// When user opens the inactive app again,
|
|
|
|
// applicationWillEnterForeground -> applicationDidBecomeActive are called.
|
2016-11-13 12:11:00 +01:00
|
|
|
|
2018-05-11 12:07:43 +02:00
|
|
|
// There are cases when applicationWillResignActive -> applicationDidBecomeActive
|
|
|
|
// sequence is called without the app going to background. For example, that happens
|
|
|
|
// if you open the app list without switching to another app or open/close the
|
|
|
|
// notification panel by swiping from the upper part of the screen.
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
- (void)applicationWillResignActive:(UIApplication *)application {
|
2018-05-11 12:07:43 +02:00
|
|
|
on_focus_out(view_controller, &is_focus_out);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-04-09 14:18:49 +02:00
|
|
|
- (void)applicationDidBecomeActive:(UIApplication *)application {
|
2018-05-07 10:44:07 +02:00
|
|
|
on_focus_in(view_controller, &is_focus_out);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2017-04-09 13:22:40 +02:00
|
|
|
- (void)dealloc {
|
2014-02-10 02:10:30 +01:00
|
|
|
[window release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|