Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 762 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 762 Bytes

Scrubber

Scrub type ids from a running Starcraft II game client and print JSON to stdout.

Build requirements

  1. A compiler with C++17 support.
  2. Cmake >= 3.1.

Build instructions

OS X (cmdline)

# Get the project.
$ git clone --recursive [email protected]:cpp-sc2/scrubber.git && cd scrubber

# Create build directory.
$ mkdir build && cd build

# Generate a Makefile.
# Use 'cmake -DCMAKE_BUILD_TYPE=Debug ../' if debuginfo is needed
$ cmake ../

# Build the project.
$ make

# Launch a game client, e.g. using Docker.
# See: https://github.com/cpp-sc2/docker-sc2

# Launch.
$ ./bin/Scrubber -p 8167 -m 2020S2/DeathAuraLE.SC2Map > out.json

License

Copyright (c) 2021-2024 Alexander Kurbatov Licensed under the MIT license.