I'll get around to adding links to the Talospace "Tonight's game on OpenPOWER" at some point, but here they are if someone else is bored:
https://www.talospace.com/search/label/Games
I just built Bugdom, though it looks like you've already listed that. I loved it on my Power Mac 7300.
I just included the
Tonight's Game on OpenPower titles and hopefully everything is accurate. Those Pangea games were a pleasant find. I grew up in a Windows household so never heard of those until now, but they are charming - especially Otto Matic
.
New to the list as well is Sonic Robo Blast 2. If somebody told me that one day there would be both
Sonic and
Mario games running natively on nearly fully libre systems, I wouldn't have believed it. Granted, they're reverse engineered or fan projects. The
build resources for Sonic Robo Blast 2 assume that the user is building with GUI tools on a Windows environment. Seems like a project largely built by Windows folks for Windows folks. Anyway I got things going, and maybe will post the simplified terminal build somewhere more visible:
git clone https://git.do.srb2.org/STJr/SRB2
wget https://github.com/STJr/SRB2/releases/download/SRB2_release_2.2.10/SRB2-v2210-Full.zip
mkdir ~/SRB2/assets/installer
(Extract music.dta player.dta zones.pk3 srb2.pk3 from ~-Full.zip into ~/SRB2/assets/installer/).
cd SRB2
mkdir build && cd build
cmake ..
make
Run the game:
./bin/lsdlsrb2
And I had tried getting the PSP emulator,
PPSSPP, up and running. It builds most of the way but fails at their included ffmpeg library. PPSSPP has PPC support and PPC JIT (as far back as 2013) but for some reason their ffmpeg does not account for the possibility of POWER architecture. Somebody was supposedly able to build it for Wii U (POWER platform), I would love to ask them how they did it.