the luxuries of a modern C compiler
[carveJwlIkooP6JGAAIwe30JlM.git] / gui.h
1 #ifndef GUI_H
2 #define GUI_H
3
4 #include "font.h"
5
6 struct{
7 struct gui_helper{
8 const char *bindstr, *text;
9 }
10 helpers[4];
11 u32 helper_count;
12
13 f32 factive;
14 font3d font;
15 }
16 static gui;
17
18 VG_STATIC
19 void gui_draw(void)
20 {
21 camera ortho;
22
23 float fl = 0.0f,
24 fr = vg.window_x,
25 fb = 0.0f,
26 ft = vg.window_y,
27 rl = 1.0f / (fr-fl),
28 tb = 1.0f / (ft-fb);
29
30 m4x4_zero( ortho.mtx.p );
31 ortho.mtx.p[0][0] = 2.0f * rl;
32 ortho.mtx.p[1][1] = 2.0f * tb;
33 ortho.mtx.p[3][0] = (fr + fl) * -rl;
34 ortho.mtx.p[3][1] = (ft + fb) * -tb;
35 ortho.mtx.p[3][3] = 1.0f;
36 m4x3_identity( ortho.transform );
37 camera_update_view( &ortho );
38 camera_finalize( &ortho );
39
40 gui.factive = vg_lerpf( gui.factive, gui.helper_count?1.0f:0.0f,
41 vg.time_delta*2.0f );
42
43 if( gui.factive > 0.01f ){
44 /* draw bottom bar */
45 glEnable(GL_BLEND);
46 glDisable(GL_DEPTH_TEST);
47 glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA );
48 glBlendEquation(GL_FUNC_ADD);
49
50 shader_blitcolour_use();
51 shader_blitcolour_uColour( (v4f){ 0.0f, 0.0f, 0.0f, gui.factive*0.8f } );
52 render_fsquad1();
53 }
54
55 font3d_bind( &gui.font, &ortho );
56
57 float dy = ft/0.79f,
58 scale = dy*0x1p-4f*0.75f;
59
60 m4x3f mmdl;
61 v4f q;
62 m3x3_identity( mmdl );
63 m3x3_scale( mmdl, (v3f){scale,scale,scale} );
64 v3_zero( mmdl[3] );
65
66 float pad = dy*0x1p-4f*0.125f;
67 mmdl[3][0] = pad*2.0f;
68 mmdl[3][1] = pad;
69
70 for( u32 i=0; i<gui.helper_count; i++ ){
71 struct gui_helper *helper = &gui.helpers[i];
72
73 shader_model_font_uColour( (v4f){1.0f,1.0f,1.0f,1.0f} );
74
75 struct font3d_render render;
76 font3d_begin( &gui.font, 2, &ortho, mmdl, &render );
77
78 render.u8pch = (u8*)helper->bindstr;
79 font3d_draw( &render );
80
81 const char *make_smaller = "\x02\xaf\x03 ";
82 render.u8pch = (const u8*)make_smaller;
83 font3d_draw( &render );
84
85 render.u8pch = (u8*)helper->text;
86 font3d_draw( &render );
87
88 float w = render.offset[0]+1.0f;
89 mmdl[3][0] += w*scale;
90 }
91
92 gui.helper_count = 0;
93 }
94
95 VG_STATIC
96 void gui_helper_action( const char *bindstr, const char *text )
97 {
98 if( gui.helper_count >= vg_list_size(gui.helpers) )
99 vg_fatal_error( "Too many helpers\n" );
100
101 struct gui_helper *helper = &gui.helpers[ gui.helper_count ++ ];
102 helper->bindstr = bindstr;
103 helper->text = text;
104 }
105
106 VG_STATIC void gui_init(void)
107 {
108 font3d_load( &gui.font, "models/rs_font.mdl", vg_mem.rtmemory );
109 }
110
111 #endif /* GUI_H */