Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Savestate2A03/Immolate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Immolate

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.

Building and running

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.

Windows Visual Studio

  1. Install Visual Studio

  2. Open the project folder

  3. Configure the filter source file

    image

  4. Set the starting seed and filter file in Project > CMake Settings for Immolate

    image Also, make sure Debug is selected

    Note: You can set the seed to a blank value.

  5. Hit the green play button at the top of Visual Studio

Windows Command Line

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

Linux (Debian)

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

Future Plans

  • None currently

About

A seed searcher for Balatro in C.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 93.8%
  • Python 5.3%
  • CMake 0.9%