{"id":25972018,"url":"https://github.com/Kasugaccho/DTL_RogueLike","last_synced_at":"2025-03-05T00:02:45.688Z","repository":{"id":110006753,"uuid":"161037939","full_name":"AsPJT/Roguelike","owner":"AsPJT","description":"🦇: Roguelike","archived":false,"fork":false,"pushed_at":"2024-02-10T14:01:59.000Z","size":732,"stargazers_count":98,"open_issues_count":0,"forks_count":8,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-20T12:02:04.267Z","etag":null,"topics":["dtl","dungeon","dungeon-generator","game-2d","map-generation","procedural","procedural-generation","procedural-terrain","rogue-like","roguelike","roguelike-dungeons","roguelike-engine","roguelike-game","roguelike-library","roguelike-rpg-game","roguelikedev","rpg","rpg-game","tilemap","ue5"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsl-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AsPJT.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE_1_0.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"AsPJT"}},"created_at":"2018-12-09T12:40:07.000Z","updated_at":"2025-02-19T10:04:13.000Z","dependencies_parsed_at":"2023-03-21T06:52:52.705Z","dependency_job_id":null,"html_url":"https://github.com/AsPJT/Roguelike","commit_stats":null,"previous_names":["kasugaccho/dtl_roguelike"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsPJT%2FRoguelike","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsPJT%2FRoguelike/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsPJT%2FRoguelike/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AsPJT%2FRoguelike/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AsPJT","download_url":"https://codeload.github.com/AsPJT/Roguelike/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241940573,"owners_count":20045881,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dtl","dungeon","dungeon-generator","game-2d","map-generation","procedural","procedural-generation","procedural-terrain","rogue-like","roguelike","roguelike-dungeons","roguelike-engine","roguelike-game","roguelike-library","roguelike-rpg-game","roguelikedev","rpg","rpg-game","tilemap","ue5"],"created_at":"2025-03-05T00:02:45.124Z","updated_at":"2025-03-05T00:02:45.682Z","avatar_url":"https://github.com/AsPJT.png","language":"C++","funding_links":["https://github.com/sponsors/AsPJT"],"categories":["GameProgramming"],"sub_categories":[],"readme":"# [Roguelike (Dungeon Template Library) ](https://github.com/AsPJT/DungeonTemplateLibrary) [![BSL-1.0](https://img.shields.io/badge/license-BSL--1.0-blue.svg)](https://github.com/AsPJT/DungeonTemplateLibrary/blob/master/LICENSE_1_0.txt)\n\n---\n\n# Supported Compilers 🔧\n\n|Compiler|Run|\n|:---|:---|\n|MSVC|None|\n|GCC|[Wandbox](https://wandbox.org/permlink/mh9FPcIeSE4UyPkL)|\n|Clang|[Wandbox](https://wandbox.org/permlink/rH99RSoLGXrDu8CU)|\n\n---\n\n# Generated Image 🖼️\n\n![rl1](https://AsPJT.github.io/DungeonPicture/Picture/Dungeon/nrl256.gif) \n![rl2](https://AsPJT.github.io/DungeonPicture/Picture/Dungeon/nrl_player256.gif)\n\n---\n\n# Example\n\n```cpp\n#include \"RogueLike.hpp\"\n#include \u003carray\u003e\n#include \u003ciostream\u003e\n\nint main() {\n\n\tusing shape_t = int;\n\tstd::array\u003cstd::array\u003cshape_t, 32\u003e, 24\u003e matrix{ {} };\n\n\tdtl::shape::RogueLike\u003cshape_t\u003e(0, 1, 2, 3, 4, 20,\n\t\tdtl::base::MatrixRange(3, 3, 2, 2),\n\t\tdtl::base::MatrixRange(3, 3, 4, 4)).draw(matrix);\n\n\tfor (const auto\u0026 i : matrix) {\n\t\tfor (const auto\u0026 j : i)\n\t\t\tstd::cout \u003c\u003c j \u003c\u003c ',';\n\t\tstd::cout \u003c\u003c '\\n';\n\t}\n\n\tfor (const auto\u0026 i : matrix) {\n\t\tfor (const auto\u0026 j : i)\n\t\t\tswitch (j) {\n\t\t\tcase 0:std::cout \u003c\u003c \"%%\"; break;\n\t\t\tcase 1:std::cout \u003c\u003c \"##\"; break;\n\t\t\tcase 2:std::cout \u003c\u003c \"  \"; break;\n\t\t\tcase 3:std::cout \u003c\u003c \"++\"; break;\n\t\t\tcase 4:std::cout \u003c\u003c \"--\"; break;\n\t\t\t}\n\t\tstd::cout \u003c\u003c '\\n';\n\t}\n\n\treturn 0;\n}\n```\n\n```\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,0,0,1,4,1,1,1,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,0,0,1,4,4,4,1,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,0,0,1,4,1,4,1,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,1,1,0,0,1,4,1,4,1,0,0,0,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,1,4,4,4,4,4,1,0,0,0,1,4,1,1,1,0,0,0,0,0,0,\n0,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,0,0,0,1,3,1,1,1,1,0,0,0,0,0,\n0,1,4,4,4,4,4,4,3,2,2,2,2,1,0,0,0,0,0,0,0,1,2,2,2,2,1,0,0,0,0,0,\n1,1,1,1,4,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,2,2,2,2,1,0,0,0,0,0,\n1,4,4,4,4,1,0,0,1,2,2,2,2,1,1,2,2,2,1,1,1,1,2,2,2,2,1,0,0,0,0,0,\n1,1,1,4,1,1,0,0,1,1,1,3,1,1,1,2,2,2,3,4,1,1,1,1,3,1,1,0,0,0,0,0,\n0,0,1,4,1,0,0,0,1,4,4,4,4,4,3,2,2,2,1,4,4,4,4,4,4,1,0,0,0,0,0,0,\n0,0,1,4,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,4,1,1,1,1,4,1,1,1,0,0,0,0,\n0,0,1,4,1,0,0,0,0,1,1,1,1,1,1,3,1,1,1,4,1,0,0,1,4,4,4,1,0,0,0,0,\n0,0,1,4,1,0,0,0,0,1,4,4,4,4,4,4,1,0,1,4,1,1,1,1,1,1,3,1,1,0,0,0,\n0,0,1,4,1,0,0,0,0,1,1,1,1,1,1,4,1,0,1,1,1,4,4,4,3,2,2,2,1,0,0,0,\n0,0,1,1,1,0,0,0,0,0,0,1,4,4,4,4,1,0,0,0,1,1,1,4,1,2,2,2,1,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,1,1,1,1,0,1,4,4,4,1,2,2,2,1,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,4,4,4,1,0,1,1,1,1,1,2,2,2,1,0,0,0,\n0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%############%%%%######%%%%%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%##        ##%%%%##--######%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%##        ##%%%%##------##%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%##        ##%%%%##--##--##%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%##########++####%%%%##--##--##%%%%%%%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%##----------##%%%%%%##--######%%%%%%%%%%%%\n%%######################++##########%%%%%%##++########%%%%%%%%%%\n%%##------------++        ##%%%%%%%%%%%%%%##        ##%%%%%%%%%%\n########--########        ############%%%%##        ##%%%%%%%%%%\n##--------##%%%%##        ####      ########        ##%%%%%%%%%%\n######--####%%%%######++######      ++--########++####%%%%%%%%%%\n%%%%##--##%%%%%%##----------++      ##------------##%%%%%%%%%%%%\n%%%%##--##%%%%%%##############      ##--########--######%%%%%%%%\n%%%%##--##%%%%%%%%############++######--##%%%%##------##%%%%%%%%\n%%%%##--##%%%%%%%%##------------##%%##--############++####%%%%%%\n%%%%##--##%%%%%%%%############--##%%######------++      ##%%%%%%\n%%%%######%%%%%%%%%%%%##--------##%%%%%%######--##      ##%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%######--########%%##------##      ##%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%##--------##%%##########      ##%%%%%%\n%%%%%%%%%%%%%%%%%%%%%%%%%%############%%%%%%%%%%##########%%%%%%\n```\n\n---\n\n# [License 💳](https://github.com/AsPJT/DungeonTemplateLibrary/blob/master/LICENSE_1_0.txt)\n\n[\u003e\u003e View License 💳](https://github.com/AsPJT/DungeonTemplateLibrary/blob/master/LICENSE_1_0.txt)\n\nCopyright (c) 2018-2022 As Project.\n\nDistributed under the Boost Software License, Version 1.0.(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\n\n---\n\n# Related Items 🎮\n\n[![PAX_SAPIENTICA](https://raw.githubusercontent.com/AsPJT/PAX_SAPIENTICA/develop/Images/Logo/TitleBanner4.svg)](https://github.com/AsPJT/PAX_SAPIENTICA)\n[![DTL](https://raw.githubusercontent.com/AsPJT/AsPJT/master/Picture/dungeon_template_library.png)](https://github.com/AsPJT/DungeonTemplateLibrary)\n[![GenkaiSyuraku](https://raw.githubusercontent.com/AsPJT/AsPJT/master/Picture/genkai_syuraku.png)](https://github.com/AsPJT/GenkaiSyuraku)\n[![AsLib](https://raw.githubusercontent.com/AsPJT/AsPJT/master/Picture/aslib.png)](https://github.com/AsPJT/AsLib)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKasugaccho%2FDTL_RogueLike","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKasugaccho%2FDTL_RogueLike","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKasugaccho%2FDTL_RogueLike/lists"}