{"id":50749506,"url":"https://github.com/darious/star-dodger","last_synced_at":"2026-06-11T00:02:23.101Z","repository":{"id":358338822,"uuid":"1240230916","full_name":"darious/star-dodger","owner":"darious","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-16T22:13:35.000Z","size":79,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-16T22:43:01.372Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/darious.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":"2026-05-15T22:48:11.000Z","updated_at":"2026-05-16T22:13:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/darious/star-dodger","commit_stats":null,"previous_names":["darious/star-dodger"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/darious/star-dodger","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fstar-dodger","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fstar-dodger/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fstar-dodger/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fstar-dodger/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darious","download_url":"https://codeload.github.com/darious/star-dodger/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darious%2Fstar-dodger/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34175887,"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-10T02:00:07.152Z","response_time":89,"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":[],"created_at":"2026-06-11T00:02:20.118Z","updated_at":"2026-06-11T00:02:23.094Z","avatar_url":"https://github.com/darious.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Star Dodger\n\nA Python/pygame remake of **STAR DODGER v2**, an Amstrad CPC BASIC type-in game by **G. French (14-2-92)**.\n\nThe original BASIC listing is preserved in [`original/star-dodger.bas`](original/star-dodger.bas). The Python and Go versions keep the original attribution and gameplay idea: hold `SPACE` to climb, release it to descend, dodge the killer asterisks, and reach the Nextscreen Gap.\n\n## Screenshots\n\n| Classic | Plus | Plus CPC Look |\n| --- | --- | --- |\n| ![Classic gameplay screenshot](media/classic.png) | ![Plus gameplay screenshot](media/plus.png) | ![Plus CPC look screenshot](media/plus-cpc.png) |\n\n## Versions\n\n- `python/stardodger/classic.py` - faithful pygame port of the BASIC version.\n- `python/stardodger/plus.py` - same classic gameplay with practical modern conveniences:\n  - resizable scaled window\n  - fullscreen toggle\n  - restart/title shortcuts\n  - persistent top-six high scores\n  - generated retro sound effects\n- `go/cmd/stardodgerplus` - Go/Ebiten version of Plus with the same classic gameplay.\n- `rust/` - Rust/macroquad version with CPC look, scaling, and generated sound.\n\n## Requirements\n\n- Python 3.11+\n- [uv](https://docs.astral.sh/uv/)\n\n`pygame` is declared in `pyproject.toml` and installed automatically by `uv`.\n\nThe Go version requires Go 1.24+ and downloads Ebiten through Go modules.\n\nThe Rust version requires Rust/Cargo and downloads macroquad through Cargo.\n\n## Run\n\nFaithful classic port:\n\n```bash\nuv run star-dodger\n```\n\nClassic gameplay plus scaling and persistent scores:\n\n```bash\nuv run star-dodger-plus\n```\n\nUseful Plus options:\n\n```bash\nuv run star-dodger-plus --fullscreen\nuv run star-dodger-plus --scale 3\n```\n\nGo Plus version:\n\n```bash\ngo run ./go/cmd/stardodgerplus\n```\n\nRust version:\n\n```bash\ncd rust\ncargo run --release\n```\n\nOr build a native binary:\n\n```bash\ngo build ./go/cmd/stardodgerplus\n./stardodgerplus\n```\n\nTagged releases build Go binaries for Linux, macOS, and Windows:\n\n```bash\ngit tag v0.1.0\ngit push origin v0.1.0\n```\n\n## Layout\n\n```text\noriginal/                  Original Amstrad CPC BASIC listing\npython/stardodger/         Python package used by the uv entry points\npython/tests/              Python regression tests\ngo/cmd/stardodgerplus/     Go/Ebiten executable\ngo/internal/nameentry/     Small Go helper package with unit tests\nrust/                      Rust/macroquad executable\n```\n\n## Controls\n\n- `SPACE` - climb\n- release `SPACE` - descend\n- `Q` - quit\n\nPlus-only controls:\n\n- `C` - toggle CPC look\n- `F` - toggle fullscreen\n- `M` - toggle sound\n- `R` - restart\n- `ESC` - return to title\n\n## Attribution\n\nOriginal game: **STAR DODGER v2** by **G. French (14-2-92)**.\n\nThis repository is a Python remake/port and includes the original BASIC listing for reference and preservation.\n\nThe CPC-look text uses the public-domain [`Amstrad Character Set.png`](https://commons.wikimedia.org/wiki/File:Amstrad_Character_Set.png) sprite sheet by Mortenbscom from Wikimedia Commons, published under CC0 1.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarious%2Fstar-dodger","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarious%2Fstar-dodger","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarious%2Fstar-dodger/lists"}