4515 lines
146 KiB
C++
4515 lines
146 KiB
C++
/*
|
|
* Mr. 4th Dimention - Allen Webster
|
|
*
|
|
* 12.12.2014
|
|
*
|
|
* Application layer for project codename "4ed"
|
|
*
|
|
*/
|
|
|
|
// TOP
|
|
|
|
// App Structs
|
|
|
|
enum App_State{
|
|
APP_STATE_EDIT,
|
|
APP_STATE_RESIZING,
|
|
// never below this
|
|
APP_STATE_COUNT
|
|
};
|
|
|
|
struct App_State_Resizing{
|
|
Panel_Divider *divider;
|
|
i32 min, max;
|
|
};
|
|
|
|
struct CLI_Process{
|
|
CLI_Handles cli;
|
|
Editing_File *out_file;
|
|
};
|
|
|
|
struct CLI_List{
|
|
CLI_Process *procs;
|
|
i32 count, max;
|
|
};
|
|
|
|
#define SysAppCreateView 0x1
|
|
#define SysAppCreateNewBuffer 0x2
|
|
|
|
struct Sys_App_Binding{
|
|
i32 sys_id;
|
|
i32 app_id;
|
|
|
|
u32 success;
|
|
u32 fail;
|
|
Panel *panel;
|
|
};
|
|
|
|
struct Complete_State{
|
|
Search_Set set;
|
|
Search_Iter iter;
|
|
Table hits;
|
|
String_Space str;
|
|
i32 word_start, word_end;
|
|
b32 initialized;
|
|
};
|
|
|
|
struct Command_Data{
|
|
Mem_Options *mem;
|
|
Panel *panel;
|
|
View *view;
|
|
Working_Set *working_set;
|
|
Editing_Layout *layout;
|
|
Live_Views *live_set;
|
|
Style *style;
|
|
Delay *delay;
|
|
struct App_Vars *vars;
|
|
Exchange *exchange;
|
|
System_Functions *system;
|
|
Coroutine *current_coroutine;
|
|
|
|
i32 screen_width, screen_height;
|
|
Key_Event_Data key;
|
|
|
|
Partition part;
|
|
};
|
|
|
|
struct App_Vars{
|
|
Mem_Options mem;
|
|
|
|
App_Settings settings;
|
|
|
|
Command_Map map_top;
|
|
Command_Map map_file;
|
|
Command_Map map_ui;
|
|
#if FRED_INTERNAL
|
|
Command_Map map_debug;
|
|
#endif
|
|
Command_Map *user_maps;
|
|
i32 *map_id_table;
|
|
i32 user_map_count;
|
|
Command_Binding prev_command;
|
|
|
|
Coroutine *command_coroutine;
|
|
u32 command_coroutine_flags[2];
|
|
|
|
Sys_App_Binding *sys_app_bindings;
|
|
i32 sys_app_count, sys_app_max;
|
|
|
|
Custom_Command_Function *hooks[hook_type_count];
|
|
|
|
Font_Set *font_set;
|
|
|
|
Style style;
|
|
Style_Library styles;
|
|
u32 *palette;
|
|
i32 palette_size;
|
|
|
|
Editing_Layout layout;
|
|
Live_Views live_set;
|
|
Working_Set working_set;
|
|
|
|
char hot_dir_base_[256];
|
|
Hot_Directory hot_directory;
|
|
|
|
CLI_List cli_processes;
|
|
|
|
Delay delay1, delay2;
|
|
|
|
String mini_str;
|
|
u8 mini_buffer[512];
|
|
|
|
App_State state;
|
|
App_State_Resizing resizing;
|
|
Complete_State complete_state;
|
|
Panel *prev_mouse_panel;
|
|
|
|
Command_Data command_data;
|
|
|
|
Custom_API config_api;
|
|
};
|
|
|
|
internal i32
|
|
app_get_or_add_map_index(App_Vars *vars, i32 mapid){
|
|
i32 result;
|
|
i32 user_map_count = vars->user_map_count;
|
|
i32 *map_id_table = vars->map_id_table;
|
|
for (result = 0; result < user_map_count; ++result){
|
|
if (map_id_table[result] == mapid) break;
|
|
if (map_id_table[result] == 0){
|
|
map_id_table[result] = mapid;
|
|
break;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
internal i32
|
|
app_get_map_index(App_Vars *vars, i32 mapid){
|
|
i32 result;
|
|
i32 user_map_count = vars->user_map_count;
|
|
i32 *map_id_table = vars->map_id_table;
|
|
for (result = 0; result < user_map_count; ++result){
|
|
if (map_id_table[result] == mapid) break;
|
|
if (map_id_table[result] == 0){
|
|
result = user_map_count;
|
|
break;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
internal Command_Map*
|
|
app_get_map(App_Vars *vars, i32 mapid){
|
|
Command_Map *map = 0;
|
|
if (mapid < mapid_global) map = vars->user_maps + mapid;
|
|
else if (mapid == mapid_global) map = &vars->map_top;
|
|
else if (mapid == mapid_file) map = &vars->map_file;
|
|
return map;
|
|
}
|
|
|
|
// Commands
|
|
|
|
globalvar Application_Links app_links;
|
|
|
|
#define USE_MEM(n) Mem_Options *n = command->mem
|
|
#define USE_PANEL(n) Panel *n = command->panel
|
|
#define USE_VIEW(n) View *n = command->view
|
|
#define USE_FILE_VIEW(n) File_View *n = view_to_file_view(command->view)
|
|
#define USE_FILE(n,v) Editing_File *n = 0; if (v) { (n) = (v)->file; }
|
|
#define USE_WORKING_SET(n) Working_Set *n = command->working_set
|
|
#define USE_LAYOUT(n) Editing_Layout *n = command->layout
|
|
#define USE_LIVE_SET(n) Live_Views *live_set = command->live_set
|
|
#define USE_STYLE(n) Style *n = command->style
|
|
#define USE_DELAY(n) Delay *n = command->delay
|
|
#define USE_VARS(n) App_Vars *n = command->vars
|
|
#define USE_EXCHANGE(n) Exchange *n = command->exchange
|
|
#define USE_FONT_SET(n) Font_Set *n = command->vars->font_set;
|
|
|
|
#define REQ_VIEW(n) View *n = command->view; if (!n) return
|
|
#define REQ_FILE_VIEW(n) File_View *n = view_to_file_view(command->view); if (!n) return
|
|
#define REQ_OPEN_FILE_VIEW(n) File_View *n = view_to_file_view(command->view); if (!n || n->locked) return
|
|
#define REQ_FILE_HISTORY(n,v) Editing_File *n = (v)->file; if (!n || !buffer_good(&n->state.buffer) || n->state.is_dummy || !n->state.undo.undo.edits) return
|
|
#define REQ_FILE_LOADING(n,v) Editing_File *n = (v)->file; if (!n || n->state.is_dummy) return
|
|
#define REQ_FILE(n,v) Editing_File *n = (v)->file; if (!n || !buffer_good(&n->state.buffer) || n->state.is_dummy) return
|
|
#define REQ_COLOR_VIEW(n) Color_View *n = view_to_color_view(command->view); if (!n) return
|
|
#define REQ_DBG_VIEW(n) Debug_View *n = view_to_debug_view(command->view); if (!n) return
|
|
|
|
#define COMMAND_DECL(n) internal void command_##n(System_Functions *system, Command_Data *command, Command_Binding binding)
|
|
#define COMPOSE_DECL(n) internal void n(System_Functions *system, Command_Data *command, Command_Binding binding)
|
|
|
|
struct Command_Parameter{
|
|
i32 type;
|
|
union{
|
|
struct{
|
|
Dynamic param;
|
|
Dynamic value;
|
|
} param;
|
|
struct{
|
|
i32 len;
|
|
char *str;
|
|
} inline_string;
|
|
};
|
|
};
|
|
|
|
inline Command_Parameter*
|
|
param_next(Command_Parameter *param, Command_Parameter *end){
|
|
Command_Parameter *result = param;
|
|
if (result->type == 0){
|
|
++result;
|
|
}
|
|
while (result->type != 0 && result < end){
|
|
i32 len = result->inline_string.len;
|
|
len += sizeof(*result) - 1;
|
|
len -= (len % sizeof(*result));
|
|
result = (Command_Parameter*)((char*)result + len + sizeof(*result));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
inline Command_Parameter*
|
|
param_stack_first(Partition *part, Command_Parameter *end){
|
|
Command_Parameter *result = (Command_Parameter*)part->base;
|
|
if (result->type != 0) result = param_next(result, end);
|
|
return result;
|
|
}
|
|
|
|
inline Command_Parameter*
|
|
param_stack_end(Partition *part){
|
|
return (Command_Parameter*)((char*)part->base + part->pos);
|
|
}
|
|
|
|
COMMAND_DECL(null){
|
|
AllowLocal(command);
|
|
}
|
|
|
|
COMMAND_DECL(write_character){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
char character;
|
|
i32 pos, next_cursor_pos;
|
|
|
|
character = command->key.character;
|
|
if (character != 0){
|
|
pos = view->cursor.pos;
|
|
next_cursor_pos = view->cursor.pos + 1;
|
|
view_replace_range(system, mem, view, layout, pos, pos, &character, 1, next_cursor_pos);
|
|
view_cursor_move(view, next_cursor_pos);
|
|
file->state.cursor_pos = view->cursor.pos;
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(seek_whitespace_right){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_whitespace_right(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_whitespace_left){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_whitespace_left(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_whitespace_up){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_whitespace_up(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_whitespace_down){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_whitespace_down(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
internal i32
|
|
seek_token_left(Cpp_Token_Stack *tokens, i32 pos){
|
|
Cpp_Get_Token_Result get = cpp_get_token(tokens, pos);
|
|
if (get.token_index == -1){
|
|
get.token_index = 0;
|
|
}
|
|
|
|
Cpp_Token *token = tokens->tokens + get.token_index;
|
|
if (token->start == pos && get.token_index > 0){
|
|
--token;
|
|
}
|
|
|
|
return token->start;
|
|
}
|
|
|
|
internal i32
|
|
seek_token_right(Cpp_Token_Stack *tokens, i32 pos){
|
|
Cpp_Get_Token_Result get = cpp_get_token(tokens, pos);
|
|
if (get.in_whitespace){
|
|
++get.token_index;
|
|
}
|
|
if (get.token_index >= tokens->count){
|
|
get.token_index = tokens->count-1;
|
|
}
|
|
|
|
Cpp_Token *token = tokens->tokens + get.token_index;
|
|
return token->start + token->size;
|
|
}
|
|
|
|
COMMAND_DECL(seek_token_left){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
if (file->state.tokens_complete){
|
|
i32 pos = seek_token_left(&file->state.token_stack, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(seek_token_right){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
if (file->state.tokens_complete){
|
|
i32 pos = seek_token_right(&file->state.token_stack, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(seek_white_or_token_right){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 token_pos, white_pos;
|
|
if (file->state.tokens_complete){
|
|
token_pos = seek_token_right(&file->state.token_stack, view->cursor.pos);
|
|
}
|
|
else{
|
|
token_pos = buffer_size(&file->state.buffer);
|
|
}
|
|
white_pos = buffer_seek_whitespace_right(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, Min(token_pos, white_pos));
|
|
}
|
|
|
|
COMMAND_DECL(seek_white_or_token_left){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 token_pos, white_pos;
|
|
if (file->state.tokens_complete){
|
|
token_pos = seek_token_left(&file->state.token_stack, view->cursor.pos);
|
|
}
|
|
else{
|
|
token_pos = 0;
|
|
}
|
|
white_pos = buffer_seek_whitespace_left(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, Max(token_pos, white_pos));
|
|
}
|
|
|
|
COMMAND_DECL(seek_alphanumeric_right){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_alphanumeric_right(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_alphanumeric_left){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_alphanumeric_left(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_alphanumeric_or_camel_right){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_alphanumeric_or_camel_right(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_alphanumeric_or_camel_left){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = buffer_seek_alphanumeric_or_camel_left(&file->state.buffer, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(word_complete){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
USE_VARS(vars);
|
|
USE_WORKING_SET(working_set);
|
|
|
|
Partition *part = &mem->part;
|
|
General_Memory *general = &mem->general;
|
|
Complete_State *complete_state = &vars->complete_state;
|
|
Search_Range *ranges;
|
|
Search_Match match;
|
|
|
|
Temp_Memory temp;
|
|
|
|
Buffer_Type *buffer;
|
|
Buffer_Backify_Type loop;
|
|
char *data;
|
|
i32 end;
|
|
i32 size_of_buffer;
|
|
|
|
i32 cursor_pos, word_start, word_end;
|
|
char c;
|
|
|
|
char *spare;
|
|
i32 size;
|
|
|
|
i32 buffer_count, i, j;
|
|
Editing_File *file_ptr;
|
|
|
|
i32 match_size;
|
|
b32 do_init = 0;
|
|
|
|
buffer = &file->state.buffer;
|
|
size_of_buffer = buffer_size(buffer);
|
|
|
|
if (view->mode.rewrite != 2){
|
|
do_init = 1;
|
|
}
|
|
view->next_mode.rewrite = 2;
|
|
|
|
if (complete_state->initialized == 0){
|
|
do_init = 1;
|
|
}
|
|
|
|
if (do_init){
|
|
word_end = view->cursor.pos;
|
|
word_start = word_end;
|
|
cursor_pos = word_end - 1;
|
|
|
|
// TODO(allen): macros for these buffer loops and some method of breaking out of them.
|
|
for (loop = buffer_backify_loop(buffer, cursor_pos, 0);
|
|
buffer_backify_good(&loop);
|
|
buffer_backify_next(&loop)){
|
|
end = loop.absolute_pos;
|
|
data = loop.data - loop.absolute_pos;
|
|
for (; cursor_pos >= end; --cursor_pos){
|
|
c = data[cursor_pos];
|
|
if (char_is_alpha(c)){
|
|
word_start = cursor_pos;
|
|
}
|
|
else if (!char_is_numeric(c)){
|
|
goto double_break;
|
|
}
|
|
}
|
|
}
|
|
double_break:;
|
|
|
|
size = word_end - word_start;
|
|
|
|
if (size == 0){
|
|
complete_state->initialized = 0;
|
|
return;
|
|
}
|
|
|
|
complete_state->initialized = 1;
|
|
search_iter_init(general, &complete_state->iter, size);
|
|
buffer_stringify(buffer, word_start, word_end, complete_state->iter.word.str);
|
|
complete_state->iter.word.size = size;
|
|
|
|
buffer_count = working_set->file_index_count;
|
|
search_set_init(general, &complete_state->set, buffer_count + 1);
|
|
ranges = complete_state->set.ranges;
|
|
ranges[0].buffer = buffer;
|
|
ranges[0].start = 0;
|
|
ranges[0].size = word_start;
|
|
|
|
ranges[1].buffer = buffer;
|
|
ranges[1].start = word_end;
|
|
ranges[1].size = size_of_buffer - word_end;
|
|
|
|
file_ptr = working_set->files;
|
|
for (i = 0, j = 2; i < buffer_count; ++i, ++file_ptr){
|
|
if (file_ptr != file && !file_ptr->state.is_dummy){
|
|
ranges[j].buffer = &file_ptr->state.buffer;
|
|
ranges[j].start = 0;
|
|
ranges[j].size = buffer_size(ranges[j].buffer);
|
|
++j;
|
|
}
|
|
}
|
|
complete_state->set.count = j;
|
|
|
|
search_hits_init(general, &complete_state->hits, &complete_state->str, 100, Kbytes(4));
|
|
search_hit_add(general, &complete_state->hits, &complete_state->str,
|
|
complete_state->iter.word.str, complete_state->iter.word.size);
|
|
|
|
complete_state->word_start = word_start;
|
|
complete_state->word_end = word_end;
|
|
}
|
|
else{
|
|
word_start = complete_state->word_start;
|
|
word_end = complete_state->word_end;
|
|
size = complete_state->iter.word.size;
|
|
}
|
|
|
|
if (size > 0){
|
|
for (;;){
|
|
match = search_next_match(part, &complete_state->set, &complete_state->iter);
|
|
|
|
if (match.found_match){
|
|
temp = begin_temp_memory(part);
|
|
match_size = match.end - match.start;
|
|
spare = (char*)push_array(part, char, match_size);
|
|
buffer_stringify(match.buffer, match.start, match.end, spare);
|
|
|
|
if (search_hit_add(general, &complete_state->hits, &complete_state->str, spare, match_size)){
|
|
view_replace_range(system, mem, view, layout, word_start, word_end, spare, match_size, word_end);
|
|
|
|
complete_state->word_end = word_start + match_size;
|
|
complete_state->set.ranges[1].start = word_start + match_size;
|
|
break;
|
|
}
|
|
end_temp_memory(temp);
|
|
}
|
|
else{
|
|
complete_state->iter.pos = 0;
|
|
complete_state->iter.i = 0;
|
|
|
|
search_hits_init(general, &complete_state->hits, &complete_state->str, 100, Kbytes(4));
|
|
search_hit_add(general, &complete_state->hits, &complete_state->str,
|
|
complete_state->iter.word.str, complete_state->iter.word.size);
|
|
|
|
match_size = complete_state->iter.word.size;
|
|
view_replace_range(system, mem, view, layout, word_start, word_end,
|
|
complete_state->iter.word.str, match_size, word_end);
|
|
|
|
complete_state->word_end = word_start + match_size;
|
|
complete_state->set.ranges[1].start = word_start + match_size;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(set_mark){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
view->mark = (i32)view->cursor.pos;
|
|
}
|
|
|
|
COMMAND_DECL(copy){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_WORKING_SET(working_set);
|
|
USE_MEM(mem);
|
|
|
|
// TODO(allen): deduplicate
|
|
int r_start = 0, r_end = 0;
|
|
int start_set = 0, end_set = 0;
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int p = dynamic_to_int(¶m->param.param);
|
|
switch (p){
|
|
case par_range_start:
|
|
start_set = 1;
|
|
r_start = dynamic_to_int(¶m->param.value);
|
|
break;
|
|
|
|
case par_range_end:
|
|
end_set = 1;
|
|
r_end = dynamic_to_int(¶m->param.value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
Range range = make_range(view->cursor.pos, view->mark);
|
|
if (start_set) range.start = r_start;
|
|
if (end_set) range.end = r_end;
|
|
if (range.start < range.end){
|
|
clipboard_copy(system, &mem->general, working_set, range, file);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(cut){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_WORKING_SET(working_set);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
// TODO(allen): deduplicate
|
|
int r_start = 0, r_end = 0;
|
|
int start_set = 0, end_set = 0;
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int p = dynamic_to_int(¶m->param.param);
|
|
switch (p){
|
|
case par_range_start:
|
|
start_set = 1;
|
|
r_start = dynamic_to_int(¶m->param.value);
|
|
break;
|
|
|
|
case par_range_end:
|
|
end_set = 1;
|
|
r_end = dynamic_to_int(¶m->param.value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
Range range = make_range(view->cursor.pos, view->mark);
|
|
if (start_set) range.start = r_start;
|
|
if (end_set) range.end = r_end;
|
|
if (range.start < range.end){
|
|
i32 next_cursor_pos = range.start;
|
|
|
|
clipboard_copy(system, &mem->general, working_set, range, file);
|
|
view_replace_range(system, mem, view, layout, range.start, range.end, 0, 0, next_cursor_pos);
|
|
|
|
view->mark = range.start;
|
|
view_cursor_move(view, next_cursor_pos);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(paste){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_WORKING_SET(working_set);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
Panel *current_panel;
|
|
String *src;
|
|
File_View *current_view;
|
|
i32 pos_left, next_cursor_pos;
|
|
i32 panel_count;
|
|
i32 i;
|
|
|
|
if (working_set->clipboard_size > 0){
|
|
view->next_mode.rewrite = 1;
|
|
|
|
src = working_set_clipboard_head(working_set);
|
|
pos_left = view->cursor.pos;
|
|
|
|
next_cursor_pos = pos_left+src->size;
|
|
view_replace_range(system, mem, view, layout, pos_left, pos_left, src->str, src->size, next_cursor_pos);
|
|
|
|
view_cursor_move(view, next_cursor_pos);
|
|
view->mark = pos_left;
|
|
|
|
current_panel = layout->panels;
|
|
panel_count = layout->panel_count;
|
|
for (i = 0; i < panel_count; ++i, ++current_panel){
|
|
current_view = view_to_file_view(current_panel->view);
|
|
|
|
if (current_view && current_view->file == file){
|
|
view_post_paste_effect(current_view, 20, pos_left, src->size,
|
|
current_view->style->main.paste_color);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(paste_next){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_WORKING_SET(working_set);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
if (working_set->clipboard_size > 0 && view->mode.rewrite == 1){
|
|
view->next_mode.rewrite = 1;
|
|
|
|
Range range = make_range(view->mark, view->cursor.pos);
|
|
String *src = working_set_clipboard_roll_down(working_set);
|
|
i32 next_cursor_pos = range.start+src->size;
|
|
view_replace_range(system,
|
|
mem, view, layout, range.start, range.end,
|
|
src->str, src->size, next_cursor_pos);
|
|
|
|
view_cursor_move(view, next_cursor_pos);
|
|
view->mark = range.start;
|
|
|
|
Editing_Layout *layout = command->layout;
|
|
Panel *panels = layout->panels;
|
|
i32 panel_count = layout->panel_count;
|
|
for (i32 i = 0; i < panel_count; ++i){
|
|
Panel *current_panel = panels + i;
|
|
File_View *current_view = view_to_file_view(current_panel->view);
|
|
|
|
if (current_view && current_view->file == file){
|
|
view_post_paste_effect(current_view, 20, range.start, src->size,
|
|
current_view->style->main.paste_color);
|
|
}
|
|
}
|
|
}
|
|
else{
|
|
command_paste(system, command, binding);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(delete_range){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
Range range = make_range(view->cursor.pos, view->mark);
|
|
if (range.start < range.end){
|
|
i32 next_cursor_pos = range.start;
|
|
view_replace_range(system, mem, view, layout, range.start, range.end,
|
|
0, 0, next_cursor_pos);
|
|
view_cursor_move(view, next_cursor_pos);
|
|
view->mark = range.start;
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(timeline_scrub){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE_HISTORY(file, view);
|
|
|
|
view_set_widget(view, FWIDG_TIMELINES);
|
|
view->widget.timeline.undo_line = 1;
|
|
view->widget.timeline.history_line = 1;
|
|
}
|
|
|
|
COMMAND_DECL(undo){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE_HISTORY(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
view_undo(system, mem, layout, view);
|
|
}
|
|
|
|
COMMAND_DECL(redo){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE_HISTORY(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
view_redo(system, mem, layout, view);
|
|
}
|
|
|
|
COMMAND_DECL(history_backward){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE_HISTORY(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
view_history_step(system, mem, layout, view, hist_backward);
|
|
}
|
|
|
|
COMMAND_DECL(history_forward){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE_HISTORY(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
view_history_step(system, mem, layout, view, hist_forward);
|
|
}
|
|
|
|
#if UseFileHistoryDump
|
|
COMMAND_DECL(save_history){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_MEM(mem);
|
|
|
|
file_dump_history(system, mem, file, "history_data.hst");
|
|
}
|
|
#endif
|
|
|
|
COMMAND_DECL(interactive_new){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_DELAY(delay);
|
|
USE_EXCHANGE(exchange);
|
|
USE_FONT_SET(font_set);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Interactive_View *int_view =
|
|
interactive_view_init(system, new_view, &vars->hot_directory,
|
|
style, working_set,
|
|
font_set, delay);
|
|
int_view->interaction = INTV_SYS_FILE_LIST;
|
|
int_view->action = INTV_NEW;
|
|
copy(&int_view->query, "New: ");
|
|
}
|
|
|
|
internal Sys_App_Binding*
|
|
app_push_file_binding(App_Vars *vars, int sys_id, int app_id){
|
|
Sys_App_Binding *binding;
|
|
Assert(vars->sys_app_count < vars->sys_app_max);
|
|
binding = vars->sys_app_bindings + vars->sys_app_count++;
|
|
binding->sys_id = sys_id;
|
|
binding->app_id = app_id;
|
|
return(binding);
|
|
}
|
|
|
|
struct App_Open_File_Result{
|
|
Editing_File *file;
|
|
i32 sys_id;
|
|
i32 file_index;
|
|
b32 is_new;
|
|
};
|
|
|
|
internal App_Open_File_Result
|
|
app_open_file_background(App_Vars *vars, Exchange *exchange, Working_Set *working_set, String filename){
|
|
Get_File_Result file;
|
|
i32 file_id;
|
|
App_Open_File_Result result = {};
|
|
|
|
result.file = working_set_contains(working_set, filename);
|
|
if (result.file == 0){
|
|
result.is_new = 1;
|
|
file = working_set_get_available_file(working_set);
|
|
if (file.file){
|
|
result.file = file.file;
|
|
file_id = exchange_request_file(exchange, filename.str, filename.size);
|
|
if (file_id){
|
|
file_init_strings(result.file);
|
|
file_set_name(working_set, result.file, filename.str);
|
|
file_set_to_loading(result.file);
|
|
table_add(&working_set->table, result.file->name.source_path, file.index);
|
|
|
|
result.sys_id = file_id;
|
|
result.file_index = file.index;
|
|
}
|
|
else{
|
|
file_get_dummy(file.file);
|
|
}
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
COMMAND_DECL(interactive_open){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_DELAY(delay);
|
|
USE_EXCHANGE(exchange);
|
|
USE_FONT_SET(font_set);
|
|
|
|
char *filename = 0;
|
|
int filename_len = 0;
|
|
int do_in_background = 0;
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
if (param->param.param.type == dynamic_type_int){
|
|
if (param->param.param.int_value == par_name &&
|
|
param->param.value.type == dynamic_type_string){
|
|
filename = param->param.value.str_value;
|
|
filename_len = param->param.value.str_len;
|
|
}
|
|
else if (param->param.param.int_value == par_do_in_background){
|
|
do_in_background = dynamic_to_int(¶m->param.value);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (filename){
|
|
String string = make_string(filename, filename_len);
|
|
if (do_in_background){
|
|
delayed_open_background(delay, string);
|
|
}
|
|
else{
|
|
delayed_open(delay, string, panel);
|
|
}
|
|
}
|
|
else{
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Interactive_View *int_view =
|
|
interactive_view_init(system, new_view, &vars->hot_directory,
|
|
style, working_set, font_set, delay);
|
|
int_view->interaction = INTV_SYS_FILE_LIST;
|
|
int_view->action = INTV_OPEN;
|
|
copy(&int_view->query, "Open: ");
|
|
}
|
|
}
|
|
|
|
internal void
|
|
view_file_in_panel(Command_Data *cmd, Panel *panel, Editing_File *file){
|
|
Live_Views *live_set = cmd->live_set;
|
|
Mem_Options *mem = cmd->mem;
|
|
Exchange *exchange = cmd->exchange;
|
|
System_Functions *system = cmd->system;
|
|
Editing_Layout *layout = cmd->layout;
|
|
App_Vars *vars = cmd->vars;
|
|
Style *style = cmd->style;
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_major(system, exchange, new_view, panel, live_set);
|
|
|
|
File_View *file_view = file_view_init(new_view, layout);
|
|
|
|
View *old_view = cmd->view;
|
|
cmd->view = new_view;
|
|
|
|
Partition old_part = cmd->part;
|
|
Temp_Memory temp = begin_temp_memory(&mem->part);
|
|
cmd->part = partition_sub_part(&mem->part, Kbytes(16));
|
|
|
|
view_set_file(system, file_view, file, vars->font_set,
|
|
style, vars->hooks[hook_open_file], cmd, &app_links);
|
|
|
|
cmd->part = old_part;
|
|
end_temp_memory(temp);
|
|
cmd->view = old_view;
|
|
|
|
new_view->map = app_get_map(vars, file->settings.base_map_id);
|
|
}
|
|
|
|
// TODO(allen): Improvements to reopen
|
|
// - Preserve existing token stack
|
|
// - Keep current version open and do some sort of diff to keep
|
|
// the cursor position correct
|
|
COMMAND_DECL(reopen){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_EXCHANGE(exchange);
|
|
USE_WORKING_SET(working_set);
|
|
USE_VARS(vars);
|
|
USE_STYLE(style);
|
|
|
|
i32 file_id = exchange_request_file(exchange, expand_str(file->name.source_path));
|
|
i32 index = 0;
|
|
if (file_id){
|
|
file_set_to_loading(file);
|
|
index = working_set_get_index(working_set, file);
|
|
app_push_file_binding(vars, file_id, index);
|
|
|
|
view_set_file(system, view, file, vars->font_set, style,
|
|
vars->hooks[hook_open_file], command, &app_links);
|
|
}
|
|
else{
|
|
// TODO(allen): feedback message
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(save){
|
|
ProfileMomentFunction();
|
|
USE_FILE_VIEW(view);
|
|
USE_FILE(file, view);
|
|
USE_DELAY(delay);
|
|
USE_WORKING_SET(working_set);
|
|
|
|
char *filename = 0;
|
|
int filename_len = 0;
|
|
int buffer_id = -1;
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int v = dynamic_to_int(¶m->param.param);
|
|
if (v == par_name && param->param.value.type == dynamic_type_string){
|
|
filename = param->param.value.str_value;
|
|
filename_len = param->param.value.str_len;
|
|
}
|
|
else if (v == par_buffer_id && param->param.value.type == dynamic_type_int){
|
|
buffer_id = dynamic_to_int(¶m->param.value);
|
|
}
|
|
}
|
|
|
|
String name = {};
|
|
if (filename){
|
|
name = make_string(filename, filename_len);
|
|
}
|
|
else if (file){
|
|
name = file->name.source_path;
|
|
}
|
|
|
|
if (name.size != 0){
|
|
if (buffer_id == -1){
|
|
if (file){
|
|
delayed_save(delay, name, file);
|
|
}
|
|
}
|
|
else{
|
|
file = working_set->files + buffer_id;
|
|
|
|
if (!file->state.is_dummy && file_is_ready(file)){
|
|
delayed_save(delay, name, file);
|
|
}
|
|
else{
|
|
delayed_save(delay, name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(interactive_save_as){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_DELAY(delay);
|
|
USE_EXCHANGE(exchange);
|
|
USE_FONT_SET(font_set);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Interactive_View *int_view =
|
|
interactive_view_init(system, new_view, &vars->hot_directory, style,
|
|
working_set, font_set, delay);
|
|
int_view->interaction = INTV_SYS_FILE_LIST;
|
|
int_view->action = INTV_SAVE_AS;
|
|
copy(&int_view->query, "Save As: ");
|
|
}
|
|
|
|
COMMAND_DECL(change_active_panel){
|
|
ProfileMomentFunction();
|
|
USE_LAYOUT(layout);
|
|
if (layout->panel_count > 1){
|
|
++layout->active_panel;
|
|
if (layout->active_panel >= layout->panel_count){
|
|
layout->active_panel = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(interactive_switch_buffer){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_DELAY(delay);
|
|
USE_EXCHANGE(exchange);
|
|
USE_FONT_SET(font_set);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Interactive_View *int_view =
|
|
interactive_view_init(system, new_view, &vars->hot_directory, style,
|
|
working_set, font_set, delay);
|
|
int_view->interaction = INTV_LIVE_FILE_LIST;
|
|
int_view->action = INTV_SWITCH;
|
|
copy(&int_view->query, "Switch File: ");
|
|
}
|
|
|
|
COMMAND_DECL(interactive_kill_buffer){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_DELAY(delay);
|
|
USE_EXCHANGE(exchange);
|
|
USE_FONT_SET(font_set);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Interactive_View *int_view =
|
|
interactive_view_init(system, new_view, &vars->hot_directory, style,
|
|
working_set, font_set, delay);
|
|
int_view->interaction = INTV_LIVE_FILE_LIST;
|
|
int_view->action = INTV_KILL;
|
|
copy(&int_view->query, "Kill File: ");
|
|
}
|
|
|
|
COMMAND_DECL(kill_buffer){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_DELAY(delay);
|
|
|
|
delayed_try_kill(delay, file->name.live_name, view->view_base.panel);
|
|
}
|
|
|
|
COMMAND_DECL(toggle_line_wrap){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
Relative_Scrolling scrolling = view_get_relative_scrolling(view);
|
|
if (view->unwrapped_lines){
|
|
view->unwrapped_lines = 0;
|
|
file->settings.unwrapped_lines = 0;
|
|
view->target_x = 0;
|
|
view->cursor =
|
|
view_compute_cursor_from_pos(view, view->cursor.pos);
|
|
view->preferred_x = view->cursor.wrapped_x;
|
|
}
|
|
else{
|
|
view->unwrapped_lines = 1;
|
|
file->settings.unwrapped_lines = 1;
|
|
view->cursor =
|
|
view_compute_cursor_from_pos(view, view->cursor.pos);
|
|
view->preferred_x = view->cursor.unwrapped_x;
|
|
}
|
|
view_set_relative_scrolling(view, scrolling);
|
|
}
|
|
|
|
COMMAND_DECL(toggle_show_whitespace){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
view->show_whitespace = !view->show_whitespace;
|
|
}
|
|
|
|
COMMAND_DECL(toggle_tokens){
|
|
#if BUFFER_EXPERIMENT_SCALPEL <= 0
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_MEM(mem);
|
|
|
|
if (file->settings.tokens_exist){
|
|
file_kill_tokens(system, &mem->general, file);
|
|
}
|
|
else{
|
|
file_first_lex_parallel(system, &mem->general, file);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
internal void
|
|
case_change_range(System_Functions *system,
|
|
Mem_Options *mem, File_View *view, Editing_File *file,
|
|
u8 a, u8 z, u8 char_delta){
|
|
#if BUFFER_EXPERIMENT_SCALPEL <= 0
|
|
Range range = make_range(view->cursor.pos, view->mark);
|
|
if (range.start < range.end){
|
|
Edit_Step step = {};
|
|
step.type = ED_NORMAL;
|
|
step.edit.start = range.start;
|
|
step.edit.end = range.end;
|
|
step.edit.len = range.end - range.start;
|
|
|
|
if (file->state.still_lexing)
|
|
system->cancel_job(BACKGROUND_THREADS, file->state.lex_job);
|
|
|
|
file_update_history_before_edit(mem, file, step, 0, hist_normal);
|
|
|
|
u8 *data = (u8*)file->state.buffer.data;
|
|
for (i32 i = range.start; i < range.end; ++i){
|
|
if (data[i] >= a && data[i] <= z){
|
|
data[i] += char_delta;
|
|
}
|
|
}
|
|
|
|
if (file->state.token_stack.tokens)
|
|
file_relex_parallel(system, mem, file, range.start, range.end, 0);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
COMMAND_DECL(to_uppercase){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_MEM(mem);
|
|
case_change_range(system, mem, view, file, 'a', 'z', (u8)('A' - 'a'));
|
|
}
|
|
|
|
COMMAND_DECL(to_lowercase){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_MEM(mem);
|
|
case_change_range(system, mem, view, file, 'A', 'Z', (u8)('a' - 'A'));
|
|
}
|
|
|
|
COMMAND_DECL(clean_all_lines){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
view_clean_whitespace(system, mem, view, layout);
|
|
}
|
|
|
|
COMMAND_DECL(eol_dosify){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
file->settings.dos_write_mode = 1;
|
|
file->state.last_4ed_edit_time = system->time();
|
|
}
|
|
|
|
COMMAND_DECL(eol_nixify){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
file->settings.dos_write_mode = 0;
|
|
file->state.last_4ed_edit_time = system->time();
|
|
}
|
|
|
|
COMMAND_DECL(auto_tab_range){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
int r_start = 0, r_end = 0;
|
|
int start_set = 0, end_set = 0;
|
|
int clear_blank_lines = 1;
|
|
|
|
// TODO(allen): deduplicate
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int p = dynamic_to_int(¶m->param.param);
|
|
switch (p){
|
|
case par_range_start:
|
|
start_set = 1;
|
|
r_start = dynamic_to_int(¶m->param.value);
|
|
break;
|
|
|
|
case par_range_end:
|
|
end_set = 1;
|
|
r_end = dynamic_to_int(¶m->param.value);
|
|
break;
|
|
|
|
case par_clear_blank_lines:
|
|
clear_blank_lines = dynamic_to_bool(¶m->param.value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (file->state.token_stack.tokens && file->state.tokens_complete){
|
|
Range range = make_range(view->cursor.pos, view->mark);
|
|
if (start_set) range.start = r_start;
|
|
if (end_set) range.end = r_end;
|
|
view_auto_tab_tokens(system, mem, view, layout, range.start, range.end, clear_blank_lines);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(auto_tab_line_at_cursor){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
int clear_blank_lines = 0;
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int p = dynamic_to_int(¶m->param.param);
|
|
switch (p){
|
|
case par_clear_blank_lines:
|
|
clear_blank_lines = dynamic_to_bool(¶m->param.value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (file->state.token_stack.tokens && file->state.tokens_complete){
|
|
i32 pos = view->cursor.pos;
|
|
view_auto_tab_tokens(system, mem, view, layout, pos, pos, clear_blank_lines);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(auto_tab_whole_file){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
if (file->state.token_stack.tokens && file->state.tokens_complete){
|
|
view_auto_tab_tokens(system, mem, view, layout, 0, buffer_size(&file->state.buffer), 1);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(open_panel_vsplit){
|
|
ProfileMomentFunction();
|
|
USE_LAYOUT(layout);
|
|
USE_PANEL(panel);
|
|
|
|
i32 panel_count = layout->panel_count;
|
|
if (panel_count < layout->panel_max_count){
|
|
Split_Result split = layout_split_panel(layout, panel, 1);
|
|
|
|
Panel *panel1 = panel;
|
|
Panel *panel2 = split.panel;
|
|
|
|
panel2->screen_region = panel1->screen_region;
|
|
|
|
panel2->full.x0 = split.divider->pos;
|
|
panel2->full.x1 = panel1->full.x1;
|
|
panel1->full.x1 = split.divider->pos;
|
|
|
|
panel_fix_internal_area(panel1);
|
|
panel_fix_internal_area(panel2);
|
|
panel2->prev_inner = panel2->inner;
|
|
|
|
layout->active_panel = (i32)(panel2 - layout->panels);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(open_panel_hsplit){
|
|
ProfileMomentFunction();
|
|
USE_LAYOUT(layout);
|
|
USE_PANEL(panel);
|
|
|
|
i32 panel_count = layout->panel_count;
|
|
if (panel_count < layout->panel_max_count){
|
|
Split_Result split = layout_split_panel(layout, panel, 0);
|
|
|
|
Panel *panel1 = panel;
|
|
Panel *panel2 = split.panel;
|
|
|
|
panel2->screen_region = panel1->screen_region;
|
|
|
|
panel2->full.y0 = split.divider->pos;
|
|
panel2->full.y1 = panel1->full.y1;
|
|
panel1->full.y1 = split.divider->pos;
|
|
|
|
panel_fix_internal_area(panel1);
|
|
panel_fix_internal_area(panel2);
|
|
panel2->prev_inner = panel2->inner;
|
|
|
|
layout->active_panel = (i32)(panel2 - layout->panels);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(close_panel){
|
|
ProfileMomentFunction();
|
|
USE_LAYOUT(layout);
|
|
USE_PANEL(panel);
|
|
USE_VIEW(view);
|
|
USE_EXCHANGE(exchange);
|
|
|
|
if (layout->panel_count > 1){
|
|
if (view){
|
|
live_set_free_view(system, exchange, command->live_set, view);
|
|
panel->view = 0;
|
|
}
|
|
|
|
Divider_And_ID div = layout_get_divider(layout, panel->parent);
|
|
Assert(div.divider->child1 == -1 || div.divider->child2 == -1);
|
|
|
|
i32 child;
|
|
if (div.divider->child1 == -1){
|
|
child = div.divider->child2;
|
|
}
|
|
else{
|
|
child = div.divider->child1;
|
|
}
|
|
|
|
i32 parent = div.divider->parent;
|
|
i32 which_child = div.divider->which_child;
|
|
if (parent != -1){
|
|
Divider_And_ID par = layout_get_divider(layout, parent);
|
|
if (which_child == -1){
|
|
par.divider->child1 = child;
|
|
}
|
|
else{
|
|
par.divider->child2 = child;
|
|
}
|
|
}
|
|
else{
|
|
Assert(layout->root == div.id);
|
|
layout->root = child;
|
|
}
|
|
|
|
if (child != -1){
|
|
Divider_And_ID chi = layout_get_divider(layout, child);
|
|
chi.divider->parent = parent;
|
|
chi.divider->which_child = div.divider->which_child;
|
|
}
|
|
|
|
layout_free_divider(layout, div.divider);
|
|
layout_free_panel(layout, panel);
|
|
|
|
if (child == -1){
|
|
panel = layout->panels;
|
|
layout->active_panel = -1;
|
|
for (i32 i = 0; i < layout->panel_count; ++i){
|
|
if (panel->parent == div.id){
|
|
panel->parent = parent;
|
|
panel->which_child = which_child;
|
|
layout->active_panel = i;
|
|
break;
|
|
}
|
|
++panel;
|
|
}
|
|
Assert(layout->active_panel != -1);
|
|
}
|
|
else{
|
|
layout->active_panel = layout->active_panel % layout->panel_count;
|
|
}
|
|
|
|
layout_fix_all_panels(layout);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(move_left){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = view->cursor.pos;
|
|
if (pos > 0) --pos;
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(move_right){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 size = buffer_size(&file->state.buffer);
|
|
i32 pos = view->cursor.pos;
|
|
if (pos < size) ++pos;
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(delete){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
i32 size = buffer_size(&file->state.buffer);
|
|
i32 cursor_pos = view->cursor.pos;
|
|
if (0 < size && cursor_pos < size){
|
|
i32 start, end;
|
|
start = cursor_pos;
|
|
end = cursor_pos+1;
|
|
|
|
Assert(end - start > 0);
|
|
|
|
i32 next_cursor_pos = start;
|
|
view_replace_range(system, mem, view, layout, start, end, 0, 0, next_cursor_pos);
|
|
view_cursor_move(view, next_cursor_pos);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(backspace){
|
|
ProfileMomentFunction();
|
|
REQ_OPEN_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_LAYOUT(layout);
|
|
USE_MEM(mem);
|
|
|
|
i32 size = buffer_size(&file->state.buffer);
|
|
i32 cursor_pos = view->cursor.pos;
|
|
if (cursor_pos > 0 && cursor_pos <= size){
|
|
i32 start, end;
|
|
end = cursor_pos;
|
|
start = cursor_pos-1;
|
|
|
|
i32 shift = (end - start);
|
|
Assert(shift > 0);
|
|
|
|
i32 next_cursor_pos = view->cursor.pos - shift;
|
|
view_replace_range(system, mem, view, layout, start, end, 0, 0, next_cursor_pos);
|
|
view_cursor_move(view, next_cursor_pos);
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(move_up){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_FONT_SET(font_set);
|
|
|
|
f32 font_height = (f32)get_font_info(font_set, view->style->font_id)->height;
|
|
f32 cy = view_get_cursor_y(view)-font_height;
|
|
f32 px = view->preferred_x;
|
|
if (cy >= 0){
|
|
view->cursor = view_compute_cursor_from_xy(view, px, cy);
|
|
file->state.cursor_pos = view->cursor.pos;
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(move_down){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
USE_FONT_SET(font_set);
|
|
|
|
f32 font_height = (f32)get_font_info(font_set, view->style->font_id)->height;
|
|
f32 cy = view_get_cursor_y(view)+font_height;
|
|
f32 px = view->preferred_x;
|
|
view->cursor = view_compute_cursor_from_xy(view, px, cy);
|
|
file->state.cursor_pos = view->cursor.pos;
|
|
}
|
|
|
|
COMMAND_DECL(seek_end_of_line){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = view_find_end_of_line(view, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(seek_beginning_of_line){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE(file, view);
|
|
|
|
i32 pos = view_find_beginning_of_line(view, view->cursor.pos);
|
|
view_cursor_move(view, pos);
|
|
}
|
|
|
|
COMMAND_DECL(page_down){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
|
|
f32 height = view_compute_height(view);
|
|
f32 max_target_y = view_compute_max_target_y(view);
|
|
|
|
view->target_y += height;
|
|
if (view->target_y > max_target_y) view->target_y = max_target_y;
|
|
|
|
view->cursor = view_compute_cursor_from_xy(
|
|
view, 0, view->target_y + (height - view->font_height)*.5f);
|
|
}
|
|
|
|
COMMAND_DECL(page_up){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
|
|
f32 height = view_compute_height(view);
|
|
|
|
view->target_y -= height;
|
|
if (view->target_y < 0) view->target_y = 0;
|
|
|
|
view->cursor = view_compute_cursor_from_xy(
|
|
view, 0, view->target_y + (height - view->font_height)*.5f);
|
|
}
|
|
|
|
inline void
|
|
open_theme_options(System_Functions *system, Exchange *exchange,
|
|
App_Vars *vars, Live_Views *live_set, Mem_Options *mem, Panel *panel){
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Color_View *color_view = color_view_init(new_view, &vars->working_set);
|
|
color_view->hot_directory = &vars->hot_directory;
|
|
color_view->main_style = &vars->style;
|
|
color_view->styles = &vars->styles;
|
|
color_view->palette = vars->palette;
|
|
color_view->palette_size = vars->palette_size;
|
|
color_view->font_set = vars->font_set;
|
|
}
|
|
|
|
COMMAND_DECL(open_color_tweaker){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_MEM(mem);
|
|
USE_PANEL(panel);
|
|
USE_EXCHANGE(exchange);
|
|
|
|
open_theme_options(system, exchange, vars, live_set, mem, panel);
|
|
}
|
|
|
|
inline void
|
|
open_config_options(System_Functions *system, Exchange *exchange,
|
|
App_Vars *vars, Live_Views *live_set, Mem_Options *mem, Panel *panel){
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
config_view_init(new_view, &vars->style,
|
|
&vars->working_set, vars->font_set,
|
|
&vars->settings);
|
|
}
|
|
|
|
COMMAND_DECL(open_config){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_MEM(mem);
|
|
USE_PANEL(panel);
|
|
USE_EXCHANGE(exchange);
|
|
|
|
open_config_options(system, exchange, vars, live_set, mem, panel);
|
|
}
|
|
|
|
COMMAND_DECL(open_menu){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_EXCHANGE(exchange);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Menu_View *menu_view = menu_view_init(new_view, style, working_set,
|
|
&vars->delay1, vars->font_set);
|
|
AllowLocal(menu_view);
|
|
}
|
|
|
|
#if FRED_INTERNAL
|
|
COMMAND_DECL(open_debug_view){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_STYLE(style);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_MEM(mem);
|
|
USE_EXCHANGE(exchange);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_major(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_debug;
|
|
Debug_View *debug_view = debug_view_init(new_view);
|
|
debug_view->font_id = style->font_id;
|
|
debug_view->mode = DBG_MEMORY;
|
|
}
|
|
|
|
COMMAND_DECL(debug_memory){
|
|
ProfileMomentFunction();
|
|
REQ_DBG_VIEW(view);
|
|
view->mode = DBG_MEMORY;
|
|
}
|
|
|
|
COMMAND_DECL(debug_os_events){
|
|
ProfileMomentFunction();
|
|
REQ_DBG_VIEW(view);
|
|
view->mode = DBG_OS_EVENTS;
|
|
}
|
|
|
|
#endif
|
|
|
|
COMMAND_DECL(close_minor_view){
|
|
ProfileMomentFunction();
|
|
REQ_VIEW(view);
|
|
USE_PANEL(panel);
|
|
USE_LIVE_SET(live_set);
|
|
USE_EXCHANGE(exchange);
|
|
|
|
view_remove_minor(system, exchange, panel, live_set);
|
|
}
|
|
|
|
COMMAND_DECL(cursor_mark_swap){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
|
|
i32 pos = view->cursor.pos;
|
|
view_cursor_move(view, view->mark);
|
|
view->mark = pos;
|
|
}
|
|
|
|
COMMAND_DECL(user_callback){
|
|
ProfileMomentFunction();
|
|
if (binding.custom) binding.custom(&app_links);
|
|
}
|
|
|
|
COMMAND_DECL(set_settings){
|
|
ProfileMomentFunction();
|
|
REQ_FILE_VIEW(view);
|
|
REQ_FILE_LOADING(file, view);
|
|
USE_VARS(vars);
|
|
USE_MEM(mem);
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int p = dynamic_to_int(¶m->param.param);
|
|
switch (p){
|
|
case par_lex_as_cpp_file:
|
|
{
|
|
#if BUFFER_EXPERIMENT_SCALPEL <= 0
|
|
int v = dynamic_to_bool(¶m->param.value);
|
|
if (file->settings.tokens_exist){
|
|
if (!v) file_kill_tokens(system, &mem->general, file);
|
|
}
|
|
else{
|
|
if (v) file_first_lex_parallel(system, &mem->general, file);
|
|
}
|
|
#endif
|
|
}break;
|
|
|
|
case par_wrap_lines:
|
|
{
|
|
int v = dynamic_to_bool(¶m->param.value);
|
|
if (view->unwrapped_lines){
|
|
if (v){
|
|
view->unwrapped_lines = 0;
|
|
file->settings.unwrapped_lines = 0;
|
|
|
|
if (!file->state.is_loading){
|
|
Relative_Scrolling scrolling = view_get_relative_scrolling(view);
|
|
view->target_x = 0;
|
|
view->cursor =
|
|
view_compute_cursor_from_pos(view, view->cursor.pos);
|
|
view_set_relative_scrolling(view, scrolling);
|
|
}
|
|
}
|
|
}
|
|
else{
|
|
if (!v){
|
|
view->unwrapped_lines = 1;
|
|
file->settings.unwrapped_lines = 1;
|
|
|
|
if (!file->state.is_loading){
|
|
Relative_Scrolling scrolling = view_get_relative_scrolling(view);
|
|
view->cursor =
|
|
view_compute_cursor_from_pos(view, view->cursor.pos);
|
|
view_set_relative_scrolling(view, scrolling);
|
|
}
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case par_key_mapid:
|
|
{
|
|
int v = dynamic_to_int(¶m->param.value);
|
|
if (v == mapid_global) file->settings.base_map_id = mapid_global;
|
|
else if (v == mapid_file) file->settings.base_map_id = mapid_file;
|
|
else if (v < mapid_global){
|
|
int index = app_get_map_index(vars, v);
|
|
if (index < vars->user_map_count) file->settings.base_map_id = v;
|
|
else file->settings.base_map_id = mapid_file;
|
|
}
|
|
}break;
|
|
}
|
|
}
|
|
}
|
|
|
|
#define CLI_OverlapWithConflict (1<<0)
|
|
#define CLI_AlwaysBindToView (2<<0)
|
|
|
|
internal void
|
|
build(System_Functions *system, Mem_Options *mem,
|
|
App_Vars *vars, Working_Set *working_set,
|
|
Font_Set *font_set, Style *style,
|
|
Live_Views *live_set, Exchange *exchange,
|
|
Panel *panel, Command_Data *command,
|
|
String hot_directory,
|
|
char *buffer_name, i32 buffer_name_len,
|
|
char *path, i32 path_len,
|
|
char *script, i32 script_len,
|
|
u32 flags){
|
|
if (buffer_name == 0 || path == 0 || script == 0){
|
|
return;
|
|
}
|
|
|
|
if (vars->cli_processes.count < vars->cli_processes.max){
|
|
Editing_Layout *layout = &vars->layout;
|
|
Editing_File *file = working_set_contains(working_set, make_string_slowly(buffer_name));
|
|
i32 index;
|
|
b32 bind_to_new_view = 1;
|
|
|
|
if (!file){
|
|
Get_File_Result get_file = working_set_get_available_file(working_set);
|
|
file = get_file.file;
|
|
index = get_file.index;
|
|
}
|
|
else{
|
|
i32 proc_count = vars->cli_processes.count;
|
|
for (i32 i = 0; i < proc_count; ++i){
|
|
if (vars->cli_processes.procs[i].out_file == file){
|
|
if (flags & CLI_OverlapWithConflict)
|
|
vars->cli_processes.procs[i].out_file = 0;
|
|
else file = 0;
|
|
break;
|
|
}
|
|
}
|
|
index = (i32)(file - vars->working_set.files);
|
|
if (file){
|
|
if (!(flags & CLI_AlwaysBindToView)){
|
|
Panel *panel = layout->panels;
|
|
for (i32 i = 0; i < layout->panel_count; ++i, ++panel){
|
|
File_View *fview = view_to_file_view(panel->view);
|
|
if (fview && fview->file == file){
|
|
bind_to_new_view = 0;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (file){
|
|
file_create_super_locked(system, mem, working_set, file, buffer_name, font_set, style->font_id);
|
|
file->settings.unimportant = 1;
|
|
table_add(&working_set->table, file->name.source_path, index);
|
|
|
|
if (bind_to_new_view){
|
|
#if 0
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_major(system, exchange, new_view, panel, live_set);
|
|
|
|
File_View *file_view = file_view_init(new_view, layout);
|
|
view_set_file(system, file_view, file, font_set, style,
|
|
vars->hooks[hook_open_file], command, &app_links);
|
|
new_view->map = app_get_map(vars, file->settings.base_map_id);
|
|
#endif
|
|
view_file_in_panel(command, panel, file);
|
|
}
|
|
|
|
i32 i = vars->cli_processes.count++;
|
|
CLI_Process *proc = vars->cli_processes.procs + i;
|
|
if (!system->cli_call(path, script, &proc->cli)){
|
|
--vars->cli_processes.count;
|
|
}
|
|
proc->out_file = file;
|
|
}
|
|
else{
|
|
// TODO(allen): feedback message - no available file
|
|
}
|
|
}
|
|
else{
|
|
// TODO(allen): feedback message - no available process slot
|
|
}
|
|
}
|
|
|
|
COMMAND_DECL(command_line){
|
|
ProfileMomentFunction();
|
|
USE_VARS(vars);
|
|
USE_MEM(mem);
|
|
USE_WORKING_SET(working_set);
|
|
USE_STYLE(style);
|
|
USE_LIVE_SET(live_set);
|
|
USE_PANEL(panel);
|
|
USE_EXCHANGE(exchange);
|
|
USE_FONT_SET(font_set);
|
|
|
|
char *buffer_name = 0;
|
|
char *path = 0;
|
|
char *script = 0;
|
|
|
|
int buffer_name_len = 0;
|
|
int path_len = 0;
|
|
int script_len = 0;
|
|
u32 flags = CLI_OverlapWithConflict;
|
|
|
|
Command_Parameter *end = param_stack_end(&command->part);
|
|
Command_Parameter *param = param_stack_first(&command->part, end);
|
|
for (; param < end; param = param_next(param, end)){
|
|
int p = dynamic_to_int(¶m->param.param);
|
|
switch (p){
|
|
case par_name:
|
|
{
|
|
if (buffer_name == 0){
|
|
char *new_buffer_name = dynamic_to_string(¶m->param.value, &buffer_name_len);
|
|
if (new_buffer_name){
|
|
buffer_name = new_buffer_name;
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case par_cli_path:
|
|
{
|
|
if (path == 0){
|
|
char *new_cli_path = dynamic_to_string(¶m->param.value, &path_len);
|
|
if (new_cli_path){
|
|
path = new_cli_path;
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case par_cli_command:
|
|
{
|
|
if (script == 0){
|
|
char *new_command = dynamic_to_string(¶m->param.value, &script_len);
|
|
if (new_command){
|
|
script = new_command;
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case par_cli_overlap_with_conflict:
|
|
{
|
|
if (dynamic_to_int(¶m->param.value))
|
|
flags |= CLI_OverlapWithConflict;
|
|
else
|
|
flags &= (~CLI_OverlapWithConflict);
|
|
}break;
|
|
|
|
case par_cli_always_bind_to_view:
|
|
{
|
|
if (dynamic_to_int(¶m->param.value))
|
|
flags |= CLI_OverlapWithConflict;
|
|
else
|
|
flags &= (~CLI_OverlapWithConflict);
|
|
}break;
|
|
}
|
|
}
|
|
|
|
build(system, mem, vars, working_set,
|
|
font_set, style, live_set, exchange,
|
|
panel, command,
|
|
vars->hot_directory.string,
|
|
buffer_name, buffer_name_len,
|
|
path, path_len,
|
|
script, script_len,
|
|
flags);
|
|
}
|
|
|
|
internal void
|
|
update_command_data(App_Vars *vars, Command_Data *cmd){
|
|
cmd->panel = cmd->layout->panels + cmd->layout->active_panel;
|
|
cmd->view = cmd->panel->view;
|
|
cmd->style = &vars->style;
|
|
}
|
|
|
|
globalvar Command_Function command_table[cmdid_count];
|
|
|
|
internal void
|
|
fill_buffer_summary(Buffer_Summary *buffer, Editing_File *file, Working_Set *working_set){
|
|
buffer->exists = 1;
|
|
buffer->ready = file_is_ready(file);
|
|
buffer->is_lexed = file->settings.tokens_exist;
|
|
buffer->buffer_id = (int)(file - working_set->files);
|
|
buffer->size = file->state.buffer.size;
|
|
buffer->buffer_cursor_pos = file->state.cursor_pos;
|
|
|
|
buffer->file_name_len = file->name.source_path.size;
|
|
buffer->buffer_name_len = file->name.live_name.size;
|
|
buffer->file_name = file->name.source_path.str;
|
|
buffer->buffer_name = file->name.live_name.str;
|
|
|
|
buffer->map_id = file->settings.base_map_id;
|
|
}
|
|
|
|
internal void
|
|
fill_view_summary(File_View_Summary *view, File_View *file_view, Live_Views *live_set, Working_Set *working_set){
|
|
view->exists = 1;
|
|
view->view_id = (int)((char*)file_view - (char*)live_set->views) / live_set->stride;
|
|
if (file_view->file){
|
|
view->buffer_id = (int)(file_view->file - working_set->files);
|
|
view->mark = view_compute_cursor_from_pos(file_view, file_view->mark);
|
|
view->cursor = file_view->cursor;
|
|
view->preferred_x = file_view->preferred_x;
|
|
view->line_height = file_view->font_height;
|
|
view->unwrapped_lines = file_view->unwrapped_lines;
|
|
}
|
|
}
|
|
|
|
extern "C"{
|
|
EXECUTE_COMMAND_SIG(external_exec_command_keep_stack){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Command_Function function = command_table[command_id];
|
|
Command_Binding binding;
|
|
binding.function = function;
|
|
if (function) function(cmd->system, cmd, binding);
|
|
|
|
update_command_data(cmd->vars, cmd);
|
|
}
|
|
|
|
PUSH_PARAMETER_SIG(external_push_parameter){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Partition *part = &cmd->part;
|
|
Command_Parameter *cmd_param = push_struct(part, Command_Parameter);
|
|
cmd_param->type = 0;
|
|
cmd_param->param.param = param;
|
|
cmd_param->param.value = value;
|
|
}
|
|
|
|
PUSH_MEMORY_SIG(external_push_memory){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Partition *part = &cmd->part;
|
|
Command_Parameter *base = push_struct(part, Command_Parameter);
|
|
char *result = push_array(part, char, len);
|
|
int full_len = len + sizeof(Command_Parameter) - 1;
|
|
full_len -= (full_len % sizeof(Command_Parameter));
|
|
part->pos += full_len - len;
|
|
base->type = 1;
|
|
base->inline_string.str = result;
|
|
base->inline_string.len = len;
|
|
return(result);
|
|
}
|
|
|
|
CLEAR_PARAMETERS_SIG(external_clear_parameters){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
cmd->part.pos = 0;
|
|
}
|
|
|
|
DIRECTORY_GET_HOT_SIG(external_directory_get_hot){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Hot_Directory *hot = &cmd->vars->hot_directory;
|
|
i32 copy_max = capacity - 1;
|
|
hot_directory_clean_end(hot);
|
|
if (copy_max > hot->string.size)
|
|
copy_max = hot->string.size;
|
|
memcpy(out, hot->string.str, copy_max);
|
|
out[copy_max] = 0;
|
|
return(hot->string.size);
|
|
}
|
|
|
|
GET_FILE_LIST_SIG(external_get_file_list){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
System_Functions *system = cmd->system;
|
|
File_List result = {};
|
|
system->set_file_list(&result, make_string(dir, len));
|
|
return(result);
|
|
}
|
|
|
|
FREE_FILE_LIST_SIG(external_free_file_list){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
System_Functions *system = cmd->system;
|
|
system->set_file_list(&list, make_string(0, 0));
|
|
}
|
|
|
|
GET_BUFFER_MAX_INDEX_SIG(external_get_buffer_max_index){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Working_Set *working_set = cmd->working_set;
|
|
int max = working_set->file_index_count;
|
|
return(max);
|
|
}
|
|
|
|
GET_BUFFER_SIG(external_get_buffer){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Editing_File *file;
|
|
Working_Set *working_set = cmd->working_set;
|
|
int max = working_set->file_index_count;
|
|
Buffer_Summary buffer = {};
|
|
|
|
if (index >= 0 && index < max){
|
|
file = working_set->files + index;
|
|
if (!file->state.is_dummy){
|
|
fill_buffer_summary(&buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(buffer);
|
|
}
|
|
|
|
GET_ACTIVE_BUFFER_SIG(external_get_active_buffer){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
File_View *view;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
Buffer_Summary buffer = {};
|
|
|
|
view = view_to_file_view(cmd->view);
|
|
if (view){
|
|
file = view->file;
|
|
working_set = cmd->working_set;
|
|
|
|
if (file && !file->state.is_dummy){
|
|
fill_buffer_summary(&buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(buffer);
|
|
}
|
|
|
|
GET_BUFFER_BY_NAME(external_get_buffer_by_name){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
i32 index;
|
|
Buffer_Summary buffer = {};
|
|
|
|
working_set = cmd->working_set;
|
|
if (table_find(&working_set->table, make_string(filename, len), &index)){
|
|
file = working_set->files + index;
|
|
if (!file->state.is_dummy && file_is_ready(file)){
|
|
fill_buffer_summary(&buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(buffer);
|
|
}
|
|
|
|
REFRESH_BUFFER_SIG(external_refresh_buffer){
|
|
int result;
|
|
*buffer = external_get_buffer(context, buffer->buffer_id);
|
|
result = buffer->exists;
|
|
return(result);
|
|
}
|
|
|
|
BUFFER_SEEK_DELIMITER_SIG(external_buffer_seek_delimiter){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
int result = 0;
|
|
int size;
|
|
|
|
if (buffer->exists){
|
|
working_set = cmd->working_set;
|
|
file = working_set->files + buffer->buffer_id;
|
|
if (!file->state.is_dummy && file_is_ready(file)){
|
|
size = buffer_size(&file->state.buffer);
|
|
result = 1;
|
|
|
|
if (start < 0 && !seek_forward) *out = start;
|
|
else if (start >= size && seek_forward) *out = start;
|
|
else{
|
|
if (seek_forward){
|
|
*out = buffer_seek_delimiter(&file->state.buffer, start, delim);
|
|
}
|
|
else{
|
|
*out = buffer_reverse_seek_delimiter(&file->state.buffer, start, delim);
|
|
}
|
|
}
|
|
|
|
fill_buffer_summary(buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
BUFFER_SEEK_STRING_SIG(external_buffer_seek_string){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
Temp_Memory temp;
|
|
Partition *part;
|
|
char *spare;
|
|
int result = 0;
|
|
int size;
|
|
|
|
if (buffer->exists){
|
|
working_set = cmd->working_set;
|
|
file = working_set->files + buffer->buffer_id;
|
|
if (!file->state.is_dummy && file_is_ready(file)){
|
|
size = buffer_size(&file->state.buffer);
|
|
|
|
if (start < 0 && !seek_forward) *out = start;
|
|
else if (start >= size && seek_forward) *out = start;
|
|
else{
|
|
part = &cmd->mem->part;
|
|
temp = begin_temp_memory(part);
|
|
spare = push_array(part, char, len);
|
|
result = 1;
|
|
if (seek_forward){
|
|
*out = buffer_find_string(&file->state.buffer, start, size, str, len, spare);
|
|
}
|
|
else{
|
|
*out = buffer_rfind_string(&file->state.buffer, start, str, len, spare);
|
|
}
|
|
end_temp_memory(temp);
|
|
}
|
|
fill_buffer_summary(buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
BUFFER_READ_RANGE_SIG(external_buffer_read_range){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
int result = 0;
|
|
int size;
|
|
|
|
if (buffer->exists){
|
|
working_set = cmd->working_set;
|
|
file = working_set->files + buffer->buffer_id;
|
|
if (!file->state.is_dummy && file_is_ready(file)){
|
|
size = buffer_size(&file->state.buffer);
|
|
if (0 <= start && start <= end && end <= size){
|
|
result = 1;
|
|
buffer_stringify(&file->state.buffer, start, end, out);
|
|
}
|
|
fill_buffer_summary(buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
BUFFER_REPLACE_RANGE_SIG(external_buffer_replace_range){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
|
|
System_Functions *system;
|
|
Mem_Options *mem;
|
|
Editing_Layout *layout;
|
|
|
|
int result = 0;
|
|
int size;
|
|
int next_cursor, pos;
|
|
|
|
if (buffer->exists){
|
|
working_set = cmd->working_set;
|
|
file = working_set->files + buffer->buffer_id;
|
|
if (!file->state.is_dummy && file_is_ready(file)){
|
|
size = buffer_size(&file->state.buffer);
|
|
if (0 <= start && start <= end && end <= size){
|
|
result = 1;
|
|
|
|
system = cmd->system;
|
|
mem = cmd->mem;
|
|
layout = cmd->layout;
|
|
|
|
pos = file->state.cursor_pos;
|
|
if (pos < start) next_cursor = pos;
|
|
else if (pos < end) next_cursor = start + len;
|
|
else next_cursor = pos + end - start + len;
|
|
|
|
file_replace_range(system, mem, file, layout,
|
|
start, end, str, len, next_cursor);
|
|
}
|
|
fill_buffer_summary(buffer, file, working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
GET_VIEW_MAX_INDEX_SIG(external_get_view_max_index){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Live_Views *live_set = cmd->live_set;
|
|
int max = live_set->max;
|
|
return(max);
|
|
}
|
|
|
|
GET_FILE_VIEW_SIG(external_get_file_view){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Live_Views *live_set = cmd->live_set;
|
|
int max = live_set->max;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
File_View_Summary view = {};
|
|
|
|
if (index >= 0 && index < max){
|
|
vptr = (View*)((char*)live_set->views + live_set->stride*index);
|
|
file_view = view_to_file_view(vptr);
|
|
if (file_view){
|
|
fill_view_summary(&view, file_view, cmd->live_set, cmd->working_set);
|
|
}
|
|
}
|
|
|
|
return(view);
|
|
}
|
|
|
|
GET_ACTIVE_FILE_VIEW_SIG(external_get_active_file_view){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
File_View_Summary view = {};
|
|
File_View *file_view;
|
|
|
|
file_view = view_to_file_view(cmd->view);
|
|
if (file_view){
|
|
fill_view_summary(&view, file_view, cmd->live_set, cmd->working_set);
|
|
}
|
|
|
|
return(view);
|
|
}
|
|
|
|
REFRESH_FILE_VIEW_SIG(external_refresh_file_view){
|
|
int result;
|
|
*view = external_get_file_view(context, view->view_id);
|
|
result = view->exists;
|
|
return(result);
|
|
}
|
|
|
|
VIEW_SET_CURSOR_SIG(external_view_set_cursor){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Live_Views *live_set;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
int result = 0;
|
|
|
|
if (view->exists){
|
|
live_set = cmd->live_set;
|
|
vptr = (View*)((char*)live_set->views + live_set->stride * view->view_id);
|
|
file_view = view_to_file_view(vptr);
|
|
if (file_view){
|
|
result = 1;
|
|
file_view->cursor = view_compute_cursor(file_view, seek);
|
|
if (set_preferred_x){
|
|
file_view->preferred_x = view_get_cursor_x(file_view);
|
|
}
|
|
fill_view_summary(view, file_view, cmd->live_set, cmd->working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
VIEW_SET_MARK_SIG(external_view_set_mark){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Live_Views *live_set;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
Full_Cursor cursor;
|
|
int result = 0;
|
|
|
|
if (view->exists){
|
|
live_set = cmd->live_set;
|
|
vptr = (View*)((char*)live_set->views + live_set->stride * view->view_id);
|
|
file_view = view_to_file_view(vptr);
|
|
if (file_view){
|
|
result = 1;
|
|
if (seek.type != buffer_seek_pos){
|
|
cursor = view_compute_cursor(file_view, seek);
|
|
file_view->mark = cursor.pos;
|
|
}
|
|
else{
|
|
file_view->mark = seek.pos;
|
|
}
|
|
fill_view_summary(view, file_view, cmd->live_set, cmd->working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
VIEW_SET_HIGHLIGHT_SIG(external_view_set_highlight){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Live_Views *live_set;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
int result = 0;
|
|
|
|
if (view->exists){
|
|
live_set = cmd->live_set;
|
|
vptr = (View*)((char*)live_set->views + live_set->stride * view->view_id);
|
|
file_view = view_to_file_view(vptr);
|
|
if (file_view){
|
|
result = 1;
|
|
if (turn_on){
|
|
view_set_temp_highlight(file_view, start, end);
|
|
}
|
|
else{
|
|
file_view->show_temp_highlight = 0;
|
|
}
|
|
fill_view_summary(view, file_view, cmd->live_set, cmd->working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
VIEW_SET_BUFFER_SIG(external_view_set_buffer){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Live_Views *live_set;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
Editing_File *file;
|
|
Working_Set *working_set;
|
|
int max, result = 0;
|
|
|
|
if (view->exists){
|
|
live_set = cmd->live_set;
|
|
vptr = (View*)((char*)live_set->views + live_set->stride * view->view_id);
|
|
file_view = view_to_file_view(vptr);
|
|
if (file_view){
|
|
working_set = cmd->working_set;
|
|
max = working_set->file_index_count;
|
|
if (buffer_id >= 0 && buffer_id < max){
|
|
file = working_set->files + buffer_id;
|
|
if (!file->state.is_dummy){
|
|
view_set_file(cmd->system, file_view, file, cmd->vars->font_set, cmd->style,
|
|
cmd->vars->hooks[hook_open_file], cmd, &app_links);
|
|
}
|
|
}
|
|
|
|
fill_view_summary(view, file_view, cmd->live_set, cmd->working_set);
|
|
}
|
|
}
|
|
|
|
return(result);
|
|
}
|
|
|
|
GET_USER_INPUT_SIG(external_get_user_input){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
System_Functions *system = cmd->system;
|
|
Coroutine *coroutine = cmd->current_coroutine;
|
|
User_Input result;
|
|
|
|
Assert(coroutine);
|
|
*((u32*)coroutine->out+0) = get_type;
|
|
*((u32*)coroutine->out+1) = abort_type;
|
|
system->yield_coroutine(coroutine);
|
|
result = *(User_Input*)coroutine->in;
|
|
|
|
return(result);
|
|
}
|
|
|
|
START_QUERY_BAR_SIG(external_start_query_bar){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
Query_Slot *slot = 0;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
|
|
vptr = cmd->view;
|
|
file_view = view_to_file_view(vptr);
|
|
|
|
if (file_view){
|
|
slot = alloc_query_slot(&file_view->query_set);
|
|
slot->query_bar = bar;
|
|
}
|
|
|
|
return(slot != 0);
|
|
}
|
|
|
|
END_QUERY_BAR_SIG(external_end_query_bar){
|
|
Command_Data *cmd = (Command_Data*)context->cmd_context;
|
|
View *vptr;
|
|
File_View *file_view;
|
|
|
|
vptr = cmd->view;
|
|
file_view = view_to_file_view(vptr);
|
|
|
|
if (file_view){
|
|
free_query_slot(&file_view->query_set, bar);
|
|
}
|
|
}
|
|
}
|
|
|
|
struct Command_In{
|
|
Command_Data *cmd;
|
|
Command_Binding bind;
|
|
};
|
|
|
|
internal void
|
|
command_caller(Coroutine *coroutine){
|
|
Command_In *cmd_in = (Command_In*)coroutine->in;
|
|
Command_Data *cmd = cmd_in->cmd;
|
|
View *view = cmd->view;
|
|
// TODO(allen): this isn't really super awesome, could have issues if
|
|
// the file view get's change out under us.
|
|
File_View *fview = view_to_file_view(view);
|
|
if (fview) fview->next_mode = {};
|
|
cmd_in->bind.function(cmd->system, cmd, cmd_in->bind);
|
|
fview = view_to_file_view(view);
|
|
if (fview) fview->mode = fview->next_mode;
|
|
}
|
|
|
|
internal void
|
|
app_links_init(System_Functions *system, void *data, int size){
|
|
app_links.data = data;
|
|
app_links.size = size;
|
|
|
|
app_links.exec_command_keep_stack = external_exec_command_keep_stack;
|
|
app_links.push_parameter = external_push_parameter;
|
|
app_links.push_memory = external_push_memory;
|
|
app_links.clear_parameters = external_clear_parameters;
|
|
|
|
app_links.directory_get_hot = external_directory_get_hot;
|
|
app_links.file_exists = system->file_exists;
|
|
app_links.directory_cd = system->directory_cd;
|
|
app_links.get_file_list = external_get_file_list;
|
|
app_links.free_file_list = external_free_file_list;
|
|
|
|
app_links.get_buffer_max_index = external_get_buffer_max_index;
|
|
app_links.get_buffer = external_get_buffer;
|
|
app_links.get_active_buffer = external_get_active_buffer;
|
|
app_links.get_buffer_by_name = external_get_buffer_by_name;
|
|
|
|
app_links.refresh_buffer = external_refresh_buffer;
|
|
app_links.buffer_seek_delimiter = external_buffer_seek_delimiter;
|
|
app_links.buffer_seek_string = external_buffer_seek_string;
|
|
app_links.buffer_read_range = external_buffer_read_range;
|
|
app_links.buffer_replace_range = external_buffer_replace_range;
|
|
|
|
app_links.get_view_max_index = external_get_view_max_index;
|
|
app_links.get_file_view = external_get_file_view;
|
|
app_links.get_active_file_view = external_get_active_file_view;
|
|
|
|
app_links.refresh_file_view = external_refresh_file_view;
|
|
app_links.view_set_cursor = external_view_set_cursor;
|
|
app_links.view_set_mark = external_view_set_mark;
|
|
app_links.view_set_highlight = external_view_set_highlight;
|
|
app_links.view_set_buffer = external_view_set_buffer;
|
|
|
|
app_links.get_user_input = external_get_user_input;
|
|
|
|
app_links.start_query_bar = external_start_query_bar;
|
|
app_links.end_query_bar = external_end_query_bar;
|
|
}
|
|
|
|
#if FRED_INTERNAL
|
|
internal void
|
|
setup_debug_commands(Command_Map *commands, Partition *part, Command_Map *parent){
|
|
map_init(commands, part, 6, parent);
|
|
|
|
map_add(commands, 'm', MDFR_NONE, command_debug_memory);
|
|
map_add(commands, 'o', MDFR_NONE, command_debug_os_events);
|
|
}
|
|
#endif
|
|
|
|
internal void
|
|
setup_ui_commands(Command_Map *commands, Partition *part, Command_Map *parent){
|
|
map_init(commands, part, 32, parent);
|
|
|
|
commands->vanilla_keyboard_default.function = command_null;
|
|
|
|
// TODO(allen): This is hacky, when the new UI stuff happens, let's fix it, and by that
|
|
// I mean actually fix it, don't just say you fixed it with something stupid again.
|
|
u8 mdfr;
|
|
u8 mdfr_array[] = {MDFR_NONE, MDFR_SHIFT, MDFR_CTRL, MDFR_SHIFT | MDFR_CTRL};
|
|
for (i32 i = 0; i < 4; ++i){
|
|
mdfr = mdfr_array[i];
|
|
map_add(commands, key_left, mdfr, command_null);
|
|
map_add(commands, key_right, mdfr, command_null);
|
|
map_add(commands, key_up, mdfr, command_null);
|
|
map_add(commands, key_down, mdfr, command_null);
|
|
map_add(commands, key_back, mdfr, command_null);
|
|
map_add(commands, key_esc, mdfr, command_close_minor_view);
|
|
}
|
|
}
|
|
|
|
internal void
|
|
setup_file_commands(Command_Map *commands, Partition *part, Command_Map *parent){
|
|
map_init(commands, part, 10, parent);
|
|
}
|
|
|
|
internal void
|
|
setup_top_commands(Command_Map *commands, Partition *part, Command_Map *parent){
|
|
map_init(commands, part, 5, parent);
|
|
}
|
|
|
|
internal void
|
|
setup_command_table(){
|
|
#define SET(n) command_table[cmdid_##n] = command_##n
|
|
|
|
SET(null);
|
|
SET(write_character);
|
|
SET(seek_whitespace_right);
|
|
SET(seek_whitespace_left);
|
|
SET(seek_whitespace_up);
|
|
SET(seek_whitespace_down);
|
|
SET(seek_token_left);
|
|
SET(seek_token_right);
|
|
SET(seek_white_or_token_right);
|
|
SET(seek_white_or_token_left);
|
|
SET(seek_alphanumeric_right);
|
|
SET(seek_alphanumeric_left);
|
|
SET(seek_alphanumeric_or_camel_right);
|
|
SET(seek_alphanumeric_or_camel_left);
|
|
SET(word_complete);
|
|
SET(set_mark);
|
|
SET(copy);
|
|
SET(cut);
|
|
SET(paste);
|
|
SET(paste_next);
|
|
SET(delete_range);
|
|
SET(timeline_scrub);
|
|
SET(undo);
|
|
SET(redo);
|
|
SET(history_backward);
|
|
SET(history_forward);
|
|
SET(interactive_new);
|
|
SET(interactive_open);
|
|
SET(reopen);
|
|
SET(save);
|
|
SET(interactive_save_as);
|
|
SET(change_active_panel);
|
|
SET(interactive_switch_buffer);
|
|
SET(interactive_kill_buffer);
|
|
SET(kill_buffer);
|
|
SET(toggle_line_wrap);
|
|
SET(to_uppercase);
|
|
SET(to_lowercase);
|
|
SET(toggle_show_whitespace);
|
|
SET(clean_all_lines);
|
|
SET(eol_dosify);
|
|
SET(eol_nixify);
|
|
SET(auto_tab_range);
|
|
SET(auto_tab_line_at_cursor);
|
|
SET(auto_tab_whole_file);
|
|
SET(open_panel_vsplit);
|
|
SET(open_panel_hsplit);
|
|
SET(close_panel);
|
|
SET(move_left);
|
|
SET(move_right);
|
|
SET(delete);
|
|
SET(backspace);
|
|
SET(move_up);
|
|
SET(move_down);
|
|
SET(seek_end_of_line);
|
|
SET(seek_beginning_of_line);
|
|
SET(page_up);
|
|
SET(page_down);
|
|
SET(open_color_tweaker);
|
|
SET(close_minor_view);
|
|
SET(cursor_mark_swap);
|
|
SET(open_menu);
|
|
SET(set_settings);
|
|
SET(command_line);
|
|
|
|
#undef SET
|
|
}
|
|
|
|
// App Functions
|
|
|
|
internal void
|
|
app_hardcode_styles(App_Vars *vars){
|
|
Interactive_Style file_info_style;
|
|
Style *styles, *style;
|
|
styles = vars->styles.styles;
|
|
style = styles;
|
|
|
|
i16 fonts = 1;
|
|
|
|
/////////////////
|
|
style_set_name(style, make_lit_string("4coder"));
|
|
style->font_id = fonts + 0;
|
|
|
|
style->main.back_color = 0xFF0C0C0C;
|
|
style->main.margin_color = 0xFF181818;
|
|
style->main.margin_hover_color = 0xFF252525;
|
|
style->main.margin_active_color = 0xFF323232;
|
|
style->main.cursor_color = 0xFF00EE00;
|
|
style->main.highlight_color = 0xFFDDEE00;
|
|
style->main.mark_color = 0xFF494949;
|
|
style->main.default_color = 0xFF90B080;
|
|
style->main.at_cursor_color = style->main.back_color;
|
|
style->main.at_highlight_color = 0xFFFF44DD;
|
|
style->main.comment_color = 0xFF2090F0;
|
|
style->main.keyword_color = 0xFFD08F20;
|
|
style->main.str_constant_color = 0xFF50FF30;
|
|
style->main.char_constant_color = style->main.str_constant_color;
|
|
style->main.int_constant_color = style->main.str_constant_color;
|
|
style->main.float_constant_color = style->main.str_constant_color;
|
|
style->main.bool_constant_color = style->main.str_constant_color;
|
|
style->main.include_color = style->main.str_constant_color;
|
|
style->main.preproc_color = style->main.default_color;
|
|
style->main.special_character_color = 0xFFFF0000;
|
|
|
|
style->main.paste_color = 0xFFDDEE00;
|
|
style->main.undo_color = 0xFF00DDEE;
|
|
|
|
style->main.highlight_junk_color = 0xff3a0000;
|
|
style->main.highlight_white_color = 0xff003a3a;
|
|
|
|
file_info_style.bar_color = 0xFF888888;
|
|
file_info_style.bar_active_color = 0xFF666666;
|
|
file_info_style.base_color = 0xFF000000;
|
|
file_info_style.pop1_color = 0xFF4444AA;
|
|
file_info_style.pop2_color = 0xFFFF0000;
|
|
style->main.file_info_style = file_info_style;
|
|
style->font_changed = 1;
|
|
++style;
|
|
|
|
/////////////////
|
|
*style = *(style-1);
|
|
style_set_name(style, make_lit_string("4coder-mono"));
|
|
style->font_id = fonts + 1;
|
|
++style;
|
|
|
|
/////////////////
|
|
style_set_name(style, make_lit_string("Handmade Hero"));
|
|
style->font_id = fonts + 1;
|
|
|
|
style->main.back_color = 0xFF161616;
|
|
style->main.margin_color = 0xFF262626;
|
|
style->main.margin_hover_color = 0xFF333333;
|
|
style->main.margin_active_color = 0xFF404040;
|
|
style->main.cursor_color = 0xFF40FF40;
|
|
style->main.at_cursor_color = style->main.back_color;
|
|
style->main.mark_color = 0xFF808080;
|
|
style->main.highlight_color = 0xFF703419;
|
|
style->main.at_highlight_color = 0xFFCDAA7D;
|
|
style->main.default_color = 0xFFCDAA7D;
|
|
style->main.comment_color = 0xFF7F7F7F;
|
|
style->main.keyword_color = 0xFFCD950C;
|
|
style->main.str_constant_color = 0xFF6B8E23;
|
|
style->main.char_constant_color = style->main.str_constant_color;
|
|
style->main.int_constant_color = style->main.str_constant_color;
|
|
style->main.float_constant_color = style->main.str_constant_color;
|
|
style->main.bool_constant_color = style->main.str_constant_color;
|
|
style->main.include_color = style->main.str_constant_color;
|
|
style->main.preproc_color = style->main.default_color;
|
|
style->main.special_character_color = 0xFFFF0000;
|
|
|
|
style->main.paste_color = 0xFFFFBB00;
|
|
style->main.undo_color = 0xFFFF00BB;
|
|
style->main.undo_color = 0xFF80005D;
|
|
|
|
style->main.highlight_junk_color = 0xFF3A0000;
|
|
style->main.highlight_white_color = 0xFF003A3A;
|
|
|
|
file_info_style.bar_color = 0xFFCACACA;
|
|
file_info_style.bar_active_color = 0xFFA8A8A8;
|
|
file_info_style.base_color = 0xFF000000;
|
|
file_info_style.pop1_color = 0xFF03CF0C;
|
|
file_info_style.pop2_color = 0xFFFF0000;
|
|
style->main.file_info_style = file_info_style;
|
|
style->font_changed = 1;
|
|
++style;
|
|
|
|
/////////////////
|
|
style_set_name(style, make_lit_string("Twilight"));
|
|
style->font_id = fonts + 2;
|
|
|
|
style->main.back_color = 0xFF090D12;
|
|
style->main.margin_color = 0xFF1A2634;
|
|
style->main.margin_hover_color = 0xFF2D415B;
|
|
style->main.margin_active_color = 0xFF405D82;
|
|
style->main.cursor_color = 0xFFEEE800;
|
|
style->main.at_cursor_color = style->main.back_color;
|
|
style->main.mark_color = 0xFF8BA8CC;
|
|
style->main.highlight_color = 0xFF037A7B;
|
|
style->main.at_highlight_color = 0xFFFEB56C;
|
|
style->main.default_color = 0xFFB7C19E;
|
|
style->main.comment_color = 0xFF20ECF0;
|
|
style->main.keyword_color = 0xFFD86909;
|
|
style->main.str_constant_color = 0xFFC4EA5D;
|
|
style->main.char_constant_color = style->main.str_constant_color;
|
|
style->main.int_constant_color = style->main.str_constant_color;
|
|
style->main.float_constant_color = style->main.str_constant_color;
|
|
style->main.bool_constant_color = style->main.str_constant_color;
|
|
style->main.include_color = style->main.str_constant_color;
|
|
style->main.preproc_color = style->main.default_color;
|
|
style->main.special_character_color = 0xFFFF0000;
|
|
|
|
style->main.paste_color = 0xFFDDEE00;
|
|
style->main.undo_color = 0xFF00DDEE;
|
|
|
|
style->main.highlight_junk_color = 0xff3a0000;
|
|
style->main.highlight_white_color = 0xFF151F2A;
|
|
|
|
file_info_style.bar_color = 0xFF315E68;
|
|
file_info_style.bar_active_color = 0xFF0F3C46;
|
|
file_info_style.base_color = 0xFF000000;
|
|
file_info_style.pop1_color = 0xFF1BFF0C;
|
|
file_info_style.pop2_color = 0xFFFF200D;
|
|
style->main.file_info_style = file_info_style;
|
|
style->font_changed = 1;
|
|
++style;
|
|
|
|
/////////////////
|
|
style_set_name(style, make_lit_string("Wolverine"));
|
|
style->font_id = fonts + 3;
|
|
|
|
style->main.back_color = 0xFF070711;
|
|
style->main.margin_color = 0xFF111168;
|
|
style->main.margin_hover_color = 0xFF191996;
|
|
style->main.margin_active_color = 0xFF2121C3;
|
|
style->main.cursor_color = 0xFF7082F9;
|
|
style->main.at_cursor_color = 0xFF000014;
|
|
style->main.mark_color = 0xFF4b5028;
|
|
style->main.highlight_color = 0xFFDDEE00;
|
|
style->main.at_highlight_color = 0xFF000019;
|
|
style->main.default_color = 0xFF8C9740;
|
|
style->main.comment_color = 0xFF3A8B29;
|
|
style->main.keyword_color = 0xFFD6B109;
|
|
style->main.str_constant_color = 0xFFAF5FA7;
|
|
style->main.char_constant_color = style->main.str_constant_color;
|
|
style->main.int_constant_color = style->main.str_constant_color;
|
|
style->main.float_constant_color = style->main.str_constant_color;
|
|
style->main.bool_constant_color = style->main.str_constant_color;
|
|
style->main.include_color = style->main.str_constant_color;
|
|
style->main.preproc_color = style->main.default_color;
|
|
style->main.special_character_color = 0xFFFF0000;
|
|
|
|
style->main.paste_color = 0xFF900090;
|
|
style->main.undo_color = 0xFF606090;
|
|
|
|
style->main.highlight_junk_color = 0xff3a0000;
|
|
style->main.highlight_white_color = 0xff003a3a;
|
|
|
|
file_info_style.bar_color = 0xFF7082F9;
|
|
file_info_style.bar_active_color = 0xFF4E60D7;
|
|
file_info_style.base_color = 0xFF000000;
|
|
file_info_style.pop1_color = 0xFFFAFA15;
|
|
file_info_style.pop2_color = 0xFFD20000;
|
|
style->main.file_info_style = file_info_style;
|
|
style->font_changed = 1;
|
|
++style;
|
|
|
|
/////////////////
|
|
style_set_name(style, make_lit_string("stb"));
|
|
style->font_id = fonts + 4;
|
|
|
|
style->main.back_color = 0xFFD6D6D6;
|
|
style->main.margin_color = 0xFF9E9E9E;
|
|
style->main.margin_hover_color = 0xFF7E7E7E;
|
|
style->main.margin_active_color = 0xFF5C5C5C;
|
|
style->main.cursor_color = 0xFF000000;
|
|
style->main.at_cursor_color = 0xFFD6D6D6;
|
|
style->main.mark_color = 0xFF525252;
|
|
style->main.highlight_color = 0xFF0044FF;
|
|
style->main.at_highlight_color = 0xFFD6D6D6;
|
|
style->main.default_color = 0xFF000000;
|
|
style->main.comment_color = 0xFF000000;
|
|
style->main.keyword_color = 0xFF000000;
|
|
style->main.str_constant_color = 0xFF000000;
|
|
style->main.char_constant_color = style->main.str_constant_color;
|
|
style->main.int_constant_color = style->main.str_constant_color;
|
|
style->main.float_constant_color = style->main.str_constant_color;
|
|
style->main.bool_constant_color = style->main.str_constant_color;
|
|
style->main.include_color = style->main.str_constant_color;
|
|
style->main.preproc_color = style->main.default_color;
|
|
style->main.special_character_color = 0xFF9A0000;
|
|
|
|
style->main.paste_color = 0xFF00B8B8;
|
|
style->main.undo_color = 0xFFB800B8;
|
|
|
|
style->main.highlight_junk_color = 0xFFFF7878;
|
|
style->main.highlight_white_color = 0xFFBCBCBC;
|
|
|
|
file_info_style.bar_color = 0xFF606060;
|
|
file_info_style.bar_active_color = 0xFF3E3E3E;
|
|
file_info_style.base_color = 0xFF000000;
|
|
file_info_style.pop1_color = 0xFF1111DC;
|
|
file_info_style.pop2_color = 0xFFE80505;
|
|
style->main.file_info_style = file_info_style;
|
|
style->font_changed = 1;
|
|
++style;
|
|
|
|
vars->styles.count = (i32)(style - styles);
|
|
vars->styles.max = ArrayCount(vars->styles.styles);
|
|
style_copy(&vars->style, vars->styles.styles);
|
|
vars->style.font_changed = 0;
|
|
}
|
|
|
|
char *_4coder_get_extension(const char *filename, int len, int *extension_len){
|
|
char *c = (char*)(filename + len - 1);
|
|
char *end = c;
|
|
while (*c != '.' && c > filename) --c;
|
|
*extension_len = (int)(end - c);
|
|
return c+1;
|
|
}
|
|
|
|
bool _4coder_str_match(const char *a, int len_a, const char *b, int len_b){
|
|
bool result = 0;
|
|
if (len_a == len_b){
|
|
char *end = (char*)(a + len_a);
|
|
while (a < end && *a == *b){
|
|
++a; ++b;
|
|
}
|
|
if (a == end) result = 1;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
enum Command_Line_Action{
|
|
CLAct_Nothing,
|
|
CLAct_Ignore,
|
|
CLAct_UserFile,
|
|
CLAct_CustomDLL,
|
|
CLAct_InitialFilePosition,
|
|
CLAct_WindowSize,
|
|
CLAct_WindowMaximize,
|
|
CLAct_WindowPosition,
|
|
CLAct_Count
|
|
};
|
|
|
|
void
|
|
init_command_line_settings(App_Settings *settings, Plat_Settings *plat_settings,
|
|
Command_Line_Parameters clparams){
|
|
char *arg;
|
|
Command_Line_Action action = CLAct_Nothing;
|
|
i32 i,index;
|
|
b32 strict = 0;
|
|
|
|
settings->init_files_max = ArrayCount(settings->init_files);
|
|
for (i = 1; i <= clparams.argc; ++i){
|
|
if (i == clparams.argc) arg = "";
|
|
else arg = clparams.argv[i];
|
|
switch (action){
|
|
case CLAct_Nothing:
|
|
{
|
|
if (arg[0] == '-'){
|
|
action = CLAct_Ignore;
|
|
switch (arg[1]){
|
|
case 'u': action = CLAct_UserFile; strict = 0; break;
|
|
case 'U': action = CLAct_UserFile; strict = 1; break;
|
|
|
|
case 'd': action = CLAct_CustomDLL; strict = 0; break;
|
|
case 'D': action = CLAct_CustomDLL; strict = 1; break;
|
|
|
|
case 'i': action = CLAct_InitialFilePosition; break;
|
|
|
|
case 'w': action = CLAct_WindowSize; break;
|
|
case 'W': action = CLAct_WindowMaximize; break;
|
|
case 'p': action = CLAct_WindowPosition; break;
|
|
}
|
|
}
|
|
else if (arg[0] != 0){
|
|
if (settings->init_files_count < settings->init_files_max){
|
|
index = settings->init_files_count++;
|
|
settings->init_files[index] = arg;
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case CLAct_UserFile:
|
|
{
|
|
settings->user_file_is_strict = strict;
|
|
if (i < clparams.argc){
|
|
settings->user_file = clparams.argv[i];
|
|
}
|
|
action = CLAct_Nothing;
|
|
}break;
|
|
|
|
case CLAct_CustomDLL:
|
|
{
|
|
plat_settings->custom_dll_is_strict = strict;
|
|
if (i < clparams.argc){
|
|
plat_settings->custom_dll = clparams.argv[i];
|
|
}
|
|
action = CLAct_Nothing;
|
|
}break;
|
|
|
|
case CLAct_InitialFilePosition:
|
|
{
|
|
if (i < clparams.argc){
|
|
settings->initial_line = str_to_int(clparams.argv[i]);
|
|
}
|
|
action = CLAct_Nothing;
|
|
}break;
|
|
|
|
case CLAct_WindowSize:
|
|
{
|
|
if (i + 1 < clparams.argc){
|
|
plat_settings->set_window_size = 1;
|
|
plat_settings->window_w = str_to_int(clparams.argv[i]);
|
|
plat_settings->window_h = str_to_int(clparams.argv[i+1]);
|
|
|
|
++i;
|
|
}
|
|
action = CLAct_Nothing;
|
|
}break;
|
|
|
|
case CLAct_WindowMaximize:
|
|
{
|
|
--i;
|
|
plat_settings->maximize_window = 1;
|
|
action = CLAct_Nothing;
|
|
}break;
|
|
|
|
case CLAct_WindowPosition:
|
|
{
|
|
if (i + 1 < clparams.argc){
|
|
plat_settings->set_window_pos = 1;
|
|
plat_settings->window_x = str_to_int(clparams.argv[i]);
|
|
plat_settings->window_y = str_to_int(clparams.argv[i+1]);
|
|
|
|
++i;
|
|
}
|
|
action = CLAct_Nothing;
|
|
}break;
|
|
}
|
|
}
|
|
}
|
|
|
|
internal App_Vars*
|
|
app_setup_memory(Application_Memory *memory){
|
|
Partition _partition = partition_open(memory->vars_memory, memory->vars_memory_size);
|
|
App_Vars *vars = push_struct(&_partition, App_Vars);
|
|
Assert(vars);
|
|
*vars = {};
|
|
vars->mem.part = _partition;
|
|
|
|
general_memory_open(&vars->mem.general, memory->target_memory, memory->target_memory_size);
|
|
|
|
return(vars);
|
|
}
|
|
|
|
internal i32
|
|
execute_special_tool(void *memory, i32 size, Command_Line_Parameters clparams){
|
|
i32 result;
|
|
char message[] = "tool was not specified or is invalid";
|
|
result = sizeof(message) - 1;
|
|
memcpy(memory, message, result);
|
|
if (clparams.argc > 2){
|
|
if (match(clparams.argv[2], "version")){
|
|
result = sizeof(VERSION) - 1;
|
|
memcpy(memory, VERSION, result);
|
|
}
|
|
}
|
|
return(result);
|
|
}
|
|
|
|
App_Read_Command_Line_Sig(app_read_command_line){
|
|
App_Vars *vars;
|
|
i32 out_size = 0;
|
|
|
|
if (clparams.argc > 1 && match(clparams.argv[1], "-T")){
|
|
out_size = execute_special_tool(memory->target_memory, memory->target_memory_size, clparams);
|
|
}
|
|
else{
|
|
vars = app_setup_memory(memory);
|
|
if (clparams.argc > 1){
|
|
init_command_line_settings(&vars->settings, plat_settings, clparams);
|
|
}
|
|
else{
|
|
vars->settings = {};
|
|
}
|
|
*files = vars->settings.init_files;
|
|
*file_count = &vars->settings.init_files_count;
|
|
}
|
|
|
|
return(out_size);
|
|
}
|
|
|
|
App_Init_Sig(app_init){
|
|
app_links_init(system, memory->user_memory, memory->user_memory_size);
|
|
|
|
App_Vars *vars = (App_Vars*)memory->vars_memory;
|
|
vars->config_api = api;
|
|
app_links.cmd_context = &vars->command_data;
|
|
|
|
Partition *partition = &vars->mem.part;
|
|
target->partition = partition;
|
|
|
|
i32 panel_max_count = vars->layout.panel_max_count = 16;
|
|
i32 divider_max_count = panel_max_count - 1;
|
|
vars->layout.panel_count = 1;
|
|
|
|
Panel *panels = vars->layout.panels =
|
|
push_array(partition, Panel, panel_max_count);
|
|
|
|
Panel_Divider *dividers = vars->layout.dividers =
|
|
push_array(partition, Panel_Divider, divider_max_count);
|
|
|
|
Panel_Divider *divider = dividers;
|
|
for (i32 i = 0; i < divider_max_count-1; ++i, ++divider){
|
|
divider->next_free = (divider + 1);
|
|
}
|
|
divider->next_free = 0;
|
|
vars->layout.free_divider = dividers;
|
|
|
|
vars->live_set.count = 0;
|
|
vars->live_set.max = 1 + 2*panel_max_count;
|
|
i32 view_sizes[] = {
|
|
sizeof(File_View),
|
|
sizeof(Color_View),
|
|
sizeof(Interactive_View),
|
|
sizeof(Menu_View),
|
|
#if FRED_INTERNAL
|
|
sizeof(Debug_View),
|
|
#endif
|
|
};
|
|
|
|
i32 view_chunk_size = 0;
|
|
for (i32 i = 0; i < ArrayCount(view_sizes); ++i){
|
|
view_chunk_size = Max(view_chunk_size, view_sizes[i]);
|
|
}
|
|
vars->live_set.stride = view_chunk_size;
|
|
vars->live_set.views = (File_View*)
|
|
push_block(partition, view_chunk_size*vars->live_set.max);
|
|
|
|
char *views_ = (char*)vars->live_set.views;
|
|
for (i32 i = panel_max_count-2; i >= 0; --i){
|
|
View *view = (View*)(views_ + i*view_chunk_size);
|
|
View *view_next = (View*)((char*)view + view_chunk_size);
|
|
view->next_free = view_next;
|
|
}
|
|
{
|
|
View *view = (View*)(views_ + (panel_max_count-1)*view_chunk_size);
|
|
view->next_free = 0;
|
|
}
|
|
vars->live_set.free_view = (View*)views_;
|
|
|
|
setup_command_table();
|
|
|
|
Command_Map *global = &vars->map_top;
|
|
Assert(vars->config_api.get_bindings != 0);
|
|
|
|
i32 size = partition_remaining(partition);
|
|
void *data = partition_current(partition);
|
|
|
|
// TODO(allen): Use a giant bubble of general memory for this.
|
|
// So that it doesn't interfere with the command maps as they allocate
|
|
// their own memory.
|
|
i32 wanted_size = vars->config_api.get_bindings(data, size);
|
|
|
|
b32 did_top = 0;
|
|
b32 did_file = 0;
|
|
if (wanted_size <= size){
|
|
partition_allocate(partition, wanted_size);
|
|
|
|
Binding_Unit *unit = (Binding_Unit*)data;
|
|
if (unit->type == unit_header && unit->header.error == 0){
|
|
Binding_Unit *end = unit + unit->header.total_size;
|
|
|
|
i32 user_map_count = unit->header.user_map_count;
|
|
|
|
vars->map_id_table = push_array(
|
|
&vars->mem.part, i32, user_map_count);
|
|
|
|
vars->user_maps = push_array(
|
|
&vars->mem.part, Command_Map, user_map_count);
|
|
|
|
vars->user_map_count = user_map_count;
|
|
|
|
Command_Map *mapptr = 0;
|
|
for (++unit; unit < end; ++unit){
|
|
switch (unit->type){
|
|
case unit_map_begin:
|
|
{
|
|
int table_max = unit->map_begin.bind_count * 3 / 2;
|
|
int mapid = unit->map_begin.mapid;
|
|
if (mapid == mapid_global){
|
|
mapptr = &vars->map_top;
|
|
map_init(mapptr, &vars->mem.part, table_max, global);
|
|
did_top = 1;
|
|
}
|
|
else if (mapid == mapid_file){
|
|
mapptr = &vars->map_file;
|
|
map_init(mapptr, &vars->mem.part, table_max, global);
|
|
did_file = 1;
|
|
}
|
|
else if (mapid < mapid_global){
|
|
i32 index = app_get_or_add_map_index(vars, mapid);
|
|
Assert(index < user_map_count);
|
|
mapptr = vars->user_maps + index;
|
|
map_init(mapptr, &vars->mem.part, table_max, global);
|
|
}
|
|
else mapptr = 0;
|
|
}break;
|
|
|
|
case unit_inherit:
|
|
if (mapptr){
|
|
Command_Map *parent = 0;
|
|
int mapid = unit->map_inherit.mapid;
|
|
if (mapid == mapid_global) parent = &vars->map_top;
|
|
else if (mapid == mapid_file) parent = &vars->map_file;
|
|
else if (mapid < mapid_global){
|
|
i32 index = app_get_or_add_map_index(vars, mapid);
|
|
if (index < user_map_count) parent = vars->user_maps + index;
|
|
else parent = 0;
|
|
}
|
|
mapptr->parent = parent;
|
|
}break;
|
|
|
|
case unit_binding:
|
|
if (mapptr){
|
|
Command_Function func = 0;
|
|
if (unit->binding.command_id >= 0 && unit->binding.command_id < cmdid_count)
|
|
func = command_table[unit->binding.command_id];
|
|
if (func){
|
|
if (unit->binding.code == 0 && unit->binding.modifiers == 0){
|
|
mapptr->vanilla_keyboard_default.function = func;
|
|
mapptr->vanilla_keyboard_default.custom_id = unit->binding.command_id;
|
|
}
|
|
else{
|
|
map_add(mapptr, unit->binding.code, unit->binding.modifiers, func, unit->binding.command_id);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case unit_callback:
|
|
if (mapptr){
|
|
Command_Function func = command_user_callback;
|
|
Custom_Command_Function *custom = unit->callback.func;
|
|
if (func){
|
|
if (unit->callback.code == 0 && unit->callback.modifiers == 0){
|
|
mapptr->vanilla_keyboard_default.function = func;
|
|
mapptr->vanilla_keyboard_default.custom = custom;
|
|
}
|
|
else{
|
|
map_add(mapptr, unit->callback.code, unit->callback.modifiers, func, custom);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case unit_hook:
|
|
{
|
|
int hook_id = unit->hook.hook_id;
|
|
if (hook_id >= 0 && hook_id < hook_type_count){
|
|
vars->hooks[hook_id] = unit->hook.func;
|
|
}
|
|
}break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!did_top) setup_top_commands(&vars->map_top, &vars->mem.part, global);
|
|
if (!did_file) setup_file_commands(&vars->map_file, &vars->mem.part, global);
|
|
|
|
#if !defined(FRED_SUPER)
|
|
vars->hooks[hook_start] = 0;
|
|
#endif
|
|
|
|
setup_ui_commands(&vars->map_ui, &vars->mem.part, global);
|
|
#if FRED_INTERNAL
|
|
setup_debug_commands(&vars->map_debug, &vars->mem.part, global);
|
|
#endif
|
|
|
|
vars->font_set = &target->font_set;
|
|
|
|
font_set_init(vars->font_set, partition, 16, 4);
|
|
|
|
{
|
|
struct Font_Setup{
|
|
char *c_file_name;
|
|
i32 file_name_len;
|
|
char *c_name;
|
|
i32 name_len;
|
|
i32 pt_size;
|
|
};
|
|
|
|
#define LitStr(n) n, sizeof(n)-1
|
|
|
|
Font_Setup font_setup[] = {
|
|
{LitStr("LiberationSans-Regular.ttf"),
|
|
LitStr("liberation sans"),
|
|
16},
|
|
|
|
{LitStr("liberation-mono.ttf"),
|
|
LitStr("liberation mono"),
|
|
16},
|
|
|
|
{LitStr("Hack-Regular.ttf"),
|
|
LitStr("hack"),
|
|
16},
|
|
|
|
{LitStr("CutiveMono-Regular.ttf"),
|
|
LitStr("cutive mono"),
|
|
16},
|
|
|
|
{LitStr("Inconsolata-Regular.ttf"),
|
|
LitStr("inconsolata"),
|
|
16},
|
|
|
|
};
|
|
i32 font_count = ArrayCount(font_setup);
|
|
|
|
for (i32 i = 0; i < font_count; ++i){
|
|
String file_name = make_string(font_setup[i].c_file_name,
|
|
font_setup[i].file_name_len);
|
|
String name = make_string(font_setup[i].c_name,
|
|
font_setup[i].name_len);
|
|
i32 pt_size = font_setup[i].pt_size;
|
|
|
|
font_set_add(partition, vars->font_set, file_name, name, pt_size);
|
|
}
|
|
}
|
|
|
|
// NOTE(allen): file setup
|
|
vars->working_set.file_index_count = 1;
|
|
vars->working_set.file_max_count = 120;
|
|
vars->working_set.files =
|
|
push_array(partition, Editing_File, vars->working_set.file_max_count);
|
|
|
|
file_get_dummy(&vars->working_set.files[0]);
|
|
|
|
vars->working_set.table.max = vars->working_set.file_max_count * 3 / 2;
|
|
vars->working_set.table.count = 0;
|
|
vars->working_set.table.table =
|
|
push_array(partition, File_Table_Entry, vars->working_set.table.max);
|
|
memset(vars->working_set.table.table, 0, sizeof(File_Table_Entry) * vars->working_set.table.max);
|
|
|
|
// NOTE(allen): clipboard setup
|
|
vars->working_set.clipboard_max_size = ArrayCount(vars->working_set.clipboards);
|
|
vars->working_set.clipboard_size = 0;
|
|
vars->working_set.clipboard_current = 0;
|
|
vars->working_set.clipboard_rolling = 0;
|
|
|
|
// TODO(allen): more robust allocation solution for the clipboard
|
|
if (clipboard.str){
|
|
String *dest = working_set_next_clipboard_string(&vars->mem.general, &vars->working_set, clipboard.size);
|
|
copy(dest, make_string((char*)clipboard.str, clipboard.size));
|
|
}
|
|
|
|
// NOTE(allen): delay setup
|
|
vars->delay1.general = &vars->mem.general;
|
|
vars->delay1.max = 16;
|
|
vars->delay1.acts = (Delayed_Action*)general_memory_allocate(
|
|
&vars->mem.general, vars->delay1.max*sizeof(Delayed_Action), 0);
|
|
|
|
vars->delay2.general = &vars->mem.general;
|
|
vars->delay2.max = 16;
|
|
vars->delay2.acts = (Delayed_Action*)general_memory_allocate(
|
|
&vars->mem.general, vars->delay2.max*sizeof(Delayed_Action), 0);
|
|
|
|
// NOTE(allen): style setup
|
|
app_hardcode_styles(vars);
|
|
|
|
vars->palette_size = 40;
|
|
vars->palette = push_array(partition, u32, vars->palette_size);
|
|
|
|
panel_init(&panels[0]);
|
|
|
|
String hdbase = make_fixed_width_string(vars->hot_dir_base_);
|
|
hot_directory_init(&vars->hot_directory, hdbase, current_directory, system->slash);
|
|
|
|
vars->mini_str = make_string((char*)vars->mini_buffer, 0, 512);
|
|
|
|
// NOTE(allen): child proc list setup
|
|
i32 max_children = 16;
|
|
partition_align(partition, 8);
|
|
vars->cli_processes.procs = push_array(partition, CLI_Process, max_children);
|
|
vars->cli_processes.max = max_children;
|
|
vars->cli_processes.count = 0;
|
|
|
|
// NOTE(allen): sys app binding setup
|
|
vars->sys_app_max = exchange->file.max;
|
|
vars->sys_app_count = 0;
|
|
vars->sys_app_bindings = (Sys_App_Binding*)push_array(partition, Sys_App_Binding, vars->sys_app_max);
|
|
}
|
|
|
|
App_Step_Sig(app_step){
|
|
ProfileStart(OS_syncing);
|
|
Application_Step_Result app_result = *result;
|
|
app_result.redraw = force_redraw;
|
|
|
|
App_Vars *vars = (App_Vars*)memory->vars_memory;
|
|
target->partition = &vars->mem.part;
|
|
|
|
if (first_step || !time_step){
|
|
app_result.redraw = 1;
|
|
}
|
|
|
|
Panel *panels = vars->layout.panels;
|
|
Panel *active_panel = &panels[vars->layout.active_panel];
|
|
|
|
// NOTE(allen): OS clipboard event handling
|
|
if (clipboard.str){
|
|
String *dest = working_set_next_clipboard_string(&vars->mem.general, &vars->working_set, clipboard.size);
|
|
dest->size = eol_convert_in(dest->str, clipboard.str, clipboard.size);
|
|
}
|
|
|
|
// TODO(allen): profile this make sure it's not costing me too much power.
|
|
// NOTE(allen): check files are up to date
|
|
for (i32 i = 0; i < vars->working_set.file_index_count; ++i){
|
|
Editing_File *file = vars->working_set.files + i;
|
|
|
|
if (!file->state.is_dummy){
|
|
u64 time_stamp = system->file_time_stamp(make_c_str(file->name.source_path));
|
|
|
|
if (time_stamp > 0){
|
|
file->state.last_sys_write_time = time_stamp;
|
|
if (file->state.last_sys_write_time != file->state.last_4ed_write_time){
|
|
app_result.redraw = 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// NOTE(allen): update child processes
|
|
if (time_step){
|
|
Temp_Memory temp = begin_temp_memory(&vars->mem.part);
|
|
u32 max = Kbytes(32);
|
|
char *dest = push_array(&vars->mem.part, char, max);
|
|
u32 amount;
|
|
|
|
i32 count = vars->cli_processes.count;
|
|
for (i32 i = 0; i < count; ++i){
|
|
CLI_Process *proc = vars->cli_processes.procs + i;
|
|
Editing_File *out_file = proc->out_file;
|
|
|
|
if (out_file != 0){
|
|
i32 new_cursor = out_file->state.cursor_pos;
|
|
|
|
for (system->cli_begin_update(&proc->cli);
|
|
system->cli_update_step(&proc->cli, dest, max, &amount);){
|
|
amount = eol_in_place_convert_in(dest, amount);
|
|
Edit_Spec spec = {};
|
|
spec.step.type = ED_NORMAL;
|
|
spec.step.edit.start = buffer_size(&out_file->state.buffer);
|
|
spec.step.edit.end = spec.step.edit.start;
|
|
spec.step.edit.len = amount;
|
|
spec.step.pre_pos = new_cursor;
|
|
spec.step.post_pos = spec.step.edit.start + amount;
|
|
spec.str = (u8*)dest;
|
|
file_do_single_edit(system, &vars->mem, out_file,
|
|
&vars->layout, spec, hist_normal);
|
|
app_result.redraw = 1;
|
|
new_cursor = spec.step.post_pos;
|
|
}
|
|
|
|
if (system->cli_end_update(&proc->cli)){
|
|
*proc = vars->cli_processes.procs[--count];
|
|
--i;
|
|
|
|
char str_space[256];
|
|
String str = make_fixed_width_string(str_space);
|
|
append(&str, "exited with code ");
|
|
append_int_to_str(proc->cli.exit, &str);
|
|
|
|
Edit_Spec spec = {};
|
|
spec.step.type = ED_NORMAL;
|
|
spec.step.edit.start = buffer_size(&out_file->state.buffer);
|
|
spec.step.edit.end = spec.step.edit.start;
|
|
spec.step.edit.len = str.size;
|
|
spec.step.pre_pos = new_cursor;
|
|
spec.step.post_pos = spec.step.edit.start + str.size;
|
|
spec.str = (u8*)str.str;
|
|
file_do_single_edit(system, &vars->mem, out_file,
|
|
&vars->layout, spec, hist_normal);
|
|
app_result.redraw = 1;
|
|
new_cursor = spec.step.post_pos;
|
|
}
|
|
|
|
Panel *panel = vars->layout.panels;
|
|
i32 panel_count = vars->layout.panel_count;
|
|
for (i32 i = 0; i < panel_count; ++i, ++panel){
|
|
View *view = panel->view;
|
|
if (view && view->is_minor) view = view->major;
|
|
File_View *fview = view_to_file_view(view);
|
|
if (fview && fview->file == out_file){
|
|
view_cursor_move(fview, new_cursor);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
vars->cli_processes.count = count;
|
|
end_temp_memory(temp);
|
|
}
|
|
|
|
// NOTE(allen): reorganizing panels on screen
|
|
i32 prev_width = vars->layout.full_width;
|
|
i32 prev_height = vars->layout.full_height;
|
|
i32 prev_y_off = 0;
|
|
i32 prev_x_off = 0;
|
|
|
|
i32 y_off = 0;
|
|
i32 x_off = 0;
|
|
i32 full_width = vars->layout.full_width = target->width;
|
|
i32 full_height = vars->layout.full_height = target->height;
|
|
|
|
if (prev_width != full_width || prev_height != full_height ||
|
|
prev_x_off != x_off || prev_y_off != y_off){
|
|
layout_refit(&vars->layout, prev_x_off, prev_y_off, prev_width, prev_height);
|
|
int view_count = vars->layout.panel_max_count;
|
|
for (i32 view_i = 0; view_i < view_count; ++view_i){
|
|
View *view_ = live_set_get_view(&vars->live_set, view_i);
|
|
if (!view_->is_active) continue;
|
|
File_View *view = view_to_file_view(view_);
|
|
if (!view) continue;
|
|
view_measure_wraps(system, &vars->mem.general, view);
|
|
view->cursor = view_compute_cursor_from_pos(view, view->cursor.pos);
|
|
}
|
|
app_result.redraw = 1;
|
|
}
|
|
|
|
// NOTE(allen): prepare input information
|
|
Key_Summary key_data = {};
|
|
for (i32 i = 0; i < input->press_count; ++i){
|
|
key_data.keys[key_data.count++] = input->press[i];
|
|
}
|
|
for (i32 i = 0; i < input->hold_count; ++i){
|
|
key_data.keys[key_data.count++] = input->hold[i];
|
|
}
|
|
|
|
mouse->wheel = -mouse->wheel;
|
|
|
|
ProfileEnd(OS_syncing);
|
|
|
|
ProfileStart(hover_status);
|
|
// NOTE(allen): detect mouse hover status
|
|
i32 mx = mouse->x;
|
|
i32 my = mouse->y;
|
|
b32 mouse_in_edit_area = 0;
|
|
b32 mouse_in_margin_area = 0;
|
|
Panel *mouse_panel = 0;
|
|
i32 mouse_panel_i = 0;
|
|
i32 panel_count = vars->layout.panel_count;
|
|
|
|
mouse_panel = panels;
|
|
for (mouse_panel_i = 0; mouse_panel_i < panel_count; ++mouse_panel_i, ++mouse_panel){
|
|
if (hit_check(mx, my, mouse_panel->inner)){
|
|
mouse_in_edit_area = 1;
|
|
break;
|
|
}
|
|
else if (hit_check(mx, my, mouse_panel->full)){
|
|
mouse_in_margin_area = 1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!(mouse_in_edit_area || mouse_in_margin_area)){
|
|
mouse_panel = 0;
|
|
mouse_panel_i = 0;
|
|
}
|
|
|
|
b32 mouse_on_divider = 0;
|
|
b32 mouse_divider_vertical = 0;
|
|
i32 mouse_divider_id = 0;
|
|
i32 mouse_divider_side = 0;
|
|
|
|
if (mouse_in_margin_area){
|
|
Panel *panel = mouse_panel;
|
|
if (mx >= panel->inner.x0 && mx < panel->inner.x1){
|
|
mouse_divider_vertical = 0;
|
|
if (my > panel->inner.y0){
|
|
mouse_divider_side = -1;
|
|
}
|
|
else{
|
|
mouse_divider_side = 1;
|
|
}
|
|
}
|
|
else{
|
|
mouse_divider_vertical = 1;
|
|
if (mx > panel->inner.x0){
|
|
mouse_divider_side = -1;
|
|
}
|
|
else{
|
|
mouse_divider_side = 1;
|
|
}
|
|
}
|
|
|
|
if (vars->layout.panel_count > 1){
|
|
i32 which_child;
|
|
mouse_divider_id = panel->parent;
|
|
which_child = panel->which_child;
|
|
for (;;){
|
|
Divider_And_ID div = layout_get_divider(&vars->layout, mouse_divider_id);
|
|
|
|
if (which_child == mouse_divider_side &&
|
|
div.divider->v_divider == mouse_divider_vertical){
|
|
mouse_on_divider = 1;
|
|
break;
|
|
}
|
|
|
|
if (mouse_divider_id == vars->layout.root){
|
|
break;
|
|
}
|
|
else{
|
|
mouse_divider_id = div.divider->parent;
|
|
which_child = div.divider->which_child;
|
|
}
|
|
}
|
|
}
|
|
else{
|
|
mouse_on_divider = 0;
|
|
mouse_divider_id = 0;
|
|
}
|
|
}
|
|
ProfileEnd(hover_status);
|
|
|
|
// NOTE(allen): prepare to start executing commands
|
|
ProfileStart(command_coroutine);
|
|
Command_Data *cmd = &vars->command_data;
|
|
|
|
cmd->mem = &vars->mem;
|
|
cmd->panel = active_panel;
|
|
cmd->view = active_panel->view;
|
|
cmd->working_set = &vars->working_set;
|
|
cmd->layout = &vars->layout;
|
|
cmd->live_set = &vars->live_set;
|
|
cmd->style = &vars->style;
|
|
cmd->delay = &vars->delay1;
|
|
cmd->vars = vars;
|
|
cmd->exchange = exchange;
|
|
cmd->screen_width = target->width;
|
|
cmd->screen_height = target->height;
|
|
cmd->system = system;
|
|
|
|
Temp_Memory param_stack_temp = begin_temp_memory(&vars->mem.part);
|
|
cmd->part = partition_sub_part(&vars->mem.part, 16 << 10);
|
|
|
|
if (first_step){
|
|
if (vars->hooks[hook_start]){
|
|
vars->hooks[hook_start](&app_links);
|
|
cmd->part.pos = 0;
|
|
}
|
|
|
|
i32 i;
|
|
String file_name;
|
|
Panel *panel = vars->layout.panels;
|
|
for (i = 0; i < vars->settings.init_files_count; ++i, ++panel){
|
|
file_name = make_string_slowly(vars->settings.init_files[i]);
|
|
|
|
if (i < vars->layout.panel_count){
|
|
delayed_open(&vars->delay1, file_name, panel);
|
|
if (i == 0){
|
|
delayed_set_line(&vars->delay1, panel, vars->settings.initial_line);
|
|
}
|
|
}
|
|
else{
|
|
delayed_open_background(&vars->delay1, file_name);
|
|
}
|
|
}
|
|
}
|
|
ProfileEnd(hover_status);
|
|
|
|
// NOTE(allen): process the command_coroutine if it is unfinished
|
|
ProfileStart(command_coroutine);
|
|
b8 consumed_input[6] = {0};
|
|
|
|
if (vars->command_coroutine != 0){
|
|
Coroutine *command_coroutine = vars->command_coroutine;
|
|
u32 get_flags = vars->command_coroutine_flags[0];
|
|
u32 abort_flags = vars->command_coroutine_flags[1];
|
|
|
|
get_flags |= abort_flags;
|
|
|
|
if ((get_flags & EventOnAnyKey) || (get_flags & EventOnEsc)){
|
|
for (i32 key_i = 0; key_i < key_data.count; ++key_i){
|
|
Key_Event_Data key = get_single_key(&key_data, key_i);
|
|
View *view = active_panel->view;
|
|
b32 pass_in = 0;
|
|
cmd->key = key;
|
|
|
|
Command_Map *map = 0;
|
|
if (view) map = view->map;
|
|
if (map == 0) map = &vars->map_top;
|
|
Command_Binding cmd_bind = map_extract_recursive(map, key);
|
|
|
|
User_Input user_in;
|
|
user_in.type = UserInputKey;
|
|
user_in.key = key;
|
|
user_in.command = (unsigned long long)cmd_bind.custom;
|
|
user_in.abort = 0;
|
|
|
|
if ((EventOnEsc & abort_flags) && key.keycode == key_esc){
|
|
user_in.abort = 1;
|
|
}
|
|
else if (EventOnAnyKey & abort_flags){
|
|
user_in.abort = 1;
|
|
}
|
|
|
|
if (EventOnAnyKey & get_flags){
|
|
pass_in = 1;
|
|
consumed_input[0] = 1;
|
|
}
|
|
if (key.keycode == key_esc){
|
|
if (EventOnEsc & get_flags){
|
|
pass_in = 1;
|
|
}
|
|
consumed_input[1] = 1;
|
|
}
|
|
|
|
if (pass_in){
|
|
cmd->current_coroutine = vars->command_coroutine;
|
|
vars->command_coroutine = system->resume_coroutine(command_coroutine,
|
|
&user_in, vars->command_coroutine_flags);
|
|
app_result.redraw = 1;
|
|
|
|
// TOOD(allen): Deduplicate
|
|
// TODO(allen): Allow a view to clean up however it wants after a command
|
|
// finishes, or after transfering to another view mid command.
|
|
File_View *fview = view_to_file_view(view);
|
|
if (fview != 0 && vars->command_coroutine == 0){
|
|
init_query_set(&fview->query_set);
|
|
}
|
|
if (vars->command_coroutine == 0) break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (vars->command_coroutine != 0 && (get_flags & EventOnMouse)){
|
|
View *view = active_panel->view;
|
|
b32 pass_in = 0;
|
|
|
|
User_Input user_in;
|
|
user_in.type = UserInputMouse;
|
|
user_in.mouse = *mouse;
|
|
user_in.command = 0;
|
|
user_in.abort = 0;
|
|
|
|
if (abort_flags & EventOnMouseMove){
|
|
user_in.abort = 1;
|
|
}
|
|
if (get_flags & EventOnMouseMove){
|
|
pass_in = 1;
|
|
consumed_input[2] = 1;
|
|
}
|
|
|
|
if (mouse->press_l || mouse->release_l || mouse->l){
|
|
if (abort_flags & EventOnLeftButton){
|
|
user_in.abort = 1;
|
|
}
|
|
if (get_flags & EventOnLeftButton){
|
|
pass_in = 1;
|
|
consumed_input[3] = 1;
|
|
}
|
|
}
|
|
|
|
if (mouse->press_r || mouse->release_r || mouse->r){
|
|
if (abort_flags & EventOnRightButton){
|
|
user_in.abort = 1;
|
|
}
|
|
if (get_flags & EventOnRightButton){
|
|
pass_in = 1;
|
|
consumed_input[4] = 1;
|
|
}
|
|
}
|
|
|
|
if (mouse->wheel != 0){
|
|
if (abort_flags & EventOnWheel){
|
|
user_in.abort = 1;
|
|
}
|
|
if (get_flags & EventOnWheel){
|
|
pass_in = 1;
|
|
consumed_input[5] = 1;
|
|
}
|
|
}
|
|
|
|
if (pass_in){
|
|
cmd->current_coroutine = vars->command_coroutine;
|
|
vars->command_coroutine = system->resume_coroutine(command_coroutine, &user_in,
|
|
vars->command_coroutine_flags);
|
|
app_result.redraw = 1;
|
|
|
|
// TOOD(allen): Deduplicate
|
|
// TODO(allen): Allow a view to clean up however it wants after a command finishes,
|
|
// or after transfering to another view mid command.
|
|
File_View *fview = view_to_file_view(view);
|
|
if (fview != 0 && vars->command_coroutine == 0){
|
|
init_query_set(&fview->query_set);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
ProfileEnd(command_coroutine);
|
|
|
|
// NOTE(allen): pass raw input to the panels
|
|
ProfileStart(step);
|
|
View *active_view = active_panel->view;
|
|
|
|
Input_Summary dead_input = {};
|
|
dead_input.mouse.x = mouse->x;
|
|
dead_input.mouse.y = mouse->y;
|
|
|
|
Input_Summary active_input = {};
|
|
active_input.mouse.x = mouse->x;
|
|
active_input.mouse.y = mouse->y;
|
|
if (!consumed_input[0]){
|
|
active_input.keys = key_data;
|
|
}
|
|
else if (!consumed_input[1]){
|
|
for (i32 i = 0; i < key_data.count; ++i){
|
|
Key_Event_Data key = get_single_key(&key_data, i);
|
|
if (key.keycode == key_esc){
|
|
active_input.keys.count = 1;
|
|
active_input.keys.keys[0] = key;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
Mouse_State mouse_state = *mouse;
|
|
|
|
if (consumed_input[3]){
|
|
mouse_state.l = 0;
|
|
mouse_state.press_l = 0;
|
|
mouse_state.release_l = 0;
|
|
}
|
|
|
|
if (consumed_input[4]){
|
|
mouse_state.r = 0;
|
|
mouse_state.press_r = 0;
|
|
mouse_state.release_r = 0;
|
|
}
|
|
|
|
if (consumed_input[5]){
|
|
mouse_state.wheel = 0;
|
|
}
|
|
|
|
{
|
|
Panel *panel = panels;
|
|
for (i32 panel_i = vars->layout.panel_count; panel_i > 0; --panel_i, ++panel){
|
|
View *view_ = panel->view;
|
|
if (view_){
|
|
Assert(view_->do_view);
|
|
b32 active = (panel == active_panel);
|
|
Input_Summary input = (active)?(active_input):(dead_input);
|
|
if (panel == mouse_panel && !mouse->out_of_window){
|
|
input.mouse = mouse_state;
|
|
}
|
|
if (view_->do_view(system, exchange, view_, panel->inner, active_view,
|
|
VMSG_STEP, 0, &input, &active_input)){
|
|
app_result.redraw = 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
ProfileEnd(step);
|
|
|
|
// NOTE(allen): command execution
|
|
ProfileStart(command);
|
|
|
|
cmd->panel = active_panel;
|
|
cmd->view = active_panel->view;
|
|
|
|
if (!consumed_input[0] || !consumed_input[1]){
|
|
b32 consumed_input2[2] = {0};
|
|
|
|
for (i32 key_i = 0; key_i < key_data.count; ++key_i){
|
|
switch (vars->state){
|
|
case APP_STATE_EDIT:
|
|
{
|
|
Key_Event_Data key = get_single_key(&key_data, key_i);
|
|
b32 hit_esc = (key.keycode == key_esc);
|
|
cmd->key = key;
|
|
|
|
if (hit_esc || !consumed_input[0]){
|
|
View *view = active_panel->view;
|
|
|
|
Command_Map *map = 0;
|
|
if (view) map = view->map;
|
|
if (map == 0) map = &vars->map_top;
|
|
Command_Binding cmd_bind = map_extract_recursive(map, key);
|
|
|
|
if (cmd_bind.function){
|
|
if (hit_esc){
|
|
consumed_input2[1] = 1;
|
|
}
|
|
else{
|
|
consumed_input2[0] = 1;
|
|
}
|
|
|
|
Coroutine *command_coroutine = system->create_coroutine(command_caller);
|
|
vars->command_coroutine = command_coroutine;
|
|
|
|
Command_In cmd_in;
|
|
cmd_in.cmd = cmd;
|
|
cmd_in.bind = cmd_bind;
|
|
|
|
cmd->current_coroutine = vars->command_coroutine;
|
|
vars->command_coroutine = system->launch_coroutine(vars->command_coroutine,
|
|
&cmd_in, vars->command_coroutine_flags);
|
|
vars->prev_command = cmd_bind;
|
|
app_result.redraw = 1;
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case APP_STATE_RESIZING:
|
|
{
|
|
if (key_data.count > 0){
|
|
vars->state = APP_STATE_EDIT;
|
|
}
|
|
}break;
|
|
}
|
|
}
|
|
|
|
consumed_input[0] |= consumed_input2[0];
|
|
consumed_input[1] |= consumed_input2[1];
|
|
}
|
|
|
|
active_panel = panels + vars->layout.active_panel;
|
|
ProfileEnd(command);
|
|
|
|
ProfileStart(resizing);
|
|
// NOTE(allen): panel resizing
|
|
switch (vars->state){
|
|
case APP_STATE_EDIT:
|
|
{
|
|
if (mouse->press_l && mouse_on_divider){
|
|
vars->state = APP_STATE_RESIZING;
|
|
Divider_And_ID div = layout_get_divider(&vars->layout, mouse_divider_id);
|
|
vars->resizing.divider = div.divider;
|
|
|
|
i32 min, max;
|
|
{
|
|
i32 mid, MIN, MAX;
|
|
mid = div.divider->pos;
|
|
if (mouse_divider_vertical){
|
|
MIN = 0;
|
|
MAX = MIN + vars->layout.full_width;
|
|
}
|
|
else{
|
|
MIN = 0;
|
|
MAX = MIN + vars->layout.full_height;
|
|
}
|
|
min = MIN;
|
|
max = MAX;
|
|
|
|
i32 divider_id = div.id;
|
|
do{
|
|
Divider_And_ID other_div = layout_get_divider(&vars->layout, divider_id);
|
|
b32 divider_match = (other_div.divider->v_divider == mouse_divider_vertical);
|
|
i32 pos = other_div.divider->pos;
|
|
if (divider_match && pos > mid && pos < max){
|
|
max = pos;
|
|
}
|
|
else if (divider_match && pos < mid && pos > min){
|
|
min = pos;
|
|
}
|
|
divider_id = other_div.divider->parent;
|
|
}while(divider_id != -1);
|
|
|
|
Temp_Memory temp = begin_temp_memory(&vars->mem.part);
|
|
i32 *divider_stack = push_array(&vars->mem.part, i32, vars->layout.panel_count);
|
|
i32 top = 0;
|
|
divider_stack[top++] = div.id;
|
|
|
|
while (top > 0){
|
|
Divider_And_ID other_div = layout_get_divider(&vars->layout, divider_stack[--top]);
|
|
b32 divider_match = (other_div.divider->v_divider == mouse_divider_vertical);
|
|
i32 pos = other_div.divider->pos;
|
|
if (divider_match && pos > mid && pos < max){
|
|
max = pos;
|
|
}
|
|
else if (divider_match && pos < mid && pos > min){
|
|
min = pos;
|
|
}
|
|
if (other_div.divider->child1 != -1){
|
|
divider_stack[top++] = other_div.divider->child1;
|
|
}
|
|
if (other_div.divider->child2 != -1){
|
|
divider_stack[top++] = other_div.divider->child2;
|
|
}
|
|
}
|
|
|
|
end_temp_memory(temp);
|
|
}
|
|
|
|
vars->resizing.min = min;
|
|
vars->resizing.max = max;
|
|
}
|
|
}break;
|
|
|
|
case APP_STATE_RESIZING:
|
|
{
|
|
app_result.redraw = 1;
|
|
if (mouse->l){
|
|
Panel_Divider *divider = vars->resizing.divider;
|
|
if (divider->v_divider){
|
|
divider->pos = mx;
|
|
}
|
|
else{
|
|
divider->pos = my;
|
|
}
|
|
|
|
if (divider->pos < vars->resizing.min){
|
|
divider->pos = vars->resizing.min;
|
|
}
|
|
else if (divider->pos > vars->resizing.max){
|
|
divider->pos = vars->resizing.max - 1;
|
|
}
|
|
|
|
layout_fix_all_panels(&vars->layout);
|
|
}
|
|
else{
|
|
vars->state = APP_STATE_EDIT;
|
|
}
|
|
}break;
|
|
}
|
|
|
|
if (mouse_in_edit_area && mouse_panel != 0 && mouse->press_l){
|
|
active_panel = mouse_panel;
|
|
vars->layout.active_panel = mouse_panel_i;
|
|
app_result.redraw = 1;
|
|
}
|
|
ProfileEnd(resizing);
|
|
|
|
// NOTE(allen): processing sys app bindings
|
|
ProfileStart(sys_app_bind_processing);
|
|
for (i32 i = 0; i < vars->sys_app_count; ++i){
|
|
Sys_App_Binding *binding;
|
|
b32 remove = 0;
|
|
b32 failed = 0;
|
|
binding = vars->sys_app_bindings + i;
|
|
|
|
byte *data;
|
|
i32 size, max;
|
|
Editing_File *ed_file;
|
|
Editing_File_Preload preload_settings;
|
|
char *filename;
|
|
|
|
Working_Set *working_set = &vars->working_set;
|
|
|
|
if (exchange_file_ready(exchange, binding->sys_id, &data, &size, &max)){
|
|
ed_file = working_set->files + binding->app_id;
|
|
filename = exchange_file_filename(exchange, binding->sys_id);
|
|
preload_settings = ed_file->preload;
|
|
if (data){
|
|
String val = make_string((char*)data, size);
|
|
file_create_from_string(system, &vars->mem, working_set, ed_file, filename,
|
|
vars->font_set, vars->style.font_id, val);
|
|
|
|
if (ed_file->settings.tokens_exist){
|
|
file_first_lex_parallel(system, &vars->mem.general, ed_file);
|
|
}
|
|
|
|
if ((binding->success & SysAppCreateView) && binding->panel != 0){
|
|
view_file_in_panel(cmd, binding->panel, ed_file);
|
|
}
|
|
|
|
app_result.redraw = 1;
|
|
}
|
|
else{
|
|
if (binding->fail & SysAppCreateNewBuffer){
|
|
file_create_empty(system, &vars->mem, working_set, ed_file, filename,
|
|
vars->font_set, vars->style.font_id);
|
|
if (binding->fail & SysAppCreateView){
|
|
view_file_in_panel(cmd, binding->panel, ed_file);
|
|
}
|
|
}
|
|
else{
|
|
table_remove(&vars->working_set.table, ed_file->name.source_path);
|
|
file_get_dummy(ed_file);
|
|
}
|
|
|
|
app_result.redraw = 1;
|
|
}
|
|
|
|
if (!ed_file->state.is_dummy){
|
|
for (File_View_Iter iter = file_view_iter_init(&vars->layout, ed_file, 0);
|
|
file_view_iter_good(iter);
|
|
iter = file_view_iter_next(iter)){
|
|
view_file_loaded_init(system, iter.view, 0);
|
|
view_cursor_move(iter.view, preload_settings.start_line, 0);
|
|
}
|
|
}
|
|
|
|
exchange_free_file(exchange, binding->sys_id);
|
|
remove = 1;
|
|
}
|
|
|
|
if (exchange_file_save_complete(exchange, binding->sys_id, &data, &size, &max, &failed)){
|
|
Assert(remove == 0);
|
|
|
|
if (data){
|
|
general_memory_free(&vars->mem.general, data);
|
|
exchange_clear_file(exchange, binding->sys_id);
|
|
}
|
|
|
|
Editing_File *file = get_file(working_set, binding->app_id);
|
|
if (file){
|
|
file_synchronize_times(system, file, file->name.source_path.str);
|
|
}
|
|
|
|
exchange_free_file(exchange, binding->sys_id);
|
|
remove = 1;
|
|
|
|
// if (failed) { TODO(allen): saving error, now what? }
|
|
}
|
|
|
|
if (remove){
|
|
*binding = vars->sys_app_bindings[--vars->sys_app_count];
|
|
--i;
|
|
}
|
|
}
|
|
ProfileEnd(sys_app_bind_processing);
|
|
|
|
// NOTE(allen): process as many delayed actions as possible
|
|
ProfileStart(delayed_actions);
|
|
if (vars->delay1.count > 0){
|
|
Style *style = &vars->style;
|
|
Working_Set *working_set = &vars->working_set;
|
|
Live_Views *live_set = &vars->live_set;
|
|
Mem_Options *mem = &vars->mem;
|
|
General_Memory *general = &vars->mem.general;
|
|
|
|
i32 count = vars->delay1.count;
|
|
vars->delay1.count = 0;
|
|
vars->delay2.count = 0;
|
|
|
|
Delayed_Action *act = vars->delay1.acts;
|
|
for (i32 i = 0; i < count; ++i, ++act){
|
|
String string = act->string;
|
|
Panel *panel = act->panel;
|
|
Editing_File *file = act->file;
|
|
i32 integer = act->integer;
|
|
|
|
// TODO(allen): Paramter checking in each DACT case.
|
|
switch (act->type){
|
|
case DACT_OPEN:
|
|
{
|
|
App_Open_File_Result result;
|
|
|
|
result = app_open_file_background(vars, exchange, working_set, string);
|
|
|
|
if (result.is_new){
|
|
if (result.file){
|
|
if (result.sys_id){
|
|
Sys_App_Binding *binding = app_push_file_binding(vars, result.sys_id, result.file_index);
|
|
binding->success = SysAppCreateView;
|
|
binding->fail = 0;
|
|
binding->panel = panel;
|
|
}
|
|
else{
|
|
delayed_action_repush(&vars->delay2, act);
|
|
}
|
|
}
|
|
}
|
|
else{
|
|
if (result.file->state.is_dummy || result.file->state.is_loading){
|
|
// do nothing
|
|
}
|
|
else{
|
|
view_file_in_panel(cmd, panel, result.file);
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case DACT_OPEN_BACKGROUND:
|
|
{
|
|
App_Open_File_Result result;
|
|
result = app_open_file_background(vars, exchange, working_set, string);
|
|
if (result.is_new && result.file == 0){
|
|
delayed_action_repush(&vars->delay2, act);
|
|
}
|
|
else{
|
|
Sys_App_Binding *binding = app_push_file_binding(vars, result.sys_id, result.file_index);
|
|
binding->success = 0;
|
|
binding->fail = 0;
|
|
binding->panel = panel;
|
|
}
|
|
}break;
|
|
|
|
case DACT_SET_LINE:
|
|
{
|
|
// TODO(allen): deduplicate
|
|
View *view = panel->view;
|
|
File_View *fview = view_to_file_view(view);
|
|
if (!file){
|
|
if (!fview && view->is_minor) fview = view_to_file_view(view->major);
|
|
if (fview){
|
|
file = working_set_lookup_file(working_set, string);
|
|
}
|
|
}
|
|
if (file && !file->state.is_dummy){
|
|
if (file->state.is_loading){
|
|
file->preload.start_line = integer;
|
|
}
|
|
else{
|
|
view_cursor_move(fview, integer, 0);
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case DACT_SAVE_AS:
|
|
{
|
|
// TODO(allen): deduplicate
|
|
View *view = panel->view;
|
|
File_View *fview = view_to_file_view(view);
|
|
if (!file){
|
|
if (!fview && view->is_minor) fview = view_to_file_view(view->major);
|
|
if (fview){
|
|
file = working_set_lookup_file(working_set, string);
|
|
}
|
|
}
|
|
if (file && !file->state.is_dummy){
|
|
i32 sys_id = file_save_and_set_names(system, exchange, mem, working_set, file, string.str);
|
|
if (sys_id){
|
|
app_push_file_binding(vars, sys_id, get_file_id(working_set, file));
|
|
}
|
|
else{
|
|
delayed_action_repush(&vars->delay2, act);
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case DACT_SAVE:
|
|
{
|
|
if (!file){
|
|
if (panel){
|
|
View *view = panel->view;
|
|
File_View *fview = view_to_file_view(view);
|
|
if (fview){
|
|
file = fview->file;
|
|
}
|
|
}
|
|
else{
|
|
file = working_set_lookup_file(working_set, string);
|
|
}
|
|
}
|
|
if (!file->state.is_dummy && buffer_needs_save(file)){
|
|
i32 sys_id = file_save(system, exchange, mem, file, file->name.source_path.str);
|
|
if (sys_id){
|
|
app_push_file_binding(vars, sys_id, get_file_id(working_set, file));
|
|
}
|
|
else{
|
|
delayed_action_repush(&vars->delay2, act);
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case DACT_NEW:
|
|
{
|
|
Get_File_Result file = working_set_get_available_file(working_set);
|
|
file_create_empty(system, mem, working_set, file.file, string.str,
|
|
vars->font_set, style->font_id);
|
|
table_add(&working_set->table, file.file->name.source_path, file.index);
|
|
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_major(system, exchange, new_view, panel, live_set);
|
|
|
|
File_View *file_view = file_view_init(new_view, &vars->layout);
|
|
cmd->view = (View*)file_view;
|
|
view_set_file(system, file_view, file.file, vars->font_set, style,
|
|
vars->hooks[hook_open_file], cmd, &app_links);
|
|
new_view->map = app_get_map(vars, file.file->settings.base_map_id);
|
|
#if BUFFER_EXPERIMENT_SCALPEL <= 0
|
|
if (file.file->settings.tokens_exist)
|
|
file_first_lex_parallel(system, general, file.file);
|
|
#endif
|
|
}break;
|
|
|
|
case DACT_SWITCH:
|
|
{
|
|
Editing_File *file = working_set_lookup_file(working_set, string);
|
|
if (file){
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_major(system, exchange, new_view, panel, live_set);
|
|
|
|
File_View *file_view = file_view_init(new_view, &vars->layout);
|
|
cmd->view = (View*)file_view;
|
|
|
|
view_set_file(system, file_view, file, vars->font_set, style,
|
|
vars->hooks[hook_open_file], cmd, &app_links);
|
|
|
|
new_view->map = app_get_map(vars, file->settings.base_map_id);
|
|
}
|
|
}break;
|
|
|
|
case DACT_KILL:
|
|
{
|
|
Editing_File *file = working_set_lookup_file(working_set, string);
|
|
if (file){
|
|
table_remove(&working_set->table, file->name.source_path);
|
|
kill_file(system, exchange, general, file, live_set, &vars->layout);
|
|
}
|
|
}break;
|
|
|
|
case DACT_TRY_KILL:
|
|
{
|
|
Editing_File *file = working_set_lookup_file(working_set, string);
|
|
if (file){
|
|
if (buffer_needs_save(file)){
|
|
View *new_view = live_set_alloc_view(live_set, mem);
|
|
view_replace_minor(system, exchange, new_view, panel, live_set);
|
|
|
|
new_view->map = &vars->map_ui;
|
|
Interactive_View *int_view =
|
|
interactive_view_init(system, new_view, &vars->hot_directory, style,
|
|
working_set, vars->font_set, &vars->delay1);
|
|
int_view->interaction = INTV_SURE_TO_KILL_INTER;
|
|
int_view->action = INTV_SURE_TO_KILL;
|
|
copy(&int_view->query, "Are you sure?");
|
|
copy(&int_view->dest, file->name.live_name);
|
|
}
|
|
else{
|
|
table_remove(&working_set->table, file->name.source_path);
|
|
kill_file(system, exchange, general, file, live_set, &vars->layout);
|
|
view_remove_minor(system, exchange, panel, live_set);
|
|
}
|
|
}
|
|
}break;
|
|
|
|
case DACT_CLOSE_MINOR:
|
|
{
|
|
view_remove_minor(system, exchange, panel, live_set);
|
|
}break;
|
|
|
|
case DACT_CLOSE_MAJOR:
|
|
{
|
|
view_remove_major(system, exchange, panel, live_set);
|
|
}break;
|
|
|
|
case DACT_THEME_OPTIONS:
|
|
{
|
|
open_theme_options(system, exchange, vars, live_set, mem, panel);
|
|
}break;
|
|
|
|
case DACT_KEYBOARD_OPTIONS:
|
|
{
|
|
open_config_options(system, exchange, vars, live_set, mem, panel);
|
|
}break;
|
|
}
|
|
|
|
if (string.str){
|
|
general_memory_free(&mem->general, string.str);
|
|
}
|
|
}
|
|
Swap(vars->delay1, vars->delay2);
|
|
}
|
|
ProfileEnd(delayed_actions);
|
|
|
|
end_temp_memory(param_stack_temp);
|
|
|
|
ProfileStart(resize);
|
|
// NOTE(allen): send resize messages to panels that have changed size
|
|
{
|
|
Panel *panel = panels;
|
|
for (i32 panel_i = vars->layout.panel_count; panel_i > 0; --panel_i, ++panel){
|
|
i32_Rect prev = panel->prev_inner;
|
|
i32_Rect inner = panel->inner;
|
|
if (prev.x0 != inner.x0 || prev.y0 != inner.y0 ||
|
|
prev.x1 != inner.x1 || prev.y1 != inner.y1){
|
|
View *view = panel->view;
|
|
if (view){
|
|
view->do_view(system, exchange,
|
|
view, inner, active_view,
|
|
VMSG_RESIZE, 0, &dead_input, &active_input);
|
|
view = (view->is_minor)?view->major:0;
|
|
if (view){
|
|
view->do_view(system, exchange,
|
|
view, inner, active_view,
|
|
VMSG_RESIZE, 0, &dead_input, &active_input);
|
|
}
|
|
}
|
|
}
|
|
panel->prev_inner = inner;
|
|
}
|
|
}
|
|
ProfileEnd(resize);
|
|
|
|
ProfileStart(style_change);
|
|
// NOTE(allen): send style change messages if the style has changed
|
|
if (vars->style.font_changed){
|
|
vars->style.font_changed = 0;
|
|
|
|
Editing_File *file = vars->working_set.files;
|
|
for (i32 i = vars->working_set.file_index_count; i > 0; --i, ++file){
|
|
if (buffer_good(&file->state.buffer) && !file->state.is_dummy){
|
|
Render_Font *font = get_font_info(vars->font_set, vars->style.font_id)->font;
|
|
float *advance_data = 0;
|
|
if (font) advance_data = font->advance_data;
|
|
|
|
file_measure_starts_widths(system, &vars->mem.general,
|
|
&file->state.buffer, advance_data);
|
|
}
|
|
}
|
|
|
|
Panel *panel = panels;
|
|
for (i32 panel_i = vars->layout.panel_count; panel_i > 0; --panel_i, ++panel){
|
|
View *view = panel->view;
|
|
if (view){
|
|
view->do_view(system, exchange,
|
|
view, panel->inner, active_view,
|
|
VMSG_STYLE_CHANGE, 0, &dead_input, &active_input);
|
|
view = (view->is_minor)?view->major:0;
|
|
if (view){
|
|
view->do_view(system, exchange,
|
|
view, panel->inner, active_view,
|
|
VMSG_STYLE_CHANGE, 0, &dead_input, &active_input);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
ProfileEnd(style_change);
|
|
|
|
ProfileStart(redraw);
|
|
if (mouse_panel != vars->prev_mouse_panel) app_result.redraw = 1;
|
|
if (app_result.redraw){
|
|
begin_render_section(target, system);
|
|
|
|
target->clip_top = -1;
|
|
draw_push_clip(target, rect_from_target(target));
|
|
|
|
// NOTE(allen): render the panels
|
|
Panel *panel = panels;
|
|
for (i32 panel_i = vars->layout.panel_count; panel_i > 0; --panel_i, ++panel){
|
|
i32_Rect full = panel->full;
|
|
i32_Rect inner = panel->inner;
|
|
|
|
View *view = panel->view;
|
|
Style *style = &vars->style;
|
|
|
|
b32 active = (panel == active_panel);
|
|
u32 back_color = style->main.back_color;
|
|
draw_rectangle(target, full, back_color);
|
|
|
|
if (view){
|
|
Assert(view->do_view);
|
|
draw_push_clip(target, panel->inner);
|
|
view->do_view(system, exchange,
|
|
view, panel->inner, active_view,
|
|
VMSG_DRAW, target, &dead_input, &active_input);
|
|
draw_pop_clip(target);
|
|
}
|
|
|
|
u32 margin_color;
|
|
if (active){
|
|
margin_color = style->main.margin_active_color;
|
|
}
|
|
else if (panel == mouse_panel){
|
|
margin_color = style->main.margin_hover_color;
|
|
}
|
|
else{
|
|
margin_color = style->main.margin_color;
|
|
}
|
|
draw_rectangle(target, i32R(full.x0, full.y0, full.x1, inner.y0), margin_color);
|
|
draw_rectangle(target, i32R(full.x0, inner.y1, full.x1, full.y1), margin_color);
|
|
draw_rectangle(target, i32R(full.x0, inner.y0, inner.x0, inner.y1), margin_color);
|
|
draw_rectangle(target, i32R(inner.x1, inner.y0, full.x1, inner.y1), margin_color);
|
|
}
|
|
|
|
end_render_section(target, system);
|
|
}
|
|
ProfileEnd(redraw);
|
|
|
|
ProfileStart(get_cursor);
|
|
// NOTE(allen): get cursor type
|
|
if (mouse_in_edit_area){
|
|
View *view = mouse_panel->view;
|
|
if (view){
|
|
app_result.mouse_cursor_type = view->mouse_cursor_type;
|
|
}
|
|
else{
|
|
app_result.mouse_cursor_type = APP_MOUSE_CURSOR_ARROW;
|
|
}
|
|
}
|
|
else if (mouse_in_margin_area){
|
|
if (mouse_on_divider){
|
|
if (mouse_divider_vertical){
|
|
app_result.mouse_cursor_type = APP_MOUSE_CURSOR_LEFTRIGHT;
|
|
}
|
|
else{
|
|
app_result.mouse_cursor_type = APP_MOUSE_CURSOR_UPDOWN;
|
|
}
|
|
}
|
|
else{
|
|
app_result.mouse_cursor_type = APP_MOUSE_CURSOR_ARROW;
|
|
}
|
|
}
|
|
vars->prev_mouse_panel = mouse_panel;
|
|
ProfileEnd(get_cursor);
|
|
|
|
*result = app_result;
|
|
result->lctrl_lalt_is_altgr = vars->settings.lctrl_lalt_is_altgr;
|
|
|
|
// end-of-app_step
|
|
}
|
|
|
|
#if 0
|
|
internal
|
|
App_Alloc_Sig(app_alloc){
|
|
Mem_Options *mem = (Mem_Options*)(handle);
|
|
void *result = general_memory_allocate(&mem->general, size, 0);
|
|
return(result);
|
|
}
|
|
|
|
internal
|
|
App_Free_Sig(app_free){
|
|
Mem_Options *mem = (Mem_Options*)(handle);
|
|
general_memory_free(&mem->general, block);
|
|
}
|
|
#endif
|
|
|
|
external App_Get_Functions_Sig(app_get_functions){
|
|
App_Functions result = {};
|
|
|
|
result.read_command_line = app_read_command_line;
|
|
result.init = app_init;
|
|
result.step = app_step;
|
|
|
|
#if 0
|
|
result.alloc = app_alloc;
|
|
result.free = app_free;
|
|
#endif
|
|
|
|
return(result);
|
|
}
|
|
|
|
// BOTTOM
|
|
|