Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Implementation of a expo, a collection of scenes providing menu options |
| 4 | * |
| 5 | * Copyright 2022 Google LLC |
| 6 | * Written by Simon Glass <sjg@chromium.org> |
| 7 | */ |
| 8 | |
Simon Glass | c98cb51 | 2023-06-01 10:22:43 -0600 | [diff] [blame] | 9 | #define LOG_CATEGORY LOGC_EXPO |
| 10 | |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <dm.h> |
| 13 | #include <expo.h> |
| 14 | #include <malloc.h> |
| 15 | #include <video.h> |
| 16 | #include "scene_internal.h" |
| 17 | |
| 18 | int expo_new(const char *name, void *priv, struct expo **expp) |
| 19 | { |
| 20 | struct expo *exp; |
| 21 | |
| 22 | exp = calloc(1, sizeof(struct expo)); |
| 23 | if (!exp) |
| 24 | return log_msg_ret("expo", -ENOMEM); |
| 25 | exp->name = strdup(name); |
| 26 | if (!exp->name) { |
| 27 | free(exp); |
| 28 | return log_msg_ret("name", -ENOMEM); |
| 29 | } |
| 30 | exp->priv = priv; |
| 31 | INIT_LIST_HEAD(&exp->scene_head); |
| 32 | INIT_LIST_HEAD(&exp->str_head); |
| 33 | |
| 34 | *expp = exp; |
| 35 | |
| 36 | return 0; |
| 37 | } |
| 38 | |
| 39 | static void estr_destroy(struct expo_string *estr) |
| 40 | { |
| 41 | free(estr); |
| 42 | } |
| 43 | |
| 44 | void expo_destroy(struct expo *exp) |
| 45 | { |
| 46 | struct scene *scn, *next; |
| 47 | struct expo_string *estr, *enext; |
| 48 | |
| 49 | list_for_each_entry_safe(scn, next, &exp->scene_head, sibling) |
| 50 | scene_destroy(scn); |
| 51 | |
| 52 | list_for_each_entry_safe(estr, enext, &exp->str_head, sibling) |
| 53 | estr_destroy(estr); |
| 54 | |
| 55 | free(exp->name); |
| 56 | free(exp); |
| 57 | } |
| 58 | |
Simon Glass | 9af3415 | 2023-06-01 10:22:47 -0600 | [diff] [blame] | 59 | uint resolve_id(struct expo *exp, uint id) |
| 60 | { |
Simon Glass | 82cafee | 2023-06-01 10:23:01 -0600 | [diff] [blame] | 61 | log_debug("resolve id %d\n", id); |
Simon Glass | 9af3415 | 2023-06-01 10:22:47 -0600 | [diff] [blame] | 62 | if (!id) |
| 63 | id = exp->next_id++; |
| 64 | else if (id >= exp->next_id) |
| 65 | exp->next_id = id + 1; |
| 66 | |
| 67 | return id; |
| 68 | } |
| 69 | |
| 70 | void expo_set_dynamic_start(struct expo *exp, uint dyn_start) |
| 71 | { |
| 72 | exp->next_id = dyn_start; |
| 73 | } |
| 74 | |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 75 | int expo_str(struct expo *exp, const char *name, uint id, const char *str) |
| 76 | { |
| 77 | struct expo_string *estr; |
| 78 | |
| 79 | estr = calloc(1, sizeof(struct expo_string)); |
| 80 | if (!estr) |
| 81 | return log_msg_ret("obj", -ENOMEM); |
| 82 | |
| 83 | estr->id = resolve_id(exp, id); |
| 84 | estr->str = str; |
| 85 | list_add_tail(&estr->sibling, &exp->str_head); |
| 86 | |
| 87 | return estr->id; |
| 88 | } |
| 89 | |
| 90 | const char *expo_get_str(struct expo *exp, uint id) |
| 91 | { |
| 92 | struct expo_string *estr; |
| 93 | |
| 94 | list_for_each_entry(estr, &exp->str_head, sibling) { |
| 95 | if (estr->id == id) |
| 96 | return estr->str; |
| 97 | } |
| 98 | |
| 99 | return NULL; |
| 100 | } |
| 101 | |
| 102 | int expo_set_display(struct expo *exp, struct udevice *dev) |
| 103 | { |
Simon Glass | 42b1849 | 2023-06-01 10:22:34 -0600 | [diff] [blame] | 104 | struct udevice *cons; |
| 105 | int ret; |
| 106 | |
| 107 | ret = device_find_first_child_by_uclass(dev, UCLASS_VIDEO_CONSOLE, |
| 108 | &cons); |
| 109 | if (ret) |
| 110 | return log_msg_ret("con", ret); |
| 111 | |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 112 | exp->display = dev; |
Simon Glass | 42b1849 | 2023-06-01 10:22:34 -0600 | [diff] [blame] | 113 | exp->cons = cons; |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 114 | |
| 115 | return 0; |
| 116 | } |
| 117 | |
Simon Glass | 699b0ac | 2023-06-01 10:22:52 -0600 | [diff] [blame] | 118 | int expo_calc_dims(struct expo *exp) |
| 119 | { |
| 120 | struct scene *scn; |
| 121 | int ret; |
| 122 | |
| 123 | if (!exp->cons) |
| 124 | return log_msg_ret("dim", -ENOTSUPP); |
| 125 | |
| 126 | list_for_each_entry(scn, &exp->scene_head, sibling) { |
| 127 | /* |
| 128 | * Do the menus last so that all the menus' text objects |
| 129 | * are dimensioned |
| 130 | */ |
| 131 | ret = scene_calc_dims(scn, false); |
| 132 | if (ret) |
| 133 | return log_msg_ret("scn", ret); |
| 134 | ret = scene_calc_dims(scn, true); |
| 135 | if (ret) |
| 136 | return log_msg_ret("scn", ret); |
| 137 | } |
| 138 | |
| 139 | return 0; |
| 140 | } |
| 141 | |
Simon Glass | 5904d95 | 2023-06-01 10:22:37 -0600 | [diff] [blame] | 142 | void expo_set_text_mode(struct expo *exp, bool text_mode) |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 143 | { |
| 144 | exp->text_mode = text_mode; |
| 145 | } |
| 146 | |
| 147 | struct scene *expo_lookup_scene_id(struct expo *exp, uint scene_id) |
| 148 | { |
| 149 | struct scene *scn; |
| 150 | |
| 151 | list_for_each_entry(scn, &exp->scene_head, sibling) { |
| 152 | if (scn->id == scene_id) |
| 153 | return scn; |
| 154 | } |
| 155 | |
| 156 | return NULL; |
| 157 | } |
| 158 | |
| 159 | int expo_set_scene_id(struct expo *exp, uint scene_id) |
| 160 | { |
Simon Glass | 14a86a5 | 2023-06-01 10:22:35 -0600 | [diff] [blame] | 161 | struct scene *scn; |
| 162 | int ret; |
| 163 | |
| 164 | scn = expo_lookup_scene_id(exp, scene_id); |
| 165 | if (!scn) |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 166 | return log_msg_ret("id", -ENOENT); |
Simon Glass | 14a86a5 | 2023-06-01 10:22:35 -0600 | [diff] [blame] | 167 | ret = scene_arrange(scn); |
| 168 | if (ret) |
| 169 | return log_msg_ret("arr", ret); |
| 170 | |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 171 | exp->scene_id = scene_id; |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
Simon Glass | 4c87e07 | 2023-06-01 10:22:58 -0600 | [diff] [blame] | 176 | int expo_first_scene_id(struct expo *exp) |
| 177 | { |
| 178 | struct scene *scn; |
| 179 | |
| 180 | if (list_empty(&exp->scene_head)) |
| 181 | return -ENOENT; |
| 182 | |
| 183 | scn = list_first_entry(&exp->scene_head, struct scene, sibling); |
| 184 | |
| 185 | return scn->id; |
| 186 | } |
| 187 | |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 188 | int expo_render(struct expo *exp) |
| 189 | { |
| 190 | struct udevice *dev = exp->display; |
| 191 | struct video_priv *vid_priv = dev_get_uclass_priv(dev); |
| 192 | struct scene *scn = NULL; |
| 193 | u32 colour; |
| 194 | int ret; |
| 195 | |
| 196 | colour = video_index_to_colour(vid_priv, VID_WHITE); |
| 197 | ret = video_fill(dev, colour); |
| 198 | if (ret) |
| 199 | return log_msg_ret("fill", ret); |
| 200 | |
| 201 | if (exp->scene_id) { |
| 202 | scn = expo_lookup_scene_id(exp, exp->scene_id); |
| 203 | if (!scn) |
| 204 | return log_msg_ret("scn", -ENOENT); |
| 205 | |
| 206 | ret = scene_render(scn); |
| 207 | if (ret) |
| 208 | return log_msg_ret("ren", ret); |
| 209 | } |
| 210 | |
| 211 | video_sync(dev, true); |
| 212 | |
| 213 | return scn ? 0 : -ECHILD; |
| 214 | } |
| 215 | |
| 216 | int expo_send_key(struct expo *exp, int key) |
| 217 | { |
| 218 | struct scene *scn = NULL; |
| 219 | |
| 220 | if (exp->scene_id) { |
| 221 | int ret; |
| 222 | |
| 223 | scn = expo_lookup_scene_id(exp, exp->scene_id); |
| 224 | if (!scn) |
| 225 | return log_msg_ret("scn", -ENOENT); |
| 226 | |
| 227 | ret = scene_send_key(scn, key, &exp->action); |
| 228 | if (ret) |
| 229 | return log_msg_ret("key", ret); |
Simon Glass | 14a86a5 | 2023-06-01 10:22:35 -0600 | [diff] [blame] | 230 | |
| 231 | /* arrange it to get any changes */ |
| 232 | ret = scene_arrange(scn); |
| 233 | if (ret) |
| 234 | return log_msg_ret("arr", ret); |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | return scn ? 0 : -ECHILD; |
| 238 | } |
| 239 | |
| 240 | int expo_action_get(struct expo *exp, struct expo_action *act) |
| 241 | { |
| 242 | *act = exp->action; |
| 243 | exp->action.type = EXPOACT_NONE; |
| 244 | |
| 245 | return act->type == EXPOACT_NONE ? -EAGAIN : 0; |
| 246 | } |
Simon Glass | 2e59389 | 2023-06-01 10:22:53 -0600 | [diff] [blame] | 247 | |
| 248 | int expo_apply_theme(struct expo *exp, ofnode node) |
| 249 | { |
| 250 | struct scene *scn; |
| 251 | struct expo_theme *theme = &exp->theme; |
| 252 | int ret; |
| 253 | |
| 254 | log_debug("Applying theme %s\n", ofnode_get_name(node)); |
| 255 | |
| 256 | memset(theme, '\0', sizeof(struct expo_theme)); |
| 257 | ofnode_read_u32(node, "font-size", &theme->font_size); |
Simon Glass | 7230fdb | 2023-06-01 10:23:00 -0600 | [diff] [blame] | 258 | ofnode_read_u32(node, "menu-inset", &theme->menu_inset); |
| 259 | ofnode_read_u32(node, "menuitem-gap-y", &theme->menuitem_gap_y); |
Simon Glass | 2e59389 | 2023-06-01 10:22:53 -0600 | [diff] [blame] | 260 | |
| 261 | list_for_each_entry(scn, &exp->scene_head, sibling) { |
| 262 | ret = scene_apply_theme(scn, theme); |
| 263 | if (ret) |
| 264 | return log_msg_ret("app", ret); |
| 265 | } |
| 266 | |
| 267 | return 0; |
| 268 | } |
Simon Glass | f2eb6ad | 2023-08-14 16:40:23 -0600 | [diff] [blame] | 269 | |
| 270 | int expo_iter_scene_objs(struct expo *exp, expo_scene_obj_iterator iter, |
| 271 | void *priv) |
| 272 | { |
| 273 | struct scene *scn; |
| 274 | int ret; |
| 275 | |
| 276 | list_for_each_entry(scn, &exp->scene_head, sibling) { |
| 277 | ret = scene_iter_objs(scn, iter, priv); |
| 278 | if (ret) |
| 279 | return log_msg_ret("wr", ret); |
| 280 | } |
| 281 | |
| 282 | return 0; |
| 283 | } |