#arrow #polars #binary-format #nom #generative-art #state-machine #sc2replay

bin+lib s2protocol

A parser for Starcraft II - Replay format, exports to different target formats

18 stable releases (3 major)

3.0.4 Mar 1, 2024
3.0.3 Nov 17, 2023
3.0.2 Oct 6, 2023
2.0.0 Sep 5, 2023
0.1.1 Feb 17, 2023

#143 in Parser implementations

MIT license

1.5MB
28K SLoC

Crates.io Workflow Status

s2protocol-rs

A nom parser for the Starcraft 2 Protocol Replay format. Provides Iterators to transist a minimal state machine through the game loops Keeping track of unit groups, upgrades, targets, etc.

Motivation

The goal is to learn how to parse binary files format with nom and to learn how the Starcraft 2 Replay file is so incredibly small for the amount of information it packs.

From the available data, analytics, visualizations and generative art can be created, for example by using

Consuming events

Transition Iterators

These are different ways to consume the events:

  • SC2EventIterator collects both TrackerEvents and GameEvents. Events are provided as they appear, be them Tracker or Game
  • TrackerEventIterator allows consuming only Tracker Events
  • GameEventIterator allows consuming only the Game Events

Event changes transist a minimal state machine that updates:

  • names
  • positions
  • Attack events
  • etc.

The iterators returns a tuple (SC2EventType, UnitChangeHint) The first item contains the event itself as it was deserialized from the SC2Replay. The second item hints the consumers of the iterator about the changes performed to the state machine due to this event. For example, units may have been deleted, added, changed position, etc.

let source: PathBuf = PathBuf::new();
let res = s2protocol::state::SC2EventIterator::new(&source)?;
for (event, change_hint) in res.into_iter() {
    println!("{},", serde_json::to_string(&event)?);
}

Interacting with polars

Generating the IPC Arrow datasets

In the directory ipcs/ one .ipc file will be created per implemented data type. The --source is the directory that contains the replay directory (Or a single file). Files are processed using parallel operations. For 3600 files (500 MBs) it takes 30 seconds to transform/split them. YMMV

This is behind a feature flag arrow.

$ mkdir ipcs/
$ cargo run --features arrow -r -- --source "/mnt/windows/Users/sebos/Documents/StarCraft II/Accounts/51504154/2-S2-1-8459957/Replays/Multiplayer/" --output ipcs/ write-arrow-ipc all
2023-10-04T18:53:36.030202Z  INFO s2protocol::arrow: Processing Arrow write request
2023-10-04T18:53:36.441089Z  INFO s2protocol::arrow: Found 3600 files
2023-10-04T18:53:36.441646Z  INFO s2protocol::arrow: Processing InitData IPC write request
2023-10-04T18:53:38.515349Z  INFO s2protocol::arrow: Loaded 3600 records
2023-10-04T18:53:38.575090Z  INFO s2protocol::arrow: Processing Details IPC write request
2023-10-04T18:53:38.700572Z  INFO s2protocol::arrow: Loaded 3600 records
2023-10-04T18:53:38.706659Z  INFO s2protocol::arrow: Processing TrackerEvents IPC write request: Stats
2023-10-04T18:53:44.295524Z  INFO s2protocol::arrow: Loaded 1722783 records
2023-10-04T18:53:44.515362Z  INFO s2protocol::arrow: Processing TrackerEvents IPC write request: Upgrades
2023-10-04T18:53:49.963043Z  INFO s2protocol::arrow: Loaded 292898 records
2023-10-04T18:53:50.036165Z  INFO s2protocol::arrow: Processing TrackerEvents IPC write request: UnitBorn
2023-10-04T18:53:57.561082Z  INFO s2protocol::arrow: Loaded 22754591 records
2023-10-04T18:54:00.502298Z  INFO s2protocol::arrow: Processing TrackerEvents IPC write request: UnitDied
2023-10-04T18:54:07.387545Z  INFO s2protocol::arrow: Loaded 16118808 records
Total time: 33.654286961s

Jupyter Notebooks

The jupyter notebook with examples on how to interact with the data are available in s2-polars-data-analysis

polars-cli

$ cargo install polars-cli
$ # List the max number of minerals that were lost in per map when the army was killed.
❯ echo "SELECT ext_fs_replay_file_name, MAX(minerals_lost_army) FROM read_ipc('/home/seb/git/s2protocol-rs/ipcs/stats.ipc') GROUP BY ext_fs_replay_file_name ORDER BY minerals_lost_army DESC;"|polars
┌───────────────────────────────────┬────────────────────┐
│ ext_fs_replay_file_name           ┆ minerals_lost_army │
│ ---                               ┆ ---                │
│ str                               ┆ i32                │
╞═══════════════════════════════════╪════════════════════╡
│ Heavy Artillery LE (349).SC2Repl… ┆ 71362              │
│ Arctic Dream LE (398).SC2Replay   ┆ 59375              │
│ Nightscape LE (52).SC2Replay      ┆ 54846              │
│ …                                 ┆ …                  │
│ Emerald City LE (223).SC2Replay   ┆ 43450              │
│ Rhoskallian LE (101).SC2Replay    ┆ 41614              │
│ Fields of Death (345).SC2Replay   ┆ 41529              │
│ Rhoskallian LE (346).SC2Replay    ┆ 41425              │
└───────────────────────────────────┴────────────────────┘

Status

  • Replay Tracker, Game Events and Chat Message Events for protocol75689
  • Replay Tracker, Game Events and Chat Message Events for protocol84643
  • Replay Tracker, Game Events and Chat Message Events for protocol87702
  • Replay Tracker, Game Events and Chat Message Events for protocol88500
  • Replay Tracker, Game Events and Chat Message Events for protocol89634
  • Replay Tracker, Game Events and Chat Message Events for protocol89720
  • Replay Tracker, Game Events and Chat Message Events for protocol90136
  • Replay Tracker, Game Events and Chat Message Events for protocol90779
  • Replay Tracker, Game Events and Chat Message Events for protocol90870
  • Parsing unit movement is done.
  • Decoding the tag/recycle done to match Game Events.
  • Game Events are parsed (tho some that seem irrelevant are skipped).
  • Read the version and from the version call the correct module so that we can support multiple modules.
  • Support for MPQ embedded file: replay.initData
  • Add the remaining Tracker/Game event types.
  • Support for MPQ embedded file: replay.gamemetadata.json
  • Support for MPQ embedded file: replay.attributes.events

version compatibility.

After a bit of testing, it seems most of the types are compatible between versions, so only when they differ would they make part of the protocol version. Since I started this exercise on protocol87702, all types would be relative to it. That is, most modules would re-use protocol87702 as much as possible. This explains why old-er versions such as 75689 would still reference 87702 as much as possible.

The generator above thus would show example code S2ProtoResult created in favour of unwrapping/panic'ing.

Generating protocol-specific code:

The rust code for the protocols versions available were generated using: This would now be compared with ./src/versions/protocol99999.template file and from there we can analyze what has changed. Notably, the number of bits used for the Chat Message is still miscalculated to 3 so it needs to be dismissed.

mkdir src/versions/protocol89720/
RUST_LOG_SPAN_EVENTS=full RUST_LOG=debug cargo watch -i src/versions/protocol89720/mod.rs -x 'run -- --source ../s2protocol/json/protocol89720.json generate --output src/versions/protocol89720/mod.rs'
# Add the new module to src/versions/mod.rs
# Run rust format on the new src/versions/protocol87702/mod.rs file
# cargo check, cargo build, etc
# Additionally some code to transform from Protocol-Specific to Protocol-Agnostic was added, TODO: Add to generator.rs

JSON Spec Sources

Blizzard/s2protocol repo

Dependencies

~17–30MB
~300K SLoC