ready for distribution
This commit is contained in:
parent
353d08fa2b
commit
bdd3bbe0d9
|
@ -67,7 +67,7 @@ HOOK_SIG(my_file_settings){
|
||||||
}
|
}
|
||||||
|
|
||||||
push_parameter(app, par_lex_as_cpp_file, treat_as_code);
|
push_parameter(app, par_lex_as_cpp_file, treat_as_code);
|
||||||
push_parameter(app, par_wrap_lines, !treat_as_code);
|
push_parameter(app, par_wrap_lines, wrap_lines);
|
||||||
push_parameter(app, par_key_mapid, (treat_as_code)?((int)my_code_map):((int)mapid_file));
|
push_parameter(app, par_key_mapid, (treat_as_code)?((int)my_code_map):((int)mapid_file));
|
||||||
exec_command(app, cmdid_set_settings);
|
exec_command(app, cmdid_set_settings);
|
||||||
|
|
||||||
|
@ -293,6 +293,7 @@ int get_bindings(void *data, int size){
|
||||||
bind(context, 'm', MDFR_ALT, build_search);
|
bind(context, 'm', MDFR_ALT, build_search);
|
||||||
bind(context, 'x', MDFR_ALT, execute_arbitrary_command);
|
bind(context, 'x', MDFR_ALT, execute_arbitrary_command);
|
||||||
bind(context, 'z', MDFR_ALT, execute_any_cli);
|
bind(context, 'z', MDFR_ALT, execute_any_cli);
|
||||||
|
bind(context, 'Z', MDFR_ALT, execute_previous_cli);
|
||||||
|
|
||||||
// NOTE(allen): These callbacks may not actually be useful to you, but
|
// NOTE(allen): These callbacks may not actually be useful to you, but
|
||||||
// go look at them and see what they do.
|
// go look at them and see what they do.
|
||||||
|
|
|
@ -513,20 +513,21 @@ CUSTOM_COMMAND_SIG(open_all_code){
|
||||||
app->free_file_list(app, list);
|
app->free_file_list(app, list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char out_buffer_space[1024], command_space[1024], hot_directory_space[1024];
|
||||||
|
|
||||||
CUSTOM_COMMAND_SIG(execute_any_cli){
|
CUSTOM_COMMAND_SIG(execute_any_cli){
|
||||||
Query_Bar bar_out, bar_cmd;
|
Query_Bar bar_out, bar_cmd;
|
||||||
String hot_directory;
|
String hot_directory;
|
||||||
char space[1024], more_space[1024], even_more_space[1024];
|
|
||||||
|
|
||||||
bar_out.prompt = make_lit_string("Output Buffer: ");
|
bar_out.prompt = make_lit_string("Output Buffer: ");
|
||||||
bar_out.string = make_fixed_width_string(space);
|
bar_out.string = make_fixed_width_string(out_buffer_space);
|
||||||
if (!query_user_string(app, &bar_out)) return;
|
if (!query_user_string(app, &bar_out)) return;
|
||||||
|
|
||||||
bar_cmd.prompt = make_lit_string("Command: ");
|
bar_cmd.prompt = make_lit_string("Command: ");
|
||||||
bar_cmd.string = make_fixed_width_string(more_space);
|
bar_cmd.string = make_fixed_width_string(command_space);
|
||||||
if (!query_user_string(app, &bar_cmd)) return;
|
if (!query_user_string(app, &bar_cmd)) return;
|
||||||
|
|
||||||
hot_directory = make_fixed_width_string(even_more_space);
|
hot_directory = make_fixed_width_string(hot_directory_space);
|
||||||
hot_directory.size = app->directory_get_hot(app, hot_directory.str, hot_directory.memory_size);
|
hot_directory.size = app->directory_get_hot(app, hot_directory.str, hot_directory.memory_size);
|
||||||
|
|
||||||
push_parameter(app, par_flags, CLI_OverlapWithConflict);
|
push_parameter(app, par_flags, CLI_OverlapWithConflict);
|
||||||
|
@ -534,6 +535,26 @@ CUSTOM_COMMAND_SIG(execute_any_cli){
|
||||||
push_parameter(app, par_cli_path, hot_directory.str, hot_directory.size);
|
push_parameter(app, par_cli_path, hot_directory.str, hot_directory.size);
|
||||||
push_parameter(app, par_cli_command, bar_cmd.string.str, bar_cmd.string.size);
|
push_parameter(app, par_cli_command, bar_cmd.string.str, bar_cmd.string.size);
|
||||||
exec_command(app, cmdid_command_line);
|
exec_command(app, cmdid_command_line);
|
||||||
|
|
||||||
|
terminate_with_null(&bar_out.string);
|
||||||
|
terminate_with_null(&bar_cmd.string);
|
||||||
|
terminate_with_null(&hot_directory);
|
||||||
|
}
|
||||||
|
|
||||||
|
CUSTOM_COMMAND_SIG(execute_previous_cli){
|
||||||
|
String out_buffer, cmd, hot_directory;
|
||||||
|
|
||||||
|
out_buffer = make_string_slowly(out_buffer_space);
|
||||||
|
cmd = make_string_slowly(command_space);
|
||||||
|
hot_directory = make_string_slowly(hot_directory_space);
|
||||||
|
|
||||||
|
if (out_buffer.size > 0 && cmd.size > 0 && hot_directory.size > 0){
|
||||||
|
push_parameter(app, par_flags, CLI_OverlapWithConflict);
|
||||||
|
push_parameter(app, par_name, out_buffer.str, out_buffer.size);
|
||||||
|
push_parameter(app, par_cli_path, hot_directory.str, hot_directory.size);
|
||||||
|
push_parameter(app, par_cli_command, cmd.str, cmd.size);
|
||||||
|
exec_command(app, cmdid_command_line);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CUSTOM_COMMAND_SIG(execute_arbitrary_command){
|
CUSTOM_COMMAND_SIG(execute_arbitrary_command){
|
||||||
|
|
|
@ -4783,7 +4783,7 @@ search_hit_add(General_Memory *general, Table *hits, String_Space *space, char *
|
||||||
*hits = new_hits;
|
*hits = new_hits;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (table_add(hits, &ostring, space->space, tbl_offset_string_hash, tbl_offset_string_compare)){
|
if (!table_add(hits, &ostring, space->space, tbl_offset_string_hash, tbl_offset_string_compare)){
|
||||||
result = 1;
|
result = 1;
|
||||||
strspace_keep_prev(space);
|
strspace_keep_prev(space);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1166,7 +1166,7 @@ gui_standard_list(GUI_Target *target, GUI_id id,
|
||||||
++*list_i;
|
++*list_i;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '\n':
|
case '\n': case '\t':
|
||||||
indirectly_activate = 1;
|
indirectly_activate = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -166,6 +166,8 @@ struct Win32_Vars{
|
||||||
// will involve more coroutines.
|
// will involve more coroutines.
|
||||||
Win32_Coroutine coroutine_data[18];
|
Win32_Coroutine coroutine_data[18];
|
||||||
Win32_Coroutine *coroutine_free;
|
Win32_Coroutine *coroutine_free;
|
||||||
|
|
||||||
|
i32 running_cli;
|
||||||
};
|
};
|
||||||
|
|
||||||
globalvar Win32_Vars win32vars;
|
globalvar Win32_Vars win32vars;
|
||||||
|
@ -932,6 +934,8 @@ Sys_CLI_Call_Sig(system_cli_call){
|
||||||
*(HANDLE*)&cli_out->proc = info.hProcess;
|
*(HANDLE*)&cli_out->proc = info.hProcess;
|
||||||
*(HANDLE*)&cli_out->out_read = out_read;
|
*(HANDLE*)&cli_out->out_read = out_read;
|
||||||
*(HANDLE*)&cli_out->out_write = out_write;
|
*(HANDLE*)&cli_out->out_write = out_write;
|
||||||
|
|
||||||
|
++win32vars.running_cli;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
CloseHandle(out_read);
|
CloseHandle(out_read);
|
||||||
|
@ -943,6 +947,11 @@ Sys_CLI_Call_Sig(system_cli_call){
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
// TODO(allen): failed SetHandleInformation
|
// TODO(allen): failed SetHandleInformation
|
||||||
|
CloseHandle(out_read);
|
||||||
|
CloseHandle(out_write);
|
||||||
|
*(HANDLE*)&cli_out->proc = INVALID_HANDLE_VALUE;
|
||||||
|
*(HANDLE*)&cli_out->out_read = INVALID_HANDLE_VALUE;
|
||||||
|
*(HANDLE*)&cli_out->out_write = INVALID_HANDLE_VALUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
@ -1016,6 +1025,8 @@ Sys_CLI_End_Update_Sig(system_cli_end_update){
|
||||||
CloseHandle(*(HANDLE*)&cli->proc);
|
CloseHandle(*(HANDLE*)&cli->proc);
|
||||||
CloseHandle(*(HANDLE*)&cli->out_read);
|
CloseHandle(*(HANDLE*)&cli->out_read);
|
||||||
CloseHandle(*(HANDLE*)&cli->out_write);
|
CloseHandle(*(HANDLE*)&cli->out_write);
|
||||||
|
|
||||||
|
--win32vars.running_cli;
|
||||||
}
|
}
|
||||||
return close_me;
|
return close_me;
|
||||||
}
|
}
|
||||||
|
@ -1708,17 +1719,22 @@ UpdateLoop(LPVOID param){
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if 0
|
#if 1
|
||||||
int
|
int
|
||||||
WinMain(HINSTANCE hInstance,
|
WinMain(HINSTANCE hInstance,
|
||||||
HINSTANCE hPrevInstance,
|
HINSTANCE hPrevInstance,
|
||||||
LPSTR lpCmdLine,
|
LPSTR lpCmdLine,
|
||||||
int nCmdShow){
|
int nCmdShow){
|
||||||
|
|
||||||
|
int argc = __argc;
|
||||||
|
char **argv = __argv;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
int main(int argc, char **argv){
|
int main(int argc, char **argv){
|
||||||
#endif
|
|
||||||
|
|
||||||
HINSTANCE hInstance = GetModuleHandle(0);
|
HINSTANCE hInstance = GetModuleHandle(0);
|
||||||
|
#endif
|
||||||
|
|
||||||
HANDLE original_out = GetStdHandle(STD_OUTPUT_HANDLE);
|
HANDLE original_out = GetStdHandle(STD_OUTPUT_HANDLE);
|
||||||
|
|
||||||
win32vars = {};
|
win32vars = {};
|
||||||
|
@ -1841,7 +1857,7 @@ int main(int argc, char **argv){
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//FreeConsole();
|
FreeConsole();
|
||||||
|
|
||||||
sysshared_filter_real_files(files, file_count);
|
sysshared_filter_real_files(files, file_count);
|
||||||
|
|
||||||
|
@ -2068,24 +2084,31 @@ int main(int argc, char **argv){
|
||||||
SetForegroundWindow(window_handle);
|
SetForegroundWindow(window_handle);
|
||||||
SetActiveWindow(window_handle);
|
SetActiveWindow(window_handle);
|
||||||
|
|
||||||
|
#if 0
|
||||||
ResumeThread(win32vars.update_loop_thread);
|
ResumeThread(win32vars.update_loop_thread);
|
||||||
|
#endif
|
||||||
|
|
||||||
MSG msg;
|
MSG msg;
|
||||||
for (;win32vars.input_chunk.pers.keep_playing;){
|
for (;win32vars.input_chunk.pers.keep_playing;){
|
||||||
win32vars.got_useful_event = 0;
|
// TODO(allen): Find a good way to wait on a pipe
|
||||||
for (;win32vars.got_useful_event == 0;){
|
// without interfering with the reading process
|
||||||
system_release_lock(FRAME_LOCK);
|
|
||||||
if (GetMessage(&msg, 0, 0, 0)){
|
if (win32vars.running_cli == 0){
|
||||||
system_acquire_lock(FRAME_LOCK);
|
win32vars.got_useful_event = 0;
|
||||||
if (msg.message == WM_QUIT){
|
for (;win32vars.got_useful_event == 0;){
|
||||||
win32vars.input_chunk.pers.keep_playing = 0;
|
system_release_lock(FRAME_LOCK);
|
||||||
}else{
|
if (GetMessage(&msg, 0, 0, 0)){
|
||||||
TranslateMessage(&msg);
|
system_acquire_lock(FRAME_LOCK);
|
||||||
DispatchMessage(&msg);
|
if (msg.message == WM_QUIT){
|
||||||
|
win32vars.input_chunk.pers.keep_playing = 0;
|
||||||
|
}else{
|
||||||
|
TranslateMessage(&msg);
|
||||||
|
DispatchMessage(&msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
system_acquire_lock(FRAME_LOCK);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else{
|
|
||||||
system_acquire_lock(FRAME_LOCK);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue