4coder/4coder_helper.h

429 lines
12 KiB
C
Raw Normal View History

2016-02-01 05:03:42 +00:00
/*
* Bind helper struct and functions
*/
2016-06-28 19:48:12 +00:00
#ifndef FCODER_HELPER_H
#define FCODER_HELPER_H
2016-02-01 05:03:42 +00:00
struct Bind_Helper{
Binding_Unit *cursor, *start, *end;
Binding_Unit *header, *group;
2016-08-29 01:03:26 +00:00
int32_t write_total;
int32_t error;
2016-02-01 05:03:42 +00:00
};
#define BH_ERR_NONE 0
#define BH_ERR_MISSING_END 1
#define BH_ERR_MISSING_BEGIN 2
#define BH_ERR_OUT_OF_MEMORY 3
inline Binding_Unit*
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;
}
inline Bind_Helper
2016-08-29 01:03:26 +00:00
begin_bind_helper(void *data, int32_t size){
2016-02-01 05:03:42 +00:00
Bind_Helper result;
result.header = 0;
result.group = 0;
result.write_total = 0;
result.error = 0;
result.cursor = (Binding_Unit*)data;
result.start = result.cursor;
result.end = result.start + size / sizeof(*result.cursor);
Binding_Unit unit;
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;
}
inline void
2016-08-29 01:03:26 +00:00
begin_map_(Bind_Helper *helper, int32_t mapid, int32_t replace){
2016-02-01 05:03:42 +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;
Binding_Unit unit;
unit.type = unit_map_begin;
unit.map_begin.mapid = mapid;
unit.map_begin.replace = replace;
2016-02-01 05:03:42 +00:00
helper->group = write_unit(helper, unit);
helper->group->map_begin.bind_count = 0;
}
inline void
2016-08-29 01:03:26 +00:00
begin_map(Bind_Helper *helper, int32_t mapid){
begin_map_(helper, mapid, 0);
}
inline void
2016-08-29 01:03:26 +00:00
restart_map(Bind_Helper *helper, int32_t mapid){
begin_map_(helper, mapid, 1);
}
2016-02-01 05:03:42 +00:00
inline void
end_map(Bind_Helper *helper){
if (helper->group == 0 && helper->error == 0) helper->error = BH_ERR_MISSING_BEGIN;
helper->group = 0;
}
inline void
2016-08-29 01:03:26 +00:00
bind(Bind_Helper *helper, short code, unsigned char modifiers, int32_t cmdid){
2016-02-01 05:03:42 +00:00
if (helper->group == 0 && helper->error == 0) helper->error = BH_ERR_MISSING_BEGIN;
if (!helper->error) ++helper->group->map_begin.bind_count;
Binding_Unit unit;
unit.type = unit_binding;
unit.binding.command_id = cmdid;
unit.binding.code = code;
unit.binding.modifiers = modifiers;
2016-02-01 05:03:42 +00:00
write_unit(helper, unit);
}
inline void
bind(Bind_Helper *helper, short code, unsigned char modifiers, Custom_Command_Function *func){
2016-02-01 05:03:42 +00:00
if (helper->group == 0 && helper->error == 0) helper->error = BH_ERR_MISSING_BEGIN;
if (!helper->error) ++helper->group->map_begin.bind_count;
Binding_Unit unit;
unit.type = unit_callback;
unit.callback.func = func;
unit.callback.code = code;
unit.callback.modifiers = modifiers;
2016-02-01 05:03:42 +00:00
write_unit(helper, unit);
}
inline void
2016-08-29 01:03:26 +00:00
bind_vanilla_keys(Bind_Helper *helper, int32_t cmdid){
2016-02-01 05:03:42 +00:00
bind(helper, 0, 0, cmdid);
}
inline void
bind_vanilla_keys(Bind_Helper *helper, Custom_Command_Function *func){
bind(helper, 0, 0, func);
2016-02-01 05:03:42 +00:00
}
inline void
2016-08-29 01:03:26 +00:00
bind_vanilla_keys(Bind_Helper *helper, unsigned char modifiers, int32_t cmdid){
2016-02-01 05:03:42 +00:00
bind(helper, 0, modifiers, cmdid);
}
inline void
bind_vanilla_keys(Bind_Helper *helper, unsigned char modifiers, Custom_Command_Function *func){
bind(helper, 0, modifiers, func);
2016-02-01 05:03:42 +00:00
}
inline void
2016-08-29 01:03:26 +00:00
inherit_map(Bind_Helper *helper, int32_t mapid){
2016-02-01 05:03:42 +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;
Binding_Unit unit;
unit.type = unit_inherit;
unit.map_inherit.mapid = mapid;
write_unit(helper, unit);
}
inline void
2016-08-29 01:03:26 +00:00
set_hook(Bind_Helper *helper, int32_t hook_id, Hook_Function *func){
2016-02-01 05:03:42 +00:00
Binding_Unit unit;
unit.type = unit_hook;
unit.hook.hook_id = hook_id;
unit.hook.func = (void*) func;
2016-02-01 05:03:42 +00:00
write_unit(helper, unit);
}
2016-06-23 23:11:09 +00:00
inline void
set_open_file_hook(Bind_Helper *helper, Open_File_Hook_Function *func){
Binding_Unit unit;
unit.type = unit_hook;
unit.hook.hook_id = _hook_open_file;
unit.hook.func = (void*) func;
write_unit(helper, unit);
}
inline void
set_new_file_hook(Bind_Helper *helper, Open_File_Hook_Function *func){
Binding_Unit unit;
unit.type = unit_hook;
unit.hook.hook_id = _hook_new_file;
unit.hook.func = (void*) func;
write_unit(helper, unit);
}
inline void
set_command_caller(Bind_Helper *helper, Command_Caller_Hook_Function *func){
Binding_Unit unit;
unit.type = unit_hook;
unit.hook.hook_id = _hook_command_caller;
unit.hook.func = (void*) func;
write_unit(helper, unit);
}
2016-06-29 19:11:37 +00:00
inline void
set_input_filter(Bind_Helper *helper, Input_Filter_Function *func){
Binding_Unit unit;
unit.type = unit_hook;
unit.hook.hook_id = _hook_input_filter;
unit.hook.func = (void*) func;
write_unit(helper, unit);
}
2016-03-04 06:06:11 +00:00
inline void
set_scroll_rule(Bind_Helper *helper, Scroll_Rule_Function *func){
Binding_Unit unit;
unit.type = unit_hook;
unit.hook.hook_id = _hook_scroll_rule;
unit.hook.func = (void*) func;
2016-03-04 06:06:11 +00:00
write_unit(helper, unit);
}
2016-08-29 01:03:26 +00:00
inline int32_t
2016-02-01 05:03:42 +00:00
end_bind_helper(Bind_Helper *helper){
2016-08-29 01:03:26 +00:00
int32_t result;
2016-02-01 05:03:42 +00:00
if (helper->header){
2016-08-29 01:03:26 +00:00
helper->header->header.total_size = (int32_t)(helper->cursor - helper->start);
2016-02-01 05:03:42 +00:00
helper->header->header.error = helper->error;
}
2016-05-07 17:25:45 +00:00
result = helper->write_total;
return(result);
2016-02-01 05:03:42 +00:00
}
2016-02-25 12:12:09 +00:00
inline Range
2016-03-03 04:10:45 +00:00
get_range(View_Summary *view){
Range range = make_range(view->cursor.pos, view->mark.pos);
2016-02-25 12:12:09 +00:00
return(range);
}
struct Buffer_Rect{
2016-08-29 01:03:26 +00:00
int32_t char0,line0;
int32_t char1,line1;
};
#ifndef Swap
#define Swap(T,a,b) do{ T t = a; a = b; b = t; } while(0)
#endif
inline Buffer_Rect
get_rect(View_Summary *view){
2016-07-18 20:53:04 +00:00
Buffer_Rect rect = {0};
rect.char0 = view->mark.character;
rect.line0 = view->mark.line;
2016-08-29 01:03:26 +00:00
rect.char1 = view->cursor.character;
rect.line1 = view->cursor.line;
if (rect.line0 > rect.line1){
2016-08-29 01:03:26 +00:00
Swap(int32_t, rect.line0, rect.line1);
}
if (rect.char0 > rect.char1){
2016-08-29 01:03:26 +00:00
Swap(int32_t, rect.char0, rect.char1);
}
return(rect);
}
inline void
exec_command(Application_Links *app, Custom_Command_Function *func){
func(app);
}
inline void
exec_command(Application_Links *app, Generic_Command cmd){
if (cmd.cmdid < cmdid_count){
exec_command(app, cmd.cmdid);
}
else{
exec_command(app, cmd.command);
}
}
2016-02-26 17:40:51 +00:00
inline void
2016-08-29 01:03:26 +00:00
active_view_to_line(Application_Links *app, uint32_t access, int32_t line_number){
2016-03-03 04:10:45 +00:00
View_Summary view;
2016-09-17 00:03:09 +00:00
view = get_active_view(app, access);
2016-02-26 17:40:51 +00:00
// NOTE(allen|a3.4.4): We don't have to worry about whether this is a valid line number.
2016-02-29 03:35:19 +00:00
// When it's not possible to place a cursor at the position for whatever reason it will set the
// cursor to a nearby valid position.
2016-09-17 00:03:09 +00:00
view_set_cursor(app, &view, seek_line_char(line_number, 0), 1);
2016-02-26 17:40:51 +00:00
}
2016-03-05 08:10:43 +00:00
inline View_Summary
2016-08-29 01:03:26 +00:00
get_first_view_with_buffer(Application_Links *app, int32_t buffer_id){
2016-03-05 08:10:43 +00:00
View_Summary result = {};
View_Summary test = {};
2016-06-20 20:34:48 +00:00
2016-06-28 22:58:50 +00:00
if (buffer_id != 0){
2016-08-29 01:03:26 +00:00
uint32_t access = AccessAll;
2016-09-17 00:03:09 +00:00
for(test = get_view_first(app, access);
2016-06-28 22:58:50 +00:00
test.exists;
2016-09-17 00:03:09 +00:00
get_view_next(app, &test, access)){
2016-06-28 22:58:50 +00:00
2016-09-17 00:03:09 +00:00
Buffer_Summary buffer = get_buffer(app, test.buffer_id, access);
2016-06-28 22:58:50 +00:00
if(buffer.buffer_id == buffer_id){
result = test;
break;
}
2016-03-05 08:10:43 +00:00
}
}
2016-08-29 01:03:26 +00:00
2016-03-05 08:10:43 +00:00
return(result);
}
2016-08-29 01:03:26 +00:00
inline int32_t
2016-02-27 19:33:42 +00:00
key_is_unmodified(Key_Event_Data *key){
char *mods = key->modifiers;
2016-08-29 01:03:26 +00:00
int32_t unmodified = !mods[MDFR_CONTROL_INDEX] && !mods[MDFR_ALT_INDEX];
2016-02-27 19:33:42 +00:00
return(unmodified);
}
2016-08-29 01:03:26 +00:00
static int32_t
query_user_general(Application_Links *app, Query_Bar *bar, int32_t force_number){
2016-02-27 22:23:40 +00:00
User_Input in;
2016-08-29 01:03:26 +00:00
int32_t success = 1;
int32_t good_character = 0;
2016-02-27 22:23:40 +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.
2016-09-17 00:03:09 +00:00
if (start_query_bar(app, bar, 0) == 0) return 0;
2016-02-27 22:23:40 +00:00
while (1){
// 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.
2016-09-17 00:03:09 +00:00
in = get_user_input(app, EventOnAnyKey, EventOnEsc | EventOnButton);
2016-02-27 22:23:40 +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 = 0;
break;
}
good_character = 0;
if (key_is_unmodified(&in.key)){
if (force_number){
if (in.key.character >= '0' && in.key.character <= '9'){
good_character = 1;
}
}
else{
if (in.key.character != 0){
good_character = 1;
}
}
}
2016-08-22 19:31:19 +00:00
2016-02-29 03:35:19 +00:00
// 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.
2016-02-27 22:23:40 +00:00
if (in.type == UserInputKey){
if (in.key.keycode == '\n' || in.key.keycode == '\t'){
break;
}
else if (in.key.keycode == key_back){
2016-03-26 08:06:41 +00:00
if (bar->string.size > 0){
--bar->string.size;
}
2016-02-27 22:23:40 +00:00
}
else if (good_character){
append_s_char(&bar->string, in.key.character);
2016-02-27 22:23:40 +00:00
}
}
}
2016-08-22 19:31:19 +00:00
terminate_with_null(&bar->string);
2016-02-27 22:23:40 +00:00
return(success);
}
2016-08-29 01:03:26 +00:00
inline int32_t
query_user_string(Application_Links *app, Query_Bar *bar){
2016-08-29 01:03:26 +00:00
int32_t success = query_user_general(app, bar, 0);
2016-02-27 22:23:40 +00:00
return(success);
}
2016-08-29 01:03:26 +00:00
inline int32_t
query_user_number(Application_Links *app, Query_Bar *bar){
2016-08-29 01:03:26 +00:00
int32_t success = query_user_general(app, bar, 1);
2016-02-27 22:23:40 +00:00
return(success);
}
2016-03-05 08:10:43 +00:00
2016-05-31 01:22:55 +00:00
inline Buffer_Summary
2016-08-29 01:03:26 +00:00
get_active_buffer(Application_Links *app, uint32_t access){
2016-09-17 00:03:09 +00:00
View_Summary view = get_active_view(app, access);
Buffer_Summary buffer = get_buffer(app, view.buffer_id, access);
2016-05-31 01:22:55 +00:00
return(buffer);
}
inline char
2016-08-29 01:03:26 +00:00
buffer_get_char(Application_Links *app, Buffer_Summary *buffer, int32_t pos){
char result = ' ';
2016-09-17 00:03:09 +00:00
*buffer = get_buffer(app, buffer->buffer_id, AccessAll);
if (pos >= 0 && pos < buffer->size){
2016-09-17 00:03:09 +00:00
buffer_read_range(app, buffer, pos, pos+1, &result);
}
2016-05-31 01:22:55 +00:00
return(result);
}
inline Buffer_Identifier
2016-08-29 01:03:26 +00:00
buffer_identifier(char *str, int32_t len){
Buffer_Identifier identifier;
identifier.name = str;
identifier.name_len = len;
identifier.id = 0;
return(identifier);
}
inline Buffer_Identifier
2016-08-29 01:03:26 +00:00
buffer_identifier(int32_t id){
Buffer_Identifier identifier;
identifier.name = 0;
identifier.name_len = 0;
identifier.id = id;
return(identifier);
}
2016-10-08 20:20:49 +00:00
static Buffer_Summary
create_buffer(Application_Links *app, char *filename, int32_t filename_len, Buffer_Create_Flag flags){
Buffer_Summary buffer = {0};
Buffer_Creation_Data data = {0};
begin_buffer_creation(app, &data, flags);
buffer_creation_name(app, &data, filename, filename_len, 0);
buffer = end_buffer_creation(app, &data);
return(buffer);
}
2016-06-28 19:48:12 +00:00
#endif