https://github.com/SpectralPack/Immolate
An OpenCL seed searcher for Balatro.
https://github.com/SpectralPack/Immolate
Last synced: 12 days ago
JSON representation
An OpenCL seed searcher for Balatro.
- Host: GitHub
- URL: https://github.com/SpectralPack/Immolate
- Owner: SpectralPack
- License: other
- Created: 2024-01-04T03:59:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-04T21:58:24.000Z (26 days ago)
- Last Synced: 2025-04-09T04:29:05.077Z (22 days ago)
- Language: C
- Size: 302 KB
- Stars: 104
- Watchers: 5
- Forks: 31
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-balatro - Immolate - An OpenCL seed searcher for Balatro. by [@MathIsFun_](https://github.com/MathIsFun0) (Tools)
README
# Immolate
An OpenCL seed searcher for Balatro.## Getting Started
Please visit the [Getting Started](docs/getting_started.md) page in the documentation for tips on how to get started. If you are running into issues, please check the [Troubleshooting](docs/troubleshooting.md) page.## Building and running from scratch (not recommended)
### Windows
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_
Generate required files for building:
`cmake -G "Visual Studio 17 2022" -A x64 -B .\build`Build:
`cmake --build .\build --config Release`Run:
`.\build\Release\Immolate.exe`### Linux (Debian)
Install dependencies:```
sudo apt-get install cmake ocl-icd-opencl-dev build-essential
```_NOTE: Remember to install the OpenCL driver depending on your hardware._
Build:
```
cmake -B build
cmake --build build --config Release
```Run:
```
./build/Immolate
```## Future Plans
- Full support with all features in Balatro 1.0.
- Support for AMD GPUs.
- Support for challenges.
- Saving output to a file.
- A GUI to interact with the searcher without having as much technical knowledge.