Skip to content

arghasen/screepsxx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/arghasen/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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 99.4%
  • Other 0.6%