1 /* Copyright (C) 2021-2024 Harry Godden (hgn) - All Rights Reserved */
6 * 1. layout is defined by subdividing
7 * 2. a parent node should never be resized by the content after creation
8 * 3. when the ui is in an interactive state, no controls should ever move
9 * 4. controls directly reference a memory location and use that as their
11 * 5. a maximum of ONE control per memory location can be drawn at any given
18 #include "vg_engine.h"
20 #include "vg_shader.h"
23 ui_px k_ui_widget_height
= 28,
27 #include "vg/vg_default_font.gc"
29 struct vg_imgui vg_ui
= {
31 [ k_ui_bg
+0 ] = UI_RGB( 0x1d2021 ),
32 [ k_ui_bg
+1 ] = UI_RGB( 0x282828 ),
33 [ k_ui_bg
+2 ] = UI_RGB( 0x3c3836 ),
34 [ k_ui_bg
+3 ] = UI_RGB( 0x504945 ),
35 [ k_ui_bg
+4 ] = UI_RGB( 0x665c54 ),
36 [ k_ui_bg
+5 ] = UI_RGB( 0x7c6f64 ),
37 [ k_ui_bg
+6 ] = UI_RGB( 0x928374 ),
38 [ k_ui_bg
+7 ] = UI_RGB( 0xa89984 ),
40 [ k_ui_fg
+0 ] = UI_RGB( 0xebdbb2 ),
41 [ k_ui_fg
+1 ] = UI_RGB( 0xfbf1c7 ),
42 [ k_ui_fg
+2 ] = UI_RGB( 0xd5c4a1 ),
43 [ k_ui_fg
+3 ] = UI_RGB( 0xbdae93 ),
44 [ k_ui_fg
+4 ] = UI_RGB( 0xa89984 ),
45 [ k_ui_fg
+5 ] = UI_RGB( 0x000000 ),
46 [ k_ui_fg
+6 ] = UI_RGB( 0x000000 ),
47 [ k_ui_fg
+7 ] = UI_RGB( 0x000000 ),
49 [ k_ui_red
] = UI_RGB( 0xcc241d ),
50 [ k_ui_orange
] = UI_RGB( 0xd65d0e ),
51 [ k_ui_yellow
] = UI_RGB( 0xd79921 ),
52 [ k_ui_green
] = UI_RGB( 0x98971a ),
53 [ k_ui_aqua
] = UI_RGB( 0x689d6a ),
54 [ k_ui_blue
] = UI_RGB( 0x458588 ),
55 [ k_ui_purple
] = UI_RGB( 0xb16286 ),
56 [ k_ui_gray
] = UI_RGB( 0x928374 ),
57 [ k_ui_red
+ k_ui_brighter
] = UI_RGB( 0xfb4934 ),
58 [ k_ui_orange
+ k_ui_brighter
] = UI_RGB( 0xfe8019 ),
59 [ k_ui_yellow
+ k_ui_brighter
] = UI_RGB( 0xfabd2f ),
60 [ k_ui_green
+ k_ui_brighter
] = UI_RGB( 0xb8bb26 ),
61 [ k_ui_aqua
+ k_ui_brighter
] = UI_RGB( 0x8ec07c ),
62 [ k_ui_blue
+ k_ui_brighter
] = UI_RGB( 0x83a598 ),
63 [ k_ui_purple
+ k_ui_brighter
] = UI_RGB( 0xd3869b ),
64 [ k_ui_gray
+ k_ui_brighter
] = UI_RGB( 0xa89984 ),
66 .font
= &vgf_default_small
,
67 .colour
= {1.0f
,1.0f
,1.0f
,1.0f
},
68 .bg_inverse_ratio
= {1,1}
71 static struct vg_shader _shader_ui
={
72 .name
= "[vg] ui - transparent",
76 "layout (location=0) in vec2 a_co;"
77 "layout (location=1) in vec2 a_uv;"
78 "layout (location=2) in vec4 a_colour;"
80 "uniform vec2 uBGInverseRatio;"
81 "uniform vec2 uInverseFontSheet;"
83 "out vec4 aTexCoords;"
87 "vec4 proj_pos = vec4( uPv * vec3( a_co, 1.0 ), 1.0 );"
88 "gl_Position = proj_pos;"
89 "aTexCoords = vec4( a_uv * uInverseFontSheet, "
90 " (proj_pos.xy*0.5+0.5) * uBGInverseRatio );"
97 "uniform sampler2D uTexGlyphs;"
98 "uniform sampler2D uTexBG;"
99 "uniform vec4 uColour;"
100 "uniform float uSpread;"
101 "out vec4 FragColor;"
103 "in vec4 aTexCoords;"
106 "vec2 rand_hash22( vec2 p ){"
107 "vec3 p3 = fract(vec3(p.xyx) * 213.8976123);"
108 "p3 += dot(p3, p3.yzx+19.19);"
109 "return fract(vec2((p3.x + p3.y)*p3.z, (p3.x+p3.z)*p3.y));"
113 "vec4 diffuse = aColour;"
115 "vec4 avg = vec4(0.0);"
117 "if( aColour.a == 0.0 ){"
119 "avg.a = texture( uTexGlyphs, aTexCoords.xy ).r;"
122 "if( uSpread > 0.0001 ){"
123 "for( int i=0; i<4; i ++ ){"
124 "vec2 spread = rand_hash22(aTexCoords.zw+vec2(float(i)));"
125 "avg += texture( uTexBG, aTexCoords.zw + (spread-0.5)*uSpread );"
129 "avg.rgb = mix( avg.rgb, aColour.rgb, aColour.a );"
136 "FragColor = avg * uColour;"
141 static struct vg_shader _shader_ui_image
= {
142 .name
= "[vg] ui_image",
147 "layout (location=0) in vec2 a_co;"
148 "layout (location=1) in vec2 a_uv;"
149 "layout (location=2) in vec4 a_colour;"
152 "out vec2 aTexCoords;"
158 "gl_Position = vec4( uPv * vec3( a_co, 1.0 ), 1.0 );"
159 "aTexCoords = a_uv * 0.00390625;"
160 "aColour = a_colour;"
169 "uniform sampler2D uTexImage;"
170 "uniform vec4 uColour;"
171 "out vec4 FragColor;"
173 "in vec2 aTexCoords;"
179 "vec4 colour = texture( uTexImage, aTexCoords );"
180 "FragColor = colour * uColour;"
185 static struct vg_shader _shader_ui_hsv
= {
186 .name
= "[vg] ui_hsv",
190 "layout (location=0) in vec2 a_co;"
191 "layout (location=1) in vec2 a_uv;"
192 "layout (location=2) in vec4 a_colour;"
195 "out vec2 aTexCoords;"
201 "gl_Position = vec4( uPv * vec3( a_co, 1.0 ), 1.0 );"
202 "aTexCoords = a_uv * 0.00390625;"
203 "aColour = a_colour;"
212 "uniform float uHue;"
213 "out vec4 FragColor;"
215 "in vec2 aTexCoords;"
221 "vec3 c = vec3( uHue, aTexCoords );"
222 "vec4 K = vec4(1.0,2.0/3.0,1.0/3.0,3.0);"
223 "vec3 p = abs(fract(c.xxx+K.xyz)*6.0 - K.www);"
224 "vec3 colour = c.z*mix(K.xxx,clamp(p-K.xxx,0.0,1.0),c.y);"
225 "FragColor = vec4( colour, 1.0 );"
230 void vg_ui_init(void)
232 if( !vg_shader_compile( &_shader_ui
) ||
233 !vg_shader_compile( &_shader_ui_image
) ||
234 !vg_shader_compile( &_shader_ui_hsv
) ){
235 vg_fatal_error( "Failed to compile ui shader" );
240 * ----------------------------------------
243 vg_ui
.max_indices
= 20000;
244 vg_ui
.max_verts
= 30000;
246 /* Generate the buffer we are gonna be drawing to */
247 glGenVertexArrays( 1, &vg_ui
.vao
);
248 glGenBuffers( 1, &vg_ui
.vbo
);
249 glGenBuffers( 1, &vg_ui
.ebo
);
251 glBindVertexArray( vg_ui
.vao
);
252 glBindBuffer( GL_ARRAY_BUFFER
, vg_ui
.vbo
);
254 glBufferData( GL_ARRAY_BUFFER
,
255 vg_ui
.max_verts
* sizeof( struct ui_vert
),
256 NULL
, GL_DYNAMIC_DRAW
);
257 glBindVertexArray( vg_ui
.vao
);
259 glBindBuffer( GL_ELEMENT_ARRAY_BUFFER
, vg_ui
.ebo
);
260 glBufferData( GL_ELEMENT_ARRAY_BUFFER
,
261 vg_ui
.max_indices
* sizeof( u16
), NULL
, GL_DYNAMIC_DRAW
);
266 u32
const stride
= sizeof( struct ui_vert
);
269 glVertexAttribPointer( 0, 2, GL_SHORT
, GL_FALSE
, stride
,
270 (void *)offsetof( struct ui_vert
, co
) );
271 glEnableVertexAttribArray( 0 );
274 glVertexAttribPointer( 1, 2, GL_UNSIGNED_SHORT
, GL_FALSE
, stride
,
275 (void *)offsetof( struct ui_vert
, uv
) );
276 glEnableVertexAttribArray( 1 );
279 glVertexAttribPointer( 2, 4, GL_UNSIGNED_BYTE
, GL_TRUE
, stride
,
280 (void *)offsetof( struct ui_vert
, colour
) );
281 glEnableVertexAttribArray( 2 );
285 /* Alloc RAM default context */
286 u32 vert_size
= vg_ui
.max_verts
*sizeof(struct ui_vert
),
287 inds_size
= vg_align8( vg_ui
.max_indices
*sizeof(u16
) );
289 vg_ui
.vertex_buffer
= vg_linear_alloc( vg_mem
.rtmemory
, vert_size
);
290 vg_ui
.indice_buffer
= vg_linear_alloc( vg_mem
.rtmemory
, inds_size
);
293 * -----------------------------------------------------
296 /* Load default font */
298 vg_font_sheet
*sheet
= &vg_default_font_sheet
;
300 total
= sheet
->w
*sheet
->h
,
303 vg_linear_clear( vg_mem
.scratch
);
304 u8
*image
= vg_linear_alloc( vg_mem
.scratch
, total
);
306 while( pixels
< total
)
308 for( int b
= 31; b
>= 0; b
-- )
310 image
[ pixels
++ ] = (sheet
->bitmap
[data
] & (0x1u
<< b
))? 0xffu
: 0x00u
;
312 if( pixels
>= total
)
321 vg_ui
.inverse_font_sheet
[0] = 1.0/(f64
)sheet
->w
;
322 vg_ui
.inverse_font_sheet
[1] = 1.0/(f64
)sheet
->h
;
324 glGenTextures( 1, &vg_ui
.tex_glyphs
);
325 glBindTexture( GL_TEXTURE_2D
, vg_ui
.tex_glyphs
);
326 glTexImage2D( GL_TEXTURE_2D
, 0, GL_R8
, sheet
->w
, sheet
->h
, 0,
327 GL_RED
, GL_UNSIGNED_BYTE
, image
);
330 glTexParameteri( GL_TEXTURE_2D
, GL_TEXTURE_WRAP_S
, GL_CLAMP_TO_EDGE
);
331 glTexParameteri( GL_TEXTURE_2D
, GL_TEXTURE_WRAP_T
, GL_CLAMP_TO_EDGE
);
332 glTexParameteri( GL_TEXTURE_2D
, GL_TEXTURE_MIN_FILTER
, GL_NEAREST
);
333 glTexParameteri( GL_TEXTURE_2D
, GL_TEXTURE_MAG_FILTER
, GL_NEAREST
);
337 * ---------------------------------------------------------------
340 vg_ui
.cursor_map
[ k_ui_cursor_default
] =
341 SDL_CreateSystemCursor( SDL_SYSTEM_CURSOR_ARROW
);
342 vg_ui
.cursor_map
[ k_ui_cursor_hand
] =
343 SDL_CreateSystemCursor( SDL_SYSTEM_CURSOR_HAND
);
344 vg_ui
.cursor_map
[ k_ui_cursor_ibeam
] =
345 SDL_CreateSystemCursor( SDL_SYSTEM_CURSOR_IBEAM
);
348 void rect_copy( ui_rect a
, ui_rect b
){
349 for( int i
=0; i
<4; i
++ )
353 void ui_flush( enum ui_shader shader
, f32 w
, f32 h
){
354 u32 vertex_offset
= vg_ui
.vert_start
*sizeof(ui_vert
),
355 vertex_count
= vg_ui
.cur_vert
-vg_ui
.vert_start
,
356 vertex_size
= vertex_count
*sizeof(ui_vert
),
358 indice_offset
= vg_ui
.indice_start
*sizeof(u16
),
359 indice_count
= vg_ui
.cur_indice
-vg_ui
.indice_start
,
360 indice_size
= indice_count
* sizeof(u16
);
362 if( !vertex_size
|| !indice_size
)
365 glBindVertexArray( vg_ui
.vao
);
366 glBindBuffer( GL_ARRAY_BUFFER
, vg_ui
.vbo
);
367 glBufferSubData( GL_ARRAY_BUFFER
, vertex_offset
, vertex_size
,
368 vg_ui
.vertex_buffer
+vg_ui
.vert_start
);
370 glBindBuffer( GL_ELEMENT_ARRAY_BUFFER
, vg_ui
.ebo
);
371 glBufferSubData( GL_ELEMENT_ARRAY_BUFFER
, indice_offset
, indice_size
,
372 vg_ui
.indice_buffer
+vg_ui
.indice_start
);
374 glDisable( GL_DEPTH_TEST
);
375 glEnable( GL_BLEND
);
376 glBlendFunc( GL_SRC_ALPHA
, GL_ONE_MINUS_SRC_ALPHA
);
377 glBlendEquation( GL_FUNC_ADD
);
378 glDisable( GL_CULL_FACE
);
380 m3x3f view
= M3X3_IDENTITY
;
381 m3x3_translate( view
, (v3f
){ -1.0f
, 1.0f
, 0.0f
} );
382 m3x3_scale( view
, (v3f
){ 1.0f
/(w
*0.5f
),
383 -1.0f
/(h
*0.5f
), 1.0f
} );
385 if( shader
== k_ui_shader_colour
){
386 glUseProgram( _shader_ui
.id
);
388 glUniformMatrix3fv( glGetUniformLocation( _shader_ui
.id
, "uPv" ), 1,
389 GL_FALSE
, (float *)view
);
390 glUniform4fv( glGetUniformLocation( _shader_ui
.id
, "uColour" ), 1,
393 glActiveTexture( GL_TEXTURE0
);
394 glBindTexture( GL_TEXTURE_2D
, vg_ui
.tex_glyphs
);
395 glUniform1i( glGetUniformLocation( _shader_ui
.id
, "uTexGlyphs" ), 0 );
397 glActiveTexture( GL_TEXTURE1
);
398 glBindTexture( GL_TEXTURE_2D
, vg_ui
.tex_bg
);
399 glUniform1i( glGetUniformLocation( _shader_ui
.id
, "uTexBG" ), 1 );
400 glUniform1f( glGetUniformLocation( _shader_ui
.id
, "uSpread" ),
402 glUniform2fv( glGetUniformLocation( _shader_ui
.id
, "uBGInverseRatio" ),
403 1, vg_ui
.bg_inverse_ratio
);
404 glUniform2fv( glGetUniformLocation( _shader_ui
.id
, "uInverseFontSheet" ),
405 1, vg_ui
.inverse_font_sheet
);
407 else if( shader
== k_ui_shader_image
){
408 glUseProgram( _shader_ui_image
.id
);
409 glUniformMatrix3fv( glGetUniformLocation( _shader_ui_image
.id
, "uPv" ), 1,
410 GL_FALSE
, (float *)view
);
411 glUniform1i( glGetUniformLocation(_shader_ui_image
.id
,"uTexImage"), 0 );
412 glUniform4fv( glGetUniformLocation( _shader_ui_image
.id
, "uColour" ), 1,
415 else if( shader
== k_ui_shader_hsv
){
416 glUseProgram( _shader_ui_hsv
.id
);
417 glUniformMatrix3fv( glGetUniformLocation( _shader_ui_hsv
.id
, "uPv" ), 1,
418 GL_FALSE
, (float *)view
);
419 glUniform1f( glGetUniformLocation(_shader_ui_hsv
.id
,"uHue"), vg_ui
.hue
);
422 vg_fatal_error( "Invalid UI shader (%d)\n", shader
);
424 glDrawElements( GL_TRIANGLES
, indice_count
, GL_UNSIGNED_SHORT
,
425 (void *)(vg_ui
.indice_start
*sizeof(u16
)) );
427 glDisable( GL_BLEND
);
429 vg_ui
.indice_start
= vg_ui
.cur_indice
;
430 vg_ui
.vert_start
= vg_ui
.cur_vert
;
433 struct ui_vert
*ui_fill_rect( ui_rect rect
, u32 colour
, ui_px uv
[4] )
435 /* this if far from ideal but stops us from crashing */
436 if( (vg_ui
.cur_vert
+ 4 > vg_ui
.max_verts
) ||
437 (vg_ui
.cur_indice
+ 6 > vg_ui
.max_indices
))
439 return &vg_ui
.vertex_buffer
[0];
442 struct ui_vert
*vertices
= &vg_ui
.vertex_buffer
[ vg_ui
.cur_vert
];
443 u16
*indices
= &vg_ui
.indice_buffer
[ vg_ui
.cur_indice
];
445 for( int i
=0; i
<4; i
++ )
447 vertices
[i
].colour
= colour
;
450 vertices
[0].co
[0] = rect
[0];
451 vertices
[0].co
[1] = rect
[1];
452 vertices
[0].uv
[0] = uv
[0];
453 vertices
[0].uv
[1] = uv
[1];
454 vertices
[1].co
[0] = rect
[0]+rect
[2];
455 vertices
[1].co
[1] = rect
[1];
456 vertices
[1].uv
[0] = uv
[2];
457 vertices
[1].uv
[1] = uv
[1];
458 vertices
[2].co
[0] = rect
[0]+rect
[2];
459 vertices
[2].co
[1] = rect
[1]+rect
[3];
460 vertices
[2].uv
[0] = uv
[2];
461 vertices
[2].uv
[1] = uv
[3];
462 vertices
[3].co
[0] = rect
[0];
463 vertices
[3].co
[1] = rect
[1]+rect
[3];
464 vertices
[3].uv
[0] = uv
[0];
465 vertices
[3].uv
[1] = uv
[3];
466 u16 ind_start
= vg_ui
.cur_vert
;
468 u16 start
= vg_ui
.cur_vert
;
469 u32 mesh
[] = { 0,2,1, 0,3,2 };
471 for( u32 i
=0; i
<vg_list_size(mesh
); i
++ )
473 indices
[i
] = start
+mesh
[i
];
476 vg_ui
.cur_indice
+= 6;
482 struct ui_vert
*ui_fill( ui_rect rect
, u32 colour
)
484 return ui_fill_rect( rect
, colour
, (ui_px
[4]){ 4,4,4,4 } );
487 void ui_outline( ui_rect rect
, ui_px thickness
, u32 colour
, u32 mask
)
489 /* this if far from ideal but stops us from crashing */
490 if( (vg_ui
.cur_vert
+ 8 > vg_ui
.max_verts
) ||
491 (vg_ui
.cur_indice
+ 24 > vg_ui
.max_indices
))
494 struct ui_vert
*vertices
= &vg_ui
.vertex_buffer
[ vg_ui
.cur_vert
];
495 u16
*indices
= &vg_ui
.indice_buffer
[ vg_ui
.cur_indice
];
497 for( int i
=0; i
<8; i
++ ){
498 vertices
[i
].uv
[0] = 4;
499 vertices
[i
].uv
[1] = 4;
500 vertices
[i
].colour
= colour
;
503 vertices
[0].co
[0] = rect
[0];
504 vertices
[0].co
[1] = rect
[1];
505 vertices
[1].co
[0] = rect
[0]+rect
[2];
506 vertices
[1].co
[1] = rect
[1];
507 vertices
[2].co
[0] = rect
[0]+rect
[2];
508 vertices
[2].co
[1] = rect
[1]+rect
[3];
509 vertices
[3].co
[0] = rect
[0];
510 vertices
[3].co
[1] = rect
[1]+rect
[3];
511 vertices
[4].co
[0] = vertices
[0].co
[0]-thickness
;
512 vertices
[4].co
[1] = vertices
[0].co
[1]-thickness
;
513 vertices
[5].co
[0] = vertices
[1].co
[0]+thickness
;
514 vertices
[5].co
[1] = vertices
[1].co
[1]-thickness
;
515 vertices
[6].co
[0] = vertices
[2].co
[0]+thickness
;
516 vertices
[6].co
[1] = vertices
[2].co
[1]+thickness
;
517 vertices
[7].co
[0] = vertices
[3].co
[0]-thickness
;
518 vertices
[7].co
[1] = vertices
[3].co
[1]+thickness
;
520 u16 start
= vg_ui
.cur_vert
;
521 u32 mesh
[] = { 0,5,4, 0,1,5, 1,6,5, 1,2,6, 2,7,6, 2,3,7, 3,4,7, 3,0,4 };
524 mask
= UI_TOP
|UI_LEFT
|UI_BOTTOM
|UI_RIGHT
;
527 for( u32 i
=0; i
<vg_list_size(mesh
)/6; i
++ ){
528 if( (0x1<<i
) & mask
){
529 for( u32 j
=0; j
<6; j
++ )
530 indices
[c
++] = start
+mesh
[i
*6+j
];
534 vg_ui
.cur_indice
+= c
;
538 void ui_split( ui_rect rect
, enum ui_axis other
, ui_px width
, ui_px gap
,
539 ui_rect l
, ui_rect r
){
540 enum ui_axis dir
= other
^ 0x1;
542 if( width
< 0 ) width
= rect
[ 2+dir
] + width
;
545 rect_copy( rect
, temp
);
547 l
[ dir
] = temp
[ dir
];
548 r
[ dir
] = temp
[ dir
] + width
+ (gap
/2);
549 l
[ other
] = temp
[ other
];
550 r
[ other
] = temp
[ other
];
551 l
[ 2+dir
] = width
- (gap
/2);
552 r
[ 2+dir
] = temp
[ 2+dir
] - width
- (gap
/2);
553 l
[ 2+other
] = temp
[ 2+other
];
554 r
[ 2+other
] = temp
[ 2+other
];
557 void ui_rect_center( ui_rect parent
, ui_rect rect
)
559 rect
[0] = parent
[0] + (parent
[2]-rect
[2])/2;
560 rect
[1] = parent
[1] + (parent
[3]-rect
[3])/2;
563 void ui_fit_item( ui_rect rect
, ui_px size
[2], ui_rect d
)
565 i32 rp
= (i32
)rect
[2] * (i32
)size
[1],
566 rc
= (i32
)size
[0] * (i32
)rect
[3];
568 enum ui_axis dir
, other
;
569 if( rc
> rp
) dir
= k_ui_axis_h
;
570 else dir
= k_ui_axis_v
;
573 d
[2+dir
] = rect
[2+dir
];
574 d
[2+other
] = (rect
[2+dir
] * size
[other
]) / size
[dir
];
576 ui_rect_center( rect
, d
);
579 void ui_split_ratio( ui_rect rect
, enum ui_axis dir
, float ratio
,
580 ui_px gap
, ui_rect l
, ui_rect r
)
582 ui_px width
= (float)rect
[ 2+(dir
^0x1) ] * ratio
;
583 ui_split( rect
, dir
, width
, gap
, l
, r
);
586 void ui_rect_pad( ui_rect rect
, ui_px pad
[2] )
594 ui_px
ui_text_line_width( const char *str
)
597 const char *_c
= str
;
600 while( (c
= *(_c
++)) ){
601 if( c
>= 32 ) length
++;
602 else if( c
== '\n' ) break;
605 return length
* vg_ui
.font
->sx
;
608 ui_px
ui_text_string_height( const char *str
)
611 const char *_c
= str
;
614 while( (c
= *(_c
++)) )
616 if( c
== '\n' ) height
++;
619 return height
* vg_ui
.font
->sy
;
622 ui_px
ui_text_aligned_x( const char *str
, ui_rect rect
, ui_px scale
,
623 enum ui_align align
)
625 enum ui_align lwr
= k_ui_align_lwr
& align
;
626 if( lwr
== k_ui_align_left
){
630 ui_px width
= ui_text_line_width( str
) * scale
;
632 if( lwr
== k_ui_align_right
)
633 return rect
[0] + rect
[2]-width
;
635 return rect
[0] + (rect
[2]-width
)/2;
639 static ui_px
ui_min( ui_px a
, ui_px b
){ return a
<b
?a
:b
; }
640 static ui_px
ui_max( ui_px a
, ui_px b
){ return a
>b
?a
:b
; }
641 static ui_px
ui_clamp( ui_px a
, ui_px min
, ui_px max
){
642 return ui_min( max
, ui_max( a
, min
) );
645 int ui_clip( ui_rect parent
, ui_rect child
, ui_rect clipped
)
647 ui_px parent_max
[2], child_max
[2];
648 parent_max
[0] = parent
[0]+parent
[2];
649 parent_max
[1] = parent
[1]+parent
[3];
650 child_max
[0] = child
[0]+child
[2];
651 child_max
[1] = child
[1]+child
[3];
653 clipped
[0] = ui_clamp( child
[0], parent
[0], parent_max
[0] );
654 clipped
[1] = ui_clamp( child
[1], parent
[1], parent_max
[1] );
655 clipped
[2] = ui_clamp( child_max
[0], parent
[0], parent_max
[0] );
656 clipped
[3] = ui_clamp( child_max
[1], parent
[1], parent_max
[1] );
658 if( clipped
[0] == clipped
[2] ||
659 clipped
[1] == clipped
[3] )
662 clipped
[2] -= clipped
[0];
663 clipped
[3] -= clipped
[1];
668 int ui_inside_rect( ui_rect rect
, ui_px co
[2] )
670 if( co
[0] >= rect
[0] &&
672 co
[0] < rect
[0]+rect
[2] &&
673 co
[1] < rect
[1]+rect
[3] ){
680 int ui_click_down( u32 mask
)
682 if( vg_ui
.ignore_input_frames
) return 0;
683 if( (vg_ui
.mouse_state
[0] & mask
) &&
684 !(vg_ui
.mouse_state
[1] & mask
) )
690 int ui_clicking( u32 mask
)
692 if( vg_ui
.ignore_input_frames
) return 0;
693 return vg_ui
.mouse_state
[0] & mask
;
696 int ui_click_up( u32 mask
)
698 if( vg_ui
.ignore_input_frames
) return 0;
699 if( (vg_ui
.mouse_state
[1] & mask
) &&
700 !(vg_ui
.mouse_state
[0] & mask
) )
706 void ui_set_mouse_pos( ui_px x
, ui_px y
)
708 SDL_WarpMouseInWindow( vg
.window
, x
, y
);
711 vg_ui
.mouse_pos_overriden
= 1;
714 void ui_prerender(void)
717 vg_ui
.mouse_state
[1] = vg_ui
.mouse_state
[0];
718 vg_ui
.mouse_state
[0] = SDL_GetMouseState( &x
, &y
);
719 vg_ui
.mouse_delta
[0] = x
-vg_ui
.mouse
[0];
720 vg_ui
.mouse_delta
[1] = y
-vg_ui
.mouse
[1];
722 if( !vg_ui
.mouse_pos_overriden
)
729 vg_ui
.cur_indice
= 0;
730 vg_ui
.vert_start
= 0;
731 vg_ui
.indice_start
= 0;
732 vg_ui
.focused_control_hit
= 0;
733 vg_ui
.cursor
= k_ui_cursor_default
;
734 vg_ui
.wants_mouse
= 0;
735 vg_ui
.mouse_pos_overriden
= 0;
737 if( vg_ui
.ignore_input_frames
)
739 vg_ui
.ignore_input_frames
--;
743 if( ui_click_down(UI_MOUSE_LEFT
)||ui_click_down(UI_MOUSE_MIDDLE
)||
744 ui_click_down(UI_MOUSE_RIGHT
) )
746 vg_ui
.mouse_click
[0] = vg_ui
.mouse
[0];
747 vg_ui
.mouse_click
[1] = vg_ui
.mouse
[1];
751 u32
ui_colour( enum ui_scheme_colour id
)
753 return vg_ui
.scheme
[ id
];
756 /* get an appropriately contrasting colour given the base */
757 u32
ui_colourcont( enum ui_scheme_colour id
)
759 if ( id
< k_ui_bg
+6 ) return ui_colour( k_ui_fg
);
760 else if( id
< k_ui_fg
) return ui_colour( k_ui_bg
+1 );
761 else if( id
< k_ui_hue
) return ui_colour( k_ui_bg
+3 );
762 else if( id
< k_ui_red
+k_ui_brighter
) return ui_colour( k_ui_fg
);
763 else return ui_colour( k_ui_fg
+1 );
766 void ui_hex_to_norm( u32 hex
, v4f norm
)
768 norm
[0] = ((hex
) & 0xff);
769 norm
[1] = ((hex
>>8 ) & 0xff);
770 norm
[2] = ((hex
>>16) & 0xff);
771 norm
[3] = ((hex
>>24) & 0xff);
772 v4_muls( norm
, 1.0f
/255.0f
, norm
);
775 u32
v4f_u32_colour( v4f colour
)
777 u32 r
= colour
[0] * 255.0f
,
778 g
= colour
[1] * 255.0f
,
779 b
= colour
[2] * 255.0f
,
780 a
= colour
[3] * 255.0f
;
782 return r
| (g
<<8) | (b
<<16) | (a
<<24);
785 static void ui_text_glyph( const struct vg_font_face
*ff
,
786 u8 glyph
, ui_rect out_texcoords
)
788 const vg_font_char
*ch
= &ff
->map
[ glyph
];
790 out_texcoords
[0] = ch
->x
;
791 out_texcoords
[1] = ch
->y
;
792 out_texcoords
[2] = ch
->x
+ ff
->cw
;
793 out_texcoords
[3] = ch
->y
+ ff
->ch
;
796 u32
ui_opacity( u32 colour
, f32 opacity
)
798 u32 alpha
= opacity
* 255.0f
;
799 return (colour
& 0x00ffffff) | (alpha
<< 24);
802 u32
ui_ntext( ui_rect rect
, const char *str
, u32 len
, ui_px scale
,
803 enum ui_align align
, u32 colour
)
808 if( colour
== 0 ) colour
= ui_colour( k_ui_fg
);
810 colour
&= 0x00ffffff;
812 const char *_c
= str
;
815 text_cursor
[0] = ui_text_aligned_x( str
, rect
, scale
, align
);
816 text_cursor
[1] = rect
[1];
817 text_cursor
[2] = vg_ui
.font
->cw
*scale
;
818 text_cursor
[3] = vg_ui
.font
->ch
*scale
;
820 u32 printed_chars
= 0;
822 if( align
& (k_ui_align_middle
|k_ui_align_bottom
) )
824 ui_px height
= ui_text_string_height( str
) * scale
;
826 if( align
& k_ui_align_bottom
)
827 text_cursor
[1] += rect
[3]-height
;
829 text_cursor
[1] += (rect
[3]-height
)/2;
832 while( (c
= *(_c
++)) )
834 if( printed_chars
>= len
)
837 text_cursor
[1] += vg_ui
.font
->sy
*scale
;
838 text_cursor
[0] = ui_text_aligned_x( _c
, rect
, scale
, align
);
839 text_cursor
[0] -= vg_ui
.font
->sx
*scale
;
842 ui_text_glyph( vg_ui
.font
, '\xb6' /*FIXME*/, glyph
);
843 ui_fill_rect( text_cursor
, 0x00ffffff, glyph
);
844 text_cursor
[0] += vg_ui
.font
->sx
*scale
;
849 text_cursor
[1] += vg_ui
.font
->sy
*scale
;
850 text_cursor
[0] = ui_text_aligned_x( _c
, rect
, scale
, align
);
857 ui_text_glyph( vg_ui
.font
, c
, glyph
);
859 ui_rect cursor_clipped
;
860 if( ui_clip( rect
, text_cursor
, cursor_clipped
) )
864 cursor_clipped
[1] += glow_text
;
865 ui_fill_rect( cursor_clipped
, 0x00ffffff, glyph
);
866 cursor_clipped
[1] -= glow_text
;
869 ui_fill_rect( cursor_clipped
, colour
, glyph
);
872 else if( c
== '\x1B' )
877 for( int i
=0; i
<3; i
++ )
886 case '0': colour
= ui_colour( k_ui_fg
); break;
887 case '3'|'0'<<8: colour
= ui_colour( k_ui_bg
); break;
888 case '3'|'1'<<8: colour
= ui_colour( k_ui_red
); break;
889 case '3'|'2'<<8: colour
= ui_colour( k_ui_green
); break;
890 case '3'|'3'<<8: colour
= ui_colour( k_ui_yellow
); break;
891 case '3'|'4'<<8: colour
= ui_colour( k_ui_blue
); break;
892 case '3'|'5'<<8: colour
= ui_colour( k_ui_purple
); break;
893 case '3'|'6'<<8: colour
= ui_colour( k_ui_aqua
); break;
894 case '3'|'7'<<8: colour
= 0xffffffff; break;
897 colour
&= 0x00ffffff;
901 colour_id
|= _c
[i
] << (i
*8);
912 else if( c
== '\x06' )
920 text_cursor
[0] += vg_ui
.font
->sx
*scale
*4;
925 text_cursor
[0] += vg_ui
.font
->sx
*scale
;
929 return printed_chars
;
932 u32
ui_text( ui_rect rect
, const char *str
, ui_px scale
,
933 enum ui_align align
, u32 colour
)
935 return ui_ntext( rect
, str
, 1024, scale
, align
, colour
);
938 void ui_font_face( vg_font_face
*ff
)
944 * Standard layout stuff
945 * -----------------------------------------------------------------------------
948 void ui_panel( ui_rect in_rect
, ui_rect out_panel
)
950 ui_fill( in_rect
, ui_colour( k_ui_bg
+1 ) );
951 ui_outline( in_rect
, 1, ui_colour( k_ui_bg
+7 ), 0 );
952 rect_copy( in_rect
, out_panel
);
953 ui_rect_pad( out_panel
, (ui_px
[2]){ k_ui_padding
, k_ui_padding
} );
956 void ui_label( ui_rect rect
, const char *text
, ui_px size
,
957 ui_px gap
, ui_rect r
)
960 ui_px width
= (ui_text_line_width(text
)+vg_ui
.font
->sx
) * size
;
961 ui_split( rect
, k_ui_axis_v
, width
, gap
, l
, r
);
962 ui_text( l
, text
, 1, k_ui_align_middle_left
, 0 );
965 void ui_standard_widget( ui_rect inout_panel
, ui_rect out_rect
, ui_px count
)
967 ui_px height
= (count
* vg_ui
.font
->sy
+ 18) * k_ui_scale
;
968 ui_split( inout_panel
, k_ui_axis_h
, height
, k_ui_padding
,
969 out_rect
, inout_panel
);
972 void ui_info( ui_rect inout_panel
, const char *text
)
975 ui_standard_widget( inout_panel
, box
, 1 );
976 ui_text( box
, text
, 1, k_ui_align_middle_left
, 0 );
979 void ui_image( ui_rect rect
, GLuint image
)
981 ui_flush( k_ui_shader_colour
, vg
.window_x
, vg
.window_y
);
982 glActiveTexture( GL_TEXTURE0
);
983 glBindTexture( GL_TEXTURE_2D
, image
);
984 ui_fill_rect( rect
, 0xffffffff, (ui_px
[4]){ 0,256,256,0 } );
985 ui_flush( k_ui_shader_image
, vg
.window_x
, vg
.window_y
);
988 void ui_defocus_all(void)
990 if( vg_ui
.focused_control_type
== k_ui_control_textbox
){
992 if( vg_ui
.textbox
.callbacks
.escape
)
993 vg_ui
.textbox
.callbacks
.escape();
996 vg_ui
.focused_control_id
= NULL
;
997 vg_ui
.focused_control_hit
= 0;
998 vg_ui
.focused_control_type
= k_ui_control_none
;
1001 enum ui_button_state
ui_button_base( ui_rect rect
)
1003 int clickup
= ui_click_up(UI_MOUSE_LEFT
),
1004 click
= ui_clicking(UI_MOUSE_LEFT
) | clickup
,
1005 target
= ui_inside_rect( rect
, vg_ui
.mouse_click
) && click
,
1006 hover
= ui_inside_rect( rect
, vg_ui
.mouse
);
1008 if( vg_ui
.focused_control_type
!= k_ui_control_none
)
1017 vg_ui
.cursor
= k_ui_cursor_hand
;
1027 vg_ui
.ignore_input_frames
= 2;
1029 return k_ui_button_click
;
1031 else return k_ui_button_holding_inside
;
1033 else return k_ui_button_holding_outside
;
1035 else return k_ui_button_none
;
1039 if( hover
) return k_ui_button_hover
;
1040 else return k_ui_button_none
;
1044 /* TODO: split this out into a formatless button and one that auto fills */
1045 enum ui_button_state
ui_colourbutton( ui_rect rect
,
1046 enum ui_scheme_colour colour
,
1047 enum ui_scheme_colour hover_colour
,
1048 enum ui_scheme_colour hi_colour
)
1050 enum ui_button_state state
= ui_button_base( rect
);
1052 u32 col_base
= vg_ui
.scheme
[ colour
],
1053 col_highlight
= vg_ui
.scheme
[ hi_colour
? hi_colour
: k_ui_fg
],
1054 col_hover
= vg_ui
.scheme
[ hover_colour
? hover_colour
:
1055 colour
+ k_ui_brighter
];
1057 if( state
== k_ui_button_click
)
1059 ui_fill( rect
, col_highlight
);
1060 rect_copy( rect
, vg_ui
.click_fader
);
1061 rect_copy( rect
, vg_ui
.click_fader_end
);
1062 vg_ui
.click_fader_end
[3] = 0;
1063 ui_rect_center( rect
, vg_ui
.click_fader_end
);
1064 vg_ui
.click_fade_opacity
= 1.0f
;
1066 else if( state
== k_ui_button_holding_inside
)
1068 ui_fill( rect
, col_highlight
);
1070 else if( state
== k_ui_button_holding_outside
)
1072 ui_fill( rect
, col_base
);
1073 ui_outline( rect
, 1, col_highlight
, 0 );
1075 else if( state
== k_ui_button_hover
)
1077 ui_fill( rect
, col_hover
);
1079 else ui_fill( rect
, col_base
);
1084 enum ui_button_state
ui_colourbutton_text(
1085 ui_rect rect
, const char *string
, ui_px scale
,
1086 enum ui_scheme_colour colour
)
1088 enum ui_button_state state
= ui_colourbutton( rect
, colour
, 0, 0 );
1090 u32 text_colour
= ui_colourcont(colour
);
1091 if( state
== k_ui_button_holding_inside
)
1092 text_colour
= colour
;
1094 ui_text( rect
, string
, scale
, k_ui_align_middle_center
, text_colour
);
1098 enum ui_button_state
ui_button_text( ui_rect rect
,
1099 const char *string
, ui_px scale
)
1101 return ui_colourbutton_text( rect
, string
, scale
, k_ui_bg
+4 );
1104 enum ui_button_state
ui_button( ui_rect inout_panel
, const char *string
)
1107 ui_standard_widget( inout_panel
, rect
, 1 );
1108 return ui_colourbutton_text( rect
, string
, 1, k_ui_bg
+4 );
1111 static void ui_enum_post(void);
1112 void ui_postrender(void)
1114 if( vg_ui
.click_fade_opacity
> 0.0f
){
1115 float scale
= vg_ui
.click_fade_opacity
;
1116 scale
= vg_maxf( 1.0f
/255.0f
, scale
*scale
);
1118 vg_ui
.click_fade_opacity
-= vg
.time_frame_delta
* 3.8f
;
1119 u32 colour
= (0x00ffffff & ui_colour(k_ui_fg
))|0x7f000000;
1121 v4f begin
, end
, dest
;
1122 for( int i
=0; i
<4; i
++ ){
1123 begin
[i
] = vg_ui
.click_fader
[i
];
1124 end
[i
] = vg_ui
.click_fader_end
[i
]+1;
1127 v4_lerp( end
, begin
, scale
, dest
);
1130 for( int i
=0; i
<4; i
++ ){
1134 ui_fill( rect
, colour
);
1137 if( vg_ui
.focused_control_type
== k_ui_control_enum
){
1140 else if( vg_ui
.focused_control_type
== k_ui_control_modal
){
1141 ui_rect screen
= {0,0,vg
.window_x
,vg
.window_y
};
1142 ui_fill( screen
, 0xa0000000 );
1143 ui_rect box
= {0,0,400,200};
1145 u32 colour
= ui_colour(k_ui_fg
),
1146 type
= vg_ui
.modal
.options
& UI_MODAL_TYPE_BITS
;
1147 if ( type
== 1 ) colour
= ui_colour(k_ui_green
);
1148 else if( type
== 2 ) colour
= ui_colour(k_ui_red
);
1149 else if( type
== 3 ) colour
= ui_colour(k_ui_yellow
);
1151 ui_rect_center( screen
, box
);
1152 ui_fill( box
, ui_colour(k_ui_bg
) );
1153 ui_outline( box
, -1, colour
, 0 );
1156 rect_copy( box
, message
);
1158 ui_rect_center( box
, message
);
1160 ui_rect row0
, row1
, btn
;
1161 ui_split_ratio( message
, k_ui_axis_h
, 0.5f
, 0, row0
, row1
);
1162 row0
[0] += vg_ui
.font
->sx
;
1163 ui_ntext( row0
, vg_ui
.modal
.message
, (box
[2]/vg_ui
.font
->sx
)-2, 1,
1164 k_ui_align_left
, colour
);
1166 rect_copy( row1
, btn
);
1169 ui_rect_center( row1
, btn
);
1171 vg_ui
.focused_control_type
= k_ui_control_none
; /* HACK */
1172 if( ui_button_text( btn
, "OK", 1 ) != 1 )
1173 vg_ui
.focused_control_hit
= 1;
1174 vg_ui
.focused_control_type
= k_ui_control_modal
; /* HACK */
1175 vg_ui
.wants_mouse
= 1;
1178 ui_flush( k_ui_shader_colour
, vg
.window_x
, vg
.window_y
);
1180 if( !vg_ui
.focused_control_hit
){
1184 if( vg_ui
.wants_mouse
){
1185 SDL_SetWindowGrab( vg
.window
, SDL_FALSE
);
1186 SDL_SetRelativeMouseMode( SDL_FALSE
);
1189 SDL_SetWindowGrab( vg
.window
, SDL_TRUE
);
1190 SDL_SetRelativeMouseMode( SDL_TRUE
);
1193 SDL_SetCursor( vg_ui
.cursor_map
[ vg_ui
.cursor
] );
1199 * -----------------------------------------------------------------------------
1202 int ui_checkbox( ui_rect inout_panel
, const char *str_label
, i32
*data
)
1204 ui_rect rect
, label
, box
;
1205 ui_standard_widget( inout_panel
, rect
, 1 );
1207 ui_split( rect
, k_ui_axis_v
, -rect
[3], 0, label
, box
);
1208 ui_text( label
, str_label
, k_ui_scale
, k_ui_align_middle_left
, 0 );
1210 int changed
= ui_colourbutton( box
, k_ui_bg
, 0, 0 ) == k_ui_button_click
;
1212 *data
= (*data
) ^ 0x1;
1215 ui_rect_pad( box
, (ui_px
[2]){4,4} );
1216 ui_fill( box
, ui_colour( k_ui_orange
) );
1224 * -----------------------------------------------------------------------------
1228 * unfortunately no return value since we only find out that event in the
1231 void ui_enum( ui_rect inout_panel
, const char *str_label
,
1232 struct ui_enum_opt
*options
, u32 len
, i32
*value
)
1234 ui_rect rect
, label
, box
;
1235 ui_standard_widget( inout_panel
, rect
, 1 );
1236 ui_label( rect
, str_label
, k_ui_scale
, 0, box
);
1238 const char *display
= "OUT OF RANGE";
1240 for( u32 i
=0; i
<len
; i
++ ){
1241 if( *value
== options
[i
].value
){
1242 display
= options
[i
].alias
;
1248 if( ui_button_text( box
, display
, k_ui_scale
) == 1 ){
1249 vg_ui
.focused_control_type
= k_ui_control_enum
;
1250 vg_ui
.ptr_enum
= value
;
1251 vg_ui
._enum
.option_count
= len
;
1252 vg_ui
._enum
.options
= options
;
1253 rect_copy( box
, vg_ui
._enum
.rect
);
1257 ui_outline( box
, 1, ui_colour(k_ui_red
), 0 );
1260 static void ui_enum_post(void){
1262 rect_copy( vg_ui
._enum
.rect
, drawer
);
1263 drawer
[3] *= vg_ui
._enum
.option_count
;
1266 int clickany
= ui_click_up(UI_MOUSE_LEFT
|UI_MOUSE_RIGHT
|UI_MOUSE_MIDDLE
),
1267 hover
= ui_inside_rect( drawer
, vg_ui
.mouse
);
1269 if( clickany
&& !hover
){
1274 vg_ui
.focused_control_type
= k_ui_control_none
;
1275 i32
*value
= vg_ui
.ptr_enum
;
1277 for( u32 i
=0; i
<vg_ui
._enum
.option_count
; i
++ ){
1279 ui_split( drawer
, k_ui_axis_h
, vg_ui
._enum
.rect
[3], 0, button
,drawer
);
1281 enum ui_scheme_colour colour
= k_ui_bg
+3;
1282 if( vg_ui
._enum
.options
[i
].value
== *value
)
1283 colour
= k_ui_orange
;
1285 if( ui_colourbutton_text( button
, vg_ui
._enum
.options
[i
].alias
,
1286 k_ui_scale
, colour
) == 1 ){
1287 *value
= vg_ui
._enum
.options
[i
].value
;
1293 vg_ui
.focused_control_type
= k_ui_control_enum
;
1296 vg_ui
.focused_control_hit
= 1;
1301 * -----------------------------------------------------------------------------
1304 static enum ui_button_state
_ui_slider(
1305 ui_rect box
, f32 min
, f32 max
, f32
*value
, const char *format
)
1309 enum ui_button_state
1311 k_ui_button_holding_inside
|
1312 k_ui_button_holding_outside
|
1315 mask_using
| k_ui_button_hover
,
1316 state
= ui_colourbutton( box
, k_ui_bg
, k_ui_bg
+2, k_ui_bg
+3 );
1318 if( state
& mask_using
){
1319 t
= vg_clampf( (f32
)(vg_ui
.mouse
[0] - box
[0]) / (f32
)( box
[2] ),
1321 *value
= vg_lerpf( min
, max
, t
);
1324 t
= vg_clampf( (*value
- min
) / (max
-min
), 0.0f
, 1.0f
);
1326 ui_rect line
= { box
[0], box
[1], t
* (f32
)box
[2], box
[3] };
1327 ui_fill( line
, ui_colour(state
&mask_brighter
? k_ui_bg
+4: k_ui_bg
+2) );
1329 ui_outline( box
, 1, ui_colour(state
? k_ui_fg
+3: k_ui_bg
+3), 0 );
1331 /* TODO: replace this one day with our own function */
1333 snprintf( buf
, sizeof(buf
), format
? format
: "%.2f", *value
);
1334 ui_text( box
, buf
, 1, k_ui_align_middle_center
, 0 );
1339 bool ui_slider( ui_rect inout_panel
, const char *str_label
,
1340 f32 min
, f32 max
, f32
*value
, const char *format
)
1342 ui_rect rect
, label
, box
;
1343 ui_standard_widget( inout_panel
, rect
, 1 );
1344 ui_label( rect
, str_label
, k_ui_scale
, 0, box
);
1346 enum ui_button_state mask_using
=
1347 k_ui_button_holding_inside
|
1348 k_ui_button_holding_outside
|
1351 if( _ui_slider( box
, min
, max
, value
, format
) & mask_using
)
1359 * -----------------------------------------------------------------------------
1362 void ui_colourpicker( ui_rect inout_panel
, const char *str_label
, v4f value
)
1364 ui_rect widget
, left
, right
;
1365 ui_standard_widget( inout_panel
, widget
, 8 );
1366 ui_split_ratio( widget
, k_ui_axis_v
, 0.5f
, 8, left
, right
);
1369 ui_split_ratio( right
, k_ui_axis_h
, 0.5f
, 2, sliders
[0], sliders
[2] );
1370 ui_split_ratio( sliders
[0], k_ui_axis_h
, 0.5f
, 2, sliders
[0], sliders
[1] );
1371 ui_split_ratio( sliders
[2], k_ui_axis_h
, 0.5f
, 2, sliders
[2], sliders
[3] );
1374 vg_rgb_hsv( value
, hsv
);
1377 enum ui_button_state modified
= 0x00;
1379 for( u32 i
=0; i
<4; i
++ ){
1380 modified
|= _ui_slider( sliders
[i
], 0.0f
, 1.0f
, hsv
+i
,
1381 (const char *[]){ "hue %.2f",
1384 "alpha %.2f" }[i
] );
1387 ui_rect preview
, square
;
1388 ui_split_ratio( left
, k_ui_axis_v
, 0.8f
, 8, square
, preview
);
1390 u32 state
= ui_button_base( square
);
1393 enum ui_button_state
1395 k_ui_button_holding_inside
|
1396 k_ui_button_holding_outside
|
1399 if( state
& mask_using
)
1401 for( u32 i
=0; i
<2; i
++ ){
1402 hsv
[1+i
] = vg_clampf(
1403 (f32
)(vg_ui
.mouse
[i
] - square
[i
]) / (f32
)(square
[2+i
]),
1407 hsv
[2] = 1.0f
-hsv
[2];
1410 if( modified
& (k_ui_button_click
|k_ui_button_holding_inside
|
1411 k_ui_button_holding_outside
) )
1413 vg_hsv_rgb( hsv
, value
);
1417 ui_outline( square
, 1, ui_colour( state
? k_ui_fg
+3: k_ui_bg
+3 ), 0 );
1419 /* preview colour */
1421 vg_hsv_rgb( hsv
, colour
);
1423 ui_fill( preview
, v4f_u32_colour( colour
) );
1425 /* Draw hsv shader thingy */
1426 ui_flush( k_ui_shader_colour
, vg
.window_x
, vg
.window_y
);
1427 ui_fill_rect( square
, 0xffffffff, (ui_px
[4]){ 0,256,256,0 } );
1429 ui_flush( k_ui_shader_hsv
, vg
.window_x
, vg
.window_y
);
1431 ui_rect marker
= { square
[0] + hsv
[1] * (f32
)square
[2] - 4,
1432 square
[1] + (1.0f
-hsv
[2]) * (f32
)square
[3] - 4,
1435 square
[1] + (1.0f
-hsv
[2]) * (f32
)square
[3],
1437 ly
= { square
[0] + hsv
[1] * (f32
)square
[2],
1441 ui_fill( marker
, ui_colour( k_ui_fg
) );
1442 ui_fill( lx
, ui_colour( k_ui_fg
) );
1443 ui_fill( ly
, ui_colour( k_ui_fg
) );
1448 * -----------------------------------------------------------------------------
1451 static void _ui_textbox_make_selection( int *start
, int *end
)
1453 *start
= VG_MIN( vg_ui
.textbox
.cursor_pos
, vg_ui
.textbox
.cursor_user
);
1454 *end
= VG_MAX( vg_ui
.textbox
.cursor_pos
, vg_ui
.textbox
.cursor_user
);
1457 void _ui_textbox_move_cursor( int *cursor0
, int *cursor1
,
1458 int dir
, int snap_together
)
1460 *cursor0
= VG_MAX( 0, vg_ui
.textbox
.cursor_user
+ dir
);
1463 VG_MIN( vg_ui
.textbox
.len
-1, strlen( vg_ui
.textbuf
)),
1467 *cursor1
= *cursor0
;
1470 static int _ui_textbox_makeroom( int datastart
, int length
)
1472 int move_to
= VG_MIN( datastart
+length
, vg_ui
.textbox
.len
-1 );
1473 int move_amount
= strlen( vg_ui
.textbuf
)-datastart
;
1474 int move_end
= VG_MIN( move_to
+move_amount
, vg_ui
.textbox
.len
-1 );
1475 move_amount
= move_end
-move_to
;
1478 memmove( &vg_ui
.textbuf
[ move_to
],
1479 &vg_ui
.textbuf
[ datastart
],
1482 vg_ui
.textbuf
[ move_end
] = '\0';
1484 return VG_MIN( length
, vg_ui
.textbox
.len
-datastart
-1 );
1487 int _ui_textbox_delete_char( int direction
)
1490 _ui_textbox_make_selection( &start
, &end
);
1492 /* There is no selection */
1494 if( direction
== 1 ) end
= VG_MIN( end
+1, strlen( vg_ui
.textbuf
) );
1495 else if( direction
== -1 ) start
= VG_MAX( start
-1, 0 );
1498 /* Still no selction, no need to do anything */
1502 /* Copy the end->terminator to start */
1503 int remaining_length
= strlen( vg_ui
.textbuf
)+1-end
;
1504 memmove( &vg_ui
.textbuf
[ start
],
1505 &vg_ui
.textbuf
[ end
],
1510 static void _ui_textbox_to_clipboard(void)
1513 _ui_textbox_make_selection( &start
, &end
);
1517 memcpy( buffer
, &vg_ui
.textbuf
[ start
], end
-start
);
1518 buffer
[ end
-start
] = 0x00;
1519 SDL_SetClipboardText( buffer
);
1523 static void _ui_textbox_change_callback(void)
1525 if( vg_ui
.textbox
.callbacks
.change
){
1526 vg_ui
.textbox
.callbacks
.change( vg_ui
.textbuf
, vg_ui
.textbox
.len
);
1528 /* we gave permission to modify the buffer in this callback so.. */
1529 int len
= strlen( vg_ui
.textbuf
);
1530 vg_ui
.textbox
.cursor_user
= VG_MIN( vg_ui
.textbox
.cursor_user
, len
);
1531 vg_ui
.textbox
.cursor_pos
= VG_MIN( vg_ui
.textbox
.cursor_pos
, len
);
1535 void ui_start_modal( const char *message
, u32 options
);
1536 static void _ui_textbox_clipboard_paste(void)
1538 if( !SDL_HasClipboardText() )
1541 char *text
= SDL_GetClipboardText();
1546 int datastart
= _ui_textbox_delete_char( 0 );
1547 int length
= strlen( text
);
1549 if( (vg_ui
.textbox
.len
- strlen(vg_ui
.textbuf
)) < length
){
1550 ui_start_modal( "Clipboard content exceeds buffer size.", UI_MODAL_BAD
);
1554 int cpylength
= _ui_textbox_makeroom( datastart
, length
);
1556 memcpy( vg_ui
.textbuf
+ datastart
, text
, cpylength
);
1557 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
,
1558 &vg_ui
.textbox
.cursor_pos
, cpylength
, 1 );
1560 _ui_textbox_change_callback();
1563 void _ui_textbox_put_char( char c
)
1565 vg_ui
.textbox
.cursor_user
= _ui_textbox_delete_char(0);
1566 if( (vg_ui
.textbox
.len
- strlen(vg_ui
.textbuf
)) <= 1 ) return;
1568 if( _ui_textbox_makeroom( vg_ui
.textbox
.cursor_user
, 1 ) )
1569 vg_ui
.textbuf
[ vg_ui
.textbox
.cursor_user
] = c
;
1571 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
,
1572 &vg_ui
.textbox
.cursor_pos
, 1, 1 );
1575 /* Receed secondary cursor */
1576 void _ui_textbox_left_select(void)
1578 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
, NULL
, -1, 0 );
1581 /* Match and receed both cursors */
1582 void _ui_textbox_left(void)
1584 int cursor_diff
= vg_ui
.textbox
.cursor_pos
- vg_ui
.textbox
.cursor_user
? 0: 1;
1586 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
,
1587 &vg_ui
.textbox
.cursor_pos
, -cursor_diff
, 1 );
1590 void _ui_textbox_up(void)
1592 if( vg_ui
.textbox
.flags
& UI_TEXTBOX_MULTILINE
){
1593 int line_begin
= vg_ui
.textbox
.cursor_user
;
1595 while( line_begin
){
1596 if( vg_ui
.textbuf
[ line_begin
-1 ] == '\n' ){
1604 int line_above_begin
= line_begin
-1;
1606 while( line_above_begin
){
1607 if( vg_ui
.textbuf
[ line_above_begin
-1 ] == '\n' ){
1611 line_above_begin
--;
1614 int offset
= vg_ui
.textbox
.cursor_user
- line_begin
,
1615 line_length_above
= line_begin
- line_above_begin
-1;
1617 offset
= VG_MIN( line_length_above
, offset
);
1619 vg_ui
.textbox
.cursor_user
= line_above_begin
+offset
;
1620 vg_ui
.textbox
.cursor_pos
= line_above_begin
+offset
;
1623 vg_ui
.textbox
.cursor_user
= line_begin
;
1624 vg_ui
.textbox
.cursor_pos
= line_begin
;
1628 if( vg_ui
.textbox
.callbacks
.up
){
1629 vg_ui
.textbox
.callbacks
.up( vg_ui
.textbuf
, vg_ui
.textbox
.len
);
1634 void _ui_textbox_down(void)
1636 if( vg_ui
.textbox
.flags
& UI_TEXTBOX_MULTILINE
){
1637 int line_begin
= vg_ui
.textbox
.cursor_user
;
1639 while( line_begin
){
1640 if( vg_ui
.textbuf
[ line_begin
-1 ] == '\n' ){
1647 int line_below_begin
= vg_ui
.textbox
.cursor_user
;
1650 if( vg_ui
.textbuf
[ line_below_begin
] == '\0' ){
1651 vg_ui
.textbox
.cursor_user
= line_below_begin
;
1652 vg_ui
.textbox
.cursor_pos
= line_below_begin
;
1656 if( vg_ui
.textbuf
[ line_below_begin
] == '\n' ){
1657 line_below_begin
++;
1661 line_below_begin
++;
1664 int line_below_end
= line_below_begin
;
1666 if( vg_ui
.textbuf
[ line_below_end
] == '\0' ||
1667 vg_ui
.textbuf
[ line_below_end
] == '\n' ){
1674 int offset
= vg_ui
.textbox
.cursor_user
- line_begin
,
1675 line_length_below
= line_below_end
- line_below_begin
-1;
1677 offset
= VG_MIN( line_length_below
, offset
);
1679 vg_ui
.textbox
.cursor_user
= line_below_begin
+offset
;
1680 vg_ui
.textbox
.cursor_pos
= line_below_begin
+offset
;
1683 if( vg_ui
.textbox
.callbacks
.down
){
1684 vg_ui
.textbox
.callbacks
.down( vg_ui
.textbuf
, vg_ui
.textbox
.len
);
1689 void _ui_textbox_right_select(void)
1691 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
, NULL
, 1, 0 );
1694 void _ui_textbox_right(void)
1696 int cursor_diff
= vg_ui
.textbox
.cursor_pos
- vg_ui
.textbox
.cursor_user
? 0: 1;
1698 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
,
1699 &vg_ui
.textbox
.cursor_pos
, +cursor_diff
, 1 );
1702 void _ui_textbox_backspace(void)
1704 if( vg_ui
.focused_control_type
== k_ui_control_textbox
){
1705 vg_ui
.textbox
.cursor_user
= _ui_textbox_delete_char( -1 );
1706 vg_ui
.textbox
.cursor_pos
= vg_ui
.textbox
.cursor_user
;
1707 _ui_textbox_change_callback();
1711 void _ui_textbox_delete(void)
1713 if( vg_ui
.focused_control_type
== k_ui_control_textbox
){
1714 vg_ui
.textbox
.cursor_user
= _ui_textbox_delete_char( 1 );
1715 vg_ui
.textbox
.cursor_pos
= vg_ui
.textbox
.cursor_user
;
1716 _ui_textbox_change_callback();
1720 void _ui_textbox_home_select(void)
1722 i32 start
= vg_ui
.textbox
.cursor_user
;
1724 if( vg_ui
.textbox
.flags
& UI_TEXTBOX_MULTILINE
){
1726 if( vg_ui
.textbuf
[start
-1] == '\n' )
1735 vg_ui
.textbox
.cursor_user
= start
;
1738 void _ui_textbox_home(void)
1740 _ui_textbox_home_select();
1741 vg_ui
.textbox
.cursor_pos
= vg_ui
.textbox
.cursor_user
;
1744 void _ui_textbox_end_select(void)
1746 i32 end
= vg_ui
.textbox
.cursor_user
;
1748 if( vg_ui
.textbox
.flags
& UI_TEXTBOX_MULTILINE
){
1749 while( vg_ui
.textbuf
[end
] ){
1750 if( vg_ui
.textbuf
[end
] == '\n' )
1757 end
= VG_MIN( vg_ui
.textbox
.len
-1, strlen(vg_ui
.textbuf
) );
1759 vg_ui
.textbox
.cursor_user
= end
;
1762 void _ui_textbox_end(void)
1764 _ui_textbox_end_select();
1765 vg_ui
.textbox
.cursor_pos
= vg_ui
.textbox
.cursor_user
;
1768 void _ui_textbox_select_all(void)
1770 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_user
, NULL
, 10000, 0);
1771 _ui_textbox_move_cursor( &vg_ui
.textbox
.cursor_pos
, NULL
, -10000, 0);
1774 void _ui_textbox_cut(void)
1776 _ui_textbox_to_clipboard();
1777 vg_ui
.textbox
.cursor_user
= _ui_textbox_delete_char(0);
1778 vg_ui
.textbox
.cursor_pos
= vg_ui
.textbox
.cursor_user
;
1779 _ui_textbox_change_callback();
1782 void _ui_textbox_enter(void)
1784 if( vg_ui
.focused_control_type
== k_ui_control_textbox
){
1785 vg_ui
.ignore_input_frames
= 2;
1787 if( vg_ui
.textbox
.callbacks
.enter
)
1788 vg_ui
.textbox
.callbacks
.enter( vg_ui
.textbuf
, vg_ui
.textbox
.len
);
1790 if( vg_ui
.focused_control_type
!= k_ui_control_textbox
) return;
1792 if( vg_ui
.textbox
.flags
& UI_TEXTBOX_MULTILINE
){
1793 _ui_textbox_put_char( '\n' );
1794 _ui_textbox_change_callback();
1797 if( !(vg_ui
.textbox
.flags
& UI_TEXTBOX_AUTOFOCUS
) )
1804 * based on a visual character coordinate relative to the anchor of the textbox,
1805 * this works out the linear place in the buffer that coordinate maps to
1807 * input coordinates go in co[0], co[1], and the result index is in co[2]
1809 static void _ui_textbox_calc_index_from_grid( int co
[3], int wrap_length
){
1813 while( (c
= vg_ui
.textbuf
[i
[2]]) ){
1814 if( i
[1]==co
[1] && i
[0]>=co
[0] ) break;
1816 if( i
[0] >= wrap_length
){
1821 if( c
>= 32 && c
<= 126 ){
1825 else if( c
== '\n' ){
1828 if( i
[1] > co
[1] ) break;
1842 * based on the index specied in co[2], work out the visual character
1843 * coordinates and store them in co[0], co[1]
1845 static void _ui_textbox_index_calc_coords( int co
[3], int wrap_length
){
1852 while( (c
= vg_ui
.textbuf
[i
++]) ){
1853 if( i
> co
[2] ) break;
1854 if( co
[0] >= wrap_length
){
1858 if( c
>= 32 && c
<= 126 ) co
[0] ++;
1859 else if( c
== '\n' ){
1867 * calculate the number of characters remaining until either:
1868 * - the wrap_length limit is hit
1869 * - end of the line/string
1871 * index must be fully populated with visual X/Y, and linear index
1873 static int _ui_textbox_run_remaining( int index
[3], int wrap_length
){
1874 int i
=0, printed_chars
=0;
1876 while( (c
= vg_ui
.textbuf
[index
[2] + (i
++)]) ){
1877 if( index
[0]+i
>= wrap_length
) break;
1878 if( c
>= 32 && c
<= 126 ) printed_chars
++;
1879 else if( c
== '\n' ) break;
1882 return printed_chars
+1;
1885 int ui_textbox( ui_rect inout_panel
, const char *label
,
1886 char *buf
, u32 len
, u32 lines
, u32 flags
,
1887 struct ui_textbox_callbacks
*callbacks
)
1889 if( lines
> 1 ) flags
|= UI_TEXTBOX_MULTILINE
;
1892 ui_standard_widget( inout_panel
, rect
, lines
);
1895 ui_label( rect
, label
, 1, 0, rect
);
1897 int clickup
= ui_click_up(UI_MOUSE_LEFT
),
1898 clickdown
= ui_click_down(UI_MOUSE_LEFT
),
1899 click
= ui_clicking(UI_MOUSE_LEFT
) | clickup
,
1900 target
= ui_inside_rect( rect
, vg_ui
.mouse_click
) && click
,
1901 hover
= ui_inside_rect( rect
, vg_ui
.mouse
);
1903 /* allow instant transitions from textbox->textbox */
1904 if( (vg_ui
.focused_control_type
!= k_ui_control_none
) &&
1905 (vg_ui
.focused_control_type
!= k_ui_control_textbox
) ){
1911 flags
&= ~UI_TEXTBOX_AUTOFOCUS
;
1914 u32 col_base
= ui_colour( k_ui_bg
),
1915 col_highlight
= ui_colour( k_ui_fg
),
1916 col_cursor
= (0x00ffffff & ui_colour(k_ui_fg
))|0x7f000000;
1921 rect_copy( rect
, text_rect
);
1923 if( flags
& UI_TEXTBOX_MULTILINE
) text_rect
[3] = rect
[3]-16;
1924 else text_rect
[3] = vg_ui
.font
->sy
;
1927 ui_rect_center( rect
, text_rect
);
1929 ui_px wrap_length
= 1024;
1931 if( flags
& UI_TEXTBOX_WRAP
)
1932 wrap_length
= text_rect
[2] / vg_ui
.font
->sx
;
1936 vg_ui
.cursor
= k_ui_cursor_ibeam
;
1939 if( vg_ui
.focused_control_id
== buf
)
1941 ui_fill( rect
, col_base
);
1942 ui_ntext( text_rect
, buf
, wrap_length
, 1, k_ui_align_left
, 0 );
1944 if( !(flags
& UI_TEXTBOX_AUTOFOCUS
) && ((clickup
||clickdown
) && !target
))
1950 vg_ui
.focused_control_hit
= 1;
1951 if( click
&& target
){
1953 (vg_ui
.mouse_click
[0] - text_rect
[0]) / vg_ui
.font
->sx
,
1954 (vg_ui
.mouse_click
[1] - text_rect
[1]) / vg_ui
.font
->sy
,
1958 (vg_ui
.mouse
[0] - text_rect
[0]) / vg_ui
.font
->sx
,
1959 (vg_ui
.mouse
[1] - text_rect
[1]) / vg_ui
.font
->sy
,
1963 if( flags
& UI_TEXTBOX_MULTILINE
)
1965 _ui_textbox_calc_index_from_grid( p0
, wrap_length
);
1966 _ui_textbox_calc_index_from_grid( p1
, wrap_length
);
1968 vg_ui
.textbox
.cursor_pos
= p0
[2];
1969 vg_ui
.textbox
.cursor_user
= p1
[2];
1973 int max
= strlen( buf
);
1974 vg_ui
.textbox
.cursor_pos
= VG_MAX( 0, VG_MIN( max
, p0
[0] )),
1975 vg_ui
.textbox
.cursor_user
= VG_MAX( 0, VG_MIN( max
, p1
[0] ));
1979 ui_outline( rect
, -2, vg_ui
.scheme
[ k_ui_orange
], 0 );
1983 int c0
= vg_ui
.textbox
.cursor_pos
,
1984 c1
= vg_ui
.textbox
.cursor_user
,
1985 start
= VG_MIN( c0
, c1
),
1986 end
= VG_MAX( c0
, c1
),
1989 if( flags
& (UI_TEXTBOX_WRAP
|UI_TEXTBOX_MULTILINE
) )
1991 int pos
[3], remaining
= chars
;
1994 _ui_textbox_index_calc_coords( pos
, wrap_length
);
1998 cursor
[0] = text_rect
[0] + pos
[0]*vg_ui
.font
->sx
-1;
1999 cursor
[1] = text_rect
[1] + pos
[1]*14;
2002 ui_fill( cursor
, col_cursor
);
2003 rect_copy( cursor
, vg_ui
.click_fader_end
);
2009 int run
= _ui_textbox_run_remaining( pos
, wrap_length
);
2010 run
= VG_MIN( run
, remaining
);
2012 cursor
[0] = text_rect
[0] + pos
[0]*vg_ui
.font
->sx
-1;
2013 cursor
[1] = text_rect
[1] + pos
[1]*14;
2014 cursor
[2] = (float)(run
)*(float)vg_ui
.font
->sx
;
2017 ui_fill( cursor
, col_cursor
);
2024 rect_copy( cursor
, vg_ui
.click_fader_end
);
2029 cursor
[0] = text_rect
[0] + start
*vg_ui
.font
->sx
-1;
2030 cursor
[1] = text_rect
[1];
2039 cursor
[2] = (float)(chars
)*(float)vg_ui
.font
->sx
;
2042 if( (vg_ui
.click_fade_opacity
<=0.0f
) &&
2043 ui_clip( rect
, cursor
, cursor
) )
2045 ui_fill( cursor
, col_cursor
);
2048 rect_copy( cursor
, vg_ui
.click_fader_end
);
2055 if( click
|| (flags
& UI_TEXTBOX_AUTOFOCUS
) )
2057 if( (target
&& hover
) || (flags
& UI_TEXTBOX_AUTOFOCUS
) )
2061 ui_fill( rect
, col_highlight
);
2062 vg_ui
.ignore_input_frames
= 2;
2063 rect_copy( rect
, vg_ui
.click_fader
);
2064 rect_copy( rect
, vg_ui
.click_fader_end
);
2066 vg_ui
.click_fade_opacity
= 1.0f
;
2067 vg_ui
.textbuf
= buf
;
2068 vg_ui
.focused_control_hit
= 1;
2069 vg_ui
.focused_control_type
= k_ui_control_textbox
;
2070 vg_ui
.textbox
.len
= len
;
2071 vg_ui
.textbox
.flags
= flags
;
2072 vg_ui
.textbox
.cursor_pos
= 0;
2073 vg_ui
.textbox
.cursor_user
= 0;
2077 vg_ui
.textbox
.callbacks
= *callbacks
;
2081 vg_ui
.textbox
.callbacks
.change
= NULL
;
2082 vg_ui
.textbox
.callbacks
.down
= NULL
;
2083 vg_ui
.textbox
.callbacks
.up
= NULL
;
2084 vg_ui
.textbox
.callbacks
.enter
= NULL
;
2087 SDL_StartTextInput();
2091 ui_fill( rect
, col_base
);
2095 ui_outline( rect
, -1, col_highlight
, 0 );
2098 ui_ntext( text_rect
, buf
, wrap_length
, 1, k_ui_align_left
, 0 );
2104 * -----------------------------------------------------------------------------
2107 void ui_tabs( ui_rect inout_panel
, ui_rect out_content_panel
,
2108 const char **titles
, u32 count
, i32
*page
)
2111 ui_standard_widget( inout_panel
, bar
, 1 );
2113 i32 cur_page
= *page
;
2115 f32 width
= (f32
)inout_panel
[2] / (f32
)count
;
2117 ui_px h
= (inout_panel
[1] + inout_panel
[3]) - (bar
[1]+bar
[3]);
2118 inout_panel
[1] = bar
[1]+bar
[3];
2121 ui_fill( inout_panel
, ui_colour( k_ui_bg
+2 ) );
2122 ui_outline( inout_panel
, 1, ui_colour( k_ui_bg
+5 ), 0 );
2124 rect_copy( inout_panel
, out_content_panel
);
2125 ui_rect_pad( out_content_panel
, (ui_px
[2]){ k_ui_padding
, k_ui_padding
} );
2128 for( i32 i
=0; i
<count
; i
++ )
2131 bar
[0] + ((f32
)i
*width
),
2137 enum ui_scheme_colour colour
= k_ui_bg
+4;
2141 ui_outline( button
, 1, ui_colour( k_ui_bg
+5 ),
2142 UI_TOP
|UI_LEFT
|UI_RIGHT
);
2146 if( ui_colourbutton_text( button
, titles
[i
], 1, colour
) == 1 )
2153 * -----------------------------------------------------------------------------
2155 void ui_start_modal( const char *message
, u32 options
)
2157 vg_ui
.focused_control_type
= k_ui_control_modal
;
2158 vg_ui
.modal
.message
= message
;
2159 vg_ui
.modal
.callbacks
.close
= NULL
;
2160 vg_ui
.modal
.options
= options
;
2162 u32 type
= options
& UI_MODAL_TYPE_BITS
;
2163 if( type
== UI_MODAL_OK
) vg_info( message
);
2164 else if( type
== UI_MODAL_WARN
) vg_warn( message
);
2165 else if( type
== UI_MODAL_GOOD
) vg_success( message
);
2166 else if( type
== UI_MODAL_BAD
) vg_error( message
);
2171 * -----------------------------------------------------------------------------
2177 void ui_proc_key( SDL_Keysym ev
)
2179 if( vg_ui
.focused_control_type
!= k_ui_control_textbox
){
2183 struct textbox_mapping
{
2187 void (*handler
)(void);
2191 { 0, SDLK_LEFT
, _ui_textbox_left
},
2192 { KMOD_SHIFT
, SDLK_LEFT
, _ui_textbox_left_select
},
2193 { 0, SDLK_RIGHT
, _ui_textbox_right
},
2194 { KMOD_SHIFT
, SDLK_RIGHT
, _ui_textbox_right_select
},
2195 { 0, SDLK_DOWN
, _ui_textbox_down
},
2196 { 0, SDLK_UP
, _ui_textbox_up
},
2197 { 0, SDLK_BACKSPACE
, _ui_textbox_backspace
},
2198 { KMOD_SHIFT
, SDLK_BACKSPACE
, _ui_textbox_backspace
},
2199 { KMOD_CTRL
, SDLK_BACKSPACE
, _ui_textbox_backspace
},
2200 { 0, SDLK_DELETE
, _ui_textbox_delete
},
2201 { 0, SDLK_HOME
, _ui_textbox_home
},
2202 { KMOD_SHIFT
, SDLK_HOME
, _ui_textbox_home_select
},
2203 { 0, SDLK_END
, _ui_textbox_end
},
2204 { KMOD_SHIFT
, SDLK_END
, _ui_textbox_end_select
},
2205 { KMOD_CTRL
, SDLK_a
, _ui_textbox_select_all
},
2206 { KMOD_CTRL
, SDLK_c
, _ui_textbox_to_clipboard
},
2207 { KMOD_CTRL
, SDLK_x
, _ui_textbox_cut
},
2208 { KMOD_CTRL
, SDLK_v
, _ui_textbox_clipboard_paste
},
2209 { 0, SDLK_RETURN
, _ui_textbox_enter
},
2210 { 0, SDLK_ESCAPE
, ui_defocus_all
},
2215 if( ev
.mod
& KMOD_SHIFT
)
2218 if( ev
.mod
& KMOD_CTRL
)
2221 if( ev
.mod
& KMOD_ALT
)
2224 for( int i
=0; i
<vg_list_size( mappings
); i
++ ){
2225 struct textbox_mapping
*mapping
= &mappings
[i
];
2227 if( mapping
->key
== ev
.sym
){
2228 if( mapping
->mod
== 0 ){
2234 else if( (mod
& mapping
->mod
) == mapping
->mod
){
2243 * Callback for text entry mode
2245 void ui_proc_utf8( const char *text
)
2247 if( vg_ui
.focused_control_type
== k_ui_control_textbox
){
2248 const char *ptr
= text
;
2251 if( *ptr
!= '`' ) _ui_textbox_put_char( *ptr
);
2255 _ui_textbox_change_callback();
2261 * -----------------------------------------------------------------------------
2264 void ui_dev_colourview(void)
2266 ui_rect window
= {vg
.window_x
-256,0,256,vg
.window_y
}, swatch
;
2268 const char *names
[vg_list_size(vg_ui
.scheme
)] = {
2269 [k_ui_bg
] = "k_ui_bg", "k_ui_bg+1", "k_ui_bg+2", "k_ui_bg+3",
2270 "k_ui_bg+4", "k_ui_bg+5", "k_ui_bg+6", "k_ui_bg+7",
2272 [k_ui_fg
] = "k_ui_fg", "k_ui_fg+1", "k_ui_fg+2", "k_ui_fg+3",
2273 "k_ui_fg+4", "k_ui_fg+5", "k_ui_fg+6", "k_ui_fg+7",
2275 [k_ui_red
] = "k_ui_red", "k_ui_orange", "k_ui_yellow", "k_ui_green",
2276 "k_ui_aqua", "k_ui_blue", "k_ui_purple", "k_ui_gray",
2277 "k_ui_red+8","k_ui_orange+8","k_ui_yellow+8","k_ui_green+8",
2278 "k_ui_aqua+8","k_ui_blue+8","k_ui_purple+8","k_ui_gray+8" };
2281 ui_split_ratio( window
, k_ui_axis_v
, 0.5f
, 0, col
[0], col
[1] );
2283 for( int i
=0; i
<vg_list_size(vg_ui
.scheme
); i
++ ){
2284 int which
= (i
/8)%2;
2286 ui_split( col
[which
], k_ui_axis_h
, 24, 0, swatch
, col
[which
] );
2287 ui_fill( swatch
, ui_colour(i
) );
2290 ui_text(swatch
, names
[i
], 1, k_ui_align_middle_left
, ui_colourcont(i
));