@dada78641/bwtoolsdata
v2.1.0
Published
Collection of Brood War functions used to help interpret replay and map files
Downloads
176
Readme
@dada78641/bwtoolsdata
Collection of Brood War data and functions used to help interpret replay and map files.
Usage
This library recently got rewritten and I haven't documented the new interface yet.
See src/lib/index.ts for the user facing functions you'll want to import.
In-game colors
Colors work quite inconsistently in StarCraft. There are two sets of color codes: one for briefing messages (and map names), and one for in-game chat messages. These each have their quirks that are different between Brood War (v1.16.1 and below) and Remastered.
Here's a list of all colors:
†: In StarCraft, gray is buggy: when it's used in a map name in Brood War, the rest of the name becomes gray as well—this was fixed in Remastered. In in-game text messages, gray will take over the entire rest of the line, both in Brood War and Remastered. This buggy behavior is not completely implemented in this library, and more research is needed to determine every edge case.
‡: Slot IDs 11, 14, 15 and 20 are not selectable as player colors (the color for 11 is used for the neutral player, however). 11 and 15 are still usable as text color. 14 and 20 are duplicates of Pale Yellow and Cerulean.
Tilesets
The following are all available tileset types.
A few of the aforementioned player colors are not pickable on certain tilesets (due to bad contrast).
†: Also called "Arctic" in the community.
‡: The Installation tileset is only used in the campaign and does not support regular custom games.
The internal names are the names used by the game files themselves, whereas the proper names are taken from the original Brood War map editor.
Game speed
Number of milliseconds per game frame for each game speed.
E.g. for "Fastest", there are approximately 1000 / 42 = ~23.81 frames in a second. This is used to convert the number of game frames into real time.
| Name | ㎳/frame | Frames/second | % of "Fastest" | |:--------|:--------|:---------------|:---------------| | Fastest | 42 | 23.810 | 100.0% | | Faster | 48 | 20.833 | 87.5% | | Fast | 56 | 17.857 | 75.0% | | Normal | 67 | 14.925 | 62.7% | | Slow | 83 | 12.048 | 50.6% | | Slower | 111 | 9.009 | 37.8% | | Slowest | 167 | 5.988 | 25.1% |
By far most replays use "Fastest" as the speed, but this table can be used for the rare cases that aren't. In the very old days of StarCraft, the ladder speed setting was "Fast" by default, but this got changed to "Fastest" relatively early on.
License
MIT licensed.