C++ API for Screeps RTS
Find a file
2021-07-08 19:29:23 +03:00
example Update README and example project. 2021-06-21 23:58:07 +03:00
include Room::find optimizations. 2021-07-08 19:29:23 +03:00
src Room::find optimizations. 2021-07-08 19:29:23 +03:00
tools Normalized file path in console output. 2021-06-14 16:15:34 +03:00
.clang-format Upload sources. 2021-05-30 01:14:25 +03:00
.gitignore Add example application. 2021-06-13 22:46:43 +03:00
CMakeLists.txt Update README and example project. 2021-06-21 23:58:07 +03:00
LICENSE Initial commit 2021-05-29 23:25:36 +03:00
README.md Update README and example project. 2021-06-21 23:58:07 +03:00

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 .