4coder/platform_mac/osx_objective_c_to_cpp_links.h

133 lines
2.2 KiB
C
Raw Normal View History

2017-06-30 01:13:20 +00:00
/*
* Mr. 4th Dimention - Allen Webster
*
* 06.29.2017
*
* Types and functions for communication between C++ and Objective-C layers.
*
*/
// TOP
#if !defined(OSX_OBJECTIVE_C_TO_CPP_LINKS_H)
#define OSX_OBJECTIVE_C_TO_CPP_LINKS_H
2017-11-07 21:35:26 +00:00
#include <stdio.h>
2017-11-08 01:15:09 +00:00
#if 0
2017-11-07 21:35:26 +00:00
#define DBG_POINT() fprintf(stdout, "%s\n", __FILE__ ":" LINE_STR ":")
#else
#define DBG_POINT()
#endif
2017-06-30 01:13:20 +00:00
typedef enum OSX_Mouse_Event_Type{
MouseType_Move,
MouseType_Press,
MouseType_Release,
} OSX_Mouse_Event_Type;
typedef struct OSX_Keyboard_Modifiers{
b32 shift;
b32 command;
b32 control;
b32 option;
b32 caps;
2017-06-30 01:13:20 +00:00
} OSX_Keyboard_Modifiers;
typedef struct OSX_Objective_C_Vars{
2017-06-30 01:13:20 +00:00
i32 width, height;
b32 running;
u32 key_count;
u32 keys[8];
u32 prev_clipboard_change_count;
b32 has_clipboard_item;
void *clipboard_data;
umem clipboard_size, clipboard_max;
b32 just_posted_to_clipboard;
2017-11-07 21:35:26 +00:00
2017-09-10 18:40:11 +00:00
char *clipboard_space;
umem clipboard_space_max;
2017-11-07 21:35:26 +00:00
b32 full_screen;
b32 do_toggle;
2017-11-07 21:35:26 +00:00
i32 argc;
char **argv;
} OSX_Objective_C_Vars;
2017-06-30 01:13:20 +00:00
// In C++ layer.
extern OSX_Objective_C_Vars osx_objc;
2017-06-30 01:13:20 +00:00
2017-06-30 01:28:34 +00:00
external void*
2017-06-30 01:13:20 +00:00
osx_allocate(umem size);
2017-11-07 21:35:26 +00:00
external void
osx_free(void *ptr, umem size);
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:13:20 +00:00
osx_resize(int width, int height);
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:13:20 +00:00
osx_character_input(u32 code, OSX_Keyboard_Modifiers modifier_flags);
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:13:20 +00:00
osx_mouse(i32 mx, i32 my, u32 type);
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:13:20 +00:00
osx_mouse_wheel(float dx, float dy);
2017-11-07 21:35:26 +00:00
external void
osx_try_to_close(void);
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:13:20 +00:00
osx_step();
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:13:20 +00:00
osx_init();
external void
osx_log(char *m, i32 l);
2017-06-30 01:21:06 +00:00
// In Objective-C layer.
2017-06-30 01:28:34 +00:00
external void
2017-06-30 01:21:06 +00:00
osx_post_to_clipboard(char *str);
external void
osx_error_dialogue(char *str);
2017-11-04 05:07:14 +00:00
external void
osx_add_file_listener(char *file_name);
external void
osx_remove_file_listener(char *file_name);
external i32
osx_get_file_change_event(char *buffer, i32 max, i32 *size);
external void
osx_show_cursor(i32 show_inc, i32 cursor_type);
2017-11-11 01:01:03 +00:00
external void
osx_begin_render(void);
2017-11-11 01:01:03 +00:00
external void
osx_end_render(void);
external void
osx_schedule_step(void);
external void
osx_toggle_fullscreen(void);
external b32
osx_is_fullscreen(void);
2017-11-07 21:35:26 +00:00
external void
osx_close_app(void);
2017-06-30 01:13:20 +00:00
#endif
// BOTTOM