{"id":22306559,"url":"https://github.com/i-asked/downbge","last_synced_at":"2025-10-15T06:30:44.945Z","repository":{"id":266265263,"uuid":"897814749","full_name":"I-asked/downbge","owner":"I-asked","description":"Blender Game Engine port for the Wii (and other homebrew platforms)","archived":false,"fork":false,"pushed_at":"2024-12-27T18:22:33.000Z","size":259533,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"v2.76b-py2","last_synced_at":"2025-04-07T22:51:10.690Z","etag":null,"topics":["blender","game-engine","game-engine-3d","python2","wii","wii-homebrew"],"latest_commit_sha":null,"homepage":"","language":"C","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/I-asked.png","metadata":{"files":{"readme":"readme.textile","changelog":null,"contributing":null,"funding":null,"license":"COPYING","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":"2024-12-03T09:37:07.000Z","updated_at":"2025-03-02T07:29:41.000Z","dependencies_parsed_at":"2024-12-24T20:22:06.825Z","dependency_job_id":"4a85e67d-f136-4317-ad8c-98ca4bb7c790","html_url":"https://github.com/I-asked/downbge","commit_stats":null,"previous_names":["i-asked/downbge"],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/I-asked/downbge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-asked%2Fdownbge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-asked%2Fdownbge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-asked%2Fdownbge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-asked%2Fdownbge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/I-asked","download_url":"https://codeload.github.com/I-asked/downbge/tar.gz/refs/heads/v2.76b-py2","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/I-asked%2Fdownbge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279058340,"owners_count":26094844,"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","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"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":["blender","game-engine","game-engine-3d","python2","wii","wii-homebrew"],"created_at":"2024-12-03T19:45:10.643Z","updated_at":"2025-10-15T06:30:39.936Z","avatar_url":"https://github.com/I-asked.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"h1. downBGE !https://raw.githubusercontent.com/I-asked/downbge/refs/heads/v2.76b-py2/assets/blencat72.png!\n\n!https://dcbadge.limes.pink/api/server/https://discord.gg/dWtSFYyhtg!:https://discord.gg/dWtSFYyhtg\n\n**downBGE** is a fork of the Blender Game Engine, slimmed down for retro hardware.\n\n!https://raw.githubusercontent.com/I-asked/downbge/refs/heads/v2.76b-py2/assets/screenshot.png!\n\nCurrently, **downBGE** runs on PC and Nintendo Wii.\n\nh2. Prerequisites\n\n* \"*downBGE* source\":https://github.com/I-asked/downbge\n* \"Stackless Python 2.7\":https://github.com/stackless-dev/stackless/releases/tag/v2.7.18-slp\n* For editor:\n** \"downBGE addons\":https://github.com/I-asked/downbge-addons\n* For Wii runtime:\n** \"devkitPPC for Wii\":https://devkitpro.org/wiki/Getting_Started\n** GNU/Linux PowerPC toolchain and @qemu-ppc-static@ (temporary requirement until cross-build endianness issues are sorted out)\n** \"Stackless Python 2.7 port\":https://github.com/I-asked/stackless\n** \"__Fixed__ OpenGX\":https://github.com/I-asked/opengx\n\nh2. Building for PC\n\n**downBGE** is intended to be built with SCons running on Python 2.7.\n\nh2. Building for Wii\n\nh3. Build Stackless Python port for Wii\n\nbc.. $ git clone https://github.com/I-asked/stackless.git -b v2.7.18-slp-porting stackless-porting\n$ cd stackless-porting/\n$ echo -e 'ac_cv_file__dev_ptmx=no\\nac_cv_file__dev_ptc=no' \u003econfig.site\n$ export CONFIG_SITE=config.site\n$ ./configure --build=x86_64-linux-gnu --host=powerpc-eabi --prefix=$PWD/_install/wii/ \\\n              --disable-ipv6 --enable-optimizations --disable-shared --without-pymalloc \\\n              --without-signal-module --with-threads \\\n              CC=$DEVKITPPC/bin/powerpc-eabi-gcc\n$ make -j$(nproc) install\n$ cd -\n\nh3. Build \"fixed\" OpenGX for Wii\n\nbc.. $ git clone https://github.com/I-asked/opengx.git opengx-jula\n$ cd opengx-jula/\n$ cmake -S. -Bbuild -DCMAKE_TOOLCHAIN_FILE=\"$DEVKITPRO/cmake/Wii.cmake\"\n$ cmake --build build -j\n$ sudo cmake --install build\n$ cd -\n\nh3. Build the PowerPC Linux Cross Toolchain\n\nh3. Build the downBGE runtime (@blenderplayer@)\n\nbc.. $ cd downbge/\n$ python2 -m virtualenv .virtualenv\n$ . .virtualenv/bin/activate\n$ pip install scons\n$ scons -Qj$(nproc) \\\n        BF_PYTHON=$PWD/../stackless-porting/_install/wii \\\n        BF_CROSS=wii \\\n        blenderlite\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi-asked%2Fdownbge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fi-asked%2Fdownbge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi-asked%2Fdownbge/lists"}