]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
expo: Rename x and y in struct scene_obj_bbox
authorSimon Glass <sjg@chromium.org>
Fri, 2 May 2025 14:46:31 +0000 (08:46 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 30 May 2025 08:49:32 +0000 (09:49 +0100)
These coordinates are the top left values, so rename them to x0 and y0
in preparation for changing the width and height to x1 and y1

Signed-off-by: Simon Glass <sjg@chromium.org>
boot/scene.c
boot/scene_menu.c
boot/scene_textline.c
include/expo.h
test/boot/expo.c

index a0060c6a97d5d8109f08540998094b2f277afde1..49dac90ceed3213785c7843f6c29c2e011be46f7 100644 (file)
@@ -210,8 +210,8 @@ int scene_obj_set_pos(struct scene *scn, uint id, int x, int y)
        obj = scene_obj_find(scn, id, SCENEOBJT_NONE);
        if (!obj)
                return log_msg_ret("find", -ENOENT);
-       obj->bbox.x = x;
-       obj->bbox.y = y;
+       obj->bbox.x0 = x;
+       obj->bbox.y0 = y;
 
        return 0;
 }
@@ -368,8 +368,8 @@ static int scene_obj_render(struct scene_obj *obj, bool text_mode)
        struct udevice *cons = text_mode ? NULL : exp->cons;
        int x, y, ret;
 
-       x = obj->bbox.x;
-       y = obj->bbox.y;
+       x = obj->bbox.x0;
+       y = obj->bbox.y0;
 
        switch (obj->type) {
        case SCENEOBJT_NONE:
@@ -915,15 +915,15 @@ int scene_bbox_union(struct scene *scn, uint id, int inset,
        if (!obj)
                return log_msg_ret("obj", -ENOENT);
        if (bbox->valid) {
-               bbox->x0 = min(bbox->x0, obj->bbox.x - inset);
-               bbox->y0 = min(bbox->y0, obj->bbox.y);
-               bbox->x1 = max(bbox->x1, obj->bbox.x + obj->bbox.w + inset);
-               bbox->y1 = max(bbox->y1, obj->bbox.y + obj->bbox.h);
+               bbox->x0 = min(bbox->x0, obj->bbox.x0 - inset);
+               bbox->y0 = min(bbox->y0, obj->bbox.y0);
+               bbox->x1 = max(bbox->x1, obj->bbox.x0 + obj->bbox.w + inset);
+               bbox->y1 = max(bbox->y1, obj->bbox.y0 + obj->bbox.h);
        } else {
-               bbox->x0 = obj->bbox.x - inset;
-               bbox->y0 = obj->bbox.y;
-               bbox->x1 = obj->bbox.x + obj->bbox.w + inset;
-               bbox->y1 = obj->bbox.y + obj->bbox.h;
+               bbox->x0 = obj->bbox.x0 - inset;
+               bbox->y0 = obj->bbox.y0;
+               bbox->x1 = obj->bbox.x0 + obj->bbox.w + inset;
+               bbox->y1 = obj->bbox.y0 + obj->bbox.h;
                bbox->valid = true;
        }
 
index 20a6a6b6a01c51f94e4e5cd5a40e2a0eb6612e2d..c47c20305275eff4ba54cd1edc3f1f9775d8790e 100644 (file)
@@ -102,7 +102,7 @@ static int update_pointers(struct scene_obj_menu *menu, uint id, bool point)
                label = scene_obj_find(scn, item->label_id, SCENEOBJT_NONE);
 
                ret = scene_obj_set_pos(scn, menu->pointer_id,
-                                       menu->obj.bbox.x + 200, label->bbox.y);
+                                       menu->obj.bbox.x0 + 200, label->bbox.y0);
                if (ret < 0)
                        return log_msg_ret("ptr", ret);
        }
@@ -205,12 +205,12 @@ int scene_menu_arrange(struct scene *scn, struct expo_arrange_info *arr,
        int x, y;
        int ret;
 
-       x = menu->obj.bbox.x;
-       y = menu->obj.bbox.y;
+       x = menu->obj.bbox.x0;
+       y = menu->obj.bbox.y0;
        if (menu->title_id) {
                int width;
 
-               ret = scene_obj_set_pos(scn, menu->title_id, menu->obj.bbox.x, y);
+               ret = scene_obj_set_pos(scn, menu->title_id, menu->obj.bbox.x0, y);
                if (ret < 0)
                        return log_msg_ret("tit", ret);
 
index 5b4e21e6360c3fc8f4a1b509660b5d7838f2e12f..a513d555deddcce56caf4abcb102257e32b7fe04 100644 (file)
@@ -94,16 +94,16 @@ int scene_textline_arrange(struct scene *scn, struct expo_arrange_info *arr,
        int x, y;
        int ret;
 
-       x = tline->obj.bbox.x;
-       y = tline->obj.bbox.y;
+       x = tline->obj.bbox.x0;
+       y = tline->obj.bbox.y0;
        if (tline->label_id) {
-               ret = scene_obj_set_pos(scn, tline->label_id, tline->obj.bbox.x,
-                                       y);
+               ret = scene_obj_set_pos(scn, tline->label_id,
+                                       tline->obj.bbox.x0, y);
                if (ret < 0)
                        return log_msg_ret("tit", ret);
 
                ret = scene_obj_set_pos(scn, tline->edit_id,
-                                       tline->obj.bbox.x + 200, y);
+                                       tline->obj.bbox.x0 + 200, y);
                if (ret < 0)
                        return log_msg_ret("tit", ret);
 
@@ -197,8 +197,8 @@ int scene_textline_render_deps(struct scene *scn,
                if (ret)
                        return log_msg_ret("sav", ret);
 
-               vidconsole_set_cursor_visible(cons, true, txt->obj.bbox.x,
-                                             txt->obj.bbox.y, scn->cls.num);
+               vidconsole_set_cursor_visible(cons, true, txt->obj.bbox.x0,
+                                             txt->obj.bbox.y0, scn->cls.num);
        }
 
        return 0;
@@ -219,7 +219,7 @@ int scene_textline_open(struct scene *scn, struct scene_obj_textline *tline)
        if (!txt)
                return log_msg_ret("cur", -ENOENT);
 
-       vidconsole_set_cursor_pos(cons, txt->obj.bbox.x, txt->obj.bbox.y);
+       vidconsole_set_cursor_pos(cons, txt->obj.bbox.x0, txt->obj.bbox.y0);
        vidconsole_entry_start(cons);
        cli_cread_init(&scn->cls, abuf_data(&tline->buf), tline->max_chars);
        scn->cls.insert = true;
index 42e934e3ff2b24a63c5b0f095f10064f79903f86..84dc77f771ee1957675a0e904d1a27bb10720a3e 100644 (file)
@@ -194,14 +194,14 @@ enum scene_obj_t {
 /**
  * struct scene_obj_bbox - Dimensions of an object
  *
- * @x: x position, in pixels from left side
- * @y: y position, in pixels from top
+ * @x0: x position, in pixels from left side
+ * @y0: y position, in pixels from top
  * @w: width, in pixels
  * @h: height, in pixels
  */
 struct scene_obj_bbox {
-       int x;
-       int y;
+       int x0;
+       int y0;
        int w;
        int h;
 };
index 77b956bdf0603c1455ebc84b02bcb17cd9a4f8e4..9c940825278f52f429b1f3a6f3ad3c287f1d5513 100644 (file)
@@ -270,8 +270,8 @@ static int expo_object_attr(struct unit_test_state *uts)
        ut_assert(id > 0);
 
        ut_assertok(scene_obj_set_pos(scn, OBJ_LOGO, 123, 456));
-       ut_asserteq(123, img->obj.bbox.x);
-       ut_asserteq(456, img->obj.bbox.y);
+       ut_asserteq(123, img->obj.bbox.x0);
+       ut_asserteq(456, img->obj.bbox.y0);
 
        ut_asserteq(-ENOENT, scene_obj_set_pos(scn, OBJ_TEXT2, 0, 0));
 
@@ -360,8 +360,8 @@ static int expo_object_menu(struct unit_test_state *uts)
        ut_asserteq(0, menu->pointer_id);
 
        ut_assertok(scene_obj_set_pos(scn, OBJ_MENU, 50, 400));
-       ut_asserteq(50, menu->obj.bbox.x);
-       ut_asserteq(400, menu->obj.bbox.y);
+       ut_asserteq(50, menu->obj.bbox.x0);
+       ut_asserteq(400, menu->obj.bbox.y0);
 
        id = scene_txt_str(scn, "title", OBJ_MENU_TITLE, STR_MENU_TITLE,
                           "Main Menu", &tit);
@@ -407,24 +407,24 @@ static int expo_object_menu(struct unit_test_state *uts)
        ut_asserteq(id, menu->cur_item_id);
 
        /* the title should be at the top */
-       ut_asserteq(menu->obj.bbox.x, tit->obj.bbox.x);
-       ut_asserteq(menu->obj.bbox.y, tit->obj.bbox.y);
+       ut_asserteq(menu->obj.bbox.x0, tit->obj.bbox.x0);
+       ut_asserteq(menu->obj.bbox.y0, tit->obj.bbox.y0);
 
        /* the first item should be next */
-       ut_asserteq(menu->obj.bbox.x, name1->obj.bbox.x);
-       ut_asserteq(menu->obj.bbox.y + 32, name1->obj.bbox.y);
+       ut_asserteq(menu->obj.bbox.x0, name1->obj.bbox.x0);
+       ut_asserteq(menu->obj.bbox.y0 + 32, name1->obj.bbox.y0);
 
-       ut_asserteq(menu->obj.bbox.x + 230, key1->obj.bbox.x);
-       ut_asserteq(menu->obj.bbox.y + 32, key1->obj.bbox.y);
+       ut_asserteq(menu->obj.bbox.x0 + 230, key1->obj.bbox.x0);
+       ut_asserteq(menu->obj.bbox.y0 + 32, key1->obj.bbox.y0);
 
-       ut_asserteq(menu->obj.bbox.x + 200, ptr->obj.bbox.x);
-       ut_asserteq(menu->obj.bbox.y + 32, ptr->obj.bbox.y);
+       ut_asserteq(menu->obj.bbox.x0 + 200, ptr->obj.bbox.x0);
+       ut_asserteq(menu->obj.bbox.y0 + 32, ptr->obj.bbox.y0);
 
-       ut_asserteq(menu->obj.bbox.x + 280, desc1->obj.bbox.x);
-       ut_asserteq(menu->obj.bbox.y + 32, desc1->obj.bbox.y);
+       ut_asserteq(menu->obj.bbox.x0 + 280, desc1->obj.bbox.x0);
+       ut_asserteq(menu->obj.bbox.y0 + 32, desc1->obj.bbox.y0);
 
-       ut_asserteq(-4, prev1->obj.bbox.x);
-       ut_asserteq(menu->obj.bbox.y + 32, prev1->obj.bbox.y);
+       ut_asserteq(-4, prev1->obj.bbox.x0);
+       ut_asserteq(menu->obj.bbox.y0 + 32, prev1->obj.bbox.y0);
        ut_asserteq(true, prev1->obj.flags & SCENEOF_HIDE);
 
        /* check iterating through scene items */
@@ -548,39 +548,39 @@ static int expo_render_image(struct unit_test_state *uts)
        /* check dimensions of text */
        obj = scene_obj_find(scn, OBJ_TEXT, SCENEOBJT_NONE);
        ut_assertnonnull(obj);
-       ut_asserteq(400, obj->bbox.x);
-       ut_asserteq(100, obj->bbox.y);
+       ut_asserteq(400, obj->bbox.x0);
+       ut_asserteq(100, obj->bbox.y0);
        ut_asserteq(126, obj->bbox.w);
        ut_asserteq(40, obj->bbox.h);
 
        /* check dimensions of image */
        obj = scene_obj_find(scn, OBJ_LOGO, SCENEOBJT_NONE);
        ut_assertnonnull(obj);
-       ut_asserteq(50, obj->bbox.x);
-       ut_asserteq(20, obj->bbox.y);
+       ut_asserteq(50, obj->bbox.x0);
+       ut_asserteq(20, obj->bbox.y0);
        ut_asserteq(160, obj->bbox.w);
        ut_asserteq(160, obj->bbox.h);
 
        /* check dimensions of menu labels - both should be the same width */
        obj = scene_obj_find(scn, ITEM1_LABEL, SCENEOBJT_NONE);
        ut_assertnonnull(obj);
-       ut_asserteq(50, obj->bbox.x);
-       ut_asserteq(436, obj->bbox.y);
+       ut_asserteq(50, obj->bbox.x0);
+       ut_asserteq(436, obj->bbox.y0);
        ut_asserteq(29, obj->bbox.w);
        ut_asserteq(18, obj->bbox.h);
 
        obj = scene_obj_find(scn, ITEM2_LABEL, SCENEOBJT_NONE);
        ut_assertnonnull(obj);
-       ut_asserteq(50, obj->bbox.x);
-       ut_asserteq(454, obj->bbox.y);
+       ut_asserteq(50, obj->bbox.x0);
+       ut_asserteq(454, obj->bbox.y0);
        ut_asserteq(29, obj->bbox.w);
        ut_asserteq(18, obj->bbox.h);
 
        /* check dimensions of menu */
        obj = scene_obj_find(scn, OBJ_MENU, SCENEOBJT_NONE);
        ut_assertnonnull(obj);
-       ut_asserteq(50, obj->bbox.x);
-       ut_asserteq(400, obj->bbox.y);
+       ut_asserteq(50, obj->bbox.x0);
+       ut_asserteq(400, obj->bbox.y0);
        ut_asserteq(160, obj->bbox.w);
        ut_asserteq(160, obj->bbox.h);