2017-01-29 00:03:23 +00:00
/*
4 coder_experiments . cpp - Supplies extension bindings to the defaults with experimental new features .
*/
2016-03-24 01:05:28 +00:00
2016-05-12 02:15:54 +00:00
// TOP
2016-03-24 01:05:28 +00:00
2017-01-29 00:03:23 +00:00
# include "4coder_default_include.cpp"
# include "4coder_miblo_numbers.cpp"
2017-01-23 06:19:43 +00:00
2016-05-12 02:15:54 +00:00
# define NO_BINDING
2016-06-21 14:00:07 +00:00
# include "4coder_default_bindings.cpp"
2016-03-24 01:05:28 +00:00
2016-05-29 03:12:12 +00:00
# include <string.h>
2017-01-14 03:01:35 +00:00
static float
2019-02-26 23:08:42 +00:00
get_line_y ( Application_Links * app , View_Summary * view , i32 line ) {
2018-11-20 08:18:54 +00:00
Full_Cursor cursor = { } ;
2017-07-10 14:51:19 +00:00
view_compute_cursor ( app , view , seek_line_char ( line , 1 ) , & cursor ) ;
float y = cursor . wrapped_y ;
if ( view - > unwrapped_lines ) {
y = cursor . unwrapped_y ;
2016-03-24 01:05:28 +00:00
}
2017-07-10 14:51:19 +00:00
return ( y ) ;
}
2017-06-28 15:15:54 +00:00
2017-11-15 23:57:21 +00:00
CUSTOM_COMMAND_SIG ( kill_rect )
CUSTOM_DOC ( " Delete characters in a rectangular region. Range testing is done by unwrapped-xy coordinates. " )
{
2017-07-10 14:51:19 +00:00
View_Summary view = get_active_view ( app , AccessOpen ) ;
Buffer_Summary buffer = get_buffer ( app , view . buffer_id , AccessOpen ) ;
i32_Rect rect = get_line_x_rect ( & view ) ;
2019-02-26 23:08:42 +00:00
b32 unwrapped = view . unwrapped_lines ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
for ( i32 line = rect . y1 ; line > = rect . y0 ; - - line ) {
i32 start = 0 ;
i32 end = 0 ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
b32 success = 1 ;
2018-11-20 08:18:54 +00:00
Full_Cursor cursor = { } ;
2017-07-10 14:51:19 +00:00
float y = get_line_y ( app , & view , line ) ;
if ( success ) {
success = view_compute_cursor ( app , & view , seek_xy ( ( float ) rect . x0 , y , 0 , unwrapped ) , & cursor ) ;
}
start = cursor . pos ;
if ( success ) {
success = view_compute_cursor ( app , & view , seek_xy ( ( float ) rect . x1 , y , 0 , unwrapped ) , & cursor ) ;
}
end = cursor . pos ;
if ( success ) {
buffer_replace_range ( app , & buffer , start , end , 0 , 0 ) ;
}
2017-06-28 15:15:54 +00:00
}
2016-05-12 02:15:54 +00:00
}
2016-03-24 01:05:28 +00:00
2016-07-18 20:53:04 +00:00
static void
2019-02-26 23:08:42 +00:00
pad_buffer_line ( Application_Links * app , Partition * part , Buffer_Summary * buffer , i32 line , char padchar , i32 target ) {
2018-11-20 08:18:54 +00:00
Partial_Cursor start = { } ;
Partial_Cursor end = { } ;
2017-07-10 14:51:19 +00:00
if ( buffer_compute_cursor ( app , buffer , seek_line_char ( line , 1 ) , & start ) ) {
if ( buffer_compute_cursor ( app , buffer , seek_line_char ( line , 65536 ) , & end ) ) {
if ( start . line = = line ) {
if ( end . character - 1 < target ) {
Temp_Memory temp = begin_temp_memory ( part ) ;
2019-02-26 23:08:42 +00:00
i32 size = target - ( end . character - 1 ) ;
2017-07-10 14:51:19 +00:00
char * str = push_array ( part , char , size ) ;
memset ( str , ' ' , size ) ;
buffer_replace_range ( app , buffer , end . pos , end . pos , str , size ) ;
end_temp_memory ( temp ) ;
}
}
2016-07-18 20:53:04 +00:00
}
}
}
2016-07-18 22:05:28 +00:00
/*
NOTE ( allen ) : Things I learned from this experiment .
First of all the batch edits aren ' t too bad , but I think
there could be a single system that I run that through that
knows how to build the batch edit from slightly higher level
information . For instance the idea in point 2.
Secondly I definitely believe I need some sort of " mini-buffer "
concept where a view sends commands so that things like
pasting still work . Then the contents of the " mini-buffer "
can be used to complete the edits at all cursor points .
This doesn ' t answer all questions , because somehow backspace
still wants to work for multi - lines even when the " mini-buffer "
is emtpy . Such a system would also make it possible to send
paste commands and cursor navigation to interactive bars .
Thirdly any system like this will probably not want to
operate through the co - routine system , because that makes
sending these commands to the " mini-buffer " much more
difficult .
Fourthly I desperately need some way to do multi - highlighting
multi - cursor showing but it is unclear to me how to do that
conveniently . Since this won ' t exist inside a coroutine
what does such an API even look like ? ? ? It ' s clear to me now
that I may need to start pushing for the view routine before
2017-01-29 00:03:23 +00:00
I am even able to support the GUI . Because that will set up the
system to allow me to think about the problem in more ways .
2016-07-18 22:05:28 +00:00
Finally I have decided not to pursue this direction any more ,
it just seems like the wrong way to do it , so I ' ll stop without
doing multi - cursor for now .
*/
2017-11-15 23:57:21 +00:00
CUSTOM_COMMAND_SIG ( multi_line_edit )
CUSTOM_DOC ( " Begin multi-line mode. In multi-line mode characters are inserted at every line between the mark and cursor. All characters are inserted at the same character offset into the line. This mode uses line_char coordinates. " )
{
2017-07-10 14:51:19 +00:00
Partition * part = & global_part ;
View_Summary view = get_active_view ( app , AccessOpen ) ;
Buffer_Summary buffer = get_buffer ( app , view . buffer_id , AccessOpen ) ;
Buffer_Rect rect = get_rect ( & view ) ;
2019-02-26 23:08:42 +00:00
i32 start_line = view . cursor . line ;
i32 pos = view . cursor . character - 1 ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
for ( i32 i = rect . line0 ; i < = rect . line1 ; + + i ) {
2017-07-10 14:51:19 +00:00
pad_buffer_line ( app , & global_part , & buffer , i , ' ' , pos ) ;
2017-06-28 15:15:54 +00:00
}
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 line_count = rect . line1 - rect . line0 + 1 ;
2017-07-10 14:51:19 +00:00
for ( ; ; ) {
2018-11-21 07:55:37 +00:00
User_Input in = get_user_input ( app , EventOnAnyKey , EventOnEsc | EventOnMouseLeftButton | EventOnMouseRightButton ) ;
2017-07-10 14:51:19 +00:00
if ( in . abort ) break ;
if ( in . key . character & & key_is_unmodified ( & in . key ) ) {
char str = ( char ) in . key . character ;
Temp_Memory temp = begin_temp_memory ( part ) ;
Buffer_Edit * edit = push_array ( part , Buffer_Edit , line_count ) ;
Buffer_Edit * edits = edit ;
2019-02-26 23:08:42 +00:00
for ( i32 i = rect . line0 ; i < = rect . line1 ; + + i ) {
2018-11-20 08:18:54 +00:00
Partial_Cursor cursor = { } ;
2017-07-10 14:51:19 +00:00
if ( buffer_compute_cursor ( app , & buffer , seek_line_char ( i , pos + 1 ) , & cursor ) ) {
edit - > str_start = 0 ;
edit - > len = 1 ;
edit - > start = cursor . pos ;
edit - > end = cursor . pos ;
+ + edit ;
}
}
2019-02-26 23:08:42 +00:00
i32 edit_count = ( int ) ( edit - edits ) ;
2017-07-10 14:51:19 +00:00
buffer_batch_edit ( app , & buffer , & str , 1 , edits , edit_count , BatchEdit_Normal ) ;
end_temp_memory ( temp ) ;
+ + pos ;
view_set_cursor ( app , & view , seek_line_char ( start_line , pos + 1 ) , true ) ;
}
else if ( in . key . keycode = = key_back ) {
if ( pos > 0 ) {
Temp_Memory temp = begin_temp_memory ( part ) ;
Buffer_Edit * edit = push_array ( part , Buffer_Edit , line_count ) ;
Buffer_Edit * edits = edit ;
2019-02-26 23:08:42 +00:00
for ( i32 i = rect . line0 ; i < = rect . line1 ; + + i ) {
2018-11-20 08:18:54 +00:00
Partial_Cursor cursor = { } ;
2017-07-10 14:51:19 +00:00
if ( buffer_compute_cursor ( app , & buffer , seek_line_char ( i , pos + 1 ) , & cursor ) ) {
edit - > str_start = 0 ;
edit - > len = 0 ;
edit - > start = cursor . pos - 1 ;
edit - > end = cursor . pos ;
+ + edit ;
}
}
2019-02-26 23:08:42 +00:00
i32 edit_count = ( int ) ( edit - edits ) ;
2017-07-10 14:51:19 +00:00
buffer_batch_edit ( app , & buffer , 0 , 0 , edits , edit_count , BatchEdit_Normal ) ;
end_temp_memory ( temp ) ;
- - pos ;
}
}
else {
break ;
2016-07-18 20:53:04 +00:00
}
}
}
2017-11-21 18:25:19 +00:00
// NOTE(allen): An experimental mutli-pasting thing
2017-01-14 03:01:35 +00:00
2017-11-21 18:25:19 +00:00
CUSTOM_COMMAND_SIG ( multi_paste ) {
2019-02-26 23:08:42 +00:00
u32 access = AccessOpen ;
i32 count = clipboard_count ( app , 0 ) ;
2017-11-21 18:25:19 +00:00
if ( count > 0 ) {
View_Summary view = get_active_view ( app , access ) ;
2018-09-12 19:48:03 +00:00
Managed_Scope scope = view_get_managed_scope ( app , view . view_id ) ;
2017-07-10 14:51:19 +00:00
2019-02-27 05:49:35 +00:00
u64 rewrite = 0 ;
2018-09-12 19:48:03 +00:00
managed_variable_get ( app , scope , view_rewrite_loc , & rewrite ) ;
2018-09-04 19:16:46 +00:00
if ( rewrite = = RewritePaste ) {
2018-09-12 19:48:03 +00:00
managed_variable_set ( app , scope , view_next_rewrite_loc , RewritePaste ) ;
2019-02-27 05:49:35 +00:00
u64 prev_paste_index = 0 ;
2018-09-12 19:48:03 +00:00
managed_variable_get ( app , scope , view_paste_index_loc , & prev_paste_index ) ;
2019-02-26 23:08:42 +00:00
i32 paste_index = ( i32 ) prev_paste_index + 1 ;
2018-09-12 19:48:03 +00:00
managed_variable_set ( app , scope , view_paste_index_loc , paste_index ) ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 len = clipboard_index ( app , 0 , paste_index , 0 , 0 ) ;
2017-07-10 14:51:19 +00:00
2017-11-21 18:25:19 +00:00
if ( len + 1 < = app - > memory_size ) {
char * str = ( char * ) app - > memory ;
str [ 0 ] = ' \n ' ;
clipboard_index ( app , 0 , paste_index , str + 1 , len ) ;
2017-07-10 14:51:19 +00:00
2017-11-21 18:25:19 +00:00
Buffer_Summary buffer = get_buffer ( app , view . buffer_id , access ) ;
2018-05-20 05:07:47 +00:00
Range range = get_view_range ( & view ) ;
2017-11-21 18:25:19 +00:00
buffer_replace_range ( app , & buffer , range . max , range . max , str , len + 1 ) ;
view_set_mark ( app , & view , seek_pos ( range . max + 1 ) ) ;
view_set_cursor ( app , & view , seek_pos ( range . max + len + 1 ) , true ) ;
2017-07-10 14:51:19 +00:00
2017-11-21 18:25:19 +00:00
// TODO(allen): Send this to all views.
Theme_Color paste ;
paste . tag = Stag_Paste ;
get_theme_colors ( app , & paste , 1 ) ;
view_post_fade ( app , & view , 0.667f , range . max + 1 , range . max + len + 1 , paste . color ) ;
2017-07-10 14:51:19 +00:00
}
2017-06-28 15:15:54 +00:00
}
2017-07-10 14:51:19 +00:00
else {
2017-11-21 18:25:19 +00:00
exec_command ( app , paste ) ;
2017-07-10 14:51:19 +00:00
}
2017-01-14 03:01:35 +00:00
}
}
2017-11-21 18:25:19 +00:00
static Range
2019-02-26 23:08:42 +00:00
multi_paste_range ( Application_Links * app , View_Summary * view , Range range , i32 paste_count , b32 old_to_new ) {
2017-11-21 18:25:19 +00:00
Range finish_range = range ;
if ( paste_count > = 1 ) {
Buffer_Summary buffer = get_buffer ( app , view - > buffer_id , AccessOpen ) ;
if ( buffer . exists ) {
2019-02-26 23:08:42 +00:00
i32 total_size = 0 ;
for ( i32 paste_index = 0 ; paste_index < paste_count ; + + paste_index ) {
2017-11-21 18:25:19 +00:00
total_size + = 1 + clipboard_index ( app , 0 , paste_index , 0 , 0 ) ;
2017-07-10 14:51:19 +00:00
}
2017-11-21 18:25:19 +00:00
total_size - = 1 ;
2017-07-10 14:51:19 +00:00
2017-11-21 18:25:19 +00:00
if ( total_size < = app - > memory_size ) {
char * str = ( char * ) app - > memory ;
2019-02-26 23:08:42 +00:00
i32 position = 0 ;
2017-11-29 23:00:14 +00:00
2019-02-26 23:08:42 +00:00
i32 first = paste_count - 1 ;
i32 one_past_last = - 1 ;
i32 step = - 1 ;
2017-11-29 23:00:14 +00:00
if ( ! old_to_new ) {
first = 0 ;
one_past_last = paste_count ;
step = 1 ;
}
2019-02-26 23:08:42 +00:00
for ( i32 paste_index = first ; paste_index ! = one_past_last ; paste_index + = step ) {
2017-11-29 23:00:14 +00:00
if ( paste_index ! = first ) {
2017-11-21 18:25:19 +00:00
str [ position ] = ' \n ' ;
+ + position ;
2017-07-10 14:51:19 +00:00
}
2017-11-21 18:25:19 +00:00
2019-02-26 23:08:42 +00:00
i32 len = clipboard_index ( app , 0 , paste_index , str + position , total_size - position ) ;
2017-11-21 18:25:19 +00:00
position + = len ;
}
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 pos = range . min ;
2017-11-21 18:25:19 +00:00
buffer_replace_range ( app , & buffer , range . min , range . max , str , total_size ) ;
finish_range . min = pos ;
finish_range . max = pos + total_size ;
view_set_mark ( app , view , seek_pos ( finish_range . min ) ) ;
view_set_cursor ( app , view , seek_pos ( finish_range . max ) , true ) ;
2017-07-10 14:51:19 +00:00
2017-11-21 18:25:19 +00:00
// TODO(allen): Send this to all views.
Theme_Color paste ;
paste . tag = Stag_Paste ;
get_theme_colors ( app , & paste , 1 ) ;
view_post_fade ( app , view , 0.667f , finish_range . min , finish_range . max , paste . color ) ;
2017-01-29 00:03:23 +00:00
}
2017-11-21 18:25:19 +00:00
}
2017-07-10 14:51:19 +00:00
}
2017-11-21 18:25:19 +00:00
return ( finish_range ) ;
2017-01-29 00:03:23 +00:00
}
2017-11-29 23:00:14 +00:00
static void
2019-02-26 23:08:42 +00:00
multi_paste_interactive_up_down ( Application_Links * app , i32 paste_count , i32 clip_count ) {
2017-11-29 23:00:14 +00:00
View_Summary view = get_active_view ( app , AccessOpen ) ;
2018-11-20 08:18:54 +00:00
Range range = { } ;
2017-11-29 23:00:14 +00:00
range . min = range . max = view . cursor . pos ;
2019-02-26 23:08:42 +00:00
b32 old_to_new = true ;
2017-11-29 23:00:14 +00:00
range = multi_paste_range ( app , & view , range , paste_count , old_to_new ) ;
2018-11-20 08:18:54 +00:00
Query_Bar bar = { } ;
2017-11-29 23:00:14 +00:00
bar . prompt = make_lit_string ( " Up and Down to condense and expand paste stages; R to reverse order; Return to finish; Escape to abort. " ) ;
if ( start_query_bar ( app , & bar , 0 ) = = 0 ) return ;
2018-11-20 08:18:54 +00:00
User_Input in = { } ;
2017-11-29 23:00:14 +00:00
for ( ; ; ) {
in = get_user_input ( app , EventOnAnyKey , EventOnEsc ) ;
if ( in . abort ) break ;
2019-02-26 23:08:42 +00:00
b32 did_modify = false ;
2017-11-29 23:00:14 +00:00
if ( in . key . keycode = = key_up ) {
if ( paste_count > 1 ) {
- - paste_count ;
did_modify = true ;
}
}
else if ( in . key . keycode = = key_down ) {
if ( paste_count < clip_count ) {
+ + paste_count ;
did_modify = true ;
}
}
else if ( in . key . keycode = = ' r ' | | in . key . keycode = = ' R ' ) {
old_to_new = ! old_to_new ;
did_modify = true ;
}
else if ( in . key . keycode = = ' \n ' ) {
break ;
}
if ( did_modify ) {
range = multi_paste_range ( app , & view , range , paste_count , old_to_new ) ;
}
}
if ( in . abort ) {
Buffer_Summary buffer = get_buffer ( app , view . buffer_id , AccessOpen ) ;
buffer_replace_range ( app , & buffer , range . min , range . max , 0 , 0 ) ;
}
}
2017-11-21 18:25:19 +00:00
CUSTOM_COMMAND_SIG ( multi_paste_interactive ) {
2019-02-26 23:08:42 +00:00
i32 clip_count = clipboard_count ( app , 0 ) ;
2017-11-21 18:25:19 +00:00
if ( clip_count > 0 ) {
2017-11-29 23:00:14 +00:00
multi_paste_interactive_up_down ( app , 1 , clip_count ) ;
}
}
CUSTOM_COMMAND_SIG ( multi_paste_interactive_quick ) {
2019-02-26 23:08:42 +00:00
i32 clip_count = clipboard_count ( app , 0 ) ;
2017-11-29 23:00:14 +00:00
if ( clip_count > 0 ) {
char string_space [ 256 ] ;
2018-11-20 08:18:54 +00:00
Query_Bar bar = { } ;
2017-11-29 23:00:14 +00:00
bar . prompt = make_lit_string ( " How Many Slots To Paste: " ) ;
bar . string = make_fixed_width_string ( string_space ) ;
query_user_number ( app , & bar ) ;
2017-11-21 18:25:19 +00:00
2019-02-26 23:08:42 +00:00
i32 initial_paste_count = str_to_int_s ( bar . string ) ;
2017-11-29 23:00:14 +00:00
if ( initial_paste_count > clip_count ) {
initial_paste_count = clip_count ;
2017-11-21 18:25:19 +00:00
}
2017-11-29 23:00:14 +00:00
if ( initial_paste_count < 1 ) {
initial_paste_count = 1 ;
2017-01-29 00:03:23 +00:00
}
2017-11-29 23:00:14 +00:00
end_query_bar ( app , & bar , 0 ) ;
multi_paste_interactive_up_down ( app , initial_paste_count , clip_count ) ;
2017-01-29 00:03:23 +00:00
}
}
2016-09-14 23:39:33 +00:00
// NOTE(allen): Some basic code manipulation ideas.
2017-11-15 23:57:21 +00:00
CUSTOM_COMMAND_SIG ( rename_parameter )
CUSTOM_DOC ( " If the cursor is found to be on the name of a function parameter in the signature of a function definition, all occurences within the scope of the function will be replaced with a new provided string. " )
{
2019-02-26 23:08:42 +00:00
u32 access = AccessOpen ;
2017-07-10 14:51:19 +00:00
View_Summary view = get_active_view ( app , access ) ;
Buffer_Summary buffer = get_buffer ( app , view . buffer_id , access ) ;
Partition * part = & global_part ;
Temp_Memory temp = begin_temp_memory ( part ) ;
Cpp_Get_Token_Result result ;
if ( buffer_get_token_index ( app , & buffer , view . cursor . pos , & result ) ) {
2019-02-21 06:58:34 +00:00
if ( ! result . in_whitespace_after_token ) {
2019-02-26 23:08:42 +00:00
static const i32 stream_space_size = 512 ;
2017-07-10 14:51:19 +00:00
Cpp_Token stream_space [ stream_space_size ] ;
2019-02-14 04:21:52 +00:00
Stream_Tokens_DEP stream = { } ;
2017-07-10 14:51:19 +00:00
if ( init_stream_tokens ( & stream , app , & buffer , result . token_index , stream_space , stream_space_size ) ) {
2019-02-26 23:08:42 +00:00
i32 token_index = result . token_index ;
2017-07-10 14:51:19 +00:00
Cpp_Token token = stream . tokens [ token_index ] ;
if ( token . type = = CPP_TOKEN_IDENTIFIER ) {
char old_lexeme_base [ 128 ] ;
String old_lexeme = make_fixed_width_string ( old_lexeme_base ) ;
if ( token . size < sizeof ( old_lexeme_base ) ) {
Cpp_Token original_token = token ;
old_lexeme . size = token . size ;
buffer_read_range ( app , & buffer , token . start , token . start + token . size , old_lexeme . str ) ;
2019-02-26 23:08:42 +00:00
i32 proc_body_found = 0 ;
b32 still_looping = 0 ;
2017-07-10 14:51:19 +00:00
+ + token_index ;
do {
for ( ; token_index < stream . end ; + + token_index ) {
Cpp_Token * token_ptr = stream . tokens + token_index ;
switch ( token_ptr - > type ) {
case CPP_TOKEN_BRACE_OPEN :
{
proc_body_found = 1 ;
goto doublebreak ;
} break ;
case CPP_TOKEN_BRACE_CLOSE :
case CPP_TOKEN_PARENTHESE_OPEN :
{
goto doublebreak ;
} break ;
}
}
still_looping = forward_stream_tokens ( & stream ) ;
} while ( still_looping ) ;
doublebreak : ;
if ( proc_body_found ) {
Query_Bar with ;
char with_space [ 1024 ] ;
with . prompt = make_lit_string ( " New Name: " ) ;
with . string = make_fixed_width_string ( with_space ) ;
if ( ! query_user_string ( app , & with ) ) return ;
String replace_string = with . string ;
2019-02-14 04:21:52 +00:00
Buffer_Edit * edits = push_array ( part , Buffer_Edit , 0 ) ;
2019-02-26 23:08:42 +00:00
i32 edit_max = ( part_remaining ( part ) ) / sizeof ( Buffer_Edit ) ;
i32 edit_count = 0 ;
2017-07-10 14:51:19 +00:00
if ( edit_max > = 1 ) {
Buffer_Edit edit ;
edit . str_start = 0 ;
edit . len = replace_string . size ;
edit . start = original_token . start ;
edit . end = original_token . start + original_token . size ;
edits [ edit_count ] = edit ;
+ + edit_count ;
}
2019-02-26 23:08:42 +00:00
i32 nesting_level = 0 ;
i32 closed_correctly = 0 ;
2017-07-10 14:51:19 +00:00
+ + token_index ;
still_looping = 0 ;
do {
for ( ; token_index < stream . end ; + + token_index ) {
Cpp_Token * token_ptr = stream . tokens + token_index ;
switch ( token_ptr - > type ) {
case CPP_TOKEN_IDENTIFIER :
{
if ( token_ptr - > size = = old_lexeme . size ) {
char other_lexeme_base [ 128 ] ;
String other_lexeme = make_fixed_width_string ( other_lexeme_base ) ;
other_lexeme . size = old_lexeme . size ;
buffer_read_range ( app , & buffer , token_ptr - > start ,
token_ptr - > start + token_ptr - > size ,
other_lexeme . str ) ;
if ( match ( old_lexeme , other_lexeme ) ) {
Buffer_Edit edit ;
edit . str_start = 0 ;
edit . len = replace_string . size ;
edit . start = token_ptr - > start ;
edit . end = token_ptr - > start + token_ptr - > size ;
if ( edit_count < edit_max ) {
edits [ edit_count ] = edit ;
+ + edit_count ;
}
else {
goto doublebreak2 ;
}
}
}
} break ;
case CPP_TOKEN_BRACE_OPEN :
{
+ + nesting_level ;
} break ;
case CPP_TOKEN_BRACE_CLOSE :
{
if ( nesting_level = = 0 ) {
closed_correctly = 1 ;
goto doublebreak2 ;
}
else {
- - nesting_level ;
}
} break ;
}
}
still_looping = forward_stream_tokens ( & stream ) ;
} while ( still_looping ) ;
doublebreak2 : ;
if ( closed_correctly ) {
buffer_batch_edit ( app , & buffer , replace_string . str , replace_string . size ,
edits , edit_count , BatchEdit_Normal ) ;
}
2016-09-14 23:39:33 +00:00
}
2017-07-10 14:51:19 +00:00
}
2016-09-14 23:39:33 +00:00
}
}
}
}
2017-07-10 14:51:19 +00:00
end_temp_memory ( temp ) ;
2016-09-14 23:39:33 +00:00
}
2019-02-26 23:08:42 +00:00
typedef u32 Write_Explicit_Enum_Values_Mode ;
2017-11-29 23:00:14 +00:00
enum {
WriteExplicitEnumValues_Integers ,
WriteExplicitEnumValues_Flags ,
} ;
static void
write_explicit_enum_values_parameters ( Application_Links * app , Write_Explicit_Enum_Values_Mode mode ) {
2019-02-26 23:08:42 +00:00
u32 access = AccessOpen ;
2017-07-10 14:51:19 +00:00
View_Summary view = get_active_view ( app , access ) ;
Buffer_Summary buffer = get_buffer ( app , view . buffer_id , access ) ;
Partition * part = & global_part ;
Temp_Memory temp = begin_temp_memory ( part ) ;
Cpp_Get_Token_Result result ;
if ( buffer_get_token_index ( app , & buffer , view . cursor . pos , & result ) ) {
2019-02-21 06:58:34 +00:00
if ( ! result . in_whitespace_after_token ) {
2017-07-10 14:51:19 +00:00
Cpp_Token stream_space [ 32 ] ;
2019-02-14 04:21:52 +00:00
Stream_Tokens_DEP stream = { } ;
2017-07-10 14:51:19 +00:00
if ( init_stream_tokens ( & stream , app , & buffer , result . token_index , stream_space , 32 ) ) {
2019-02-26 23:08:42 +00:00
i32 token_index = result . token_index ;
2017-07-10 14:51:19 +00:00
Cpp_Token token = stream . tokens [ token_index ] ;
if ( token . type = = CPP_TOKEN_BRACE_OPEN ) {
2016-09-16 14:10:45 +00:00
+ + token_index ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 seeker_index = token_index ;
2019-02-14 04:21:52 +00:00
Stream_Tokens_DEP seek_stream = begin_temp_stream_token ( & stream ) ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
b32 closed_correctly = false ;
b32 still_looping = false ;
2016-09-16 14:10:45 +00:00
do {
2017-07-10 14:51:19 +00:00
for ( ; seeker_index < stream . end ; + + seeker_index ) {
Cpp_Token * token_seeker = stream . tokens + seeker_index ;
switch ( token_seeker - > type ) {
case CPP_TOKEN_BRACE_CLOSE :
closed_correctly = true ;
goto finished_seek ;
case CPP_TOKEN_BRACE_OPEN :
goto finished_seek ;
}
2016-09-16 14:10:45 +00:00
}
2017-07-10 14:51:19 +00:00
still_looping = forward_stream_tokens ( & stream ) ;
2016-09-16 14:10:45 +00:00
} while ( still_looping ) ;
2017-07-10 14:51:19 +00:00
finished_seek : ;
end_temp_stream_token ( & stream , seek_stream ) ;
if ( closed_correctly ) {
2019-02-26 23:08:42 +00:00
i32 count_estimate = 1 + ( seeker_index - token_index ) / 2 ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 edit_count = 0 ;
2017-07-10 14:51:19 +00:00
Buffer_Edit * edits = push_array ( part , Buffer_Edit , count_estimate ) ;
2019-02-14 04:21:52 +00:00
char * string_base = push_array ( part , char , 0 ) ;
2019-02-05 00:10:38 +00:00
String string = make_string ( string_base , 0 , part_remaining ( part ) ) ;
2017-07-10 14:51:19 +00:00
closed_correctly = false ;
still_looping = false ;
2019-02-26 23:08:42 +00:00
u32 value = 0 ;
2017-11-29 23:00:14 +00:00
if ( mode = = WriteExplicitEnumValues_Flags ) {
value = 1 ;
}
2017-07-10 14:51:19 +00:00
do {
for ( ; token_index < stream . end ; + + token_index ) {
Cpp_Token * token_ptr = stream . tokens + token_index ;
switch ( token_ptr - > type ) {
case CPP_TOKEN_IDENTIFIER :
{
2019-02-26 23:08:42 +00:00
i32 edit_start = token_ptr - > start + token_ptr - > size ;
i32 edit_stop = edit_start ;
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 edit_is_good = 0 ;
2017-07-10 14:51:19 +00:00
+ + token_index ;
do {
for ( ; token_index < stream . end ; + + token_index ) {
token_ptr = stream . tokens + token_index ;
switch ( token_ptr - > type ) {
case CPP_TOKEN_COMMA :
{
edit_stop = token_ptr - > start ;
edit_is_good = 1 ;
goto good_edit ;
} break ;
case CPP_TOKEN_BRACE_CLOSE :
{
edit_stop = token_ptr - > start ;
closed_correctly = 1 ;
edit_is_good = 1 ;
goto good_edit ;
} break ;
}
}
still_looping = forward_stream_tokens ( & stream ) ;
} while ( still_looping ) ;
good_edit : ;
if ( edit_is_good ) {
2019-02-26 23:08:42 +00:00
i32 str_pos = string . size ;
2017-07-10 14:51:19 +00:00
append ( & string , " = " ) ;
append_int_to_str ( & string , value ) ;
if ( closed_correctly ) {
append ( & string , " \n " ) ;
}
2017-11-29 23:00:14 +00:00
if ( mode = = WriteExplicitEnumValues_Integers ) {
+ + value ;
}
else if ( mode = = WriteExplicitEnumValues_Flags ) {
if ( value < ( 1 < < 31 ) ) {
value < < = 1 ;
}
}
2017-07-10 14:51:19 +00:00
2019-02-26 23:08:42 +00:00
i32 str_size = string . size - str_pos ;
2017-07-10 14:51:19 +00:00
Buffer_Edit edit ;
edit . str_start = str_pos ;
edit . len = str_size ;
edit . start = edit_start ;
edit . end = edit_stop ;
Assert ( edit_count < count_estimate ) ;
edits [ edit_count ] = edit ;
+ + edit_count ;
}
if ( ! edit_is_good | | closed_correctly ) {
goto finished ;
}
} break ;
case CPP_TOKEN_BRACE_CLOSE :
{
closed_correctly = 1 ;
goto finished ;
} break ;
}
}
still_looping = forward_stream_tokens ( & stream ) ;
} while ( still_looping ) ;
finished : ;
if ( closed_correctly ) {
buffer_batch_edit ( app , & buffer , string_base , string . size ,
edits , edit_count , BatchEdit_Normal ) ;
}
2017-06-28 15:15:54 +00:00
}
2016-09-14 23:39:33 +00:00
}
}
}
}
2017-07-10 14:51:19 +00:00
end_temp_memory ( temp ) ;
2016-09-14 23:39:33 +00:00
}
2017-11-29 23:00:14 +00:00
CUSTOM_COMMAND_SIG ( write_explicit_enum_values )
CUSTOM_DOC ( " If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in sequentially starting from zero. Existing values are overwritten. " )
{
write_explicit_enum_values_parameters ( app , WriteExplicitEnumValues_Integers ) ;
}
CUSTOM_COMMAND_SIG ( write_explicit_enum_flags )
CUSTOM_DOC ( " If the cursor is found to be on the '{' of an enum definition, the values of the enum will be filled in to give each a unique power of 2 value, starting from 1. Existing values are overwritten. " )
{
write_explicit_enum_values_parameters ( app , WriteExplicitEnumValues_Flags ) ;
}
//
// Rename All
//
struct Replace_Target {
Buffer_ID buffer_id ;
2019-02-26 23:08:42 +00:00
i32 start_pos ;
2017-11-29 23:00:14 +00:00
} ;
static void
2018-09-04 19:16:46 +00:00
replace_all_occurrences_parameters ( Application_Links * app , Heap * heap , Partition * part , String target_string , String new_string ) {
2017-11-29 23:00:14 +00:00
if ( target_string . size < = 0 ) return ;
2019-02-12 03:17:21 +00:00
global_history_edit_group_begin ( app ) ;
2019-02-26 23:08:42 +00:00
for ( b32 got_all_occurrences = false ;
2017-11-29 23:00:14 +00:00
! got_all_occurrences ; ) {
// Initialize a generic search all buffers
2018-11-20 08:18:54 +00:00
Search_Set set = { } ;
Search_Iter iter = { } ;
2018-09-04 19:16:46 +00:00
initialize_generic_search_all_buffers ( app , heap , & target_string , 1 , SearchFlag_MatchSubstring , 0 , 0 , & set , & iter ) ;
2017-11-29 23:00:14 +00:00
// Visit all locations and create replacement list
Temp_Memory temp = begin_temp_memory ( part ) ;
Replace_Target * targets = push_array ( part , Replace_Target , 0 ) ;
2019-02-26 23:08:42 +00:00
i32 target_count = 0 ;
2017-11-29 23:00:14 +00:00
got_all_occurrences = true ;
for ( Search_Match match = search_next_match ( app , & set , & iter ) ;
match . found_match ;
match = search_next_match ( app , & set , & iter ) ) {
2018-06-16 20:57:32 +00:00
Replace_Target * new_target = push_array ( part , Replace_Target , 1 ) ;
2017-11-29 23:00:14 +00:00
if ( new_target ! = 0 ) {
new_target - > buffer_id = match . buffer . buffer_id ;
new_target - > start_pos = match . start ;
+ + target_count ;
}
else {
if ( ! has_substr ( new_string , target_string ) ) {
got_all_occurrences = false ;
}
else {
print_message ( app , literal ( " Could not replace all occurrences, ran out of memory \n " ) ) ;
}
break ;
}
}
// Use replacement list to do replacements
2019-02-26 23:08:42 +00:00
i32 shift_per_replacement = new_string . size - target_string . size ;
i32 current_offset = 0 ;
i32 current_buffer_id = 0 ;
2018-06-16 20:57:32 +00:00
Replace_Target * target = targets ;
2019-02-26 23:08:42 +00:00
for ( i32 i = 0 ; i < target_count ; + + i , + + target ) {
2018-06-16 20:57:32 +00:00
if ( target - > buffer_id ! = current_buffer_id ) {
current_buffer_id = target - > buffer_id ;
current_offset = 0 ;
}
Buffer_Summary buffer = get_buffer ( app , target - > buffer_id , AccessOpen ) ;
2019-02-26 23:08:42 +00:00
i32 pos = target - > start_pos + current_offset ;
2018-06-16 20:57:32 +00:00
buffer_replace_range ( app , & buffer , pos , pos + target_string . size , new_string . str , new_string . size ) ;
current_offset + = shift_per_replacement ;
2017-11-29 23:00:14 +00:00
}
end_temp_memory ( temp ) ;
}
2019-02-12 03:17:21 +00:00
global_history_edit_group_end ( app ) ;
2017-11-29 23:00:14 +00:00
}
CUSTOM_COMMAND_SIG ( replace_all_occurrences )
CUSTOM_DOC ( " Queries the user for two strings, and replaces all occurrences of the first string with the second string in all open buffers. " )
{
Query_Bar replace ;
char replace_space [ 1024 ] ;
replace . prompt = make_lit_string ( " Replace (In All Buffers): " ) ;
replace . string = make_fixed_width_string ( replace_space ) ;
Query_Bar with ;
char with_space [ 1024 ] ;
with . prompt = make_lit_string ( " With: " ) ;
with . string = make_fixed_width_string ( with_space ) ;
if ( ! query_user_string ( app , & replace ) ) return ;
if ( replace . string . size = = 0 ) return ;
if ( ! query_user_string ( app , & with ) ) return ;
String r = replace . string ;
String w = with . string ;
2018-09-04 19:16:46 +00:00
replace_all_occurrences_parameters ( app , & global_heap , & global_part , r , w ) ;
2017-11-29 23:00:14 +00:00
}
2019-02-26 23:08:42 +00:00
extern " C " i32
get_bindings ( void * data , i32 size ) {
2017-07-10 14:51:19 +00:00
Bind_Helper context_ = begin_bind_helper ( data , size ) ;
Bind_Helper * context = & context_ ;
2019-02-24 07:22:16 +00:00
set_hook ( context , hook_buffer_viewer_update , default_view_adjust ) ;
2017-07-10 14:51:19 +00:00
set_start_hook ( context , default_start ) ;
set_open_file_hook ( context , default_file_settings ) ;
set_new_file_hook ( context , default_new_file ) ;
set_save_file_hook ( context , default_file_save ) ;
set_end_file_hook ( context , end_file_close_jump_list ) ;
set_input_filter ( context , default_suppress_mouse_filter ) ;
set_command_caller ( context , default_command_caller ) ;
2018-09-24 22:19:45 +00:00
set_render_caller ( context , default_render_caller ) ;
2017-07-10 14:51:19 +00:00
set_scroll_rule ( context , smooth_scroll_rule ) ;
2017-11-30 23:25:49 +00:00
set_buffer_name_resolver ( context , default_buffer_name_resolution ) ;
2019-02-25 23:42:13 +00:00
set_modify_color_table_hook ( context , default_modify_color_table ) ;
2017-07-10 14:51:19 +00:00
default_keys ( context ) ;
// NOTE(allen|a4.0.6): Command maps can be opened more than
// once so that you can extend existing maps very easily.
// You can also use the helper "restart_map" instead of
// begin_map to clear everything that was in the map and
// bind new things instead.
begin_map ( context , mapid_file ) ;
2018-11-27 18:50:39 +00:00
bind ( context , key_back , MDFR_ALT | MDFR_CTRL , kill_rect ) ;
bind ( context , ' ' , MDFR_ALT | MDFR_CTRL , multi_line_edit ) ;
2017-07-10 14:51:19 +00:00
bind ( context , key_page_up , MDFR_ALT , miblo_increment_time_stamp ) ;
bind ( context , key_page_down , MDFR_ALT , miblo_decrement_time_stamp ) ;
bind ( context , key_home , MDFR_ALT , miblo_increment_time_stamp_minute ) ;
bind ( context , key_end , MDFR_ALT , miblo_decrement_time_stamp_minute ) ;
2017-11-29 23:00:14 +00:00
bind ( context , ' b ' , MDFR_CTRL , multi_paste_interactive_quick ) ;
bind ( context , ' A ' , MDFR_CTRL , replace_all_occurrences ) ;
2017-07-10 14:51:19 +00:00
end_map ( context ) ;
begin_map ( context , default_code_map ) ;
bind ( context , key_insert , MDFR_CTRL , write_explicit_enum_values ) ;
2017-11-29 23:00:14 +00:00
bind ( context , key_insert , MDFR_CTRL | MDFR_SHIFT , write_explicit_enum_flags ) ;
2017-07-10 14:51:19 +00:00
bind ( context , ' p ' , MDFR_ALT , rename_parameter ) ;
end_map ( context ) ;
2019-02-26 23:08:42 +00:00
return ( end_bind_helper ( context ) ) ;
2016-05-12 02:15:54 +00:00
}
// BOTTOM