A derivative of MathIsFun0's OpenCL seed searcher for Balatro made in C.
It is significantly slower, but if you are just looking for a quick seed, can save the overhead of compiling for several minutes.
You can configure and build with whatever CMake generator you wish, but here's a few ways about it if you don't have one already figured out.
-
Install Visual Studio
-
Open the project folder
-
Configure the filter source file
-
Set the starting seed and filter file in Project > CMake Settings for Immolate
Also, make sure Debug is selected
Note: You can set the seed to a blank value.
-
Hit the green play button at the top of Visual Studio
Install cmake:
winget install --id Kitware.CMake
Install Visual Studio 2022 Build Tools:
winget install Microsoft.VisualStudio.2022.BuildTools --force --override "--wait --passive --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows11SDK.22000"
Open the x64 Native Tools Command Prompt for VS 2022
Build:
cmake -DIMMOLATE_SEED="" -DIMMOLATE_FILTER="filters/perkeo_observatory.c" -G "Visual Studio 17 2022" -A x64 -B build
cmake --build .\build --config Debug
Note: Build for Debug. Release is optimizing out important code for some reason.
Run:
.\build\Debug\Immolate.exe
Install dependencies:
sudo apt-get install cmake build-essential
Build:
cmake -DIMMOLATE_SEED="" -DIMMOLATE_FILTER="filters/perkeo_observatory.c" -B build
cmake --build ./build --config Debug
Note: Build for Debug. Release is optimizing out important code for some reason.
Run:
./build/Immolate
- None currently