{"id":20637068,"url":"https://github.com/travorlzh/glutcraft","last_synced_at":"2026-07-11T20:32:15.767Z","repository":{"id":162217238,"uuid":"109298756","full_name":"TravorLZH/GLUTCraft","owner":"TravorLZH","description":"A 3D Minecraft-Like Game developed in C with Freeglut","archived":false,"fork":false,"pushed_at":"2018-03-29T19:09:17.000Z","size":199,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-23T19:39:29.272Z","etag":null,"topics":["3d-games","freeglut","glut","minecraft"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TravorLZH.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null}},"created_at":"2017-11-02T17:42:29.000Z","updated_at":"2018-03-29T19:09:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"3aa9cd1e-e31c-4072-bba2-ee652aeb35d3","html_url":"https://github.com/TravorLZH/GLUTCraft","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/TravorLZH/GLUTCraft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravorLZH%2FGLUTCraft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravorLZH%2FGLUTCraft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravorLZH%2FGLUTCraft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravorLZH%2FGLUTCraft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TravorLZH","download_url":"https://codeload.github.com/TravorLZH/GLUTCraft/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TravorLZH%2FGLUTCraft/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35375152,"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-07-11T02:00:05.354Z","response_time":104,"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":["3d-games","freeglut","glut","minecraft"],"created_at":"2024-11-16T15:12:53.544Z","updated_at":"2026-07-11T20:32:15.723Z","avatar_url":"https://github.com/TravorLZH.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"GLUTCraft - A 3D Game written in C with [Freeglut](http://freeglut.sourceforge.net)\n====\n\n![preview](screenshots/latest.png)\n\nThis game is inspired by [Minecraft](https://www.minecraft.net), so you can discover some similarities. Just like [TravorOS](https://github.com/TravorLZH/TravorOS), it is still implementing basic features. Now you can browse the world using the same keys in Minecraft.\n\n## Table of Contents\n\n* [Features](#features)\n\n\t* [Implemented](#implemented)\n\n\t* [Developing](#developing)\n\n* [Installation Guide](#installation-guide)\n\n\t* [Windows with MinGW](#windows-with-mingw)\n\n\t* [Linux](#linux)\n\n## Features\n\nI would like to list my features in this game. The feature list is basically the Work Plan of this game.\n\n### Implemented\n\n* **Resize Support** The display won't stretch if you stretch the window\n\n* **Moving Camera** You can use \u003ckbd\u003eW\u003c/kbd\u003e, \u003ckbd\u003eA\u003c/kbd\u003e, \u003ckbd\u003eS\u003c/kbd\u003e, \u003ckbd\u003eD\u003c/kbd\u003e to move forward, left, backward, and right\n\n* **Turning Head** You can use: \u003ckbd\u003e\u0026uarr;\u003c/kbd\u003e, \u003ckbd\u003e\u0026darr;\u003c/kbd\u003e, \u003ckbd\u003e\u0026larr;\u003c/kbd\u003e, and \u003ckbd\u003e\u0026rarr;\u003c/kbd\u003e to turn your head to different directions\n\n* **Debug Screen** You can press \u003ckbd\u003eF3\u003c/kbd\u003e to display data in the display.\n\n* **Turning moving directions** The direction of head will decide the direction to move.\n\n* **Crosshair in the center of screen** You can see a crosshair similar to Minecraft's in the screen.\n\n### Developing\n\n* **Turning head using mouse** Your mouse is always centered after pressing \u003ckbd\u003eM\u003c/kbd\u003e because I am attempting to implement this features.\n\n## Installation Guide\n\nTo build this game, you need to install the following packages first:\n\n* [FreeGLUT](http://freeglut.sourceforge.net) It's necessary because all my code relies on it. Make sure the option **FREEGLUT_BUILD_SHARED_LIBS** is set to **ON**. To install it on Debian Linux, you may use the following command.\n\n```\n# apt-get update\n# apt-get install freeglut3-dev\n```\n\n* [CMake](https://cmake.org\") The building system I use because it supports building on different platforms.\n\n### Windows with MinGW\n\nIf you are using [MinGW](http://mingw.org), you need to have `mingw32-make` installed. So type the following to build:\n\n```shell\ncmake . -G\"MinGW Makefiles\" -DCMAKE_INSTALL_PREFIX=%PREFIX%\nmingw32-make\nmingw32-make install\n```\n\n## Linux\n\n[![asciinema](https://asciinema.org/a/169118.png)](https://asciinema.org/a/169118)\n\nYou must have `build-essential` installed. Then type:\n\n```shell\ncmake . -DCMAKE_INSTALL_PREFIX=$PREFIX\nmake\nmake install\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftravorlzh%2Fglutcraft","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftravorlzh%2Fglutcraft","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftravorlzh%2Fglutcraft/lists"}