4coder/platform_mac/mac_4ed.mm

74 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-12-24 14:57:05 +00:00
/* Mac Objective C layer for 4coder */
#include "4coder_base_types.h"
2019-12-25 01:17:12 +00:00
#include "mac_objective_c_to_cpp_links.h"
2019-12-24 14:57:05 +00:00
#undef function
#undef internal
#undef global
#undef external
#include <Cocoa/Cocoa.h>
2019-12-24 14:57:05 +00:00
2019-12-25 01:17:12 +00:00
#include <libproc.h> // NOTE(yuval): Used for proc_pidpath
#include <sys/types.h>
#include <unistd.h> // NOTE(yuval): Used for getpid
#define external extern "C"
@interface App_Delegate : NSObject<NSApplicationDelegate, NSWindowDelegate>
@end
@implementation App_Delegate
- (void)applicationDidFinishLaunching:(id)sender{
}
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication*)sender{
return YES;
}
- (void)applicationWillTerminate:(NSNotification *)notification{
}
- (NSSize)windowWillResize:(NSWindow*)window toSize:(NSSize)frame_size{
// frame_size.height = ((f32)frame_size.width / global_aspect_ratio);
return frame_size;
}
2019-12-24 14:57:05 +00:00
- (void)windowWillClose:(id)sender{
// global_running = false;
}
@end
2019-12-25 01:17:12 +00:00
external i32
mac_get_binary_path(void *buffer, u32 size){
pid_t pid = getpid();
i32 bytes_read = proc_pidpath(pid, buffer, size);
return bytes_read;
}
int
main(int arg_count, char **args){
@autoreleasepool{
2019-12-24 14:57:05 +00:00
// NOTE(yuval): Create NSApplication & Delegate
NSApplication* app = [NSApplication sharedApplication];
[NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
App_Delegate* app_delegate = [[App_Delegate alloc] init];
[app setDelegate:app_delegate];
[NSApp finishLaunching];
mac_init();
2019-12-24 14:57:05 +00:00
#if 0
// NOTE(yuval): Application Core Update
Application_Step_Result result = {};
if (app.step != 0){
result = app.step(mac_vars.tctx, &target, base_ptr, &input);
}
#endif
}
}