This is a copy of BlockOut® II so I can attempt to port it to Apple operating systems.
BlockOut® II is a free adaptation of the original BlockOut® DOS game edited by California Dreams in 1989. BlockOut® II has the same features than the original game with few graphic improvements. The game has been designed to reproduce the original game kinematics as accurately as possible. The score calculation is also nearly similar to the original.
BlockOut® II also features an online score database where you can upload your high-scores with their replays and get various statistics. The score registering system also includes an efficient fake score detection.
If unsure, this is probably the one you want.
- Use the macos-sdl2 branch.
- Download SDL2.framework and place it in a folder called
Frameworks
at the same level as the root directory of BlockOut. - Download SDL2_mixer.framework and place it in a folder called
Frameworks
at the same level as the root directory of BlockOut. - Open the
BlockOut.xcodeproj
in Xcode. - Build and run the "BlockOut" target.
This produces a universal app suitable for both Apple Silicon and Intel Macs.
SDL1.2 is now over ten years old and was deprecated years ago, so I've upgraded the code to SDL2. Use the macos-sdl2 branch.
brew install SDL2 SDL2_mixer
cd ImageLib/src
make
cd ../../BlockOut
make _release=1
export BL2_HOME=[folder where `images` and `sounds` folders are]
./blockout
Use the macos branch.
brew install SDL SDL_mixer
cd ImageLib/src
make
cd ../../BlockOut
make _release=1
export BL2_HOME=[folder where `images` and `sounds` folders are]
./blockout
The main
branch preserves the original Release 2.5 of the game targeting Windows and Linux. I don't know if they work and I won't be much help with them.
This is a list of possibilities, not promises:
- Universal (Apple Silicon and Intel) app
- iOS app
- Metal app (to replace deprecated OpenGL)