{"id":23479471,"url":"https://github.com/jason2brownlee/cleanfixedquakec","last_synced_at":"2026-01-23T02:38:40.436Z","repository":{"id":41220034,"uuid":"382481440","full_name":"Jason2Brownlee/CleanFixedQuakeC","owner":"Jason2Brownlee","description":"Clean and bug-fixed Quake game code.","archived":false,"fork":false,"pushed_at":"2021-07-21T23:31:45.000Z","size":313,"stargazers_count":34,"open_issues_count":0,"forks_count":8,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-13T19:11:27.575Z","etag":null,"topics":["quake","quakec"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Jason2Brownlee.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.txt","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-02T22:59:41.000Z","updated_at":"2025-01-11T03:13:03.000Z","dependencies_parsed_at":"2022-09-14T21:50:55.890Z","dependency_job_id":null,"html_url":"https://github.com/Jason2Brownlee/CleanFixedQuakeC","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/Jason2Brownlee/CleanFixedQuakeC","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jason2Brownlee%2FCleanFixedQuakeC","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jason2Brownlee%2FCleanFixedQuakeC/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jason2Brownlee%2FCleanFixedQuakeC/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jason2Brownlee%2FCleanFixedQuakeC/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jason2Brownlee","download_url":"https://codeload.github.com/Jason2Brownlee/CleanFixedQuakeC/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jason2Brownlee%2FCleanFixedQuakeC/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28679137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T01:00:35.747Z","status":"online","status_checked_at":"2026-01-23T02:00:08.296Z","response_time":59,"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":["quake","quakec"],"created_at":"2024-12-24T19:29:42.914Z","updated_at":"2026-01-23T02:38:40.419Z","avatar_url":"https://github.com/Jason2Brownlee.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Clean Fixed QuakeC\n\nClean and bug-fixed version of the Quake game code (progs.dat) released under the GPL.\n\n## About\n\nThe computer game Quake was released in 1996.\n\nIn 1999 the source code for the Quake engine (.exe), tools (QuakeC complier), and game code (progs.dat) was released under the GPL.\n\nThe version of the Quake game code released under the GPL was v1.01, different from the latest release of the game code v1.06.\n\nThis project provides a version of the Quake game code v1.01 released under the GPL updated with a \"clean room\" implementation of fixes in the v1.06 code.\n\nThis project also includes a host of other improvements such as fixed compiler warnings, removal of unused code, and fixes for community reported bugs.\n\nA compiled version of the game code (progs.dat) is provided so you can play a fixed version of Quake, and the source code (.qc files) provide the basis for Quake mod development.\n\n## Features\n\nThis project provides a **clean** and **bug-fixed** version of the Quake game code released under a permissive license.\n\nChanges fall under three main categories, they are:\n\n* **Official Fixes**: Re-implementation of fixes available in non-GPL official releases, e.g.:\n    * Fixes in final official game code release v1.06.\n    * Fixes in Quake Mission Pack 1: Scourge of Armagon v1.07.\n    * Fixes in Quake Mission Pack 2: Dissolution of Eternity v1.08.\n* **Bug Fixes**: Fixes for bugs reported by the community that were never officially fixed, e.g.:\n    * Double counting fish monsters (rotfish) at end of level.\n    * Fish not support gib death.\n    * Never switch to lightning gun with backpack pickup when underwater.\n* **Technical Fixes**: Fixes reported by QuakeC compilers, good practices, and consistency, e.g.:\n    * Removal of unused .qc files, unused global variables, and unused local variables.\n    * Fixed compiler warnings like bad function definitions and missing return values.\n    * Rationalized code formatting for consistency like indenting and comment placement.\n\nAll changes were made with the intent of **not adding functionality** (this is not a mod) and **making minimal changes** (to make diff's with other code bases easy).\n\nSee the change log for a full list of fixes:\n\n* [Changelog](CHANGELOG.txt)\n\n\n## How to Download\n\nThe latest release can be downloaded from here:\n\n* [Releases](https://github.com/Jason2Brownlee/CleanFixedQuakeC/releases)\n\n## How to Use\n\nYou can use this game code to **play quake** with bugs fixed, or as the basis for **mod development**.\n\n### Play Quake\n\nYou can use the game code (`progs.dat`) to play Quake, such as singleplayer or multiplayer.\n\n1. Download the .zip file for the latest release.\n2. Unzip and locate the `progs.dat` file.\n3. Create a mod subdirectory under your quake directory, e.g. `fixedquake/`\n4. Place the `progs.dat` into your mod subdirectory, e.g. `fixedquake/progs.dat`\n5. Start quake and load the mod, e.g. `quake -game fixedquake`\n\n### Mod Development\n\nYou can use the .qc files as the basis for mod development.\n\n1. Download the .zip file for the latest release.\n2. Unzip and locate the `progs.dat` file.\n3. Access the source code in the `qc/` subdirectory.\n\n## How to Build\n\nInstructions on how to build this project.\n\n1. Checkout the code.\n\t1. `git clone https://github.com/Jason2Brownlee/CleanFixedQuakeC.git`\n\t2. `cd CleanFixedQuakeC`\n2. Configure your QuakeC compiler (e.g. assumes you have access to a compiler).\n\t1. Set `QCCNAME`, `QCCCOMPILER`, and `QCFLAGS` in `makefile`\n3. Create a release.\n\t1. `make dist`\n4. Retrieve the release from `dist/`\n\n## Resources\n\nUseful resources for fixing bugs in Quake game code.\n\n* [Quake Engine Source (GPL)](https://github.com/id-Software/Quake)\n* [Quake Tools and Utilities (GPL)](https://github.com/id-Software/Quake-Tools)\n* [Quake Info Pool (QIP)](https://www.quake-info-pool.net/home.htm)\n* [QuakeWiki: Quake Bugs](https://quakewiki.org/wiki/Quake_bugs)\n* [GMQCC (QuakeC compiler)](https://graphitemaster.github.io/gmqcc/)\n* [FTEQW including FTEQCC (QuakeC compiler)](https://triptohell.info/)\n\n## License\n\n* [License](LICENSE.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjason2brownlee%2Fcleanfixedquakec","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjason2brownlee%2Fcleanfixedquakec","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjason2brownlee%2Fcleanfixedquakec/lists"}