]>
Commit | Line | Data |
---|---|---|
87c6f8a4 SG |
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 <[email protected]> | |
7 | */ | |
8 | ||
c98cb512 SG |
9 | #define LOG_CATEGORY LOGC_EXPO |
10 | ||
87c6f8a4 SG |
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 | ||
9af34150 SG |
59 | uint resolve_id(struct expo *exp, uint id) |
60 | { | |
82cafee1 | 61 | log_debug("resolve id %d\n", id); |
9af34150 SG |
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 | ||
87c6f8a4 SG |
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 | { | |
42b18494 SG |
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 | ||
87c6f8a4 | 112 | exp->display = dev; |
42b18494 | 113 | exp->cons = cons; |
87c6f8a4 SG |
114 | |
115 | return 0; | |
116 | } | |
117 | ||
699b0acb SG |
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 | ||
5904d953 | 142 | void expo_set_text_mode(struct expo *exp, bool text_mode) |
87c6f8a4 SG |
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 | { | |
14a86a51 SG |
161 | struct scene *scn; |
162 | int ret; | |
163 | ||
164 | scn = expo_lookup_scene_id(exp, scene_id); | |
165 | if (!scn) | |
87c6f8a4 | 166 | return log_msg_ret("id", -ENOENT); |
14a86a51 SG |
167 | ret = scene_arrange(scn); |
168 | if (ret) | |
169 | return log_msg_ret("arr", ret); | |
170 | ||
87c6f8a4 SG |
171 | exp->scene_id = scene_id; |
172 | ||
173 | return 0; | |
174 | } | |
175 | ||
4c87e073 SG |
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 | ||
87c6f8a4 SG |
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); | |
14a86a51 SG |
230 | |
231 | /* arrange it to get any changes */ | |
232 | ret = scene_arrange(scn); | |
233 | if (ret) | |
234 | return log_msg_ret("arr", ret); | |
87c6f8a4 SG |
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 | } | |
2e593897 SG |
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); | |
7230fdb3 SG |
258 | ofnode_read_u32(node, "menu-inset", &theme->menu_inset); |
259 | ofnode_read_u32(node, "menuitem-gap-y", &theme->menuitem_gap_y); | |
2e593897 SG |
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 | } |