blob: d4dfb49ada157e8b0f499a0b15a72a4bbd4830e1 [file] [log] [blame]
Simon Glass5e2607a2023-01-06 08:52:37 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Implementation of a scene, a collection of text/image/menu items in an expo
4 *
5 * Copyright 2022 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
Simon Glassc98cb512023-06-01 10:22:43 -06009#define LOG_CATEGORY LOGC_EXPO
10
Simon Glass5e2607a2023-01-06 08:52:37 -060011#include <common.h>
12#include <dm.h>
13#include <expo.h>
14#include <malloc.h>
15#include <mapmem.h>
Simon Glass4e64bee2023-06-01 10:22:59 -060016#include <menu.h>
Simon Glass5e2607a2023-01-06 08:52:37 -060017#include <video.h>
18#include <video_console.h>
19#include <linux/input.h>
20#include "scene_internal.h"
21
Simon Glass5e2607a2023-01-06 08:52:37 -060022int scene_new(struct expo *exp, const char *name, uint id, struct scene **scnp)
23{
24 struct scene *scn;
25
26 scn = calloc(1, sizeof(struct scene));
27 if (!scn)
28 return log_msg_ret("expo", -ENOMEM);
29 scn->name = strdup(name);
30 if (!scn->name) {
31 free(scn);
32 return log_msg_ret("name", -ENOMEM);
33 }
34
Simon Glass93f99b32023-10-01 19:13:31 -060035 abuf_init(&scn->buf);
36 if (!abuf_realloc(&scn->buf, EXPO_MAX_CHARS + 1)) {
37 free(scn->name);
38 free(scn);
39 return log_msg_ret("buf", -ENOMEM);
40 }
41 abuf_init(&scn->entry_save);
42
Simon Glass5e2607a2023-01-06 08:52:37 -060043 INIT_LIST_HEAD(&scn->obj_head);
44 scn->id = resolve_id(exp, id);
45 scn->expo = exp;
46 list_add_tail(&scn->sibling, &exp->scene_head);
47
48 *scnp = scn;
49
50 return scn->id;
51}
52
53void scene_obj_destroy(struct scene_obj *obj)
54{
55 if (obj->type == SCENEOBJT_MENU)
56 scene_menu_destroy((struct scene_obj_menu *)obj);
57 free(obj->name);
58 free(obj);
59}
60
61void scene_destroy(struct scene *scn)
62{
63 struct scene_obj *obj, *next;
64
65 list_for_each_entry_safe(obj, next, &scn->obj_head, sibling)
66 scene_obj_destroy(obj);
67
Simon Glass93f99b32023-10-01 19:13:31 -060068 abuf_uninit(&scn->entry_save);
69 abuf_uninit(&scn->buf);
Simon Glass5e2607a2023-01-06 08:52:37 -060070 free(scn->name);
Simon Glass5e2607a2023-01-06 08:52:37 -060071 free(scn);
72}
73
Simon Glassdef898c2023-06-01 10:22:27 -060074int scene_title_set(struct scene *scn, uint id)
Simon Glass5e2607a2023-01-06 08:52:37 -060075{
Simon Glassdef898c2023-06-01 10:22:27 -060076 scn->title_id = id;
Simon Glass5e2607a2023-01-06 08:52:37 -060077
78 return 0;
79}
80
81int scene_obj_count(struct scene *scn)
82{
83 struct scene_obj *obj;
84 int count = 0;
85
86 list_for_each_entry(obj, &scn->obj_head, sibling)
87 count++;
88
89 return count;
90}
91
Simon Glass633b3dc2023-08-14 16:40:21 -060092void *scene_obj_find(const struct scene *scn, uint id, enum scene_obj_t type)
Simon Glass5e2607a2023-01-06 08:52:37 -060093{
94 struct scene_obj *obj;
95
96 list_for_each_entry(obj, &scn->obj_head, sibling) {
97 if (obj->id == id &&
98 (type == SCENEOBJT_NONE || obj->type == type))
99 return obj;
100 }
101
102 return NULL;
103}
104
Simon Glassa0874dc2023-06-01 10:23:02 -0600105void *scene_obj_find_by_name(struct scene *scn, const char *name)
106{
107 struct scene_obj *obj;
108
109 list_for_each_entry(obj, &scn->obj_head, sibling) {
110 if (!strcmp(name, obj->name))
111 return obj;
112 }
113
114 return NULL;
115}
116
Simon Glass5e2607a2023-01-06 08:52:37 -0600117int scene_obj_add(struct scene *scn, const char *name, uint id,
118 enum scene_obj_t type, uint size, struct scene_obj **objp)
119{
120 struct scene_obj *obj;
121
122 obj = calloc(1, size);
123 if (!obj)
124 return log_msg_ret("obj", -ENOMEM);
125 obj->name = strdup(name);
126 if (!obj->name) {
127 free(obj);
128 return log_msg_ret("name", -ENOMEM);
129 }
130
131 obj->id = resolve_id(scn->expo, id);
132 obj->scene = scn;
133 obj->type = type;
134 list_add_tail(&obj->sibling, &scn->obj_head);
135 *objp = obj;
136
137 return obj->id;
138}
139
140int scene_img(struct scene *scn, const char *name, uint id, char *data,
141 struct scene_obj_img **imgp)
142{
143 struct scene_obj_img *img;
144 int ret;
145
146 ret = scene_obj_add(scn, name, id, SCENEOBJT_IMAGE,
147 sizeof(struct scene_obj_img),
148 (struct scene_obj **)&img);
149 if (ret < 0)
Simon Glass9767de72023-10-01 19:13:25 -0600150 return log_msg_ret("obj", ret);
Simon Glass5e2607a2023-01-06 08:52:37 -0600151
152 img->data = data;
153
154 if (imgp)
155 *imgp = img;
156
157 return img->obj.id;
158}
159
160int scene_txt(struct scene *scn, const char *name, uint id, uint str_id,
161 struct scene_obj_txt **txtp)
162{
163 struct scene_obj_txt *txt;
164 int ret;
165
166 ret = scene_obj_add(scn, name, id, SCENEOBJT_TEXT,
167 sizeof(struct scene_obj_txt),
168 (struct scene_obj **)&txt);
169 if (ret < 0)
Simon Glass9767de72023-10-01 19:13:25 -0600170 return log_msg_ret("obj", ret);
Simon Glass5e2607a2023-01-06 08:52:37 -0600171
172 txt->str_id = str_id;
173
174 if (txtp)
175 *txtp = txt;
176
177 return txt->obj.id;
178}
179
180int scene_txt_str(struct scene *scn, const char *name, uint id, uint str_id,
181 const char *str, struct scene_obj_txt **txtp)
182{
183 struct scene_obj_txt *txt;
184 int ret;
185
186 ret = expo_str(scn->expo, name, str_id, str);
187 if (ret < 0)
188 return log_msg_ret("str", ret);
Simon Glass408011c2023-10-01 19:13:26 -0600189 if (str_id && ret != str_id)
Simon Glass5e2607a2023-01-06 08:52:37 -0600190 return log_msg_ret("id", -EEXIST);
Simon Glass408011c2023-10-01 19:13:26 -0600191 str_id = ret;
Simon Glass5e2607a2023-01-06 08:52:37 -0600192
193 ret = scene_obj_add(scn, name, id, SCENEOBJT_TEXT,
194 sizeof(struct scene_obj_txt),
195 (struct scene_obj **)&txt);
196 if (ret < 0)
Simon Glass9767de72023-10-01 19:13:25 -0600197 return log_msg_ret("obj", ret);
Simon Glass5e2607a2023-01-06 08:52:37 -0600198
199 txt->str_id = str_id;
200
201 if (txtp)
202 *txtp = txt;
203
204 return txt->obj.id;
205}
206
207int scene_txt_set_font(struct scene *scn, uint id, const char *font_name,
208 uint font_size)
209{
210 struct scene_obj_txt *txt;
211
212 txt = scene_obj_find(scn, id, SCENEOBJT_TEXT);
213 if (!txt)
214 return log_msg_ret("find", -ENOENT);
215 txt->font_name = font_name;
216 txt->font_size = font_size;
217
218 return 0;
219}
220
221int scene_obj_set_pos(struct scene *scn, uint id, int x, int y)
222{
223 struct scene_obj *obj;
224
225 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
226 if (!obj)
227 return log_msg_ret("find", -ENOENT);
Simon Glassae45d6c2023-06-01 10:22:49 -0600228 obj->dim.x = x;
229 obj->dim.y = y;
Simon Glass5e2607a2023-01-06 08:52:37 -0600230
231 return 0;
232}
233
Simon Glass699b0ac2023-06-01 10:22:52 -0600234int scene_obj_set_size(struct scene *scn, uint id, int w, int h)
235{
236 struct scene_obj *obj;
237
238 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
239 if (!obj)
240 return log_msg_ret("find", -ENOENT);
241 obj->dim.w = w;
242 obj->dim.h = h;
243
244 return 0;
245}
246
Simon Glass5e2607a2023-01-06 08:52:37 -0600247int scene_obj_set_hide(struct scene *scn, uint id, bool hide)
248{
Simon Glassce72c9e2023-06-01 10:22:50 -0600249 int ret;
250
251 ret = scene_obj_flag_clrset(scn, id, SCENEOF_HIDE,
252 hide ? SCENEOF_HIDE : 0);
253 if (ret)
254 return log_msg_ret("flg", ret);
255
256 return 0;
257}
258
259int scene_obj_flag_clrset(struct scene *scn, uint id, uint clr, uint set)
260{
Simon Glass5e2607a2023-01-06 08:52:37 -0600261 struct scene_obj *obj;
262
263 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
264 if (!obj)
265 return log_msg_ret("find", -ENOENT);
Simon Glassce72c9e2023-06-01 10:22:50 -0600266 obj->flags &= ~clr;
267 obj->flags |= set;
Simon Glass5e2607a2023-01-06 08:52:37 -0600268
269 return 0;
270}
271
272int scene_obj_get_hw(struct scene *scn, uint id, int *widthp)
273{
274 struct scene_obj *obj;
275
276 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
277 if (!obj)
278 return log_msg_ret("find", -ENOENT);
279
280 switch (obj->type) {
281 case SCENEOBJT_NONE:
282 case SCENEOBJT_MENU:
Simon Glassc4fea342023-10-01 19:13:34 -0600283 case SCENEOBJT_TEXTLINE:
Simon Glass5e2607a2023-01-06 08:52:37 -0600284 break;
285 case SCENEOBJT_IMAGE: {
286 struct scene_obj_img *img = (struct scene_obj_img *)obj;
287 ulong width, height;
288 uint bpix;
289
290 video_bmp_get_info(img->data, &width, &height, &bpix);
291 if (widthp)
292 *widthp = width;
293 return height;
294 }
295 case SCENEOBJT_TEXT: {
296 struct scene_obj_txt *txt = (struct scene_obj_txt *)obj;
297 struct expo *exp = scn->expo;
Simon Glass50f02032023-06-01 10:22:51 -0600298 struct vidconsole_bbox bbox;
299 const char *str;
300 int len, ret;
Simon Glass5e2607a2023-01-06 08:52:37 -0600301
Simon Glass50f02032023-06-01 10:22:51 -0600302 str = expo_get_str(exp, txt->str_id);
303 if (!str)
304 return log_msg_ret("str", -ENOENT);
305 len = strlen(str);
306
307 /* if there is no console, make it up */
308 if (!exp->cons) {
309 if (widthp)
310 *widthp = 8 * len;
311 return 16;
312 }
313
314 ret = vidconsole_measure(scn->expo->cons, txt->font_name,
315 txt->font_size, str, &bbox);
316 if (ret)
317 return log_msg_ret("mea", ret);
Simon Glass5e2607a2023-01-06 08:52:37 -0600318 if (widthp)
Simon Glass50f02032023-06-01 10:22:51 -0600319 *widthp = bbox.x1;
Simon Glass5e2607a2023-01-06 08:52:37 -0600320
Simon Glass50f02032023-06-01 10:22:51 -0600321 return bbox.y1;
Simon Glass5e2607a2023-01-06 08:52:37 -0600322 }
323 }
324
325 return 0;
326}
327
328/**
Simon Glass94598d52023-10-01 19:13:30 -0600329 * scene_render_background() - Render the background for an object
330 *
331 * @obj: Object to render
Simon Glassc4fea342023-10-01 19:13:34 -0600332 * @box_only: true to show a box around the object, but keep the normal
333 * background colour inside
Simon Glass94598d52023-10-01 19:13:30 -0600334 */
Simon Glassc4fea342023-10-01 19:13:34 -0600335static void scene_render_background(struct scene_obj *obj, bool box_only)
Simon Glass94598d52023-10-01 19:13:30 -0600336{
337 struct expo *exp = obj->scene->expo;
338 const struct expo_theme *theme = &exp->theme;
339 struct vidconsole_bbox bbox, label_bbox;
340 struct udevice *dev = exp->display;
341 struct video_priv *vid_priv;
342 struct udevice *cons = exp->cons;
343 struct vidconsole_colour old;
344 enum colour_idx fore, back;
345 uint inset = theme->menu_inset;
346
347 /* draw a background for the object */
348 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
349 fore = VID_BLACK;
350 back = VID_WHITE;
351 } else {
352 fore = VID_LIGHT_GRAY;
353 back = VID_BLACK;
354 }
355
356 /* see if this object wants to render a background */
357 if (scene_obj_calc_bbox(obj, &bbox, &label_bbox))
358 return;
359
360 vidconsole_push_colour(cons, fore, back, &old);
361 vid_priv = dev_get_uclass_priv(dev);
362 video_fill_part(dev, label_bbox.x0 - inset, label_bbox.y0 - inset,
363 label_bbox.x1 + inset, label_bbox.y1 + inset,
364 vid_priv->colour_fg);
365 vidconsole_pop_colour(cons, &old);
Simon Glassc4fea342023-10-01 19:13:34 -0600366 if (box_only) {
367 video_fill_part(dev, label_bbox.x0, label_bbox.y0,
368 label_bbox.x1, label_bbox.y1,
369 vid_priv->colour_bg);
370 }
Simon Glass94598d52023-10-01 19:13:30 -0600371}
372
373/**
Simon Glass5e2607a2023-01-06 08:52:37 -0600374 * scene_obj_render() - Render an object
375 *
376 */
377static int scene_obj_render(struct scene_obj *obj, bool text_mode)
378{
379 struct scene *scn = obj->scene;
380 struct expo *exp = scn->expo;
Simon Glass7230fdb2023-06-01 10:23:00 -0600381 const struct expo_theme *theme = &exp->theme;
Simon Glass42b18492023-06-01 10:22:34 -0600382 struct udevice *dev = exp->display;
383 struct udevice *cons = text_mode ? NULL : exp->cons;
Simon Glass5e2607a2023-01-06 08:52:37 -0600384 int x, y, ret;
385
Simon Glassae45d6c2023-06-01 10:22:49 -0600386 x = obj->dim.x;
387 y = obj->dim.y;
Simon Glass5e2607a2023-01-06 08:52:37 -0600388
389 switch (obj->type) {
390 case SCENEOBJT_NONE:
391 break;
392 case SCENEOBJT_IMAGE: {
393 struct scene_obj_img *img = (struct scene_obj_img *)obj;
394
395 if (!cons)
396 return -ENOTSUPP;
397 ret = video_bmp_display(dev, map_to_sysmem(img->data), x, y,
398 true);
399 if (ret < 0)
400 return log_msg_ret("img", ret);
401 break;
402 }
403 case SCENEOBJT_TEXT: {
404 struct scene_obj_txt *txt = (struct scene_obj_txt *)obj;
405 const char *str;
406
407 if (!cons)
408 return -ENOTSUPP;
409
410 if (txt->font_name || txt->font_size) {
411 ret = vidconsole_select_font(cons,
412 txt->font_name,
413 txt->font_size);
414 } else {
415 ret = vidconsole_select_font(cons, NULL, 0);
416 }
417 if (ret && ret != -ENOSYS)
418 return log_msg_ret("font", ret);
Simon Glass5e2607a2023-01-06 08:52:37 -0600419 str = expo_get_str(exp, txt->str_id);
Simon Glass756c9552023-06-01 10:22:57 -0600420 if (str) {
421 struct video_priv *vid_priv;
422 struct vidconsole_colour old;
423 enum colour_idx fore, back;
424
425 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
426 fore = VID_BLACK;
427 back = VID_WHITE;
428 } else {
429 fore = VID_LIGHT_GRAY;
430 back = VID_BLACK;
431 }
432
433 vid_priv = dev_get_uclass_priv(dev);
434 if (obj->flags & SCENEOF_POINT) {
435 vidconsole_push_colour(cons, fore, back, &old);
Simon Glass7230fdb2023-06-01 10:23:00 -0600436 video_fill_part(dev, x - theme->menu_inset, y,
437 x + obj->dim.w,
438 y + obj->dim.h,
Simon Glass756c9552023-06-01 10:22:57 -0600439 vid_priv->colour_bg);
440 }
441 vidconsole_set_cursor_pos(cons, x, y);
Simon Glass5e2607a2023-01-06 08:52:37 -0600442 vidconsole_put_string(cons, str);
Simon Glass756c9552023-06-01 10:22:57 -0600443 if (obj->flags & SCENEOF_POINT)
444 vidconsole_pop_colour(cons, &old);
445 }
Simon Glass5e2607a2023-01-06 08:52:37 -0600446 break;
447 }
448 case SCENEOBJT_MENU: {
449 struct scene_obj_menu *menu = (struct scene_obj_menu *)obj;
Simon Glass756c9552023-06-01 10:22:57 -0600450
451 if (exp->popup && (obj->flags & SCENEOF_OPEN)) {
452 if (!cons)
453 return -ENOTSUPP;
454
455 /* draw a background behind the menu items */
Simon Glassc4fea342023-10-01 19:13:34 -0600456 scene_render_background(obj, false);
Simon Glass756c9552023-06-01 10:22:57 -0600457 }
Simon Glass5e2607a2023-01-06 08:52:37 -0600458 /*
459 * With a vidconsole, the text and item pointer are rendered as
460 * normal objects so we don't need to do anything here. The menu
461 * simply controls where they are positioned.
462 */
463 if (cons)
464 return -ENOTSUPP;
465
466 ret = scene_menu_display(menu);
467 if (ret < 0)
468 return log_msg_ret("img", ret);
469
470 break;
471 }
Simon Glassc4fea342023-10-01 19:13:34 -0600472 case SCENEOBJT_TEXTLINE:
473 if (obj->flags & SCENEOF_OPEN)
474 scene_render_background(obj, true);
475 break;
Simon Glass5e2607a2023-01-06 08:52:37 -0600476 }
477
478 return 0;
479}
480
481int scene_arrange(struct scene *scn)
482{
483 struct scene_obj *obj;
484 int ret;
485
486 list_for_each_entry(obj, &scn->obj_head, sibling) {
Simon Glassfd6073a2023-10-01 19:13:24 -0600487 switch (obj->type) {
488 case SCENEOBJT_NONE:
489 case SCENEOBJT_IMAGE:
490 case SCENEOBJT_TEXT:
491 break;
492 case SCENEOBJT_MENU: {
Simon Glass5e2607a2023-01-06 08:52:37 -0600493 struct scene_obj_menu *menu;
494
495 menu = (struct scene_obj_menu *)obj,
496 ret = scene_menu_arrange(scn, menu);
497 if (ret)
498 return log_msg_ret("arr", ret);
Simon Glassfd6073a2023-10-01 19:13:24 -0600499 break;
500 }
Simon Glassc4fea342023-10-01 19:13:34 -0600501 case SCENEOBJT_TEXTLINE: {
502 struct scene_obj_textline *tline;
503
504 tline = (struct scene_obj_textline *)obj,
505 ret = scene_textline_arrange(scn, tline);
506 if (ret)
507 return log_msg_ret("arr", ret);
508 break;
509 }
Simon Glass5e2607a2023-01-06 08:52:37 -0600510 }
511 }
512
513 return 0;
514}
515
Simon Glass4c87e072023-06-01 10:22:58 -0600516int scene_render_deps(struct scene *scn, uint id)
517{
518 struct scene_obj *obj;
519 int ret;
520
521 if (!id)
522 return 0;
523 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
524 if (!obj)
525 return log_msg_ret("obj", -ENOENT);
526
527 if (!(obj->flags & SCENEOF_HIDE)) {
528 ret = scene_obj_render(obj, false);
529 if (ret && ret != -ENOTSUPP)
530 return log_msg_ret("ren", ret);
531
Simon Glassfd6073a2023-10-01 19:13:24 -0600532 switch (obj->type) {
533 case SCENEOBJT_NONE:
534 case SCENEOBJT_IMAGE:
535 case SCENEOBJT_TEXT:
536 break;
537 case SCENEOBJT_MENU:
Simon Glass4c87e072023-06-01 10:22:58 -0600538 scene_menu_render_deps(scn,
539 (struct scene_obj_menu *)obj);
Simon Glassfd6073a2023-10-01 19:13:24 -0600540 break;
Simon Glassc4fea342023-10-01 19:13:34 -0600541 case SCENEOBJT_TEXTLINE:
542 scene_textline_render_deps(scn,
543 (struct scene_obj_textline *)obj);
544 break;
Simon Glassfd6073a2023-10-01 19:13:24 -0600545 }
Simon Glass4c87e072023-06-01 10:22:58 -0600546 }
547
548 return 0;
549}
550
Simon Glass5e2607a2023-01-06 08:52:37 -0600551int scene_render(struct scene *scn)
552{
553 struct expo *exp = scn->expo;
554 struct scene_obj *obj;
555 int ret;
556
557 list_for_each_entry(obj, &scn->obj_head, sibling) {
Simon Glassce72c9e2023-06-01 10:22:50 -0600558 if (!(obj->flags & SCENEOF_HIDE)) {
Simon Glass5e2607a2023-01-06 08:52:37 -0600559 ret = scene_obj_render(obj, exp->text_mode);
560 if (ret && ret != -ENOTSUPP)
561 return log_msg_ret("ren", ret);
562 }
563 }
564
Simon Glass4c87e072023-06-01 10:22:58 -0600565 /* render any highlighted object on top of the others */
566 if (scn->highlight_id && !exp->text_mode) {
567 ret = scene_render_deps(scn, scn->highlight_id);
568 if (ret && ret != -ENOTSUPP)
569 return log_msg_ret("dep", ret);
570 }
571
Simon Glass5e2607a2023-01-06 08:52:37 -0600572 return 0;
573}
574
Simon Glass4e64bee2023-06-01 10:22:59 -0600575/**
576 * send_key_obj() - Handle a keypress for moving between objects
577 *
578 * @scn: Scene to receive the key
579 * @key: Key to send (KEYCODE_UP)
580 * @event: Returns resulting event from this keypress
581 * Returns: 0 if OK, -ve on error
582 */
583static void send_key_obj(struct scene *scn, struct scene_obj *obj, int key,
584 struct expo_action *event)
585{
586 switch (key) {
587 case BKEY_UP:
588 while (obj != list_first_entry(&scn->obj_head, struct scene_obj,
589 sibling)) {
590 obj = list_entry(obj->sibling.prev,
591 struct scene_obj, sibling);
Simon Glassd88edd22023-10-01 19:13:27 -0600592 if (scene_obj_can_highlight(obj)) {
Simon Glass4e64bee2023-06-01 10:22:59 -0600593 event->type = EXPOACT_POINT_OBJ;
594 event->select.id = obj->id;
595 log_debug("up to obj %d\n", event->select.id);
596 break;
597 }
598 }
599 break;
600 case BKEY_DOWN:
601 while (!list_is_last(&obj->sibling, &scn->obj_head)) {
602 obj = list_entry(obj->sibling.next, struct scene_obj,
603 sibling);
Simon Glassd88edd22023-10-01 19:13:27 -0600604 if (scene_obj_can_highlight(obj)) {
Simon Glass4e64bee2023-06-01 10:22:59 -0600605 event->type = EXPOACT_POINT_OBJ;
606 event->select.id = obj->id;
607 log_debug("down to obj %d\n", event->select.id);
608 break;
609 }
610 }
611 break;
612 case BKEY_SELECT:
Simon Glassd88edd22023-10-01 19:13:27 -0600613 if (scene_obj_can_highlight(obj)) {
Simon Glass4e64bee2023-06-01 10:22:59 -0600614 event->type = EXPOACT_OPEN;
615 event->select.id = obj->id;
616 log_debug("open obj %d\n", event->select.id);
617 }
618 break;
619 case BKEY_QUIT:
620 event->type = EXPOACT_QUIT;
621 log_debug("obj quit\n");
622 break;
623 }
624}
625
Simon Glass5e2607a2023-01-06 08:52:37 -0600626int scene_send_key(struct scene *scn, int key, struct expo_action *event)
627{
628 struct scene_obj *obj;
629 int ret;
630
Simon Glass4e64bee2023-06-01 10:22:59 -0600631 event->type = EXPOACT_NONE;
632
633 /*
634 * In 'popup' mode, arrow keys move betwen objects, unless a menu is
635 * opened
636 */
637 if (scn->expo->popup) {
638 obj = NULL;
639 if (scn->highlight_id) {
640 obj = scene_obj_find(scn, scn->highlight_id,
641 SCENEOBJT_NONE);
642 }
643 if (!obj)
644 return 0;
645
646 if (!(obj->flags & SCENEOF_OPEN)) {
647 send_key_obj(scn, obj, key, event);
648 return 0;
649 }
650
Simon Glassfd6073a2023-10-01 19:13:24 -0600651 switch (obj->type) {
652 case SCENEOBJT_NONE:
653 case SCENEOBJT_IMAGE:
654 case SCENEOBJT_TEXT:
655 break;
656 case SCENEOBJT_MENU: {
657 struct scene_obj_menu *menu;
658
659 menu = (struct scene_obj_menu *)obj,
660 ret = scene_menu_send_key(scn, menu, key, event);
661 if (ret)
662 return log_msg_ret("key", ret);
663 break;
664 }
Simon Glassc4fea342023-10-01 19:13:34 -0600665 case SCENEOBJT_TEXTLINE: {
666 struct scene_obj_textline *tline;
667
668 tline = (struct scene_obj_textline *)obj,
669 ret = scene_textline_send_key(scn, tline, key, event);
670 if (ret)
671 return log_msg_ret("key", ret);
672 break;
673 }
Simon Glassfd6073a2023-10-01 19:13:24 -0600674 }
Simon Glass4e64bee2023-06-01 10:22:59 -0600675 return 0;
676 }
677
Simon Glass5e2607a2023-01-06 08:52:37 -0600678 list_for_each_entry(obj, &scn->obj_head, sibling) {
679 if (obj->type == SCENEOBJT_MENU) {
680 struct scene_obj_menu *menu;
681
682 menu = (struct scene_obj_menu *)obj,
683 ret = scene_menu_send_key(scn, menu, key, event);
684 if (ret)
685 return log_msg_ret("key", ret);
Simon Glass5e2607a2023-01-06 08:52:37 -0600686 break;
687 }
688 }
689
690 return 0;
691}
Simon Glass699b0ac2023-06-01 10:22:52 -0600692
Simon Glass8bc69b42023-10-01 19:13:29 -0600693int scene_obj_calc_bbox(struct scene_obj *obj, struct vidconsole_bbox *bbox,
694 struct vidconsole_bbox *label_bbox)
695{
696 switch (obj->type) {
697 case SCENEOBJT_NONE:
698 case SCENEOBJT_IMAGE:
699 case SCENEOBJT_TEXT:
700 return -ENOSYS;
701 case SCENEOBJT_MENU: {
702 struct scene_obj_menu *menu = (struct scene_obj_menu *)obj;
703
704 scene_menu_calc_bbox(menu, bbox, label_bbox);
705 break;
706 }
Simon Glassc4fea342023-10-01 19:13:34 -0600707 case SCENEOBJT_TEXTLINE: {
708 struct scene_obj_textline *tline;
709
710 tline = (struct scene_obj_textline *)obj;
711 scene_textline_calc_bbox(tline, bbox, label_bbox);
712 break;
713 }
Simon Glass8bc69b42023-10-01 19:13:29 -0600714 }
715
716 return 0;
717}
718
Simon Glass699b0ac2023-06-01 10:22:52 -0600719int scene_calc_dims(struct scene *scn, bool do_menus)
720{
721 struct scene_obj *obj;
722 int ret;
723
724 list_for_each_entry(obj, &scn->obj_head, sibling) {
725 switch (obj->type) {
726 case SCENEOBJT_NONE:
727 case SCENEOBJT_TEXT:
728 case SCENEOBJT_IMAGE: {
729 int width;
730
731 if (!do_menus) {
732 ret = scene_obj_get_hw(scn, obj->id, &width);
733 if (ret < 0)
734 return log_msg_ret("get", ret);
735 obj->dim.w = width;
736 obj->dim.h = ret;
737 }
738 break;
739 }
740 case SCENEOBJT_MENU: {
741 struct scene_obj_menu *menu;
742
743 if (do_menus) {
744 menu = (struct scene_obj_menu *)obj;
745
746 ret = scene_menu_calc_dims(menu);
747 if (ret)
748 return log_msg_ret("men", ret);
749 }
750 break;
751 }
Simon Glassc4fea342023-10-01 19:13:34 -0600752 case SCENEOBJT_TEXTLINE: {
753 struct scene_obj_textline *tline;
754
755 tline = (struct scene_obj_textline *)obj;
756 ret = scene_textline_calc_dims(tline);
757 if (ret)
758 return log_msg_ret("men", ret);
759
760 break;
761 }
Simon Glass699b0ac2023-06-01 10:22:52 -0600762 }
763 }
764
765 return 0;
766}
Simon Glass2e593892023-06-01 10:22:53 -0600767
768int scene_apply_theme(struct scene *scn, struct expo_theme *theme)
769{
770 struct scene_obj *obj;
771 int ret;
772
773 /* Avoid error-checking optional items */
774 scene_txt_set_font(scn, scn->title_id, NULL, theme->font_size);
775
776 list_for_each_entry(obj, &scn->obj_head, sibling) {
777 switch (obj->type) {
778 case SCENEOBJT_NONE:
779 case SCENEOBJT_IMAGE:
780 case SCENEOBJT_MENU:
Simon Glassc4fea342023-10-01 19:13:34 -0600781 case SCENEOBJT_TEXTLINE:
Simon Glass2e593892023-06-01 10:22:53 -0600782 break;
783 case SCENEOBJT_TEXT:
784 scene_txt_set_font(scn, obj->id, NULL,
785 theme->font_size);
786 break;
787 }
788 }
789
790 ret = scene_arrange(scn);
791 if (ret)
792 return log_msg_ret("arr", ret);
793
794 return 0;
795}
Simon Glass756c9552023-06-01 10:22:57 -0600796
797void scene_set_highlight_id(struct scene *scn, uint id)
798{
799 scn->highlight_id = id;
800}
801
802void scene_highlight_first(struct scene *scn)
803{
804 struct scene_obj *obj;
805
806 list_for_each_entry(obj, &scn->obj_head, sibling) {
Simon Glassd88edd22023-10-01 19:13:27 -0600807 if (scene_obj_can_highlight(obj)) {
Simon Glass756c9552023-06-01 10:22:57 -0600808 scene_set_highlight_id(scn, obj->id);
809 return;
Simon Glass756c9552023-06-01 10:22:57 -0600810 }
811 }
812}
813
Simon Glass93c901b2023-10-01 19:13:33 -0600814static int scene_obj_open(struct scene *scn, struct scene_obj *obj)
Simon Glass756c9552023-06-01 10:22:57 -0600815{
816 int ret;
817
Simon Glass93c901b2023-10-01 19:13:33 -0600818 switch (obj->type) {
819 case SCENEOBJT_NONE:
820 case SCENEOBJT_IMAGE:
821 case SCENEOBJT_MENU:
822 case SCENEOBJT_TEXT:
823 break;
824 case SCENEOBJT_TEXTLINE:
825 ret = scene_textline_open(scn,
826 (struct scene_obj_textline *)obj);
827 if (ret)
828 return log_msg_ret("op", ret);
829 break;
830 }
831
832 return 0;
833}
834
835int scene_set_open(struct scene *scn, uint id, bool open)
836{
837 struct scene_obj *obj;
838 int ret;
839
840 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
841 if (!obj)
842 return log_msg_ret("find", -ENOENT);
843
844 if (open) {
845 ret = scene_obj_open(scn, obj);
846 if (ret)
847 return log_msg_ret("op", ret);
848 }
849
Simon Glass756c9552023-06-01 10:22:57 -0600850 ret = scene_obj_flag_clrset(scn, id, SCENEOF_OPEN,
851 open ? SCENEOF_OPEN : 0);
852 if (ret)
853 return log_msg_ret("flg", ret);
854
855 return 0;
856}
Simon Glassf2eb6ad2023-08-14 16:40:23 -0600857
858int scene_iter_objs(struct scene *scn, expo_scene_obj_iterator iter,
859 void *priv)
860{
861 struct scene_obj *obj;
862
863 list_for_each_entry(obj, &scn->obj_head, sibling) {
864 int ret;
865
866 ret = iter(obj, priv);
867 if (ret)
868 return log_msg_ret("itr", ret);
869 }
870
871 return 0;
872}
Simon Glass8bc69b42023-10-01 19:13:29 -0600873
874int scene_bbox_union(struct scene *scn, uint id, int inset,
875 struct vidconsole_bbox *bbox)
876{
877 struct scene_obj *obj;
878
879 if (!id)
880 return 0;
881 obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
882 if (!obj)
883 return log_msg_ret("obj", -ENOENT);
884 if (bbox->valid) {
885 bbox->x0 = min(bbox->x0, obj->dim.x - inset);
886 bbox->y0 = min(bbox->y0, obj->dim.y);
887 bbox->x1 = max(bbox->x1, obj->dim.x + obj->dim.w + inset);
888 bbox->y1 = max(bbox->y1, obj->dim.y + obj->dim.h);
889 } else {
890 bbox->x0 = obj->dim.x - inset;
891 bbox->y0 = obj->dim.y;
892 bbox->x1 = obj->dim.x + obj->dim.w + inset;
893 bbox->y1 = obj->dim.y + obj->dim.h;
894 bbox->valid = true;
895 }
896
897 return 0;
898}