58e08a40522220aef3d31579ad1890d6185c7770
[fw/altos] / src / draw / draw-test.c
1 /*
2  * Copyright © 2023 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #define WIDTH   128
20 #define HEIGHT  64
21
22 #define DEFAULT_WIDTH   WIDTH
23 #define DEFAULT_HEIGHT  HEIGHT
24
25 #define PASS_KEYS
26 #include "frame.c"
27 #include "ao_draw.h"
28
29 #define STRIDE  ((WIDTH + 31) / 32)
30
31 static uint32_t bits[STRIDE * HEIGHT];
32
33 static struct ao_bitmap fb = {
34         .base = bits,
35         .stride = STRIDE,
36         .width = WIDTH,
37         .height = HEIGHT
38 };
39
40 #define BIG_FONT FrutigerLT_Roman_64_font
41 #define SMALL_FONT FrutigerLT_Roman_12_font
42 #define LOGO_FONT FrutigerLT_Roman_24_font
43
44 #define VALUE_Y         BIG_FONT.ascent
45 #define LABEL_Y         BIG_FONT.ascent + SMALL_FONT.ascent + 2
46 #define BOX_X           2
47 #define PAD_X           90
48 #define BOX_LABEL_X     30
49 #define PAD_LABEL_X     95
50 #define SEP_X           (PAD_X - 8)
51
52 static int      box_number = 1;
53 static int      pad_number = 1;
54 static bool     do_polys = false;
55
56 static const struct ao_coord trek[] = {
57         { .x = 90, .y = 0 },
58         { .x = 60, .y = 40 },
59         { .x = 90, .y = 20 },
60         { .x = 120, .y = 40 },
61 };
62
63 #define NCOORD_TREK (sizeof(trek)/sizeof(trek[0]))
64
65 static const struct ao_coord donut[] = {
66         { .x = 30, .y = 0 },
67         { .x = 0, .y = 30 },
68         { .x = 30, .y = 60 },
69         { .x = 60, .y = 30 },
70         { .x = 30, .y = 0 },
71         { .x = 30, .y = 10 },
72         { .x = 50, .y = 30 },
73         { .x = 30, .y = 50 },
74         { .x = 10, .y = 30 },
75         { .x = 30, .y = 10 },
76 };
77
78 #define NCOORD_DONUT (sizeof(donut)/sizeof(donut[0]))
79
80 void HandleExpose(Display *dpy, Window win, GC gc)
81 {
82         ao_rect(&fb, 0, 0, WIDTH, HEIGHT, 0xffffffff, AO_COPY);
83
84         if (do_polys) {
85                 ao_logo(&fb, &LOGO_FONT, 0x00000000, AO_COPY);
86 //              ao_poly(&fb, trek, NCOORD_TREK, 0x00000000, AO_COPY);
87 //              ao_poly(&fb, donut, NCOORD_DONUT, 0x00000000, AO_COPY);
88         } else {
89                 char    str[64];
90
91                 sprintf(str, "%02d", box_number);
92                 ao_text(&fb, &BIG_FONT, BOX_X, VALUE_Y, str, 0x00000000, AO_COPY);
93                 ao_text(&fb, &SMALL_FONT, BOX_LABEL_X, LABEL_Y, "box", 0x00000000, AO_COPY);
94
95                 sprintf(str, "%d", pad_number);
96                 ao_text(&fb, &BIG_FONT, PAD_X, VALUE_Y, str, 0x00000000, AO_COPY);
97                 ao_text(&fb, &SMALL_FONT, PAD_LABEL_X, LABEL_Y, "pad", 0x00000000, AO_COPY);
98
99                 ao_line(&fb, SEP_X, 0, SEP_X, HEIGHT, 0x00000000, AO_COPY);
100         }
101
102         XImage *image = XCreateImage(dpy, visual, 1, XYBitmap, 0, (char *) bits, WIDTH, HEIGHT, 32, STRIDE*4);
103         XSetForeground(dpy, gc, WhitePixel(dpy, screen));
104         XSetBackground(dpy, gc, BlackPixel(dpy, screen));
105         XPutImage(dpy, win, gc, image, 0, 0, 0, 0, WIDTH, HEIGHT);
106         free(image);
107 }
108
109 void
110 HandleKeyPress(Display *dpy, Window win, GC gc, XEvent *ev)
111 {
112         char    string[10];
113         if (XLookupString ((XKeyEvent *) ev, string, sizeof (string), 0, 0) >= 1) {
114                 switch (string[0]) {
115                 case 'q':
116                         exit (0);
117                 case 'p':
118                         pad_number++;
119                         if (pad_number > 8)
120                                 pad_number = 1;
121                         break;
122                 case 'P':
123                         pad_number--;
124                         if (pad_number < 1)
125                                 pad_number = 8;
126                         break;
127                 case 'b':
128                         box_number++;
129                         if (box_number > 99)
130                                 box_number = 1;
131                         break;
132                 case 'B':
133                         box_number--;
134                         if (box_number < 1)
135                                 box_number = 99;
136                         break;
137                 case 's':
138                         do_polys = !do_polys;
139                         break;
140                 case 'c':
141                         break;
142                 }
143                 HandleExpose(dpy, win, gc);
144         }
145 }
146
147 void
148 HandleKeyRelease(Display *dpy, Window win, GC gc, XEvent *ev)
149 {
150 }