summaryrefslogtreecommitdiff
path: root/sources/iui.c
blob: 6f82ad14c4277fc4a716d55a2391a00303914d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/*
 * Copyright (C) 2025 dwlr <dweller@cabin.digital>
 *
 * BSD 3-Clause License (BSD-3-Clause)
 * See LICENSE for details
 */


#define IUI_TXT_CENTER bit(0)
#define IUI_CLIP_CLEAR bit(0)

typedef struct
{
    enum
    {
        IUI_ILL,
        IUI_BOX,
        IUI_FILL,
        IUI_LINE,
        IUI_TEXT,
        IUI_CLIP,

    } type;

    u32 color;
    u16 x, y, w, h;
    u16 size;
    u16 flags;
    char* text;

} iui_cmd;

#define IUI_CMDBUF_LEN 512
typedef struct
{
    arena* ar;
    void* usr;

    usize hot;
    usize active;
    usize kbdfocus;

    /* mouse */
    u16 x;
    u16 y;

    u8 pbtns;
    u8 btns;

    /* TODO: event pump */

    usize ncmds;
    iui_cmd cmds[IUI_CMDBUF_LEN]; /* TODO: arena? */

} iui;


void iui_init(iui* ui, arena* ar, void* usr)
{
    if(!ui)
    {
        report(WARN, "iui: iui_init() ui == NULL!\n");
        return;
    }

    ui->ar  = ar;
    ui->usr = usr;
}

void iui_start(iui* ui)
{
    assert(ui);
    ui->hot = 0;

    ar_clear(ui->ar);
}

void iui_end(iui* ui)
{
    assert(ui);

    if(!ui->btns) ui->active = 0;
    else if(!ui->active) ui->kbdfocus = 0;

    ui->pbtns = ui->btns;
}

bool iui_mouse_inside(iui* ui, u16 x, u16 y, u16 w, u16 h)
{
    return !(ui->x < x || ui->y < y || ui->x >= x + w || ui->y >= y + h);
}

int iui_button(iui* ui, u16 x, u16 y, int w, int h, char* label)
{
    xctx*  x11 = (xctx*)ui->usr;
    usize   id = (usize)label;
    bool imhot, imactive;

    if(iui_mouse_inside(ui, x, y, w, h))
    {
        bool click = ui->btns & bit(1) && !(ui->pbtns & bit(1));
        if(!ui->active && click) ui->active = id;
        ui->hot = id;
    }

    imhot    = ui->hot    == id;
    imactive = ui->active == id;

    {
        iui_cmd cmd = {0};
        cmd.type = IUI_FILL;

        cmd.x = x;
        cmd.y = y;
        cmd.w = w;
        cmd.h = h;

        if(imhot) cmd.size = 2;
        else cmd.size = 1;

        if(imactive) cmd.color = x11->cols.as.fg;
        else cmd.color = x11->cols.as.bg;

        ui->cmds[ui->ncmds++] = cmd;

        cmd.type = IUI_BOX;
        cmd.color = x11->cols.as.fg;
        ui->cmds[ui->ncmds++] = cmd;

        cmd.type  = IUI_TEXT;
        cmd.size  = 14;
        cmd.text  = label;
        cmd.flags = IUI_TXT_CENTER;

        if(imactive) cmd.color = x11->cols.as.bg;
        else cmd.color = x11->cols.as.fg;

        ui->cmds[ui->ncmds++] = cmd;
    }

    return imhot && imactive && !(ui->btns & bit(1));
}

void iui_label(iui* ui, u16 x, u16 y, int w, int h, char* fmt, ...)
{
    int len = 0;
    char* buf = NULL;
    va_list ap = {0};
    xctx*  x11 = (xctx*)ui->usr;

    buf = ar_push(ui->ar, 512);

    va_start(ap, fmt);
        len = vsnprintf(buf, 511, fmt, ap);
    va_end(ap);

    {
        iui_cmd cmd = {0};
        cmd.type = IUI_FILL;

        cmd.x = x;
        cmd.y = y;
        cmd.w = w;
        cmd.h = h;

        {
            iui_cmd clip = cmd;
            clip.type = IUI_CLIP;
            clip.flags = 0;
            clip.x++;
            clip.y++;
            clip.w--;
            clip.h--;

            ui->cmds[ui->ncmds++] = clip;
        }

        {
            cmd.type  = IUI_TEXT;
            cmd.size  = 14;
            cmd.text  = buf;
            cmd.flags = 0;

            cmd.x = x + 6;
            cmd.y = y;
            cmd.w = w;
            cmd.h = h;

            cmd.color = x11->cols.as.fg;

            ui->cmds[ui->ncmds++] = cmd;
        }

        cmd.type  = IUI_CLIP;
        cmd.flags = IUI_CLIP_CLEAR;
        ui->cmds[ui->ncmds++] = cmd;
    }
}

int iui_editbox(iui* ui, u16 x, u16 y, int w, int h, char* buf, usize buflen)
{
    xctx*  x11 = (xctx*)ui->usr;
    usize   id = (usize)buf;
    bool imhot, imactive;
    usize len;

    len = strlen(buf);

    if(iui_mouse_inside(ui, x, y, w, h))
    {
        bool click = ui->btns & bit(1) && !(ui->pbtns & bit(1));
        if(!ui->active && click) ui->active = id;
        ui->hot = id;
    }

    imhot    = ui->hot    == id;
    imactive = ui->active == id;

    {
        iui_cmd cmd = {0};
        cmd.type = IUI_FILL;

        cmd.x = x;
        cmd.y = y;
        cmd.w = w;
        cmd.h = h;

        if(imhot) cmd.size = 2;
        else cmd.size = 1;

        cmd.color = x11->cols.as.bg;
        ui->cmds[ui->ncmds++] = cmd;

        cmd.type = IUI_BOX;
        cmd.color = x11->cols.as.fg;
        ui->cmds[ui->ncmds++] = cmd;

        {
            iui_cmd clip = cmd;
            clip.type = IUI_CLIP;
            clip.flags = 0;
            clip.x++;
            clip.y++;
            clip.w--;
            clip.h--;

            ui->cmds[ui->ncmds++] = clip;
        }

        if(imactive) ui->kbdfocus = id;
        if(ui->kbdfocus == id)
        {
            cmd.type = IUI_FILL;
            cmd.x = x + 6 + 6 * len;
            cmd.y = y + 6;
            cmd.w = 10;
            cmd.h = h - 12;
            cmd.color = x11->cols.as.fg;

            ui->cmds[ui->ncmds++] = cmd;
        }
        else
        {
            cmd.type = IUI_BOX;
            cmd.x = x + 6 + 6 * len;
            cmd.y = y + 6;
            cmd.w = 9;
            cmd.h = h - 13;
            cmd.color = x11->cols.as.fg;
            cmd.size = 1;

            ui->cmds[ui->ncmds++] = cmd;
        }

        {
            cmd.type  = IUI_TEXT;
            cmd.size  = 14;
            cmd.text  = buf;
            cmd.flags = 0;

            cmd.x = x + 6;
            cmd.y = y;
            cmd.w = w;
            cmd.h = h;

            cmd.color = x11->cols.as.fg;

            ui->cmds[ui->ncmds++] = cmd;
        }

        cmd.type  = IUI_CLIP;
        cmd.flags = IUI_CLIP_CLEAR;
        ui->cmds[ui->ncmds++] = cmd;
    }

    return imhot && imactive && !(ui->btns & bit(1));
}


void iui_draw(iui* ui);