{"id":13529273,"url":"https://github.com/plowteam/donut","last_synced_at":"2025-04-01T15:30:45.787Z","repository":{"id":44844316,"uuid":"195482125","full_name":"plowteam/donut","owner":"plowteam","description":"Open source reimplementation of The Simpsons: Hit \u0026 Run","archived":false,"fork":false,"pushed_at":"2024-03-27T15:44:58.000Z","size":6729,"stargazers_count":430,"open_issues_count":11,"forks_count":28,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-03-27T17:55:57.499Z","etag":null,"topics":["and","c-plus-plus","donut","foss","hit","open-source","run","simpsons"],"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/plowteam.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,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-06T00:51:35.000Z","updated_at":"2025-03-14T22:12:19.000Z","dependencies_parsed_at":"2024-11-02T15:42:32.213Z","dependency_job_id":null,"html_url":"https://github.com/plowteam/donut","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plowteam%2Fdonut","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plowteam%2Fdonut/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plowteam%2Fdonut/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plowteam%2Fdonut/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plowteam","download_url":"https://codeload.github.com/plowteam/donut/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246662251,"owners_count":20813717,"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":["and","c-plus-plus","donut","foss","hit","open-source","run","simpsons"],"created_at":"2024-08-01T07:00:34.962Z","updated_at":"2025-04-01T15:30:44.555Z","avatar_url":"https://github.com/plowteam.png","language":"C++","funding_links":[],"categories":["Action"],"sub_categories":[],"readme":"# donut\n\n[![GitHub Stars](https://img.shields.io/github/stars/plowteam/donut?logo=github)](https://github.com/plowteam/donut/stargazers)\n[![Discord chat](https://img.shields.io/discord/611594006803120148?logo=discord\u0026logoColor=white)](https://discord.gg/U7jFGJKuW4)\n[![License](https://img.shields.io/github/license/plowteam/donut)](LICENSE.md)\n\ndonut is an open source reimplementation of [The Simpsons: Hit \u0026 Run](https://en.wikipedia.org/wiki/The_Simpsons:_Hit_\u0026_Run)\nwritten in modern C++ and modern OpenGL.\n\nYou still need to have the original game assets in order to use this.\n\n---\n\n\u003ca href=\"https://files.facepunch.com/Layla/2019/August/11/2019-08-09_22-12-28.png\"\u003e\n    \u003cimg src=\"https://files.facepunch.com/Layla/2019/August/11/2019-08-09_22-12-28.png\" width=\"45%\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://files.facepunch.com/Layla/2019/August/11/2019-08-09_22-11-26.png\"\u003e\n    \u003cimg src=\"https://files.facepunch.com/Layla/2019/August/11/2019-08-09_22-11-26.png\" width=\"45%\"\u003e\n\u003c/a\u003e\n\n# Building\n\nClone the code using: `git clone --recursive https://github.com/plowteam/donut.git`\n\nThe simplest way to obtain all the required dependencies is through [vcpkg](https://github.com/Microsoft/vcpkg).\n\n```bash\nPS\u003e .\\vcpkg install sdl2 bullet3 openal-soft fmt\nLinux:~/$ ./vcpkg install sdl2 bullet3 openal-soft fmt\n```\n\nIf you don't want to use vcpkg; CMake will fallback on installed system dependencies, or manually specified\npackage directories.\n\n## Windows\n\n* Install [Visual Studio 2019](https://visualstudio.microsoft.com/downloads/)\n* Install [CMake](https://cmake.org/download/)\n\nYou can either:\n\n1. [Open the `donut` folder directly in Visual Studio](https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio?view=vs-2019).\n2. Or generate project files with the following:\n\n```bash\ncd donut\ncmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows\n```\n\n## Linux\n\n*Note: These instructions are for Ubuntu, but can be easily applied to other distros.*\n\nEnsure you have dependencies first\n```bash\nsudo apt install cmake\ncd donut\ncmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-linux\ncmake --build build -j 5\n```\n\n**Mesa drivers on Linux:** if you are trying to run with Mesa drivers and are getting issues with OpenGL context try messing with `MESA_GL_VERSION_OVERRIDE` when running like so: `MESA_GL_VERSION_OVERRIDE=4.3FC MESA_GLSL_VERSION_OVERRIDE=430 bin/donut`\n\n## Docs\n* [Chunks](dev/Chunks.md)\n* [Commands](dev/Commands.md)\n\n## Contributing\nContributions are always welcome, whether it's modifying source code to add new\nfeatures or bug fixes, documenting new file formats or simply editing some\ngrammar.\n\nYou can also join the [Discord for development discussion]((https://discord.gg/xpdbWzG))\nif you are unsure of anything.\n\n## License\ndonut is released as open source software under the [GPL v3](https://opensource.org/licenses/gpl-3.0.html)\nlicense, see the [LICENSE.md](./LICENSE.md) file in the project root for the full license text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplowteam%2Fdonut","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplowteam%2Fdonut","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplowteam%2Fdonut/lists"}