2014-02-10 02:10:30 +01:00
/*************************************************************************/
/* view_controller.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
/*************************************************************************/
2020-01-01 11:16:22 +01:00
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2020 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 "view_controller.h"
2020-10-05 21:19:38 +02:00
#include "core/project_settings.h"
2020-09-30 21:08:01 +02:00
#import "godot_view.h"
2020-10-05 21:19:38 +02:00
#import "godot_view_renderer.h"
#import "native_video_view.h"
2014-02-10 02:10:30 +01:00
#include "os_iphone.h"
2020-10-05 21:19:38 +02:00
@interface ViewController ()
2019-12-09 20:38:22 +01:00
2020-10-05 21:19:38 +02:00
@property(strong, nonatomic) GodotViewRenderer *renderer;
@property(strong, nonatomic) GodotNativeVideoView *videoView;
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
@end
2015-11-16 01:07:21 +01:00
2020-10-05 21:19:38 +02:00
@implementation ViewController
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
- (GodotView *)godotView {
return (GodotView *)self.view;
}
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
- (void)loadView {
GodotView *view = [[GodotView alloc] init];
[view initializeRendering];
2014-03-14 02:57:24 +01:00
2020-10-05 21:19:38 +02:00
GodotViewRenderer *renderer = [[GodotViewRenderer alloc] init];
2014-03-14 02:57:24 +01:00
2020-10-05 21:19:38 +02:00
self.renderer = renderer;
self.view = view;
2014-03-14 02:57:24 +01:00
2020-10-05 21:19:38 +02:00
view.renderer = self.renderer;
}
2014-03-14 02:57:24 +01:00
2020-10-05 21:19:38 +02:00
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
2014-03-14 02:57:24 +01:00
2020-10-05 21:19:38 +02:00
if (self) {
[self godot_commonInit];
}
2017-04-09 14:18:49 +02:00
2020-10-05 21:19:38 +02:00
return self;
}
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
- (instancetype)initWithCoder:(NSCoder *)coder {
self = [super initWithCoder:coder];
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
if (self) {
[self godot_commonInit];
}
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
return self;
}
2014-02-10 02:10:30 +01:00
2020-10-05 21:19:38 +02:00
- (void)godot_commonInit {
// Initialize view controller values.
2020-09-30 21:08:01 +02:00
}
2014-02-10 02:10:30 +01:00
- (void)didReceiveMemoryWarning {
2020-08-25 14:18:47 +02:00
[super didReceiveMemoryWarning];
2014-02-10 02:10:30 +01:00
printf("*********** did receive memory warning!\n");
};
2019-08-21 18:55:21 +02:00
- (void)viewDidLoad {
[super viewDidLoad];
2020-10-05 21:19:38 +02:00
[self observeKeyboard];
2019-08-21 18:55:21 +02:00
if (@available(iOS 11.0, *)) {
[self setNeedsUpdateOfScreenEdgesDeferringSystemGestures];
}
}
2020-10-05 21:19:38 +02:00
- (void)observeKeyboard {
printf("******** adding observer for keyboard show/hide\n");
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(keyboardOnScreen:)
name:UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(keyboardHidden:)
name:UIKeyboardDidHideNotification
object:nil];
}
- (void)dealloc {
[self.videoView stopVideo];
self.videoView = nil;
self.videoView = nil;
self.renderer = nil;
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
// MARK: Orientation
2019-08-21 18:55:21 +02:00
- (UIRectEdge)preferredScreenEdgesDeferringSystemGestures {
return UIRectEdgeAll;
}
2018-06-29 12:53:12 +02:00
- (BOOL)shouldAutorotate {
2020-10-05 21:19:38 +02:00
if (!OSIPhone::get_singleton()) {
return NO;
}
2018-06-29 12:53:12 +02:00
switch (OS::get_singleton()->get_screen_orientation()) {
case OS::SCREEN_SENSOR:
case OS::SCREEN_SENSOR_LANDSCAPE:
case OS::SCREEN_SENSOR_PORTRAIT:
return YES;
2017-04-09 14:18:49 +02:00
default:
return NO;
2014-02-10 02:10:30 +01:00
}
2020-10-05 21:19:38 +02:00
}
2014-02-10 02:10:30 +01:00
2018-06-29 12:53:12 +02:00
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
2020-10-05 21:19:38 +02:00
if (!OSIPhone::get_singleton()) {
return UIInterfaceOrientationMaskAll;
}
2018-06-29 12:53:12 +02:00
switch (OS::get_singleton()->get_screen_orientation()) {
case OS::SCREEN_PORTRAIT:
return UIInterfaceOrientationMaskPortrait;
case OS::SCREEN_REVERSE_LANDSCAPE:
return UIInterfaceOrientationMaskLandscapeRight;
case OS::SCREEN_REVERSE_PORTRAIT:
return UIInterfaceOrientationMaskPortraitUpsideDown;
case OS::SCREEN_SENSOR_LANDSCAPE:
return UIInterfaceOrientationMaskLandscape;
case OS::SCREEN_SENSOR_PORTRAIT:
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown;
case OS::SCREEN_SENSOR:
return UIInterfaceOrientationMaskAll;
case OS::SCREEN_LANDSCAPE:
return UIInterfaceOrientationMaskLandscapeLeft;
}
2020-10-05 21:19:38 +02:00
}
2018-06-29 12:53:12 +02:00
2017-04-09 13:22:40 +02:00
- (BOOL)prefersStatusBarHidden {
2014-03-14 02:57:24 +01:00
return YES;
}
2019-12-09 20:38:22 +01:00
- (BOOL)prefersHomeIndicatorAutoHidden {
if (GLOBAL_GET("display/window/ios/hide_home_indicator")) {
return YES;
} else {
return NO;
}
}
2020-10-05 21:19:38 +02:00
// MARK: Keyboard
- (void)keyboardOnScreen:(NSNotification *)notification {
NSDictionary *info = notification.userInfo;
NSValue *value = info[UIKeyboardFrameEndUserInfoKey];
CGRect rawFrame = [value CGRectValue];
CGRect keyboardFrame = [self.view convertRect:rawFrame fromView:nil];
if (OSIPhone::get_singleton()) {
OSIPhone::get_singleton()->set_virtual_keyboard_height(keyboardFrame.size.height);
}
}
- (void)keyboardHidden:(NSNotification *)notification {
if (OSIPhone::get_singleton()) {
OSIPhone::get_singleton()->set_virtual_keyboard_height(0);
}
}
// MARK: Native Video Player
- (BOOL)playVideoAtPath:(NSString *)filePath volume:(float)videoVolume audio:(NSString *)audioTrack subtitle:(NSString *)subtitleTrack {
// If we are showing some video already, reuse existing view for new video.
if (self.videoView) {
return [self.videoView playVideoAtPath:filePath volume:videoVolume audio:audioTrack subtitle:subtitleTrack];
} else {
// Create autoresizing view for video playback.
GodotNativeVideoView *videoView = [[GodotNativeVideoView alloc] initWithFrame:self.view.bounds];
videoView.autoresizingMask = UIViewAutoresizingFlexibleWidth & UIViewAutoresizingFlexibleHeight;
[self.view addSubview:videoView];
return [self.videoView playVideoAtPath:filePath volume:videoVolume audio:audioTrack subtitle:subtitleTrack];
}
}
2015-09-28 01:54:20 +02:00
#ifdef GAME_CENTER_ENABLED
2017-04-09 14:18:49 +02:00
- (void)gameCenterViewControllerDidFinish:(GKGameCenterViewController *)gameCenterViewController {
2017-04-09 13:22:40 +02:00
//[gameCenterViewController dismissViewControllerAnimated:YES completion:^{GameCenter::get_singleton()->game_center_closed();}];//version for signaling when overlay is completely gone
GameCenter::get_singleton()->game_center_closed();
[gameCenterViewController dismissViewControllerAnimated:YES completion:nil];
2015-05-23 12:17:52 +02:00
}
2015-09-28 01:54:20 +02:00
#endif
2015-05-23 12:17:52 +02:00
2014-02-10 02:10:30 +01:00
@end