2018-05-10 08:12:47 +00:00
|
|
|
/*
|
|
|
|
* Miscellaneous helpers for common operations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
push_hot_directory(Application_Links *app, Arena *arena){
|
|
|
|
String_Const_u8 result = {};
|
|
|
|
get_hot_directory(app, arena, &result);
|
2019-04-01 06:14:31 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
push_4ed_path(Application_Links *app, Arena *arena){
|
|
|
|
String_Const_u8 result = {};
|
|
|
|
get_4ed_path(app, arena, &result);
|
2019-04-01 06:14:31 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static Binding_Unit*
|
2018-05-10 08:12:47 +00:00
|
|
|
write_unit(Bind_Helper *helper, Binding_Unit unit){
|
|
|
|
Binding_Unit *p = 0;
|
|
|
|
helper->write_total += sizeof(*p);
|
|
|
|
if (helper->error == 0 && helper->cursor != helper->end){
|
|
|
|
p = helper->cursor++;
|
|
|
|
*p = unit;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static Bind_Helper
|
2019-02-26 23:08:42 +00:00
|
|
|
begin_bind_helper(void *data, i32 size){
|
2018-11-20 08:18:54 +00:00
|
|
|
Bind_Helper result = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
result.cursor = (Binding_Unit*)data;
|
|
|
|
result.start = result.cursor;
|
|
|
|
result.end = result.start + size / sizeof(*result.cursor);
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_header;
|
|
|
|
unit.header.total_size = sizeof(*result.header);
|
|
|
|
result.header = write_unit(&result, unit);
|
|
|
|
result.header->header.user_map_count = 0;
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
begin_map(Bind_Helper *helper, i32 mapid, b32 replace){
|
2018-09-17 18:47:06 +00:00
|
|
|
if (helper->group != 0 && helper->error == 0){
|
|
|
|
helper->error = BH_ERR_MISSING_END;
|
|
|
|
}
|
|
|
|
if (!helper->error && mapid < mapid_global){
|
|
|
|
++helper->header->header.user_map_count;
|
|
|
|
}
|
2018-05-10 08:12:47 +00:00
|
|
|
|
|
|
|
Binding_Unit unit;
|
|
|
|
unit.type = unit_map_begin;
|
|
|
|
unit.map_begin.mapid = mapid;
|
|
|
|
unit.map_begin.replace = replace;
|
|
|
|
helper->group = write_unit(helper, unit);
|
|
|
|
helper->group->map_begin.bind_count = 0;
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
begin_map(Bind_Helper *helper, i32 mapid){
|
2018-05-10 08:12:47 +00:00
|
|
|
begin_map(helper, mapid, false);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
restart_map(Bind_Helper *helper, i32 mapid){
|
2018-05-10 08:12:47 +00:00
|
|
|
begin_map(helper, mapid, true);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
end_map(Bind_Helper *helper){
|
2018-09-17 18:47:06 +00:00
|
|
|
if (helper->group == 0 && helper->error == 0){
|
|
|
|
helper->error = BH_ERR_MISSING_BEGIN;
|
|
|
|
}
|
2018-05-10 08:12:47 +00:00
|
|
|
helper->group = 0;
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
bind(Bind_Helper *helper, Key_Code code, uint8_t modifiers, Custom_Command_Function *func){
|
2018-09-17 18:47:06 +00:00
|
|
|
if (helper->group == 0 && helper->error == 0){
|
|
|
|
helper->error = BH_ERR_MISSING_BEGIN;
|
|
|
|
}
|
|
|
|
if (!helper->error){
|
|
|
|
++helper->group->map_begin.bind_count;
|
|
|
|
}
|
2018-05-10 08:12:47 +00:00
|
|
|
|
|
|
|
Binding_Unit unit;
|
|
|
|
unit.type = unit_callback;
|
|
|
|
unit.callback.func = func;
|
|
|
|
unit.callback.code = code;
|
|
|
|
unit.callback.modifiers = modifiers;
|
|
|
|
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
bind(Bind_Helper *helper, Key_Code code, uint8_t modifiers, Generic_Command cmd){
|
2019-02-08 04:45:13 +00:00
|
|
|
bind(helper, code, modifiers, cmd.command);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
bind_vanilla_keys(Bind_Helper *helper, Custom_Command_Function *func){
|
|
|
|
bind(helper, 0, 0, func);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
bind_vanilla_keys(Bind_Helper *helper, unsigned char modifiers, Custom_Command_Function *func){
|
|
|
|
bind(helper, 0, modifiers, func);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
inherit_map(Bind_Helper *helper, i32 mapid){
|
2018-05-10 08:12:47 +00:00
|
|
|
if (helper->group == 0 && helper->error == 0) helper->error = BH_ERR_MISSING_BEGIN;
|
|
|
|
if (!helper->error && mapid < mapid_global) ++helper->header->header.user_map_count;
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_inherit;
|
|
|
|
unit.map_inherit.mapid = mapid;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
set_hook(Bind_Helper *helper, i32 hook_id, Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = hook_id;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_scroll_rule(Bind_Helper *helper, Scroll_Rule_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_scroll_rule;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_buffer_name_resolver(Bind_Helper *helper, Buffer_Name_Resolver_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_buffer_name_resolver;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-02-25 23:42:13 +00:00
|
|
|
static void
|
|
|
|
set_modify_color_table_hook(Bind_Helper *helper, Modify_Color_Table_Function *func){
|
|
|
|
Binding_Unit unit = {};
|
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_modify_color_table;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-03-15 08:38:28 +00:00
|
|
|
static void
|
|
|
|
set_clipboard_change_hook(Bind_Helper *helper, Clipboard_Change_Hook_Function *func){
|
|
|
|
Binding_Unit unit = {};
|
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_clipboard_change;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-02-27 05:49:35 +00:00
|
|
|
static void
|
|
|
|
set_get_view_buffer_region_hook(Bind_Helper *helper, Get_View_Buffer_Region_Function *func){
|
|
|
|
Binding_Unit unit = {};
|
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_get_view_buffer_region;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_new_file_hook(Bind_Helper *helper, Open_File_Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_new_file;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_start_hook(Bind_Helper *helper, Start_Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_start;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_open_file_hook(Bind_Helper *helper, Open_File_Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_open_file;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_save_file_hook(Bind_Helper *helper, Open_File_Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_save_file;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_end_file_hook(Bind_Helper *helper, Open_File_Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_end_file;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-03-22 01:27:28 +00:00
|
|
|
static void
|
|
|
|
set_file_edit_range_hook(Bind_Helper *helper, File_Edit_Range_Function *func){
|
|
|
|
Binding_Unit unit = {};
|
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_file_edit_range;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 12:38:24 +00:00
|
|
|
static void
|
|
|
|
set_file_edit_finished_hook(Bind_Helper *helper, File_Edit_Finished_Function *func){
|
|
|
|
Binding_Unit unit = {};
|
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_file_edit_finished;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_command_caller(Bind_Helper *helper, Command_Caller_Hook_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_command_caller;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-09-22 23:45:24 +00:00
|
|
|
set_render_caller(Bind_Helper *helper, Render_Caller_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-09-22 23:45:24 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_render_caller;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static void
|
2018-05-10 08:12:47 +00:00
|
|
|
set_input_filter(Bind_Helper *helper, Input_Filter_Function *func){
|
2018-11-20 08:18:54 +00:00
|
|
|
Binding_Unit unit = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
unit.type = unit_hook;
|
|
|
|
unit.hook.hook_id = special_hook_input_filter;
|
|
|
|
unit.hook.func = (void*)func;
|
|
|
|
write_unit(helper, unit);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
2018-05-10 08:12:47 +00:00
|
|
|
end_bind_helper(Bind_Helper *helper){
|
|
|
|
if (helper->header){
|
2019-02-26 23:08:42 +00:00
|
|
|
helper->header->header.total_size = (i32)(helper->cursor - helper->start);
|
2018-05-10 08:12:47 +00:00
|
|
|
helper->header->header.error = helper->error;
|
|
|
|
}
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 result = helper->write_total;
|
2018-05-10 08:12:47 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-01-31 13:06:42 +00:00
|
|
|
static Bind_Buffer
|
2018-05-10 08:12:47 +00:00
|
|
|
end_bind_helper_get_buffer(Bind_Helper *helper){
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 size = end_bind_helper(helper);
|
2018-11-20 08:18:54 +00:00
|
|
|
Bind_Buffer result = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
result.data = helper->start;
|
|
|
|
result.size = size;
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static u32
|
2018-05-10 08:12:47 +00:00
|
|
|
get_key_code(char *buffer){
|
2019-06-01 23:58:28 +00:00
|
|
|
u32 ignore;
|
|
|
|
u32 result = utf8_to_u32_length_unchecked((u8*)buffer, &ignore);
|
2018-05-10 08:12:47 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
|
|
|
round_down(i32 x, i32 b){
|
|
|
|
i32 r = 0;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (x >= 0){
|
|
|
|
r = x - (x % b);
|
|
|
|
}
|
|
|
|
return(r);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
|
|
|
round_up(i32 x, i32 b){
|
|
|
|
i32 r = 0;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (x >= 0){
|
|
|
|
r = x + b - (x % b);
|
|
|
|
}
|
|
|
|
return(r);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
exec_command(Application_Links *app, Custom_Command_Function *func){
|
|
|
|
func(app);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
exec_command(Application_Links *app, Generic_Command cmd){
|
2019-02-08 04:45:13 +00:00
|
|
|
exec_command(app, cmd.command);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
2018-05-10 08:12:47 +00:00
|
|
|
key_is_unmodified(Key_Event_Data *key){
|
|
|
|
int8_t *mods = key->modifiers;
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 unmodified = (!mods[MDFR_CONTROL_INDEX] && !mods[MDFR_ALT_INDEX]);
|
2018-05-10 08:12:47 +00:00
|
|
|
return(unmodified);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static u32
|
2018-05-10 08:12:47 +00:00
|
|
|
to_writable_character(User_Input in, uint8_t *character){
|
2019-02-26 23:08:42 +00:00
|
|
|
u32 result = 0;
|
2018-11-20 08:18:54 +00:00
|
|
|
if (in.key.character != 0){
|
|
|
|
u32_to_utf8_unchecked(in.key.character, character, &result);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static u32
|
2018-05-10 08:12:47 +00:00
|
|
|
to_writable_character(Key_Event_Data key, uint8_t *character){
|
2019-02-26 23:08:42 +00:00
|
|
|
u32 result = 0;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (key.character != 0){
|
|
|
|
u32_to_utf8_unchecked(key.character, character, &result);
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
backspace_utf8(String_Const_u8 string){
|
|
|
|
if (string.size > 0){
|
|
|
|
umem i = string.size - 1;
|
2018-05-10 08:12:47 +00:00
|
|
|
for (; i > 0; --i){
|
2019-06-01 23:58:28 +00:00
|
|
|
if (string.str[i] <= 0x7F || string.str[i] >= 0xC0){
|
2018-05-10 08:12:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
string.size = i;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
return(string);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
|
|
|
query_user_general(Application_Links *app, Query_Bar *bar, b32 force_number){
|
2018-05-10 08:12:47 +00:00
|
|
|
// NOTE(allen|a3.4.4): It will not cause an *error* if we continue on after failing to.
|
|
|
|
// start a query bar, but it will be unusual behavior from the point of view of the
|
|
|
|
// user, if this command starts intercepting input even though no prompt is shown.
|
|
|
|
// This will only happen if you have a lot of bars open already or if the current view
|
|
|
|
// doesn't support query bars.
|
2018-11-20 04:18:57 +00:00
|
|
|
if (start_query_bar(app, bar, 0) == 0){
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 success = true;
|
2018-05-10 08:12:47 +00:00
|
|
|
|
|
|
|
for (;;){
|
|
|
|
// NOTE(allen|a3.4.4): This call will block until the user does one of the input
|
|
|
|
// types specified in the flags. The first set of flags are inputs you'd like to intercept
|
|
|
|
// that you don't want to abort on. The second set are inputs that you'd like to cause
|
|
|
|
// the command to abort. If an event satisfies both flags, it is treated as an abort.
|
2018-11-20 08:18:54 +00:00
|
|
|
User_Input in = get_user_input(app, EventOnAnyKey, EventOnEsc|EventOnMouseLeftButton|EventOnMouseRightButton);
|
2018-05-10 08:12:47 +00:00
|
|
|
|
|
|
|
// NOTE(allen|a3.4.4): The responsible thing to do on abort is to end the command
|
|
|
|
// without waiting on get_user_input again.
|
|
|
|
if (in.abort){
|
|
|
|
success = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t character[4];
|
2019-02-26 23:08:42 +00:00
|
|
|
u32 length = 0;
|
|
|
|
b32 good_character = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (key_is_unmodified(&in.key)){
|
|
|
|
if (force_number){
|
|
|
|
if (in.key.character >= '0' && in.key.character <= '9'){
|
|
|
|
good_character = true;
|
|
|
|
length = to_writable_character(in, character);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
length = to_writable_character(in, character);
|
|
|
|
if (length != 0){
|
|
|
|
good_character = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE(allen|a3.4.4): All we have to do to update the query bar is edit our
|
|
|
|
// local Query_Bar struct! This is handy because it means our Query_Bar
|
|
|
|
// is always correct for typical use without extra work updating the bar.
|
2018-11-20 08:18:54 +00:00
|
|
|
if (in.key.keycode == '\n' || in.key.keycode == '\t'){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (in.key.keycode == key_back){
|
2019-06-01 23:58:28 +00:00
|
|
|
bar->string = backspace_utf8(bar->string);
|
2018-11-20 08:18:54 +00:00
|
|
|
}
|
|
|
|
else if (good_character){
|
2019-06-01 23:58:28 +00:00
|
|
|
String_u8 string = Su8(bar->string.str, bar->string.size, bar->string_capacity);
|
|
|
|
string_append(&string, SCu8(character, length));
|
|
|
|
bar->string = string.string;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(success);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2018-05-10 08:12:47 +00:00
|
|
|
query_user_string(Application_Links *app, Query_Bar *bar){
|
2018-05-11 20:46:26 +00:00
|
|
|
return(query_user_general(app, bar, false));
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2018-05-10 08:12:47 +00:00
|
|
|
query_user_number(Application_Links *app, Query_Bar *bar){
|
2018-05-11 20:46:26 +00:00
|
|
|
return(query_user_general(app, bar, true));
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static char
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_get_char(Application_Links *app, Buffer_ID buffer_id, i32 pos){
|
|
|
|
i32 buffer_size = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &buffer_size);
|
2018-05-10 08:12:47 +00:00
|
|
|
char result = ' ';
|
2019-04-01 02:41:39 +00:00
|
|
|
if (pos < buffer_size){
|
|
|
|
buffer_read_range(app, buffer_id, pos, pos + 1, &result);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Buffer_Identifier
|
2019-02-26 23:08:42 +00:00
|
|
|
buffer_identifier(char *str, i32 len){
|
2018-05-10 08:12:47 +00:00
|
|
|
Buffer_Identifier identifier;
|
|
|
|
identifier.name = str;
|
|
|
|
identifier.name_len = len;
|
|
|
|
identifier.id = 0;
|
|
|
|
return(identifier);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static Buffer_Identifier
|
|
|
|
buffer_identifier(String_Const_u8 str){
|
|
|
|
return(buffer_identifier((char*)str.str, (i32)str.size));
|
|
|
|
}
|
|
|
|
|
2018-05-10 08:12:47 +00:00
|
|
|
static Buffer_Identifier
|
|
|
|
buffer_identifier(Buffer_ID id){
|
|
|
|
Buffer_Identifier identifier;
|
|
|
|
identifier.name = 0;
|
|
|
|
identifier.name_len = 0;
|
|
|
|
identifier.id = id;
|
|
|
|
return(identifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
adjust_all_buffer_wrap_widths(Application_Links *app, i32 wrap_width, i32 min_base_width){
|
2019-04-04 08:25:16 +00:00
|
|
|
Buffer_ID buffer = 0;
|
|
|
|
for (get_buffer_next(app, 0, AccessAll, &buffer);
|
|
|
|
buffer != 0;
|
|
|
|
get_buffer_next(app, buffer, AccessAll, &buffer)){
|
|
|
|
buffer_set_setting(app, buffer, BufferSetting_WrapPosition, wrap_width);
|
|
|
|
buffer_set_setting(app, buffer, BufferSetting_MinimumBaseWrapPosition, min_base_width);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static View_ID
|
|
|
|
open_view(Application_Links *app, View_ID view_location, View_Split_Position position){
|
|
|
|
View_ID result = 0;
|
|
|
|
if (view_location != 0 && view_exists(app, view_location)){
|
|
|
|
Panel_ID panel_id = 0;
|
|
|
|
if (view_get_panel(app, view_location, &panel_id)){
|
|
|
|
b32 vertical = (position == ViewSplit_Left || position == ViewSplit_Right);
|
|
|
|
if (panel_split(app, panel_id, vertical?PanelSplit_LeftAndRight:PanelSplit_TopAndBottom)){
|
|
|
|
Panel_ID new_panel_id = 0;
|
|
|
|
Panel_Child child = (position == ViewSplit_Left || position == ViewSplit_Top)?PanelChild_Min:PanelChild_Max;
|
|
|
|
if (panel_get_child(app, panel_id, child, &new_panel_id)){
|
|
|
|
View_ID new_view_id = 0;
|
|
|
|
if (panel_get_view(app, new_panel_id, &new_view_id)){
|
|
|
|
result = new_view_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-04-06 19:40:36 +00:00
|
|
|
static View_ID
|
|
|
|
get_first_view_with_buffer(Application_Links *app, Buffer_ID buffer_id){
|
|
|
|
View_ID result = {};
|
|
|
|
View_ID test = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
if (buffer_id != 0){
|
2019-04-06 19:40:36 +00:00
|
|
|
for (get_view_next(app, 0, AccessAll, &test);
|
|
|
|
test != 0;
|
|
|
|
get_view_next(app, test, AccessAll, &test)){
|
|
|
|
Buffer_ID test_buffer = 0;
|
|
|
|
view_get_buffer(app, test, AccessAll, &test_buffer);
|
|
|
|
if (test_buffer == buffer_id){
|
2018-05-10 08:12:47 +00:00
|
|
|
result = test;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-06-01 23:58:28 +00:00
|
|
|
open_file(Application_Links *app, Buffer_ID *buffer_out, String_Const_u8 file_name, b32 background, b32 never_new){
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 result = false;
|
2019-04-04 08:25:16 +00:00
|
|
|
Buffer_ID buffer = 0;
|
2019-06-01 23:58:28 +00:00
|
|
|
get_buffer_by_name(app, file_name, AccessProtected, &buffer);
|
2019-04-04 08:25:16 +00:00
|
|
|
b32 exists = buffer_exists(app, buffer);
|
|
|
|
if (!exists){
|
2018-05-10 08:12:47 +00:00
|
|
|
Buffer_Create_Flag flags = 0;
|
|
|
|
if (background){
|
|
|
|
flags |= BufferCreate_Background;
|
|
|
|
}
|
|
|
|
if (never_new){
|
|
|
|
flags |= BufferCreate_NeverNew;
|
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
create_buffer(app, file_name, flags, &buffer);
|
2019-04-04 08:25:16 +00:00
|
|
|
exists = buffer_exists(app, buffer);
|
|
|
|
}
|
|
|
|
if (exists){
|
|
|
|
if (buffer_out != 0){
|
|
|
|
*buffer_out = buffer;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
2019-04-04 08:25:16 +00:00
|
|
|
result = true;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Buffer_ID
|
|
|
|
buffer_identifier_to_id(Application_Links *app, Buffer_Identifier identifier){
|
|
|
|
Buffer_ID id = 0;
|
|
|
|
if (identifier.id != 0){
|
|
|
|
id = identifier.id;
|
|
|
|
}
|
|
|
|
else{
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 name = SCu8(identifier.name, identifier.name_len);
|
2019-04-04 08:25:16 +00:00
|
|
|
get_buffer_by_name(app, name, AccessAll, &id);
|
2018-05-10 08:12:47 +00:00
|
|
|
if (id == 0){
|
2019-04-04 08:25:16 +00:00
|
|
|
get_buffer_by_file_name(app, name, AccessAll, &id);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return(id);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static Buffer_ID
|
|
|
|
buffer_identifier_to_id_create_out_buffer(Application_Links *app, Buffer_Identifier buffer_id){
|
|
|
|
Buffer_ID result = 0;
|
|
|
|
if (buffer_id.name != 0 && buffer_id.name_len > 0){
|
|
|
|
String_Const_u8 buffer_name = SCu8(buffer_id.name, buffer_id.name_len);
|
|
|
|
Buffer_ID buffer_attach_id = 0;
|
|
|
|
if (get_buffer_by_name(app, buffer_name, AccessAll, &buffer_attach_id)){
|
|
|
|
result = buffer_attach_id;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
if (create_buffer(app, buffer_name, BufferCreate_AlwaysNew|BufferCreate_NeverAttachToFile, &buffer_attach_id)){
|
|
|
|
buffer_set_setting(app, buffer_attach_id, BufferSetting_ReadOnly, true);
|
|
|
|
buffer_set_setting(app, buffer_attach_id, BufferSetting_Unimportant, true);
|
|
|
|
result = buffer_attach_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
result = buffer_id.id;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-06-01 23:58:28 +00:00
|
|
|
view_open_file(Application_Links *app, View_ID view, String_Const_u8 file_name, b32 never_new){
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 result = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (view != 0){
|
2019-04-06 23:36:53 +00:00
|
|
|
Buffer_ID buffer = 0;
|
2019-06-01 23:58:28 +00:00
|
|
|
if (open_file(app, &buffer, file_name, false, never_new)){
|
2019-04-04 08:25:16 +00:00
|
|
|
view_set_buffer(app, view, buffer, 0);
|
2018-05-10 08:12:47 +00:00
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-03-22 05:06:30 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static View_ID
|
|
|
|
get_next_view_looped_all_panels(Application_Links *app, View_ID view_id, Access_Flag access){
|
|
|
|
if (!get_view_next(app, view_id, access, &view_id)){
|
2019-03-31 18:55:26 +00:00
|
|
|
if (!get_view_next(app, 0, access, &view_id)){
|
2019-03-22 05:06:30 +00:00
|
|
|
view_id = 0;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-22 05:06:30 +00:00
|
|
|
return(view_id);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-03-22 05:06:30 +00:00
|
|
|
static View_ID
|
|
|
|
get_prev_view_looped_all_panels(Application_Links *app, View_ID view_id, Access_Flag access){
|
|
|
|
if (!get_view_prev(app, view_id, access, &view_id)){
|
|
|
|
if (!get_view_prev(app, 0, access, &view_id)){
|
|
|
|
view_id = 0;
|
|
|
|
}
|
2018-08-05 07:09:18 +00:00
|
|
|
}
|
2019-03-22 05:06:30 +00:00
|
|
|
return(view_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static Buffer_Kill_Result
|
|
|
|
kill_buffer(Application_Links *app, Buffer_Identifier identifier, View_ID gui_view_id, Buffer_Kill_Flag flags){
|
2019-06-01 23:58:28 +00:00
|
|
|
Buffer_ID buffer = buffer_identifier_to_id(app, identifier);
|
|
|
|
Buffer_Kill_Result result = 0;
|
|
|
|
buffer_kill(app, buffer, flags, &result);
|
2019-03-22 05:06:30 +00:00
|
|
|
if (result == BufferKillResult_Dirty){
|
2019-04-05 02:03:36 +00:00
|
|
|
Buffer_ID buffer = buffer_identifier_to_id(app, identifier);
|
2019-04-06 19:40:36 +00:00
|
|
|
do_gui_sure_to_kill(app, buffer, gui_view_id);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
2019-03-22 05:06:30 +00:00
|
|
|
return(result);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
2019-04-06 23:36:53 +00:00
|
|
|
character_pos_to_pos(Application_Links *app, View_ID view, i32 character_pos){
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 result = 0;
|
2018-11-20 08:18:54 +00:00
|
|
|
Full_Cursor cursor = {};
|
2018-05-10 08:12:47 +00:00
|
|
|
if (view_compute_cursor(app, view, seek_character_pos(character_pos), &cursor)){
|
|
|
|
result = cursor.pos;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-04-06 23:36:53 +00:00
|
|
|
static f32
|
|
|
|
get_view_y(Application_Links *app, View_ID view){
|
|
|
|
i32 pos = 0;
|
|
|
|
view_get_cursor_pos(app, view, &pos);
|
|
|
|
Full_Cursor cursor = {};
|
|
|
|
view_compute_cursor(app, view, seek_pos(pos), &cursor);
|
|
|
|
return(cursor.wrapped_y);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 23:36:53 +00:00
|
|
|
static f32
|
|
|
|
get_view_x(Application_Links *app, View_ID view){
|
|
|
|
i32 pos = 0;
|
|
|
|
view_get_cursor_pos(app, view, &pos);
|
|
|
|
Full_Cursor cursor = {};
|
|
|
|
view_compute_cursor(app, view, seek_pos(pos), &cursor);
|
|
|
|
return(cursor.wrapped_x);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Range
|
2019-04-06 21:13:49 +00:00
|
|
|
get_view_range(Application_Links *app, View_ID view){
|
|
|
|
Range range = {};
|
|
|
|
view_get_cursor_pos(app, view, &range.first);
|
|
|
|
view_get_mark_pos(app, view, &range.one_past_last);
|
|
|
|
return(rectify(range));
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
buffer_read_string(Application_Links *app, Buffer_ID buffer, Range range, void *dest){
|
|
|
|
String_Const_u8 result = {};
|
|
|
|
if (dest != 0 && buffer_read_range(app, buffer, range.start, range.end, (char*)dest)){
|
|
|
|
result = SCu8((u8*)dest, get_width(range));
|
2019-04-01 06:14:31 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-06-01 23:58:28 +00:00
|
|
|
is_valid_line(Application_Links *app, Buffer_ID buffer_id, i32 line){
|
|
|
|
i32 max_line = 0;
|
|
|
|
buffer_get_line_count(app, buffer_id, &max_line);
|
|
|
|
return(1 <= line && line <= max_line);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Range_Partial_Cursor
|
|
|
|
get_line_range(Application_Links *app, Buffer_ID buffer_id, i32 line){
|
|
|
|
Range_Partial_Cursor result = {};
|
|
|
|
b32 success = (buffer_compute_cursor(app, buffer_id, seek_line_char(line, 1), &result.begin) &&
|
|
|
|
buffer_compute_cursor(app, buffer_id, seek_line_char(line, -1), &result.end) &&
|
|
|
|
result.begin.line == line);
|
|
|
|
if (!success){
|
|
|
|
block_zero_struct(&result);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
return(result);
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static Range_umem
|
|
|
|
make_range_from_cursors(Range_Partial_Cursor range){
|
|
|
|
return(make_range_umem(range.begin.pos, range.end.pos));
|
2019-02-12 02:33:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
scratch_read(Application_Links *app, Arena *arena, Buffer_ID buffer, umem start, umem end){
|
|
|
|
String_Const_u8 result = {};
|
2019-02-24 07:22:16 +00:00
|
|
|
if (start <= end){
|
2019-06-01 23:58:28 +00:00
|
|
|
umem length = end - start;
|
|
|
|
u8 *memory = push_array(arena, u8, length);
|
|
|
|
if (buffer_read_range(app, buffer, (i32)start, (i32)end, (char*)memory)){
|
|
|
|
result = SCu8(memory, length);
|
2019-02-24 07:22:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
scratch_read(Application_Links *app, Arena *arena, Buffer_ID buffer, Range range){
|
|
|
|
return(scratch_read(app, arena, buffer, range.first, range.one_past_last));
|
2019-04-01 06:14:31 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
scratch_read(Application_Links *app, Arena *arena, Buffer_ID buffer, Range_umem range){
|
|
|
|
return(scratch_read(app, arena, buffer, range.first, range.one_past_last));
|
2019-04-01 06:14:31 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
scratch_read(Application_Links *app, Arena *arena, Buffer_ID buffer, Cpp_Token token){
|
|
|
|
return(scratch_read(app, arena, buffer, token.start, token.start + token.size));
|
2019-04-01 06:14:31 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
scratch_read_line(Application_Links *app, Arena *arena, Buffer_ID buffer, i32 line){
|
|
|
|
Range_umem range = make_range_from_cursors(get_line_range(app, buffer, line));
|
|
|
|
return(scratch_read(app, arena, buffer, range));
|
|
|
|
}
|
|
|
|
|
|
|
|
static String_Const_u8
|
|
|
|
token_get_lexeme(Application_Links *app, Arena *arena, Buffer_ID buffer, Cpp_Token token){
|
|
|
|
return(scratch_read(app, arena, buffer, token.start, token.start + token.size));
|
|
|
|
}
|
|
|
|
|
|
|
|
static String_Const_u8
|
|
|
|
get_token_lexeme(Application_Links *app, Arena *arena, Buffer_ID buffer, Cpp_Token token){
|
|
|
|
return(scratch_read(app, arena, buffer, token.start, token.start + token.size));
|
2019-02-24 07:22:16 +00:00
|
|
|
}
|
|
|
|
|
2019-04-05 02:03:36 +00:00
|
|
|
static b32
|
2019-06-01 23:58:28 +00:00
|
|
|
token_match(Application_Links *app, Buffer_ID buffer, Cpp_Token token, String_Const_u8 b){
|
2019-04-05 02:03:36 +00:00
|
|
|
Arena *scratch = context_get_arena(app);
|
2019-06-01 23:58:28 +00:00
|
|
|
Temp_Memory temp = begin_temp(scratch);
|
|
|
|
String_Const_u8 a = scratch_read(app, scratch, buffer, token.start, token.start + token.size);
|
|
|
|
b32 result = string_match(a, b);
|
|
|
|
end_temp(temp);
|
2019-04-05 02:03:36 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-01 06:14:31 +00:00
|
|
|
read_entire_buffer(Application_Links *app, Buffer_ID buffer_id, Arena *scratch){
|
|
|
|
i32 size = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &size);
|
|
|
|
return(scratch_read(app, scratch, buffer_id, 0, size));
|
|
|
|
}
|
|
|
|
|
2019-04-05 02:03:36 +00:00
|
|
|
static i32
|
|
|
|
buffer_get_line_number(Application_Links *app, Buffer_ID buffer, i32 pos){
|
|
|
|
Partial_Cursor partial_cursor = {};
|
|
|
|
buffer_compute_cursor(app, buffer, seek_pos(pos), &partial_cursor);
|
|
|
|
return(partial_cursor.line);
|
|
|
|
}
|
|
|
|
|
|
|
|
static i32
|
|
|
|
view_get_line_number(Application_Links *app, View_ID view, i32 pos){
|
|
|
|
Full_Cursor cursor = {};
|
|
|
|
view_compute_cursor(app, view, seek_pos(pos), &cursor);
|
|
|
|
return(cursor.line);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_get_line_start(Application_Links *app, Buffer_ID buffer_id, i32 line){
|
|
|
|
i32 result = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &result);
|
|
|
|
i32 line_count = 0;
|
|
|
|
buffer_get_line_count(app, buffer_id, &line_count);
|
|
|
|
if (line <= line_count){
|
2018-11-20 08:18:54 +00:00
|
|
|
Partial_Cursor partial_cursor = {};
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_compute_cursor(app, buffer_id, seek_line_char(line, 1), &partial_cursor);
|
2018-05-10 08:12:47 +00:00
|
|
|
result = partial_cursor.pos;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_get_line_end(Application_Links *app, Buffer_ID buffer_id, i32 line){
|
|
|
|
i32 result = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &result);
|
|
|
|
i32 line_count = 0;
|
|
|
|
buffer_get_line_count(app, buffer_id, &line_count);
|
|
|
|
if (line <= line_count){
|
2018-11-20 08:18:54 +00:00
|
|
|
Partial_Cursor partial_cursor = {};
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_compute_cursor(app, buffer_id, seek_line_char(line, -1), &partial_cursor);
|
2018-05-10 08:12:47 +00:00
|
|
|
result = partial_cursor.pos;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Cpp_Token*
|
2019-04-01 02:41:39 +00:00
|
|
|
get_first_token_at_line(Application_Links *app, Buffer_ID buffer_id, Cpp_Token_Array tokens, i32 line, i32 *line_start_out = 0){
|
|
|
|
i32 line_start = buffer_get_line_start(app, buffer_id, line);
|
2018-05-10 08:12:47 +00:00
|
|
|
Cpp_Get_Token_Result get_token = cpp_get_token(tokens, line_start);
|
2019-02-21 06:58:34 +00:00
|
|
|
if (get_token.in_whitespace_after_token){
|
2018-05-10 08:12:47 +00:00
|
|
|
get_token.token_index += 1;
|
|
|
|
}
|
|
|
|
if (line_start_out){
|
|
|
|
*line_start_out = line_start;
|
|
|
|
}
|
|
|
|
Cpp_Token *result = 0;
|
|
|
|
if (get_token.token_index < tokens.count){
|
|
|
|
result = &tokens.tokens[get_token.token_index];
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-04-05 02:03:36 +00:00
|
|
|
static void
|
|
|
|
clear_buffer(Application_Links *app, Buffer_ID buffer_id){
|
|
|
|
i32 buffer_size = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &buffer_size);
|
2019-06-01 23:58:28 +00:00
|
|
|
buffer_replace_range(app, buffer_id, make_range(0, buffer_size), string_u8_litexpr(""));
|
2019-04-05 02:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-04-01 02:41:39 +00:00
|
|
|
init_stream_chunk(Stream_Chunk *chunk, Application_Links *app, Buffer_ID buffer_id,
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 pos, char *data, u32 size){
|
|
|
|
b32 result = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
|
2019-04-01 02:41:39 +00:00
|
|
|
i32 buffer_size = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &buffer_size);
|
|
|
|
if (0 <= pos && pos < buffer_size && size > 0){
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->app = app;
|
2019-04-01 02:41:39 +00:00
|
|
|
chunk->buffer_id = buffer_id;
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->base_data = data;
|
|
|
|
chunk->data_size = size;
|
|
|
|
chunk->start = round_down(pos, size);
|
|
|
|
chunk->end = round_up(pos, size);
|
|
|
|
|
2019-04-01 02:41:39 +00:00
|
|
|
if (chunk->max_end > buffer_size || chunk->max_end == 0){
|
|
|
|
chunk->max_end = buffer_size;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (chunk->max_end && chunk->max_end < chunk->end){
|
|
|
|
chunk->end = chunk->max_end;
|
|
|
|
}
|
|
|
|
if (chunk->min_start && chunk->min_start > chunk->start){
|
|
|
|
chunk->start = chunk->min_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chunk->start < chunk->end){
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_range(app, buffer_id, chunk->start, chunk->end, chunk->base_data);
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->data = chunk->base_data - chunk->start;
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2018-05-10 08:12:47 +00:00
|
|
|
forward_stream_chunk(Stream_Chunk *chunk){
|
|
|
|
Application_Links *app = chunk->app;
|
2019-04-01 02:41:39 +00:00
|
|
|
Buffer_ID buffer_id = chunk->buffer_id;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 result = 0;
|
2018-05-10 08:12:47 +00:00
|
|
|
|
2019-04-01 02:41:39 +00:00
|
|
|
i32 buffer_size = 0;
|
|
|
|
buffer_get_size(app, buffer_id, &buffer_size);
|
|
|
|
if (chunk->end < buffer_size){
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->start = chunk->end;
|
|
|
|
chunk->end += chunk->data_size;
|
|
|
|
|
|
|
|
if (chunk->max_end && chunk->max_end < chunk->end){
|
|
|
|
chunk->end = chunk->max_end;
|
|
|
|
}
|
|
|
|
if (chunk->min_start && chunk->min_start > chunk->start){
|
|
|
|
chunk->start = chunk->min_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chunk->start < chunk->end){
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_range(app, buffer_id, chunk->start, chunk->end, chunk->base_data);
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->data = chunk->base_data - chunk->start;
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 02:41:39 +00:00
|
|
|
else if (chunk->add_null && chunk->end + 1 < buffer_size){
|
|
|
|
chunk->start = buffer_size;
|
|
|
|
chunk->end = buffer_size + 1;
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->base_data[0] = 0;
|
|
|
|
chunk->data = chunk->base_data - chunk->start;
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2018-05-10 08:12:47 +00:00
|
|
|
backward_stream_chunk(Stream_Chunk *chunk){
|
|
|
|
Application_Links *app = chunk->app;
|
2019-04-01 02:41:39 +00:00
|
|
|
Buffer_ID buffer_id = chunk->buffer_id;
|
|
|
|
b32 result = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
|
|
|
|
if (chunk->start > 0){
|
|
|
|
chunk->end = chunk->start;
|
|
|
|
chunk->start -= chunk->data_size;
|
|
|
|
|
|
|
|
if (chunk->max_end && chunk->max_end < chunk->end){
|
|
|
|
chunk->end = chunk->max_end;
|
|
|
|
}
|
|
|
|
if (chunk->min_start && chunk->min_start > chunk->start){
|
|
|
|
chunk->start = chunk->min_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chunk->start < chunk->end){
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_range(app, buffer_id, chunk->start, chunk->end, chunk->base_data);
|
2018-05-10 08:12:47 +00:00
|
|
|
chunk->data = chunk->base_data - chunk->start;
|
2019-04-01 02:41:39 +00:00
|
|
|
result = true;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (chunk->add_null && chunk->start > -1){
|
|
|
|
chunk->start = -1;
|
|
|
|
chunk->end = 0;
|
|
|
|
chunk->base_data[0] = 0;
|
|
|
|
chunk->data = chunk->base_data - chunk->start;
|
2019-04-01 02:41:39 +00:00
|
|
|
result = true;
|
2018-05-10 08:12:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-04-01 02:41:39 +00:00
|
|
|
init_stream_tokens(Stream_Tokens_DEP *stream, Application_Links *app, Buffer_ID buffer_id, i32 pos, Cpp_Token *data, i32 count){
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 result = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
|
2019-04-01 02:41:39 +00:00
|
|
|
i32 token_count = 0;
|
|
|
|
buffer_token_count(app, buffer_id, &token_count);
|
|
|
|
if (buffer_tokens_are_ready(app, buffer_id) && pos >= 0 && pos < token_count && count > 0){
|
2018-05-10 08:12:47 +00:00
|
|
|
stream->app = app;
|
2019-04-01 02:41:39 +00:00
|
|
|
stream->buffer_id = buffer_id;
|
2018-05-10 08:12:47 +00:00
|
|
|
stream->base_tokens = data;
|
|
|
|
stream->count = count;
|
|
|
|
stream->start = round_down(pos, count);
|
|
|
|
stream->end = round_up(pos, count);
|
|
|
|
stream->token_count = token_count;
|
|
|
|
|
|
|
|
if (stream->start < 0){
|
|
|
|
stream->start = 0;
|
|
|
|
}
|
|
|
|
if (stream->end > stream->token_count){
|
|
|
|
stream->end = stream->token_count;
|
|
|
|
}
|
|
|
|
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_tokens(app, buffer_id, stream->start, stream->end, stream->base_tokens);
|
2018-05-10 08:12:47 +00:00
|
|
|
stream->tokens = stream->base_tokens - stream->start;
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-01 22:50:33 +00:00
|
|
|
static Stream_Tokens_DEP
|
|
|
|
begin_temp_stream_token(Stream_Tokens_DEP *stream){
|
2018-05-10 08:12:47 +00:00
|
|
|
return(*stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-02-01 22:50:33 +00:00
|
|
|
end_temp_stream_token(Stream_Tokens_DEP *stream, Stream_Tokens_DEP temp){
|
2018-05-10 08:12:47 +00:00
|
|
|
if (stream->start != temp.start || stream->end != temp.end){
|
|
|
|
Application_Links *app = stream->app;
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_tokens(app, temp.buffer_id, temp.start, temp.end, temp.base_tokens);
|
2018-05-10 08:12:47 +00:00
|
|
|
stream->tokens = stream->base_tokens - temp.start;
|
|
|
|
stream->start = temp.start;
|
|
|
|
stream->end = temp.end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-02-01 22:50:33 +00:00
|
|
|
forward_stream_tokens(Stream_Tokens_DEP *stream){
|
2018-05-10 08:12:47 +00:00
|
|
|
Application_Links *app = stream->app;
|
2019-04-01 02:41:39 +00:00
|
|
|
Buffer_ID buffer_id = stream->buffer_id;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 result = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (stream->end < stream->token_count){
|
|
|
|
stream->start = stream->end;
|
|
|
|
stream->end += stream->count;
|
|
|
|
if (stream->end > stream->token_count){
|
|
|
|
stream->end = stream->token_count;
|
|
|
|
}
|
|
|
|
if (stream->start < stream->end){
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_tokens(app, buffer_id, stream->start, stream->end, stream->base_tokens);
|
2018-05-10 08:12:47 +00:00
|
|
|
stream->tokens = stream->base_tokens - stream->start;
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-02-01 22:50:33 +00:00
|
|
|
backward_stream_tokens(Stream_Tokens_DEP *stream){
|
2018-05-10 08:12:47 +00:00
|
|
|
Application_Links *app = stream->app;
|
2019-04-01 02:41:39 +00:00
|
|
|
Buffer_ID buffer_id = stream->buffer_id;
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 result = false;
|
2018-05-10 08:12:47 +00:00
|
|
|
if (stream->start > 0){
|
|
|
|
stream->end = stream->start;
|
|
|
|
stream->start -= stream->count;
|
|
|
|
if (0 > stream->start){
|
|
|
|
stream->start = 0;
|
|
|
|
}
|
|
|
|
if (stream->start < stream->end){
|
2019-04-01 02:41:39 +00:00
|
|
|
buffer_read_tokens(app, buffer_id, stream->start, stream->end, stream->base_tokens);
|
2018-05-10 08:12:47 +00:00
|
|
|
stream->tokens = stream->base_tokens - stream->start;
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-01 22:50:33 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static Token_Range
|
2019-04-04 08:25:16 +00:00
|
|
|
buffer_get_token_range(Application_Links *app, Buffer_ID buffer){
|
2019-02-01 22:50:33 +00:00
|
|
|
Token_Range range = {};
|
2019-04-04 08:25:16 +00:00
|
|
|
buffer_get_token_range(app, buffer, &range.first, &range.one_past_last);
|
2019-02-01 22:50:33 +00:00
|
|
|
return(range);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Token_Iterator
|
|
|
|
make_token_iterator(Token_Range range, Cpp_Token *token){
|
|
|
|
Token_Iterator iterator = {};
|
|
|
|
if (range.first != 0 && range.one_past_last != 0){
|
|
|
|
if (token == 0 || token < range.first){
|
|
|
|
token = range.first;
|
|
|
|
}
|
|
|
|
if (token > range.one_past_last){
|
|
|
|
token = range.one_past_last;
|
|
|
|
}
|
|
|
|
iterator.token = token;
|
|
|
|
iterator.range = range;
|
|
|
|
}
|
|
|
|
return(iterator);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Token_Iterator
|
2019-02-26 23:08:42 +00:00
|
|
|
make_token_iterator(Token_Range range, i32 index){
|
2019-02-01 22:50:33 +00:00
|
|
|
return(make_token_iterator(range, range.first + index));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
token_iterator_set(Token_Iterator *iterator, Cpp_Token *token){
|
|
|
|
*iterator = make_token_iterator(iterator->range, token);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Cpp_Token*
|
2019-02-02 00:23:48 +00:00
|
|
|
token_range_check(Token_Range range, Cpp_Token *token){
|
|
|
|
if (token < range.first || range.one_past_last <= token){
|
2019-02-01 22:50:33 +00:00
|
|
|
token = 0;
|
|
|
|
}
|
|
|
|
return(token);
|
|
|
|
}
|
|
|
|
|
2019-02-02 00:23:48 +00:00
|
|
|
static Cpp_Token*
|
|
|
|
token_iterator_current(Token_Iterator *iterator){
|
|
|
|
return(token_range_check(iterator->range, iterator->token));
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static i32
|
2019-02-01 22:50:33 +00:00
|
|
|
token_iterator_current_index(Token_Iterator *iterator){
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 index = -1;
|
2019-02-01 22:50:33 +00:00
|
|
|
Cpp_Token *token = token_iterator_current(iterator);
|
|
|
|
if (token != 0 && iterator->range.first <= token && token <= iterator->range.one_past_last){
|
2019-02-26 23:08:42 +00:00
|
|
|
index = (i32)(token - iterator->range.first);
|
2019-02-01 22:50:33 +00:00
|
|
|
}
|
|
|
|
return(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Cpp_Token*
|
|
|
|
token_iterator_goto_next(Token_Iterator *iterator){
|
|
|
|
Cpp_Token *token = iterator->token;
|
|
|
|
Cpp_Token *one_past_last = iterator->range.one_past_last;
|
|
|
|
for (token += 1; token < one_past_last; token += 1){
|
|
|
|
if (token->type != CPP_TOKEN_COMMENT){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-02-02 00:23:48 +00:00
|
|
|
Cpp_Token *result = token_range_check(iterator->range, token);
|
2019-02-01 22:50:33 +00:00
|
|
|
*iterator = make_token_iterator(iterator->range, token);
|
2019-02-02 00:23:48 +00:00
|
|
|
return(result);
|
2019-02-01 22:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Cpp_Token*
|
|
|
|
token_iterator_goto_next_raw(Token_Iterator *iterator){
|
2019-02-02 00:23:48 +00:00
|
|
|
Cpp_Token *result = token_range_check(iterator->range, iterator->token + 1);
|
2019-02-01 22:50:33 +00:00
|
|
|
*iterator = make_token_iterator(iterator->range, iterator->token + 1);
|
2019-02-02 00:23:48 +00:00
|
|
|
return(result);
|
2019-02-01 22:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Cpp_Token*
|
|
|
|
token_iterator_goto_prev(Token_Iterator *iterator){
|
|
|
|
Cpp_Token *token = iterator->token;
|
|
|
|
Cpp_Token *first = iterator->range.first;
|
2019-02-02 00:23:48 +00:00
|
|
|
for (token -= 1; token >= first; token -= 1){
|
2019-02-01 22:50:33 +00:00
|
|
|
if (token->type != CPP_TOKEN_COMMENT){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2019-02-02 00:23:48 +00:00
|
|
|
Cpp_Token *result = token_range_check(iterator->range, token);
|
2019-02-01 22:50:33 +00:00
|
|
|
*iterator = make_token_iterator(iterator->range, token);
|
2019-02-02 00:23:48 +00:00
|
|
|
return(result);
|
2019-02-01 22:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Cpp_Token*
|
|
|
|
token_iterator_goto_prev_raw(Token_Iterator *iterator){
|
2019-02-02 00:23:48 +00:00
|
|
|
Cpp_Token *result = token_range_check(iterator->range, iterator->token - 1);
|
2019-02-01 22:50:33 +00:00
|
|
|
*iterator = make_token_iterator(iterator->range, iterator->token - 1);
|
2019-02-02 00:23:48 +00:00
|
|
|
return(result);
|
2019-02-01 22:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-02-26 23:08:42 +00:00
|
|
|
get_query_string(Application_Links *app, char *query_str, char *string_space, i32 space_size){
|
2018-05-11 20:46:26 +00:00
|
|
|
Query_Bar bar;
|
2019-06-01 23:58:28 +00:00
|
|
|
bar.prompt = SCu8((u8*)query_str);
|
|
|
|
bar.string = SCu8((u8*)string_space, (umem)0);
|
|
|
|
bar.string_capacity = space_size;
|
2018-05-11 20:46:26 +00:00
|
|
|
if (!query_user_string(app, &bar)){
|
|
|
|
bar.string.size = 0;
|
|
|
|
}
|
|
|
|
return(bar.string);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
get_string_in_view_range(Application_Links *app, Arena *arena, View_ID view){
|
|
|
|
String_Const_u8 result = {};
|
2019-04-04 08:25:16 +00:00
|
|
|
Buffer_ID buffer = 0;
|
2019-04-07 17:36:24 +00:00
|
|
|
view_get_buffer(app, view, AccessProtected, &buffer);
|
2019-04-04 08:25:16 +00:00
|
|
|
if (buffer_exists(app, buffer)){
|
2019-04-07 17:36:24 +00:00
|
|
|
Range range = get_view_range(app, view);
|
2019-06-01 23:58:28 +00:00
|
|
|
umem query_length = range.max - range.min;
|
|
|
|
if (query_length > 0){
|
|
|
|
result = scratch_read(app, arena, buffer, range.first, range.one_past_last);
|
2018-05-11 20:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
return(result);
|
2018-05-11 20:46:26 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
get_token_or_word_under_pos(Application_Links *app, Arena *arena, Buffer_ID buffer, umem pos){
|
|
|
|
String_Const_u8 result = {};
|
2018-11-20 08:18:54 +00:00
|
|
|
Cpp_Get_Token_Result get_result = {};
|
2019-06-01 23:58:28 +00:00
|
|
|
b32 success = buffer_get_token_index(app, buffer, (i32)pos, &get_result);
|
2019-02-21 06:58:34 +00:00
|
|
|
if (success && !get_result.in_whitespace_after_token){
|
2019-06-01 23:58:28 +00:00
|
|
|
umem size = get_result.token_one_past_last - get_result.token_start;
|
|
|
|
if (0 < size){
|
|
|
|
result = scratch_read(app, arena, buffer, get_result.token_start, get_result.token_one_past_last);
|
2018-05-11 20:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-06-01 23:58:28 +00:00
|
|
|
lexer_keywords_default_init(Arena *arena, Cpp_Keyword_Table *kw_out, Cpp_Keyword_Table *pp_out){
|
2019-02-26 23:08:42 +00:00
|
|
|
b32 success = false;
|
2019-06-01 23:58:28 +00:00
|
|
|
umem kw_size = cpp_get_table_memory_size_default(CPP_TABLE_KEYWORDS);
|
|
|
|
umem pp_size = cpp_get_table_memory_size_default(CPP_TABLE_PREPROCESSOR_DIRECTIVES);
|
|
|
|
void *kw_mem = push_array(arena, char, kw_size);
|
|
|
|
void *pp_mem = push_array(arena, char, pp_size);
|
2018-05-19 22:05:31 +00:00
|
|
|
if (kw_mem != 0 && pp_mem != 0){
|
2018-05-26 07:49:37 +00:00
|
|
|
*kw_out = cpp_make_table_default(CPP_TABLE_KEYWORDS, kw_mem, kw_size);
|
|
|
|
*pp_out = cpp_make_table_default(CPP_TABLE_PREPROCESSOR_DIRECTIVES, pp_mem, pp_size);
|
2018-05-19 22:05:31 +00:00
|
|
|
success = true;
|
2018-05-26 07:49:37 +00:00
|
|
|
}
|
2018-05-19 22:05:31 +00:00
|
|
|
return(success);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static b32
|
|
|
|
file_exists(Application_Links *app, String_Const_u8 file_name){
|
|
|
|
File_Attributes attributes = {};
|
|
|
|
file_get_attributes(app, file_name, &attributes);
|
|
|
|
return(attributes.last_write_time > 0);
|
2019-02-05 00:10:38 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static Data
|
|
|
|
dump_file_handle(Arena *arena, FILE *file){
|
|
|
|
Data result = {};
|
2018-05-12 00:53:02 +00:00
|
|
|
if (file != 0){
|
|
|
|
fseek(file, 0, SEEK_END);
|
2019-06-01 23:58:28 +00:00
|
|
|
umem size = ftell(file);
|
|
|
|
char *mem = push_array(arena, char, size);
|
2018-05-12 00:53:02 +00:00
|
|
|
if (mem != 0){
|
|
|
|
fseek(file, 0, SEEK_SET);
|
|
|
|
fread(mem, 1, size, file);
|
2019-06-01 23:58:28 +00:00
|
|
|
result = make_data(mem, size);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
return(result);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
|
|
|
push_file_search_up_path(Application_Links *app, Arena *arena, String_Const_u8 start_path, String_Const_u8 file_name){
|
|
|
|
String_Const_u8 result = {};
|
|
|
|
String_Const_u8 path = start_path;
|
|
|
|
for (;path.size > 0;){
|
|
|
|
Temp_Memory temp = begin_temp(arena);
|
|
|
|
if (character_is_slash(string_get_character(path, path.size - 1))){
|
|
|
|
path = string_chop(path, 1);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 full_path = string_u8_pushf(arena, "%.*s/%.*s",
|
|
|
|
string_expand(path),
|
|
|
|
string_expand(file_name));
|
|
|
|
if (file_exists(app, full_path)){
|
|
|
|
result = full_path;
|
2018-05-12 00:53:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
path = string_remove_last_folder(path);
|
|
|
|
end_temp(temp);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
2018-05-19 22:05:31 +00:00
|
|
|
return(result);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static FILE*
|
|
|
|
open_file_try_current_path_then_binary_path(Application_Links *app, char *file_name){
|
|
|
|
FILE *file = fopen(file_name, "rb");
|
|
|
|
if (file == 0){
|
2019-06-01 23:58:28 +00:00
|
|
|
Scratch_Block scratch(app);
|
|
|
|
List_String_Const_u8 list = {};
|
|
|
|
string_list_push(scratch, &list, push_4ed_path(app, scratch));
|
|
|
|
string_list_push_overlap(scratch, &list, '/', SCu8(file_name));
|
|
|
|
String_Const_u8 str = string_list_flatten(scratch, list, StringFill_NullTerminate);
|
|
|
|
file = fopen((char*)str.str, "rb");
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
|
|
|
return(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
static FILE*
|
2019-06-01 23:58:28 +00:00
|
|
|
open_file(Arena *scratch, String_Const_u8 name){
|
|
|
|
Temp_Memory temp = begin_temp(scratch);
|
|
|
|
String_Const_u8 name_copy = string_copy(scratch, name);
|
|
|
|
FILE *file = fopen((char*)name_copy.str, "rb");
|
|
|
|
end_temp(temp);
|
2018-05-12 00:53:02 +00:00
|
|
|
return(file);
|
|
|
|
}
|
|
|
|
|
2018-05-19 22:05:31 +00:00
|
|
|
static File_Name_Data
|
2019-06-01 23:58:28 +00:00
|
|
|
dump_file(Arena *arena, String_Const_u8 file_name){
|
2018-11-20 08:18:54 +00:00
|
|
|
File_Name_Data result = {};
|
2018-05-19 22:05:31 +00:00
|
|
|
FILE *file = open_file(arena, file_name);
|
2018-05-12 00:53:02 +00:00
|
|
|
if (file != 0){
|
2018-05-19 22:05:31 +00:00
|
|
|
result.file_name = file_name;
|
2018-05-26 07:49:37 +00:00
|
|
|
result.data = dump_file_handle(arena, file);
|
2018-05-12 00:53:02 +00:00
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static File_Name_Data
|
|
|
|
dump_file_search_up_path(Application_Links *app, Arena *arena, String_Const_u8 path, String_Const_u8 file_name){
|
|
|
|
File_Name_Data result = {};
|
|
|
|
String_Const_u8 full_path = push_file_search_up_path(app, arena, path, file_name);
|
|
|
|
if (full_path.size > 0){
|
|
|
|
result = dump_file(arena, full_path);
|
2018-05-12 00:53:02 +00:00
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2018-08-18 08:16:52 +00:00
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
sort_pairs_by_key__quick(Sort_Pair_i32 *pairs, i32 first, i32 one_past_last){
|
|
|
|
i32 dif = one_past_last - first;
|
2018-08-18 08:16:52 +00:00
|
|
|
if (dif >= 2){
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 pivot = one_past_last - 1;
|
2018-09-17 18:47:06 +00:00
|
|
|
Sort_Pair_i32 pivot_pair = pairs[pivot];
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 j = first;
|
|
|
|
b32 interleave = false;
|
|
|
|
for (i32 i = first; i < pivot; i += 1){
|
2018-09-17 18:47:06 +00:00
|
|
|
Sort_Pair_i32 pair = pairs[i];
|
|
|
|
if (pair.key < pivot_pair.key){
|
|
|
|
pairs[i] = pairs[j];
|
|
|
|
pairs[j] = pair;
|
2018-08-18 08:16:52 +00:00
|
|
|
j += 1;
|
|
|
|
}
|
2018-09-17 18:47:06 +00:00
|
|
|
else if (pair.key == pivot_pair.key){
|
2018-08-18 08:16:52 +00:00
|
|
|
if (interleave){
|
2018-09-17 18:47:06 +00:00
|
|
|
pairs[i] = pairs[j];
|
|
|
|
pairs[j] = pair;
|
2018-08-18 08:16:52 +00:00
|
|
|
j += 1;
|
|
|
|
}
|
|
|
|
interleave = !interleave;
|
|
|
|
}
|
|
|
|
}
|
2018-09-17 18:47:06 +00:00
|
|
|
pairs[pivot] = pairs[j];
|
|
|
|
pairs[j] = pivot_pair;
|
2018-08-18 08:16:52 +00:00
|
|
|
sort_pairs_by_key__quick(pairs, first, j);
|
|
|
|
sort_pairs_by_key__quick(pairs, j + 1, one_past_last);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-02-26 23:08:42 +00:00
|
|
|
sort_pairs_by_key(Sort_Pair_i32 *pairs, i32 count){
|
2018-08-18 08:16:52 +00:00
|
|
|
sort_pairs_by_key__quick(pairs, 0, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Range_Array
|
2019-06-01 23:58:28 +00:00
|
|
|
get_ranges_of_duplicate_keys(Arena *arena, i32 *keys, i32 stride, i32 count){
|
2018-11-20 08:18:54 +00:00
|
|
|
Range_Array result = {};
|
2019-06-01 23:58:28 +00:00
|
|
|
result.ranges = push_array(arena, Range, count);
|
|
|
|
u8 *ptr = (u8*)keys;
|
2019-02-26 23:08:42 +00:00
|
|
|
i32 start_i = 0;
|
|
|
|
for (i32 i = 1; i <= count; i += 1){
|
|
|
|
b32 is_end = false;
|
2018-08-18 08:16:52 +00:00
|
|
|
if (i == count){
|
|
|
|
is_end = true;
|
|
|
|
}
|
2019-02-26 23:08:42 +00:00
|
|
|
else if (*(i32*)(ptr + i*stride) != *(i32*)(ptr + start_i*stride)){
|
2018-08-18 08:16:52 +00:00
|
|
|
is_end = true;
|
|
|
|
}
|
|
|
|
if (is_end){
|
2019-06-01 23:58:28 +00:00
|
|
|
Range *new_range = &result.ranges[result.count++];
|
2018-08-18 08:16:52 +00:00
|
|
|
new_range->first = start_i;
|
|
|
|
new_range->one_past_last = i;
|
|
|
|
start_i = i;
|
|
|
|
}
|
|
|
|
}
|
2019-06-01 23:58:28 +00:00
|
|
|
pop_array(arena, Range, count - result.count);
|
2018-08-18 08:16:52 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2018-09-30 12:14:47 +00:00
|
|
|
static void
|
|
|
|
no_mark_snap_to_cursor(Application_Links *app, Managed_Scope view_scope){
|
|
|
|
managed_variable_set(app, view_scope, view_snap_mark_to_cursor, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
no_mark_snap_to_cursor(Application_Links *app, View_ID view_id){
|
2019-06-01 23:58:28 +00:00
|
|
|
Managed_Scope scope = 0;
|
|
|
|
view_get_managed_scope(app, view_id, &scope);
|
2018-09-30 12:14:47 +00:00
|
|
|
no_mark_snap_to_cursor(app, scope);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
no_mark_snap_to_cursor_if_shift(Application_Links *app, View_ID view_id){
|
|
|
|
User_Input in = get_command_input(app);
|
2018-11-20 08:18:54 +00:00
|
|
|
if (in.key.modifiers[MDFR_SHIFT_INDEX]){
|
2018-09-30 12:14:47 +00:00
|
|
|
no_mark_snap_to_cursor(app, view_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2018-09-30 12:14:47 +00:00
|
|
|
view_has_highlighted_range(Application_Links *app, View_ID view_id){
|
2019-04-07 17:36:24 +00:00
|
|
|
b32 result = false;
|
2018-09-30 12:14:47 +00:00
|
|
|
if (fcoder_mode == FCoderMode_NotepadLike){
|
2019-04-07 17:36:24 +00:00
|
|
|
i32 pos = 0;
|
|
|
|
i32 mark = 0;
|
|
|
|
view_get_cursor_pos(app, view_id, &pos);
|
|
|
|
view_get_mark_pos(app, view_id, &mark);
|
|
|
|
result = (pos != mark);
|
2018-09-30 12:14:47 +00:00
|
|
|
}
|
2019-04-07 17:36:24 +00:00
|
|
|
return(result);
|
2018-09-30 12:14:47 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2018-09-30 12:14:47 +00:00
|
|
|
if_view_has_highlighted_range_delete_range(Application_Links *app, View_ID view_id){
|
2019-04-05 02:03:36 +00:00
|
|
|
b32 result = false;
|
2018-09-30 12:14:47 +00:00
|
|
|
if (view_has_highlighted_range(app, view_id)){
|
2019-04-06 21:13:49 +00:00
|
|
|
Range range = get_view_range(app, view_id);
|
2019-04-05 02:03:36 +00:00
|
|
|
Buffer_ID buffer = 0;
|
2019-04-07 17:36:24 +00:00
|
|
|
view_get_buffer(app, view_id, AccessOpen, &buffer);
|
2019-06-01 23:58:28 +00:00
|
|
|
buffer_replace_range(app, buffer, range, string_u8_litexpr(""));
|
2019-04-05 02:03:36 +00:00
|
|
|
result = true;
|
2018-09-30 12:14:47 +00:00
|
|
|
}
|
2019-04-05 02:03:36 +00:00
|
|
|
return(result);
|
2018-09-30 12:14:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
begin_notepad_mode(Application_Links *app){
|
|
|
|
fcoder_mode = FCoderMode_NotepadLike;
|
2019-04-07 17:36:24 +00:00
|
|
|
View_ID view = 0;
|
|
|
|
for (get_view_next(app, 0, AccessAll, &view);
|
|
|
|
view != 0;
|
|
|
|
get_view_next(app, view, AccessAll, &view)){
|
|
|
|
i32 pos = 0;
|
|
|
|
view_get_cursor_pos(app, view, &pos);
|
|
|
|
view_set_mark(app, view, seek_pos(pos));
|
2018-09-30 12:14:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 09:13:38 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
typedef i32 View_Split_Kind;
|
|
|
|
enum{
|
|
|
|
ViewSplitKind_Ratio,
|
|
|
|
ViewSplitKind_FixedPixels,
|
|
|
|
};
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-04-07 17:36:24 +00:00
|
|
|
view_set_split(Application_Links *app, View_ID view, View_Split_Kind kind, f32 t){
|
|
|
|
b32 result = false;
|
|
|
|
if (view != 0){
|
|
|
|
Panel_ID panel_id = 0;
|
|
|
|
if (view_get_panel(app, view, &panel_id)){
|
|
|
|
Panel_ID parent_panel_id = 0;
|
|
|
|
if (panel_get_parent(app, panel_id, &parent_panel_id)){
|
|
|
|
Panel_ID min_child_id = 0;
|
|
|
|
if (panel_get_child(app, parent_panel_id, PanelChild_Min, &min_child_id)){
|
|
|
|
b32 panel_is_min = (min_child_id == panel_id);
|
|
|
|
Panel_Split_Kind panel_kind = ((kind == ViewSplitKind_Ratio)?
|
|
|
|
(panel_is_min?PanelSplitKind_Ratio_Min:PanelSplitKind_Ratio_Max):
|
|
|
|
(panel_is_min?PanelSplitKind_FixedPixels_Min:PanelSplitKind_FixedPixels_Max));
|
|
|
|
result = panel_set_split(app, parent_panel_id, panel_kind, t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static b32
|
|
|
|
view_set_split_proportion(Application_Links *app, View_ID view, f32 t){
|
2019-02-05 09:13:38 +00:00
|
|
|
return(view_set_split(app, view, ViewSplitKind_Ratio, t));
|
|
|
|
}
|
|
|
|
|
2019-02-26 23:08:42 +00:00
|
|
|
static b32
|
2019-04-07 17:36:24 +00:00
|
|
|
view_set_split_pixel_size(Application_Links *app, View_ID view, i32 t){
|
2019-04-06 23:36:53 +00:00
|
|
|
return(view_set_split(app, view, ViewSplitKind_FixedPixels, (f32)t));
|
2019-02-05 09:13:38 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 01:48:11 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static Record_Info
|
|
|
|
get_single_record(Application_Links *app, Buffer_ID buffer_id, History_Record_Index index){
|
2019-02-13 22:14:27 +00:00
|
|
|
Record_Info record = {};
|
|
|
|
buffer_history_get_record_info(app, buffer_id, index, &record);
|
2019-02-09 01:48:11 +00:00
|
|
|
if (record.error == RecordError_NoError && record.kind == RecordKind_Group){
|
2019-06-01 23:58:28 +00:00
|
|
|
buffer_history_get_group_sub_record(app, buffer_id, index, record.group.count - 1, &record);
|
2019-02-09 01:48:11 +00:00
|
|
|
}
|
|
|
|
return(record);
|
|
|
|
}
|
|
|
|
|
2019-02-12 03:10:42 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
2019-02-25 23:42:13 +00:00
|
|
|
static Vec2
|
2019-06-01 23:58:28 +00:00
|
|
|
draw_string(Application_Links *app, Face_ID font_id, String_Const_u8 string, Vec2 p, int_color color){
|
2019-02-25 23:42:13 +00:00
|
|
|
return(draw_string(app, font_id, string, p, color, 0, V2(1.f, 0.f)));
|
|
|
|
}
|
|
|
|
|
2019-02-26 19:59:57 +00:00
|
|
|
static void
|
|
|
|
draw_margin(Application_Links *app, f32_Rect outer, f32_Rect inner, int_color color){
|
|
|
|
draw_rectangle(app, f32R(outer.x0, outer.y0, outer.x1, inner.y0), color);
|
|
|
|
draw_rectangle(app, f32R(outer.x0, inner.y1, outer.x1, outer.y1), color);
|
|
|
|
draw_rectangle(app, f32R(outer.x0, inner.y0, inner.x0, inner.y1), color);
|
|
|
|
draw_rectangle(app, f32R(inner.x1, inner.y0, outer.x1, inner.y1), color);
|
|
|
|
}
|
|
|
|
|
2019-04-05 02:03:36 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static f32_Rect_Pair
|
|
|
|
split_rect(f32_Rect rect, View_Split_Kind kind, Coordinate coord, Side from_side, f32 t){
|
|
|
|
f32_Rect_Pair result = {};
|
|
|
|
if (kind == ViewSplitKind_FixedPixels){
|
|
|
|
result.E[0] = rect;
|
|
|
|
result.E[1] = rect;
|
|
|
|
if (coord == Coordinate_X){
|
|
|
|
result.E[0].x1 = (from_side == Side_Max) ? (rect.x1 - t) : (rect.x0 + t);
|
|
|
|
result.E[1].x0 = result.E[0].x1;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Assert(coord == Coordinate_Y);
|
|
|
|
result.E[0].y1 = (from_side == Side_Max) ? (rect.y1 - t) : (rect.y0 + t);
|
|
|
|
result.E[1].y0 = result.E[0].y1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Assert(kind == ViewSplitKind_Ratio);
|
|
|
|
f32 pixel_count;
|
|
|
|
if (coord == Coordinate_X){
|
|
|
|
pixel_count = t*(rect.x1 - rect.x0);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
Assert(coord == Coordinate_Y);
|
|
|
|
pixel_count = t*(rect.y1 - rect.y0);
|
|
|
|
}
|
|
|
|
result = split_rect(rect, ViewSplitKind_FixedPixels, coord, from_side, pixel_count);
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-04 08:25:16 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-04 08:25:16 +00:00
|
|
|
buffer_push_base_buffer_name(Application_Links *app, Buffer_ID buffer, Arena *arena){
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 result = {};
|
|
|
|
buffer_get_base_buffer_name(app, buffer, arena, &result);
|
2019-04-04 08:25:16 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-04 08:25:16 +00:00
|
|
|
buffer_push_unique_buffer_name(Application_Links *app, Buffer_ID buffer, Arena *arena){
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 result = {};
|
|
|
|
buffer_get_unique_buffer_name(app, buffer, arena, &result);
|
2019-04-04 08:25:16 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-04 08:25:16 +00:00
|
|
|
buffer_push_file_name(Application_Links *app, Buffer_ID buffer, Arena *arena){
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 result = {};
|
|
|
|
buffer_get_file_name(app, buffer, arena, &result);
|
2019-04-04 08:25:16 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-05 02:03:36 +00:00
|
|
|
buffer_limited_base_buffer_name(Application_Links *app, Buffer_ID buffer, char *memory, i32 max){
|
2019-06-01 23:58:28 +00:00
|
|
|
Scratch_Block scratch(app);
|
|
|
|
String_Const_u8 full = {};
|
|
|
|
buffer_get_base_buffer_name(app, buffer, scratch, &full);
|
|
|
|
i32 length = clamp_top((i32)full.size, max);
|
|
|
|
block_copy(memory, full.str, length);
|
|
|
|
return(SCu8(memory, length));
|
2019-04-05 02:03:36 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-05 02:03:36 +00:00
|
|
|
buffer_limited_unique_buffer_name(Application_Links *app, Buffer_ID buffer, char *memory, i32 max){
|
2019-06-01 23:58:28 +00:00
|
|
|
Scratch_Block scratch(app);
|
|
|
|
String_Const_u8 full = {};
|
|
|
|
buffer_get_unique_buffer_name(app, buffer, scratch, &full);
|
|
|
|
i32 length = clamp_top((i32)full.size, max);
|
|
|
|
block_copy(memory, full.str, length);
|
|
|
|
return(SCu8(memory, length));
|
2019-04-05 02:03:36 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
static String_Const_u8
|
2019-04-05 02:03:36 +00:00
|
|
|
buffer_limited_file_name(Application_Links *app, Buffer_ID buffer, char *memory, i32 max){
|
2019-06-01 23:58:28 +00:00
|
|
|
Scratch_Block scratch(app);
|
|
|
|
String_Const_u8 full = {};
|
|
|
|
buffer_get_file_name(app, buffer, scratch, &full);
|
|
|
|
i32 length = clamp_top((i32)full.size, max);
|
|
|
|
block_copy(memory, full.str, length);
|
|
|
|
return(SCu8(memory, length));
|
2019-04-05 02:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static b32
|
|
|
|
buffer_has_name_with_star(Application_Links *app, Buffer_ID buffer){
|
|
|
|
char first = 0;
|
2019-06-01 23:58:28 +00:00
|
|
|
String_Const_u8 str = buffer_limited_unique_buffer_name(app, buffer, &first, 1);
|
2019-04-05 02:03:36 +00:00
|
|
|
return(str.size == 0 || first == '*');
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2019-04-06 23:36:53 +00:00
|
|
|
static f32
|
2019-06-01 23:58:28 +00:00
|
|
|
get_dpi_scaling_value(Application_Links *app){
|
2019-04-05 02:03:36 +00:00
|
|
|
// TODO(casey): Allen, this should return the multiplier for the display relative to whatever 4coder
|
|
|
|
// gets tuned to.
|
2019-04-06 23:36:53 +00:00
|
|
|
f32 result = 2.0f;
|
2019-04-05 02:03:36 +00:00
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
2019-06-01 23:58:28 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
static History_Group
|
|
|
|
begin_history_group(Application_Links *app, Buffer_ID buffer){
|
|
|
|
History_Group group = {};
|
|
|
|
group.app = app;
|
|
|
|
group.buffer = buffer;
|
|
|
|
buffer_history_get_current_state_index(app, buffer, &group.first);
|
|
|
|
group.first += 1;
|
|
|
|
return(group);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
end_history_group(History_Group group){
|
|
|
|
History_Record_Index last = 0;
|
|
|
|
buffer_history_get_current_state_index(group.app, group.buffer, &last);
|
|
|
|
if (group.first < last){
|
|
|
|
buffer_history_merge_record_range(group.app, group.buffer, group.first, last, RecordMergeFlag_StateInRange_MoveStateForward);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
// TODO(allen): REWRITE THIS EXACTLY HOW YOU WANT IT --- start ---
|
|
|
|
|
|
|
|
static Child_Process_Set_Target_Flags
|
|
|
|
flags_system_command(Command_Line_Interface_Flag flags){
|
|
|
|
Child_Process_Set_Target_Flags set_buffer_flags = 0;
|
|
|
|
if (!HasFlag(flags, CLI_OverlapWithConflict)){
|
|
|
|
set_buffer_flags |= ChildProcessSet_FailIfBufferAlreadyAttachedToAProcess;
|
|
|
|
}
|
|
|
|
if (HasFlag(flags, CLI_CursorAtEnd)){
|
|
|
|
set_buffer_flags |= ChildProcessSet_CursorAtEnd;
|
|
|
|
}
|
|
|
|
return(set_buffer_flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static b32
|
|
|
|
set_buffer_system_command(Application_Links *app, Child_Process_ID process, Buffer_ID buffer, Command_Line_Interface_Flag flags){
|
|
|
|
b32 result = false;
|
|
|
|
Child_Process_Set_Target_Flags set_buffer_flags = flags_system_command(flags);
|
|
|
|
if (child_process_set_target_buffer(app, process, buffer, set_buffer_flags)){
|
|
|
|
i32 buffer_size = 0;
|
|
|
|
buffer_get_size(app, buffer, &buffer_size);
|
|
|
|
buffer_replace_range(app, buffer, make_range(0, buffer_size), string_u8_litexpr(""));
|
|
|
|
if (HasFlag(flags, CLI_SendEndSignal)){
|
|
|
|
buffer_send_end_signal(app, buffer);
|
|
|
|
}
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static b32
|
|
|
|
exec_system_command(Application_Links *app, View_ID view, Buffer_Identifier buffer_id,
|
|
|
|
String_Const_u8 path, String_Const_u8 command, Command_Line_Interface_Flag flags){
|
|
|
|
b32 result = false;
|
|
|
|
Child_Process_ID child_process_id = 0;
|
|
|
|
if (create_child_process(app, path, command, &child_process_id)){
|
|
|
|
result = true;
|
|
|
|
Buffer_ID buffer_attach_id = buffer_identifier_to_id_create_out_buffer(app, buffer_id);
|
|
|
|
if (buffer_attach_id != 0){
|
|
|
|
if (set_buffer_system_command(app, child_process_id, buffer_attach_id, flags)){
|
|
|
|
if (view != 0){
|
|
|
|
view_set_buffer(app, view, buffer_attach_id, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(allen): --- end ---
|
|
|
|
|
2018-05-10 08:12:47 +00:00
|
|
|
// BOTTOM
|
|
|
|
|