Skip to content

GoodenoughPhysicsLab/auto-th10

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

auto-th10

Playing th10 game automatically by auto-th10 AI.

download th10 from there.

other projects like this:

features

  • Play th10.exe automatically

how to use

you can also type python -m auto_th10 --help to get help.

api

  • C++ api in cpp/include/auto_th10/
  • Python api in auto_th10/ (include build binary)

make

Requires at least c++20 on windows

support: MSVC, GCC, llvm

  • install dependencies:
python -m pip install --upgrade pip
pip install -r requirements.txt
  • build:
python -m build --wheel

If you want detailed control of build, use cmake by hand. Take what python -m build does for example:

cmake -S cpp -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
cmake --install build --config Release