{"id":47674791,"url":"https://github.com/danielgatis/go-doom","last_synced_at":"2026-04-02T13:27:01.468Z","repository":{"id":329857452,"uuid":"1120831293","full_name":"danielgatis/go-doom","owner":"danielgatis","description":"Play classic DOOM in pure Go! Single binary with embedded game data, cross-platform, zero dependencies.","archived":false,"fork":false,"pushed_at":"2025-12-22T14:37:42.000Z","size":27255,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T13:01:19.624Z","etag":null,"topics":["doom","doom-2","go","golang","vanilla-doom"],"latest_commit_sha":null,"homepage":"","language":"Go","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/danielgatis.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-22T02:39:28.000Z","updated_at":"2025-12-23T07:46:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"efbd3354-96b6-405c-9abb-18266be7a1ff","html_url":"https://github.com/danielgatis/go-doom","commit_stats":null,"previous_names":["danielgatis/go-doom"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/danielgatis/go-doom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielgatis%2Fgo-doom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielgatis%2Fgo-doom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielgatis%2Fgo-doom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielgatis%2Fgo-doom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielgatis","download_url":"https://codeload.github.com/danielgatis/go-doom/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielgatis%2Fgo-doom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31307067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["doom","doom-2","go","golang","vanilla-doom"],"created_at":"2026-04-02T13:26:56.450Z","updated_at":"2026-04-02T13:27:01.457Z","avatar_url":"https://github.com/danielgatis.png","language":"Go","funding_links":["https://www.buymeacoffee.com/danielgatis"],"categories":[],"sub_categories":[],"readme":"# Go - Doom\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/danielgatis/go-doom?style=flat-square)](https://goreportcard.com/report/github.com/danielgatis/go-doom)\n[![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/danielgatis/go-doom/master/LICENSE)\n[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/danielgatis/go-doom)\n\nPlay classic DOOM in pure Go! Single binary with embedded game data, cross-platform, zero dependencies.\n\nhttps://github.com/user-attachments/assets/4ad9b6f9-6e56-4a5d-9b9f-24f1153c7740\n\n## Features\n\n- All-in-one binary with embedded WADs, WASM engine and SoundFont\n- Runs DOOM WASM module using [wazero](https://github.com/tetratelabs/wazero) (no CGO)\n- Graphics rendering with [Ebitengine](https://ebitengine.org/)\n- Sound effects and MIDI music via [go-soundfont](https://github.com/danielgatis/go-soundfont)\n- Cross-platform: Windows, macOS, Linux\n\n## Installation\n\n```bash\ngo install github.com/danielgatis/go-doom@latest\n```\n\nOr download pre-built binaries from the [Releases](https://github.com/danielgatis/go-doom/releases) page.\n\n## Usage\n\n```bash\ndoom [game] [flags]\n```\n\n### Games\n\n| Game       | Description                         |\n|------------|-------------------------------------|\n| `doom1`    | Doom Shareware (default)            |\n| `doom`     | Doom Registered                     |\n| `doomu`    | Ultimate Doom                       |\n| `doom2`    | Doom II: Hell on Earth              |\n| `plutonia` | Final Doom: The Plutonia Experiment |\n| `tnt`      | Final Doom: TNT Evilution           |\n\n### Examples\n\n```bash\ndoom                              # Play Doom Shareware\ndoom doom2                        # Play Doom II\ndoom -s 2                         # Play with 2x scale\ndoom doom2 -s 3                   # Play Doom II with 3x scale\ndoom -w ~/wads/mywad.wad          # Play custom WAD file\ndoom -f ~/soundfonts/gm.sf2       # Use custom SoundFont\n```\n\n### Flags\n\n| Flag              | Description                      |\n|-------------------|----------------------------------|\n| `-w, --wad`       | Path to custom WAD file          |\n| `-f, --soundfont` | Path to custom SoundFont file    |\n| `-s, --scale`     | Window scale factor (default: 1) |\n| `-v, --verbose`   | Show DOOM log output             |\n| `-V, --version`   | Show version                     |\n| `-h, --help`      | Show help                        |\n\n### Controls\n\n| Key          | Action                     |\n|--------------|----------------------------|\n| Arrow keys   | Move                       |\n| Ctrl / Z     | Fire                       |\n| Space / X    | Use (open doors, activate) |\n| Shift        | Run                        |\n| Alt          | Strafe                     |\n| 1-7          | Select weapon              |\n| Escape       | Menu                       |\n| Enter        | Confirm                    |\n| Tab          | Automap                    |\n| +/-          | Zoom automap               |\n| F1           | Help                       |\n| F2           | Save game                  |\n| F3           | Load game                  |\n| F4           | Sound volume               |\n| F5           | Detail level               |\n| F6           | Quicksave                  |\n| F9           | Quickload                  |\n| F10          | Quit                       |\n| F11          | Gamma correction           |\n| Pause        | Pause game                 |\n\n## Building from Source\n\n```bash\ngit clone https://github.com/danielgatis/go-doom.git\ncd go-doom\n\n# Build all game variants\nmake all\n\n# Or build a specific game\nmake doom1      # Doom Shareware (18MB)\nmake doom2      # Doom II (28MB)\n\n# Build default (doom1)\nmake build\n```\n\n### Available Binaries\n\n| Binary | Game | Size |\n|--------|------|------|\n| `doom1` | Doom Shareware | ~18MB |\n| `doom` | Doom Registered | ~24MB |\n| `doomu` | Ultimate Doom | ~26MB |\n| `doom2` | Doom II | ~28MB |\n| `plutonia` | Plutonia Experiment | ~30MB |\n| `tnt` | TNT Evilution | ~31MB |\n\nBinaries are placed in the `bin/` directory.\n\n## Buy me a coffee\n\nIf you find this project useful, consider buying me a coffee!\n\n[![Buy Me A Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/danielgatis)\n\n## License\n\nMIT License - see [LICENSE](./LICENSE) file.\n\n## Author\n\nDaniel Gatis\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielgatis%2Fgo-doom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielgatis%2Fgo-doom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielgatis%2Fgo-doom/lists"}