fissh

termios terminal aquarium. demo at ssh://fish@kloet.net
Download | Log | Files | Refs

commit fdd66522e9f9b3a50e22b8e42ffbf71c183fcbbf
parent 931038deea228d041ecc83976e33c7dd87369e56
Author: amrfti <andrew@kloet.net>
Date:   Thu, 10 Jul 2025 18:43:38 +0300

add fish

Diffstat:
Msrc/assets/FishAssets.h | 29+++++++++++++++++++++++++++--
1 file changed, 27 insertions(+), 2 deletions(-)

diff --git a/src/assets/FishAssets.h b/src/assets/FishAssets.h @@ -4,6 +4,17 @@ #include "../SpriteUtils.h" #include <vector> +/* + Mask Definitions: + 1: body + 2: dorsal fin + 3: flippers + 4: eye + 5: mouth + 6: tailfin + 7: gills +*/ + inline const std::vector<AssetPair>& getFishAssets() { static const std::vector<AssetPair> fishAssets = { { @@ -99,8 +110,22 @@ inline const std::vector<AssetPair>& getFishAssets() { R"(6 11222 )", R"(6661111111 11111 )", R"( 6 3 77 4 1)", - R"(6661111111311311111 )", - }}}; + R"(6661111111311311111 )",}}, + { + { + R"(???????,-.?????)", + R"(__ ????) \.????)", + R"(\ \_.!` '-.?)", + R"(?> _ |<( O <)", + R"(/_/?';,,....-`?)", + }, + { + R"( 222 )", + R"(66 2 22 )", + R"(6 61111 111 )", + R"( 6 1 777 4 5)", + R"(666 '333111111 )",}} + }; return fishAssets; }