RetroArch/apple/common/RAGameView.m

349 lines
8.6 KiB
Mathematica
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2013 - Jason Fetters
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#import "RetroArch_Apple.h"
#include "rarch_wrapper.h"
2013-07-06 20:43:04 -04:00
2013-07-06 23:54:47 -04:00
#include "general.h"
2013-07-06 20:43:04 -04:00
#ifdef IOS
2013-07-06 23:54:47 -04:00
#import "views.h"
2013-06-14 00:45:35 -04:00
static const float ALMOST_INVISIBLE = .021f;
static RAGameView* g_instance;
static GLKView* g_view;
static EAGLContext* g_context;
2013-07-06 23:54:47 -04:00
static UIView* g_pause_view;
static UIView* g_pause_indicator_view;
2013-07-06 23:54:47 -04:00
#elif defined(OSX)
#include "apple_input.h"
2013-07-06 23:54:47 -04:00
static RAGameView* g_instance;
static NSOpenGLContext* g_context;
static NSOpenGLPixelFormat* g_format;
2013-07-06 23:54:47 -04:00
#define g_view g_instance // < RAGameView is a container on iOS; on OSX these are both the same object
#endif
static int g_fast_forward_skips;
static bool g_is_syncing = true;
static float g_screen_scale = 1.0f;
2013-02-13 18:18:55 -05:00
@implementation RAGameView
+ (RAGameView*)get
{
if (!g_instance)
g_instance = [RAGameView new];
return g_instance;
}
2013-07-06 23:54:47 -04:00
#ifdef OSX
- (id)init
{
self = [super init];
self.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable;
2013-07-06 23:54:47 -04:00
return self;
}
- (void)setFrame:(NSRect)frameRect
{
[super setFrame:frameRect];
if (g_view && g_context)
[g_context update];
}
2013-07-06 23:54:47 -04:00
- (void)display
{
[g_context flushBuffer];
2013-07-06 23:54:47 -04:00
}
2013-07-07 14:46:16 -04:00
- (void)bindDrawable
{
glBindFramebuffer(GL_FRAMEBUFFER, 0);
}
// Stop the annoying sound when pressing a key
- (BOOL)acceptsFirstResponder
{
return YES;
}
- (BOOL)isFlipped
{
return YES;
}
- (void)keyDown:(NSEvent*)theEvent
{
}
- (void)mouseDown:(NSEvent*)theEvent
{
g_current_input_data.touch_count = 1;
[self mouseDragged:theEvent];
}
- (void)mouseUp:(NSEvent*)theEvent
{
g_current_input_data.touch_count = 0;
}
- (void)mouseDragged:(NSEvent*)theEvent
{
NSPoint pos = [self convertPoint:[theEvent locationInWindow] fromView:nil];
g_current_input_data.touches[0].screen_x = pos.x;
g_current_input_data.touches[0].screen_y = pos.y;
}
2013-07-06 23:54:47 -04:00
#elif defined(IOS) // < iOS Pause menu and lifecycle
- (id)init
{
self = [super init];
g_screen_scale = [[UIScreen mainScreen] scale];
UINib* xib = [UINib nibWithNibName:@"PauseView" bundle:nil];
g_pause_view = [[xib instantiateWithOwner:[RetroArch_iOS get] options:nil] lastObject];
xib = [UINib nibWithNibName:@"PauseIndicatorView" bundle:nil];
g_pause_indicator_view = [[xib instantiateWithOwner:[RetroArch_iOS get] options:nil] lastObject];
g_view = [GLKView new];
g_view.multipleTouchEnabled = YES;
g_view.enableSetNeedsDisplay = NO;
[g_view addSubview:g_pause_view];
[g_view addSubview:g_pause_indicator_view];
self.view = g_view;
return self;
}
2013-07-06 23:54:47 -04:00
// Pause Menus
- (void)viewWillLayoutSubviews
{
UIInterfaceOrientation orientation = self.interfaceOrientation;
CGRect screenSize = [[UIScreen mainScreen] bounds];
const float width = ((int)orientation < 3) ? CGRectGetWidth(screenSize) : CGRectGetHeight(screenSize);
const float height = ((int)orientation < 3) ? CGRectGetHeight(screenSize) : CGRectGetWidth(screenSize);
float tenpctw = width / 10.0f;
float tenpcth = height / 10.0f;
g_pause_view.frame = CGRectMake(width / 2.0f - 150.0f, height / 2.0f - 150.0f, 300.0f, 300.0f);
g_pause_indicator_view.frame = CGRectMake(tenpctw * 4.0f, 0.0f, tenpctw * 2.0f, tenpcth);
[g_pause_indicator_view viewWithTag:1].frame = CGRectMake(0, 0, tenpctw * 2.0f, tenpcth);
}
- (void)openPauseMenu
{
// Setup save state selector
2013-06-21 23:39:01 -04:00
UISegmentedControl* stateSelect = (UISegmentedControl*)[g_pause_view viewWithTag:10];
stateSelect.selectedSegmentIndex = (g_extern.state_slot < 10) ? g_extern.state_slot : -1;
g_extern.is_paused = true;
//
[UIView animateWithDuration:0.2
2013-06-21 23:39:01 -04:00
animations:^{ g_pause_view.alpha = 1.0f; }
completion:^(BOOL finished) { }];
}
- (void)closePauseMenu
{
[UIView animateWithDuration:0.2
2013-06-21 23:39:01 -04:00
animations:^{ g_pause_view.alpha = 0.0f; }
completion:^(BOOL finished) { }
];
g_extern.is_paused = false;
}
- (void)hidePauseButton
{
[UIView animateWithDuration:0.2
2013-06-21 23:39:01 -04:00
animations:^{ g_pause_indicator_view.alpha = ALMOST_INVISIBLE; }
completion:^(BOOL finished) { }
];
}
2013-07-06 23:54:47 -04:00
#endif
@end
// Realistically these functions don't create or destroy the view; just the OpenGL context.
2013-07-06 23:54:47 -04:00
bool apple_init_game_view()
{
2013-07-06 23:54:47 -04:00
#ifdef IOS
dispatch_sync(dispatch_get_main_queue(), ^{
// Make sure the view was created
[RAGameView get];
g_context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
[EAGLContext setCurrentContext:g_context];
g_view.context = g_context;
// Show pause button for a few seconds, so people know it's there
g_pause_indicator_view.alpha = 1.0f;
[NSObject cancelPreviousPerformRequestsWithTarget:g_instance];
[g_instance performSelector:@selector(hidePauseButton) withObject:g_instance afterDelay:3.0f];
});
[EAGLContext setCurrentContext:g_context];
#else
[g_context makeCurrentContext];
2013-07-06 23:54:47 -04:00
#endif
return true;
}
2013-07-06 23:54:47 -04:00
void apple_destroy_game_view()
{
dispatch_sync(dispatch_get_main_queue(), ^{
glFinish();
2013-07-07 14:46:16 -04:00
#ifdef IOS
g_view.context = nil;
[EAGLContext setCurrentContext:nil];
g_context = nil;
2013-07-07 14:46:16 -04:00
#endif
});
2013-07-07 14:46:16 -04:00
#ifdef IOS
[EAGLContext setCurrentContext:nil];
#else
[NSOpenGLContext clearCurrentContext];
2013-07-06 23:54:47 -04:00
#endif
}
bool apple_create_gl_context(uint32_t version)
{
#ifdef OSX
[NSOpenGLContext clearCurrentContext];
dispatch_sync(dispatch_get_main_queue(), ^{
[NSOpenGLContext clearCurrentContext];
[g_context clearDrawable];
g_context = nil;
g_format = nil;
NSOpenGLPixelFormatAttribute attributes [] = {
NSOpenGLPFADoubleBuffer, // double buffered
NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute)16, // 16 bit depth buffer
version ? NSOpenGLPFAOpenGLProfile : 0, version,
(NSOpenGLPixelFormatAttribute)nil
};
g_format = [[NSOpenGLPixelFormat alloc] initWithAttributes:attributes];
g_context = [[NSOpenGLContext alloc] initWithFormat:g_format shareContext:nil];
g_context.view = g_view;
[g_context makeCurrentContext];
});
[g_context makeCurrentContext];
#endif
return true;
}
void apple_flip_game_view()
{
if (--g_fast_forward_skips < 0)
{
dispatch_sync(dispatch_get_main_queue(), ^{
[g_view display];
});
g_fast_forward_skips = g_is_syncing ? 0 : 3;
}
}
2013-07-06 23:54:47 -04:00
void apple_set_game_view_sync(unsigned interval)
{
2013-07-06 23:54:47 -04:00
#ifdef IOS // < No way to disable Vsync on iOS?
2013-04-07 21:36:21 -04:00
g_is_syncing = interval ? true : false;
g_fast_forward_skips = interval ? 0 : 3;
2013-07-06 23:54:47 -04:00
#elif defined(OSX)
2013-07-07 20:59:30 -04:00
GLint value = interval ? 1 : 0;
[g_context setValues:&value forParameter:NSOpenGLCPSwapInterval];
2013-07-06 23:54:47 -04:00
#endif
}
2013-07-06 23:54:47 -04:00
void apple_get_game_view_size(unsigned *width, unsigned *height)
{
*width = g_view.bounds.size.width * g_screen_scale;
*width = *width ? *width : 640;
*height = g_view.bounds.size.height * g_screen_scale;
*height = *height ? *height : 480;
}
2013-08-11 14:10:10 +02:00
void *apple_get_proc_address(const char *symbol_name)
{
#ifdef IOS
(void)symbol_name; // We don't need symbols above GLES2 on iOS.
return NULL;
#else
CFStringRef symbol = CFStringCreateWithCString(kCFAllocatorDefault, symbol_name, kCFStringEncodingASCII);
void *proc = CFBundleGetFunctionPointerForName(CFBundleGetBundleWithIdentifier(CFSTR("com.apple.opengl")),
symbol);
CFRelease(symbol);
return proc;
#endif
}
2013-08-27 11:37:21 -04:00
bool apple_set_video_mode(unsigned width, unsigned height, bool fullscreen)
{
__block bool result = true;
#ifdef OSX
dispatch_sync(dispatch_get_main_queue(),
^{
// TODO: Multi-monitor support
// TODO: Sceen mode support
if (fullscreen)
result = [g_view enterFullScreenMode:[NSScreen mainScreen] withOptions:nil];
else
{
[g_view exitFullScreenModeWithOptions:nil];
[g_view.window makeFirstResponder:g_view];
}
});
#endif
// TODO: Maybe iOS users should be apple to show/hide the status bar here?
return result;
}
#ifdef IOS
void apple_bind_game_view_fbo(void)
{
dispatch_sync(dispatch_get_main_queue(), ^{
2013-04-04 20:11:24 -04:00
if (g_context)
[g_view bindDrawable];
});
}
#endif