X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=vg%2Fvg_console.h;h=c10abd653fb1cb3fc23f611ddaef545c459895fd;hb=b2ed006db6dc46c57b163f572391ac74a94f4a4f;hp=94de7d205db4c8d46b65eeac44daddf4de837219;hpb=e68b08d8feb89f8e0f3624f9bc92fdc283f4875d;p=fishladder.git diff --git a/vg/vg_console.h b/vg/vg_console.h index 94de7d2..c10abd6 100644 --- a/vg/vg_console.h +++ b/vg/vg_console.h @@ -23,6 +23,13 @@ struct vg_console } *convars; + struct vg_cmd + { + int (*function)( int argc, char const *argv[] ); + const char *name; + } + *functions; + char lines[16][512]; u32 current, len; @@ -35,7 +42,7 @@ struct vg_console int enabled; int scale; } -vg_console = { .scale = 1 }; +vg_console = { .scale = 2 }; static int vg_console_enabled(void) { return vg_console.enabled; } @@ -44,6 +51,11 @@ static void vg_convar_push( struct vg_convar cv ) arrpush( vg_console.convars, cv ); } +static void vg_function_push( struct vg_cmd cmd ) +{ + arrpush( vg_console.functions, cmd ); +} + static void vg_console_draw( void ) { if( !vg_console.enabled ) @@ -68,7 +80,7 @@ static void vg_console_draw( void ) for( int i = 0; i < vg_console.len; i ++ ) { - ui_text( &ui_global_ctx, vg_console.lines[ptr], vg_console.scale, 0 ); + ui_text( &ui_global_ctx, vg_console.lines[ptr], vg_console.scale*2, 0 ); ui_global_ctx.cursor[1] -= 8*vg_console.scale; ptr --; @@ -85,13 +97,13 @@ static void vg_console_draw( void ) { ui_fill_rect( &ui_global_ctx, ui_global_ctx.cursor, 0x77333333 ); - ui_text( &ui_global_ctx, vg_console.input, vg_console.scale, 0 ); + ui_text( &ui_global_ctx, vg_console.input, vg_console.scale*2, 0 ); int start = VG_MIN( vg_console.cursor_pos, vg_console.cursor_user ), end = VG_MAX( vg_console.cursor_pos, vg_console.cursor_user ); - ui_global_ctx.cursor[0] = start * 6 * vg_console.scale; - ui_global_ctx.cursor[2] = (start == end? 1: (end-start)) * 6 * vg_console.scale; + ui_global_ctx.cursor[0] = (start * ui_glyph_spacing_x * vg_console.scale)/2 + 2; + ui_global_ctx.cursor[2] = (start == end? 0.2f: (float)(end-start)) * (float)ui_glyph_spacing_x * (float)vg_console.scale * 0.5f; ui_fill_rect( &ui_global_ctx, ui_global_ctx.cursor, 0x66ffffff ); } @@ -109,6 +121,25 @@ void vg_console_println( const char *str ) vg_console.current = 0; } +static int vg_console_list( int argc, char const *argv[] ) +{ + for( int i = 0; i < arrlen( vg_console.functions ); i ++ ) + { + struct vg_cmd *cmd = &vg_console.functions[ i ]; + vg_info( "* %s\n", cmd->name ); + } + + vg_info( "* snowsound\n" ); + + for( int i = 0; i < arrlen( vg_console.convars ); i ++ ) + { + struct vg_convar *cv = &vg_console.convars[ i ]; + vg_info( "%s\n", cv->name ); + } + + return 0; +} + static void vg_console_init(void) { vg_log_callback = vg_console_println; @@ -116,66 +147,77 @@ static void vg_console_init(void) vg_convar_push( (struct vg_convar) { .name = "console_scale", .data = &vg_console.scale, .data_type = k_convar_dtype_i32, .opt_i32 = { .clamp = 1, .min = 1, .max = 7 } } ); + + vg_function_push( (struct vg_cmd){ + .name = "list", + .function = vg_console_list + }); } static void vg_console_free(void) { arrfree( vg_console.convars ); + arrfree( vg_console.functions ); } -// Returns advance amount -static int console_token_read( char *buf, int buf_len, const char *src ) +static void execute_console_input( const char *cmd ) { - int wait_for_next = 0; - - for( int i = 0; i < buf_len; i ++ ) + char temp[512]; + char const *args[9]; + int arg_count = 0; + + int in_token = 0; + + // Split string into tokens + for( int i = 0; i < vg_list_size( temp ); i ++ ) { - if( src[i] ) + if( cmd[i] ) { - if( isspace( src[i] ) ) + if( isspace( cmd[i] ) ) { - buf[i] = '\0'; - wait_for_next = 1; + temp[i] = '\0'; + in_token = 0; + + if( arg_count == vg_list_size( args ) ) + break; } - else + else { - if( wait_for_next ) - return i; + temp[i] = cmd[i]; - buf[i] = src[i]; - } + if( !in_token ) + { + args[ arg_count ++ ] = temp + i; + in_token = 1; + } + } } else { - buf[i] = '\0'; - return i; + temp[i] = '\0'; + break; } } - return 0; -} - -static void execute_console_input( const char *cmd ) -{ - char temp[512]; - int cmd_pos = console_token_read( temp, 512, cmd ); + if( arg_count == 0 ) + return; int data_int; for( int i = 0; i < arrlen( vg_console.convars ); i ++ ) { struct vg_convar *cv = &vg_console.convars[ i ]; - if( !strcmp( cv->name, temp ) ) + if( !strcmp( cv->name, args[0] ) ) { - // Matched, try get value - if( console_token_read( temp, 512, cmd+cmd_pos ) ) + // Cvar Matched, try get value + if( arg_count >= 2 ) { switch( cv->data_type ) { case k_convar_dtype_u32: case k_convar_dtype_i32: - data_int = atoi( temp ); + data_int = atoi( args[1] ); *((int *)cv->data) = cv->opt_i32.clamp? VG_MIN( VG_MAX(data_int, cv->opt_i32.min), cv->opt_i32.max ): data_int; break; @@ -196,7 +238,19 @@ static void execute_console_input( const char *cmd ) } } - vg_error( "No command/variable named '%s'\n", temp ); + // Try commands + for( int i = 0; i < arrlen( vg_console.functions ); i ++ ) + { + struct vg_cmd *cmd = &vg_console.functions[ i ]; + if( !strcmp( cmd->name, args[0] ) ) + { + // Call function + cmd->function( arg_count-1, args+1 ); + return; + } + } + + vg_error( "No command/variable named '%s'. Use 'list' to view all\n", args[0] ); } // =============================================================================================================================