{"id":50979944,"url":"https://github.com/qninhdt/yourcraft","last_synced_at":"2026-06-19T13:01:44.976Z","repository":{"id":62015861,"uuid":"550892590","full_name":"qninhdt/yourcraft","owner":"qninhdt","description":"YourCraft - a simple voxel game written in C++ using modern OpenGL","archived":false,"fork":false,"pushed_at":"2022-11-18T08:09:07.000Z","size":34785,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2023-03-07T12:29:02.133Z","etag":null,"topics":["cpp","game","gamedev","glsl","imgui","minecraft","minecraft-clone","opengl","voxel"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qninhdt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-13T13:51:38.000Z","updated_at":"2022-11-18T08:07:21.000Z","dependencies_parsed_at":"2023-01-23T12:46:07.788Z","dependency_job_id":null,"html_url":"https://github.com/qninhdt/yourcraft","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/qninhdt/yourcraft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qninhdt%2Fyourcraft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qninhdt%2Fyourcraft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qninhdt%2Fyourcraft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qninhdt%2Fyourcraft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qninhdt","download_url":"https://codeload.github.com/qninhdt/yourcraft/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qninhdt%2Fyourcraft/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34532260,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cpp","game","gamedev","glsl","imgui","minecraft","minecraft-clone","opengl","voxel"],"created_at":"2026-06-19T13:01:41.683Z","updated_at":"2026-06-19T13:01:44.958Z","avatar_url":"https://github.com/qninhdt.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n    \u003cimg width=\"100\" src=\"./images/logo.png\" alt=\"YourCraft\"\u003e\n    \u003ch1 align=\"center\"\u003eYourCraft\u003c/h1\u003e\n    \u003cp align=\"center\"\u003e\u003ci\u003e❝ It's not \u003cstrike\u003eMine\u003c/strike\u003e, but \u003cb\u003eYour . . . Craft ! ❞ — @qninhdt\u003c/b\u003e\u003c/i\u003e\u003c/p\u003e\n\u003c/p\u003e\n\n---\n\n## 💡 Features\n- Infinite, procedurally generated world\n- Full transparency + translucency support\n- Debug widget\n- Inventory GUI\n\n## 🎮 How to play\n- `Left Click` to break a block\n- `Right Click` to place a block\n- `WASD` to move around\n- `Space` to go up\n- `Shift` to go down\n- `Esc` to pause game\n\n## 🖼️ Preview\n\n![YourCraftt](./images/background.png?raw=true)\n\n- ### Mountain\n![Moutain](./images/big_backgound.png)\n\n- ### Tree\n![Tree](./images/tree.png)\n\n- ### Flower\n![Flower](./images/flower.png)\n\n- ### Grass\n![Grass](./images/grass.png)\n\n- ### Snow\n![Snow](./images/snow.png)\n\n- ### Water\n\n![Water](./images/water_1.png)\n![Water](./images/water_2.png)\n\n- ### Glass\n![Glass](./images/glass.png)\n\n- ### Simple house\n![Simple house](./images/simple_house.png)\n\n- ### Debug mode\n![Debug mode](./images/debug_mode.png)\n\n- ### Pause menu\n![Pause menu](./images/pause_menu.png)\n\n---\n\n## 📁 Folder structure\n\n    ├── deps                # Libraries (glad, glm, ...) \n    ├── images              # Development process \n    ├── resources           # Game texture and shader files\n    └── src                 # Source files\n    |   ├── gl                  # OpenGL wrapper\n    |   ├── graphic             # Game rendering (mesh, framebuffer, ...)\n    |   ├── gui                 # Game user interface\n    |   ├── util                # Utility functions\n    |   ├── world               # Manage world components (chunk, tree, ...)\n    |   └── ...\n    └── ...\n\n## 📦 Libraries\n- [glad](https://github.com/Dav1dde/glad) - Loading OpenGL functions\n- [GLFW](https://github.com/glfw/glfw) - Creating window and reading input \n- [glm](https://github.com/g-truc/glm) - Math calculating\n- [FastNoiseLite](https://github.com/Auburn/FastNoiseLite) - Used in terrain generation\n- [imgui](https://github.com/ocornut/imgui) - For creating an awesome GUI\n- [stb_image.h](https://github.com/nothings/stb/blob/master/stb_image.h) - Loading PNG textures\n\n## 🔨 Tools\n- [Visual Studio Code](https://code.visualstudio.com/)\n- [CMake](https://cmake.org/) - For building C++ project\n- [Aseprite](https://www.aseprite.org/) - For game textures\n\n## 🌟 References\n- https://learnopengl.com/\n- https://github.com/Isti01/glCraft\n- https://github.com/Hopson97/HopsonCraft\n\n## 🔒 License\n[YourCraft License](./LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqninhdt%2Fyourcraft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqninhdt%2Fyourcraft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqninhdt%2Fyourcraft/lists"}