UltraCoderRU / screepsxx

C++ API for Screeps RTS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Important! I do not plan to continue development of this project. Feel free to create a fork.

screepsxx

screepsxx is a C++ library for Screeps API. It provides wrappers for the majority of classes in Screeps API.

Requirements

  • Emscripten toolchain
  • CMake 3.16+
  • Ninja build system
  • (Optional) Python 3 interpreter for artifacts uploading

Using library in CMake project

  1. Copy all files from example directory into your project directory.
  2. Place library sources somewhere inside your project directory. If you use git, the recommended way is to add library repository as a submodule. Or instead you can manually download and extract library files somewhere inside your project.
cd <your_project_repo>
git submodule add https://github.com/UltraCoderRU/screepsxx.git
  1. Check top-level CMakeLists.txt. You can disable automatic artifacts uploading, etc.
  2. Configure project. You need to pass location of Emscripten SDK to CMake command. Also, always use Release build type! Debug version will not help you to debug WebAssembly code, but its size most probably will exceed 5MB limit of official Screeps server.
mkdir build
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=<path_to_emsdk>/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake ..
  1. Build project, collect and upload artifacts.
cmake --build .

About

C++ API for Screeps RTS

License:MIT License


Languages

Language:C++ 99.4%Language:CMake 0.3%Language:Python 0.2%Language:JavaScript 0.1%