converts between regular CSV files and the binary CSV format as used in Harmonix Forge engine games (RB4, RBVR, etc)
0

Configure Feed

Select the types of activity you want to include in your feed.

4 1 0

Clone this repository

https://git.vm.fail/invoxiplaygames.uk/forgecsv https://git.vm.fail/did:plc:spyaouwymrqzggmmetnox3cq
ssh://git@knot1.tangled.sh:2222/invoxiplaygames.uk/forgecsv ssh://git@knot1.tangled.sh:2222/did:plc:spyaouwymrqzggmmetnox3cq

For self-hosted knots, clone URLs may differ based on your setup.


README.txt
forgecsv converts between regular CSV files and the binary CSV format as used
in Harmonix Forge engine games (RB4, RBVR, etc)

usage:
  ./forgecsv bin2csv /path/to/input.csv[_xb1|_ps4|_pc] /path/to/output.csv
  ./forgecsv csv2bin /path/to/input.csv /path/to/output.csv[_xb1|_ps4|_pc]

compiling (Linux, macOS):
  cc forgecsv.c csv.c -o forgecsv
compiling (Windows/Mingw64):
  cc -D_WIN32_WINNT=0x0603 forgecsv.c csv.c -o forgecsv.exe

licensed under MIT (see LICENSE.txt)

uses csv-fast-reader (https://github.com/jandoczy/csv-fast-reader), licensed
 under the MIT license