mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
601 lines
16 KiB
Objective-C
601 lines
16 KiB
Objective-C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2013-2014 - Jason Fetters
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include <objc/objc-runtime.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <boolean.h>
|
|
#include <file/file_path.h>
|
|
#include <string/stdstring.h>
|
|
#include <queues/task_queue.h>
|
|
#include <retro_timers.h>
|
|
|
|
#include "cocoa/cocoa_common.h"
|
|
#include "../ui_companion_driver.h"
|
|
#include "../../input/drivers/cocoa_input.h"
|
|
#include "../../input/drivers_keyboard/keyboard_event_apple.h"
|
|
#include "../../frontend/frontend.h"
|
|
#include "../../configuration.h"
|
|
#include "../../paths.h"
|
|
#include "../../core.h"
|
|
#include "../../retroarch.h"
|
|
#include "../../tasks/task_content.h"
|
|
#include "../../tasks/tasks_internal.h"
|
|
#include ".././verbosity.h"
|
|
|
|
id apple_platform;
|
|
|
|
#if (defined(__MACH__) && (defined(__ppc__) || defined(__ppc64__)))
|
|
@interface RetroArch_OSX : NSObject
|
|
#else
|
|
@interface RetroArch_OSX : NSObject <NSApplicationDelegate>
|
|
#endif
|
|
{
|
|
NSWindow* _window;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSWindow IBOutlet* window;
|
|
|
|
@end
|
|
|
|
static void app_terminate(void)
|
|
{
|
|
[[NSApplication sharedApplication] terminate:nil];
|
|
}
|
|
|
|
@interface RApplication : NSApplication
|
|
@end
|
|
|
|
@implementation RApplication
|
|
|
|
- (void)sendEvent:(NSEvent *)event
|
|
{
|
|
NSEventType event_type;
|
|
cocoa_input_data_t *apple = NULL;
|
|
[super sendEvent:event];
|
|
|
|
event_type = event.type;
|
|
|
|
switch ((int32_t)event_type)
|
|
{
|
|
case NSKeyDown:
|
|
case NSKeyUp:
|
|
{
|
|
NSString* ch = (NSString*)event.characters;
|
|
uint32_t character = 0;
|
|
uint32_t mod = 0;
|
|
|
|
if (ch && ch.length != 0)
|
|
{
|
|
uint32_t i;
|
|
character = [ch characterAtIndex:0];
|
|
|
|
if (event.modifierFlags & NSAlphaShiftKeyMask)
|
|
mod |= RETROKMOD_CAPSLOCK;
|
|
if (event.modifierFlags & NSShiftKeyMask)
|
|
mod |= RETROKMOD_SHIFT;
|
|
if (event.modifierFlags & NSControlKeyMask)
|
|
mod |= RETROKMOD_CTRL;
|
|
if (event.modifierFlags & NSAlternateKeyMask)
|
|
mod |= RETROKMOD_ALT;
|
|
if (event.modifierFlags & NSCommandKeyMask)
|
|
mod |= RETROKMOD_META;
|
|
if (event.modifierFlags & NSNumericPadKeyMask)
|
|
mod |= RETROKMOD_NUMLOCK;
|
|
|
|
for (i = 1; i < ch.length; i++)
|
|
apple_input_keyboard_event(event_type == NSKeyDown,
|
|
0, [ch characterAtIndex:i], mod, RETRO_DEVICE_KEYBOARD);
|
|
}
|
|
|
|
apple_input_keyboard_event(event_type == NSKeyDown,
|
|
event.keyCode, character, mod, RETRO_DEVICE_KEYBOARD);
|
|
}
|
|
break;
|
|
case NSFlagsChanged:
|
|
{
|
|
static uint32_t old_flags = 0;
|
|
uint32_t new_flags = event.modifierFlags;
|
|
bool down = (new_flags & old_flags) == old_flags;
|
|
|
|
old_flags = new_flags;
|
|
|
|
apple_input_keyboard_event(down, event.keyCode,
|
|
0, event.modifierFlags, RETRO_DEVICE_KEYBOARD);
|
|
}
|
|
break;
|
|
case NSMouseMoved:
|
|
case NSLeftMouseDragged:
|
|
case NSRightMouseDragged:
|
|
case NSOtherMouseDragged:
|
|
{
|
|
NSPoint pos;
|
|
NSPoint mouse_pos;
|
|
apple = (cocoa_input_data_t*)input_driver_get_data();
|
|
if (!apple)
|
|
return;
|
|
|
|
/* Relative */
|
|
apple->mouse_rel_x = event.deltaX;
|
|
apple->mouse_rel_y = event.deltaY;
|
|
|
|
/* Absolute */
|
|
pos = [[CocoaView get] convertPoint:[event locationInWindow] fromView:nil];
|
|
apple->touches[0].screen_x = pos.x;
|
|
apple->touches[0].screen_y = pos.y;
|
|
|
|
mouse_pos = [[CocoaView get] convertPoint:[event locationInWindow] fromView:nil];
|
|
apple->window_pos_x = (int16_t)mouse_pos.x;
|
|
apple->window_pos_y = (int16_t)mouse_pos.y;
|
|
}
|
|
break;
|
|
case NSScrollWheel:
|
|
/* TODO/FIXME - properly implement. */
|
|
break;
|
|
case NSLeftMouseDown:
|
|
case NSRightMouseDown:
|
|
case NSOtherMouseDown:
|
|
{
|
|
NSPoint pos = [[CocoaView get] convertPoint:[event locationInWindow] fromView:nil];
|
|
apple = (cocoa_input_data_t*)input_driver_get_data();
|
|
if (!apple || pos.y < 0)
|
|
return;
|
|
apple->mouse_buttons |= 1 << event.buttonNumber;
|
|
|
|
apple->touch_count = 1;
|
|
}
|
|
break;
|
|
case NSLeftMouseUp:
|
|
case NSRightMouseUp:
|
|
case NSOtherMouseUp:
|
|
{
|
|
NSPoint pos = [[CocoaView get] convertPoint:[event locationInWindow] fromView:nil];
|
|
apple = (cocoa_input_data_t*)input_driver_get_data();
|
|
if (!apple || pos.y < 0)
|
|
return;
|
|
apple->mouse_buttons &= ~(1 << event.buttonNumber);
|
|
apple->touch_count = 0;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
static int waiting_argc;
|
|
static char** waiting_argv;
|
|
|
|
@implementation RetroArch_OSX
|
|
|
|
@synthesize window = _window;
|
|
|
|
- (void)dealloc
|
|
{
|
|
[_window release];
|
|
[super dealloc];
|
|
}
|
|
|
|
#define NS_WINDOW_COLLECTION_BEHAVIOR_FULLSCREEN_PRIMARY (1 << 17)
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
{
|
|
unsigned i;
|
|
SEL selector = NSSelectorFromString(BOXSTRING("setCollectionBehavior:"));
|
|
SEL fsselector = NSSelectorFromString(BOXSTRING("toggleFullScreen:"));
|
|
apple_platform = self;
|
|
|
|
if ([self.window respondsToSelector:selector])
|
|
{
|
|
if ([self.window respondsToSelector:fsselector])
|
|
[self.window setCollectionBehavior:NS_WINDOW_COLLECTION_BEHAVIOR_FULLSCREEN_PRIMARY];
|
|
}
|
|
|
|
[self.window setAcceptsMouseMovedEvents: YES];
|
|
|
|
[[CocoaView get] setFrame: [[self.window contentView] bounds]];
|
|
[[self.window contentView] setAutoresizesSubviews:YES];
|
|
[[self.window contentView] addSubview:[CocoaView get]];
|
|
[self.window makeFirstResponder:[CocoaView get]];
|
|
|
|
for (i = 0; i < waiting_argc; i++)
|
|
{
|
|
if (string_is_equal(waiting_argv[i], "-NSDocumentRevisionsDebugMode"))
|
|
{
|
|
waiting_argv[i] = NULL;
|
|
waiting_argv[i+1] = NULL;
|
|
waiting_argc -= 2;
|
|
}
|
|
}
|
|
if (rarch_main(waiting_argc, waiting_argv, NULL))
|
|
app_terminate();
|
|
|
|
waiting_argc = 0;
|
|
|
|
[self performSelectorOnMainThread:@selector(rarch_main) withObject:nil waitUntilDone:NO];
|
|
}
|
|
|
|
- (void) rarch_main
|
|
{
|
|
do
|
|
{
|
|
int ret;
|
|
unsigned sleep_ms = 0;
|
|
#ifdef HAVE_QT
|
|
const ui_application_t *application = &ui_application_qt;
|
|
#else
|
|
const ui_application_t *application = ui_companion_driver_get_application_ptr();
|
|
#endif
|
|
if (application)
|
|
application->process_events();
|
|
|
|
ret = runloop_iterate(&sleep_ms);
|
|
|
|
if (ret == 1 && sleep_ms > 0)
|
|
retro_sleep(sleep_ms);
|
|
|
|
task_queue_check();
|
|
|
|
while(CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0.002, FALSE) == kCFRunLoopRunHandledSource);
|
|
if (ret == -1)
|
|
{
|
|
#ifdef HAVE_QT
|
|
ui_application_qt.quit();
|
|
#endif
|
|
break;
|
|
}
|
|
}while(1);
|
|
|
|
main_exit(NULL);
|
|
}
|
|
|
|
- (void)applicationDidBecomeActive:(NSNotification *)notification
|
|
{
|
|
}
|
|
|
|
- (void)applicationWillResignActive:(NSNotification *)notification
|
|
{
|
|
}
|
|
|
|
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender
|
|
{
|
|
NSApplicationTerminateReply reply = NSTerminateNow;
|
|
|
|
if (rarch_ctl(RARCH_CTL_IS_INITED, NULL))
|
|
reply = NSTerminateCancel;
|
|
|
|
ui_companion_event_command(CMD_EVENT_QUIT);
|
|
|
|
return reply;
|
|
}
|
|
|
|
|
|
- (void)application:(NSApplication *)sender openFiles:(NSArray *)filenames
|
|
{
|
|
if (filenames.count == 1 && [filenames objectAtIndex:0])
|
|
{
|
|
struct retro_system_info *system = runloop_get_libretro_system_info();
|
|
NSString *__core = [filenames objectAtIndex:0];
|
|
const char *core_name = system ? system->library_name : NULL;
|
|
|
|
if (core_name)
|
|
{
|
|
content_ctx_info_t content_info = {0};
|
|
task_push_load_content_with_current_core_from_companion_ui(
|
|
__core.UTF8String,
|
|
&content_info,
|
|
CORE_TYPE_PLAIN,
|
|
NULL, NULL);
|
|
}
|
|
else
|
|
path_set(RARCH_PATH_CONTENT, __core.UTF8String);
|
|
|
|
[sender replyToOpenOrPrint:NSApplicationDelegateReplySuccess];
|
|
}
|
|
else
|
|
{
|
|
const ui_msg_window_t *msg_window = ui_companion_driver_get_msg_window_ptr();
|
|
if (msg_window)
|
|
{
|
|
ui_msg_window_state msg_window_state;
|
|
msg_window_state.text = strdup("Cannot open multiple files");
|
|
msg_window_state.title = strdup(msg_hash_to_str(MSG_PROGRAM));
|
|
msg_window->information(&msg_window_state);
|
|
|
|
free(msg_window_state.text);
|
|
free(msg_window_state.title);
|
|
}
|
|
[sender replyToOpenOrPrint:NSApplicationDelegateReplyFailure];
|
|
}
|
|
}
|
|
|
|
static void open_core_handler(ui_browser_window_state_t *state, bool result)
|
|
{
|
|
rarch_system_info_t *info = runloop_get_system_info();
|
|
if (!state)
|
|
return;
|
|
if (string_is_empty(state->result))
|
|
return;
|
|
if (!result)
|
|
return;
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
rarch_ctl(RARCH_CTL_SET_LIBRETRO_PATH, (void*)state->result);
|
|
ui_companion_event_command(CMD_EVENT_LOAD_CORE);
|
|
|
|
if (info && info->load_no_content
|
|
&& settings->bools.set_supports_no_game_enable)
|
|
{
|
|
content_ctx_info_t content_info = {0};
|
|
path_clear(RARCH_PATH_CONTENT);
|
|
task_push_load_content_with_current_core_from_companion_ui(
|
|
NULL,
|
|
&content_info,
|
|
CORE_TYPE_PLAIN,
|
|
NULL, NULL);
|
|
}
|
|
}
|
|
|
|
static void open_document_handler(ui_browser_window_state_t *state, bool result)
|
|
{
|
|
if (!state)
|
|
return;
|
|
if (string_is_empty(state->result))
|
|
return;
|
|
if (!result)
|
|
return;
|
|
|
|
struct retro_system_info *system = runloop_get_libretro_system_info();
|
|
const char *core_name = system ? system->library_name : NULL;
|
|
|
|
path_set(RARCH_PATH_CONTENT, state->result);
|
|
|
|
if (core_name)
|
|
{
|
|
content_ctx_info_t content_info = {0};
|
|
task_push_load_content_with_current_core_from_companion_ui(
|
|
NULL,
|
|
&content_info,
|
|
CORE_TYPE_PLAIN,
|
|
NULL, NULL);
|
|
}
|
|
}
|
|
|
|
- (IBAction)openCore:(id)sender {
|
|
const ui_browser_window_t *browser = ui_companion_driver_get_browser_window_ptr();
|
|
|
|
if (browser)
|
|
{
|
|
ui_browser_window_state_t browser_state;
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
browser_state.filters = strdup("dylib");
|
|
browser_state.filters_title = strdup(msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_SETTINGS));
|
|
browser_state.title = strdup(msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CORE_LIST));
|
|
browser_state.startdir = strdup(settings->paths.directory_libretro);
|
|
|
|
bool result = browser->open(&browser_state);
|
|
open_core_handler(&browser_state, result);
|
|
|
|
free(browser_state.filters);
|
|
free(browser_state.filters_title);
|
|
free(browser_state.title);
|
|
free(browser_state.startdir);
|
|
}
|
|
}
|
|
|
|
- (void)openDocument:(id)sender
|
|
{
|
|
const ui_browser_window_t *browser = ui_companion_driver_get_browser_window_ptr();
|
|
|
|
if (browser)
|
|
{
|
|
ui_browser_window_state_t browser_state = {{0}};
|
|
settings_t *settings = config_get_ptr();
|
|
NSString *startdir = BOXSTRING(settings->paths.directory_menu_content);
|
|
|
|
if (!startdir.length)
|
|
startdir = BOXSTRING("/");
|
|
|
|
browser_state.title = strdup(msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST));
|
|
browser_state.startdir = strdup([startdir UTF8String]);
|
|
|
|
bool result = browser->open(&browser_state);
|
|
open_document_handler(&browser_state, result);
|
|
|
|
free(browser_state.startdir);
|
|
free(browser_state.title);
|
|
}
|
|
}
|
|
|
|
- (void)unloadingCore
|
|
{
|
|
}
|
|
|
|
- (IBAction)showCoresDirectory:(id)sender
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
[[NSWorkspace sharedWorkspace] openFile:BOXSTRING(settings->paths.directory_libretro)];
|
|
}
|
|
|
|
- (IBAction)showPreferences:(id)sender
|
|
{
|
|
}
|
|
|
|
- (IBAction)basicEvent:(id)sender
|
|
{
|
|
enum event_command cmd;
|
|
unsigned sender_tag = (unsigned)[sender tag];
|
|
|
|
switch (sender_tag)
|
|
{
|
|
case 1:
|
|
cmd = CMD_EVENT_RESET;
|
|
break;
|
|
case 2:
|
|
cmd = CMD_EVENT_LOAD_STATE;
|
|
break;
|
|
case 3:
|
|
cmd = CMD_EVENT_SAVE_STATE;
|
|
break;
|
|
case 4:
|
|
cmd = CMD_EVENT_DISK_EJECT_TOGGLE;
|
|
break;
|
|
case 5:
|
|
cmd = CMD_EVENT_DISK_PREV;
|
|
break;
|
|
case 6:
|
|
cmd = CMD_EVENT_DISK_NEXT;
|
|
break;
|
|
case 7:
|
|
cmd = CMD_EVENT_GRAB_MOUSE_TOGGLE;
|
|
break;
|
|
case 8:
|
|
cmd = CMD_EVENT_MENU_TOGGLE;
|
|
break;
|
|
case 9:
|
|
cmd = CMD_EVENT_PAUSE_TOGGLE;
|
|
break;
|
|
case 20:
|
|
cmd = CMD_EVENT_FULLSCREEN_TOGGLE;
|
|
break;
|
|
default:
|
|
cmd = CMD_EVENT_NONE;
|
|
break;
|
|
}
|
|
|
|
if (sender_tag >= 10 && sender_tag <= 19)
|
|
{
|
|
unsigned idx = (sender_tag - (10-1));
|
|
rarch_ctl(RARCH_CTL_SET_WINDOWED_SCALE, &idx);
|
|
cmd = CMD_EVENT_RESIZE_WINDOWED_SCALE;
|
|
}
|
|
|
|
ui_companion_event_command(cmd);
|
|
}
|
|
|
|
- (void)alertDidEnd:(NSAlert *)alert returnCode:(int32_t)returnCode contextInfo:(void *)contextInfo
|
|
{
|
|
[[NSApplication sharedApplication] stopModal];
|
|
}
|
|
|
|
@end
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if (argc == 2)
|
|
{
|
|
if (argv[1] != '\0')
|
|
if (!strncmp(argv[1], "-psn", 4))
|
|
argc = 1;
|
|
}
|
|
|
|
waiting_argc = argc;
|
|
waiting_argv = argv;
|
|
|
|
return NSApplicationMain(argc, (const char **) argv);
|
|
}
|
|
|
|
typedef struct ui_companion_cocoa
|
|
{
|
|
void *empty;
|
|
} ui_companion_cocoa_t;
|
|
|
|
static void ui_companion_cocoa_notify_content_loaded(void *data)
|
|
{
|
|
(void)data;
|
|
}
|
|
|
|
static void ui_companion_cocoa_toggle(void *data, bool force)
|
|
{
|
|
(void)data;
|
|
(void)force;
|
|
}
|
|
|
|
static int ui_companion_cocoa_iterate(void *data, unsigned action)
|
|
{
|
|
(void)data;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void ui_companion_cocoa_deinit(void *data)
|
|
{
|
|
ui_companion_cocoa_t *handle = (ui_companion_cocoa_t*)data;
|
|
|
|
app_terminate();
|
|
|
|
if (handle)
|
|
free(handle);
|
|
}
|
|
|
|
static void *ui_companion_cocoa_init(void)
|
|
{
|
|
ui_companion_cocoa_t *handle = (ui_companion_cocoa_t*)calloc(1, sizeof(*handle));
|
|
|
|
if (!handle)
|
|
return NULL;
|
|
|
|
return handle;
|
|
}
|
|
|
|
static void ui_companion_cocoa_event_command(void *data, enum event_command cmd)
|
|
{
|
|
(void)data;
|
|
command_event(cmd, NULL);
|
|
}
|
|
|
|
static void ui_companion_cocoa_notify_list_pushed(void *data,
|
|
file_list_t *list, file_list_t *menu_list)
|
|
{
|
|
(void)data;
|
|
(void)list;
|
|
(void)menu_list;
|
|
}
|
|
|
|
static void *ui_companion_cocoa_get_main_window(void *data)
|
|
{
|
|
return ((RetroArch_OSX*)[[NSApplication sharedApplication] delegate]).window;
|
|
}
|
|
|
|
ui_companion_driver_t ui_companion_cocoa = {
|
|
ui_companion_cocoa_init,
|
|
ui_companion_cocoa_deinit,
|
|
ui_companion_cocoa_iterate,
|
|
ui_companion_cocoa_toggle,
|
|
ui_companion_cocoa_event_command,
|
|
ui_companion_cocoa_notify_content_loaded,
|
|
ui_companion_cocoa_notify_list_pushed,
|
|
NULL, /* notify_refresh */
|
|
NULL, /* msg_queue_push */
|
|
NULL, /* render_messagebox */
|
|
ui_companion_cocoa_get_main_window,
|
|
NULL, /* log_msg */
|
|
&ui_browser_window_cocoa,
|
|
&ui_msg_window_cocoa,
|
|
&ui_window_cocoa,
|
|
&ui_application_cocoa,
|
|
"cocoa",
|
|
};
|