From 7de95ffec0f047972a241060dd4a6ed7b8bc6a45 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Thu, 27 Apr 2023 02:36:18 +0300 Subject: [PATCH 41/41] Add CURSOR_TELEPORT support See osdn #47522 Signed-off-by: Marko Lindqvist --- client/control.c | 4 +- client/tilespec.c | 9 ++- client/tilespec.h | 1 + data/misc/cursors.spec | 123 ++++++++++++++++++++--------------------- 4 files changed, 70 insertions(+), 67 deletions(-) diff --git a/client/control.c b/client/control.c index e31067d63c..bd9df3aec2 100644 --- a/client/control.c +++ b/client/control.c @@ -1274,8 +1274,8 @@ void control_mouse_cursor(struct tile *ptile) } break; case HOVER_TELEPORT: - /* FIXME: check for invalid tiles & teleport specific cursor type. */ - mouse_cursor_type = CURSOR_PARADROP; + /* FIXME: check for invalid tiles. */ + mouse_cursor_type = CURSOR_TELEPORT; break; case HOVER_PARADROP: /* FIXME: check for invalid tiles. */ diff --git a/client/tilespec.c b/client/tilespec.c index afdf78c662..f84cde70c1 100644 --- a/client/tilespec.c +++ b/client/tilespec.c @@ -3204,15 +3204,17 @@ static void tileset_lookup_sprite_tags(struct tileset *t) } for (i = 0; i < CURSOR_LAST; i++) { + const char *names[CURSOR_LAST] = + {"goto", "patrol", "paradrop", "teleport", "nuke", "select", + "invalid", "attack", "edit_paint", "edit_add", "wait"}; + for (f = 0; f < NUM_CURSOR_FRAMES; f++) { - const char *names[CURSOR_LAST] = - {"goto", "patrol", "paradrop", "nuke", "select", - "invalid", "attack", "edit_paint", "edit_add", "wait"}; struct small_sprite *ss; fc_assert(ARRAY_SIZE(names) == CURSOR_LAST); fc_snprintf(buffer, sizeof(buffer), "cursor.%s%d", names[i], f); SET_SPRITE(cursor[i].frame[f], buffer); + if (sprite_hash_lookup(t->sprite_hash, buffer, &ss)) { t->sprites.cursor[i].hot_x = ss->hot_x; t->sprites.cursor[i].hot_y = ss->hot_y; @@ -6940,6 +6942,7 @@ struct sprite *get_cursor_sprite(const struct tileset *t, { *hot_x = t->sprites.cursor[cursor].hot_x; *hot_y = t->sprites.cursor[cursor].hot_y; + return t->sprites.cursor[cursor].frame[frame]; } diff --git a/client/tilespec.h b/client/tilespec.h index 2134541745..5b5ebe8053 100644 --- a/client/tilespec.h +++ b/client/tilespec.h @@ -290,6 +290,7 @@ enum cursor_type { CURSOR_GOTO, CURSOR_PATROL, CURSOR_PARADROP, + CURSOR_TELEPORT, CURSOR_NUKE, CURSOR_SELECT, CURSOR_INVALID, diff --git a/data/misc/cursors.spec b/data/misc/cursors.spec index ded9b33728..3b517c54da 100644 --- a/data/misc/cursors.spec +++ b/data/misc/cursors.spec @@ -12,7 +12,6 @@ artists = " edit_paint cursor take from GIMP Hourglass and Add from Bluecurve theme in redhat-artwork - " [file] @@ -26,65 +25,65 @@ dx = 32 dy = 32 pixel_border = 1 -tiles = { "row", "column", "tag", "hot_x", "hot_y" - 0, 0, "cursor.goto0", 16, 16 - 1, 0, "cursor.goto1", 16, 16 - 2, 0, "cursor.goto2", 16, 16 - 3, 0, "cursor.goto3", 16, 16 - 4, 0, "cursor.goto4", 16, 16 - 5, 0, "cursor.goto5", 16, 16 - 0, 1, "cursor.patrol0", 16, 16 - 1, 1, "cursor.patrol1", 16, 16 - 2, 1, "cursor.patrol2", 16, 16 - 3, 1, "cursor.patrol3", 16, 16 - 4, 1, "cursor.patrol4", 16, 16 - 5, 1, "cursor.patrol5", 16, 16 - 0, 2, "cursor.paradrop0", 16, 16 - 1, 2, "cursor.paradrop1", 16, 16 - 2, 2, "cursor.paradrop2", 16, 16 - 3, 2, "cursor.paradrop3", 16, 16 - 4, 2, "cursor.paradrop4", 16, 16 - 5, 2, "cursor.paradrop5", 16, 16 - 0, 3, "cursor.nuke0", 16, 16 - 1, 3, "cursor.nuke1", 16, 16 - 2, 3, "cursor.nuke2", 16, 16 - 3, 3, "cursor.nuke3", 16, 16 - 4, 3, "cursor.nuke4", 16, 16 - 5, 3, "cursor.nuke5", 16, 16 - 0, 4, "cursor.select0", 16, 16 - 1, 4, "cursor.select1", 16, 16 - 2, 4, "cursor.select2", 16, 16 - 3, 4, "cursor.select3", 16, 16 - 4, 4, "cursor.select4", 16, 16 - 5, 4, "cursor.select5", 16, 16 - 0, 5, "cursor.invalid0", 16, 16 - 1, 5, "cursor.invalid1", 16, 16 - 2, 5, "cursor.invalid2", 16, 16 - 3, 5, "cursor.invalid3", 16, 16 - 4, 5, "cursor.invalid4", 16, 16 - 5, 5, "cursor.invalid5", 16, 16 - 0, 6, "cursor.attack0", 16, 16 - 1, 6, "cursor.attack1", 16, 16 - 2, 6, "cursor.attack2", 16, 16 - 3, 6, "cursor.attack3", 16, 16 - 4, 6, "cursor.attack4", 16, 16 - 5, 6, "cursor.attack5", 16, 16 - 0, 7, "cursor.edit_paint0", 16, 16 - 1, 7, "cursor.edit_paint1", 16, 16 - 2, 7, "cursor.edit_paint2", 16, 16 - 3, 7, "cursor.edit_paint3", 16, 16 - 4, 7, "cursor.edit_paint4", 16, 16 - 5, 7, "cursor.edit_paint5", 16, 16 - 0, 8, "cursor.edit_add0", 16, 16 - 1, 8, "cursor.edit_add1", 16, 16 - 2, 8, "cursor.edit_add2", 16, 16 - 3, 8, "cursor.edit_add3", 16, 16 - 4, 8, "cursor.edit_add4", 16, 16 - 5, 8, "cursor.edit_add5", 16, 16 - 0, 9, "cursor.wait0", 16, 16 - 1, 9, "cursor.wait1", 16, 16 - 2, 9, "cursor.wait2", 16, 16 - 3, 9, "cursor.wait3", 16, 16 - 4, 9, "cursor.wait4", 16, 16 - 5, 9, "cursor.wait5", 16, 16 +tiles = { "row", "column", "hot_x", "hot_y", "tag" + 0, 0, 16, 16, "cursor.goto0" + 1, 0, 16, 16, "cursor.goto1" + 2, 0, 16, 16, "cursor.goto2" + 3, 0, 16, 16, "cursor.goto3" + 4, 0, 16, 16, "cursor.goto4" + 5, 0, 16, 16, "cursor.goto5" + 0, 1, 16, 16, "cursor.patrol0" + 1, 1, 16, 16, "cursor.patrol1" + 2, 1, 16, 16, "cursor.patrol2" + 3, 1, 16, 16, "cursor.patrol3" + 4, 1, 16, 16, "cursor.patrol4" + 5, 1, 16, 16, "cursor.patrol5" + 0, 2, 16, 16, "cursor.paradrop0", "cursor.teleport0" + 1, 2, 16, 16, "cursor.paradrop1", "cursor.teleport1" + 2, 2, 16, 16, "cursor.paradrop2", "cursor.teleport2" + 3, 2, 16, 16, "cursor.paradrop3", "cursor.teleport3" + 4, 2, 16, 16, "cursor.paradrop4", "cursor.teleport4" + 5, 2, 16, 16, "cursor.paradrop5", "cursor.teleport5" + 0, 3, 16, 16, "cursor.nuke0" + 1, 3, 16, 16, "cursor.nuke1" + 2, 3, 16, 16, "cursor.nuke2" + 3, 3, 16, 16, "cursor.nuke3" + 4, 3, 16, 16, "cursor.nuke4" + 5, 3, 16, 16, "cursor.nuke5" + 0, 4, 16, 16, "cursor.select0" + 1, 4, 16, 16, "cursor.select1" + 2, 4, 16, 16, "cursor.select2" + 3, 4, 16, 16, "cursor.select3" + 4, 4, 16, 16, "cursor.select4" + 5, 4, 16, 16, "cursor.select5" + 0, 5, 16, 16, "cursor.invalid0" + 1, 5, 16, 16, "cursor.invalid1" + 2, 5, 16, 16, "cursor.invalid2" + 3, 5, 16, 16, "cursor.invalid3" + 4, 5, 16, 16, "cursor.invalid4" + 5, 5, 16, 16, "cursor.invalid5" + 0, 6, 16, 16, "cursor.attack0" + 1, 6, 16, 16, "cursor.attack1" + 2, 6, 16, 16, "cursor.attack2" + 3, 6, 16, 16, "cursor.attack3" + 4, 6, 16, 16, "cursor.attack4" + 5, 6, 16, 16, "cursor.attack5" + 0, 7, 16, 16, "cursor.edit_paint0" + 1, 7, 16, 16, "cursor.edit_paint1" + 2, 7, 16, 16, "cursor.edit_paint2" + 3, 7, 16, 16, "cursor.edit_paint3" + 4, 7, 16, 16, "cursor.edit_paint4" + 5, 7, 16, 16, "cursor.edit_paint5" + 0, 8, 16, 16, "cursor.edit_add0" + 1, 8, 16, 16, "cursor.edit_add1" + 2, 8, 16, 16, "cursor.edit_add2" + 3, 8, 16, 16, "cursor.edit_add3" + 4, 8, 16, 16, "cursor.edit_add4" + 5, 8, 16, 16, "cursor.edit_add5" + 0, 9, 16, 16, "cursor.wait0" + 1, 9, 16, 16, "cursor.wait1" + 2, 9, 16, 16, "cursor.wait2" + 3, 9, 16, 16, "cursor.wait3" + 4, 9, 16, 16, "cursor.wait4" + 5, 9, 16, 16, "cursor.wait5" } -- 2.39.2