No commit activity in last 3 years
No release in over 3 years
SupCom2ReplayParser - Gem for parsing replays of game Supreme Commander 2
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.9
 Project Readme

Supcom2ReplayParser

Gem for parsing replays of Supreme Commander 2. It returns all info about players, map and game options from replay


Parsing game option fields
FogOfWar
NoRushOption
TeamSpawn
Victory
Parsing players info
Nickname
Color
Faction
Team

Installation

Add this line to your application's Gemfile:

gem 'supcom2_replay_parser'

And then execute:

$ bundle

Or install it yourself as:

$ gem install supcom2_replay_parser

Usage

require 'pp'
replay_info = SupCom2ReplayParser.call(file_path)
pp replay_info

###
#{:game_version=>"Supreme Commander v1.26",
# :replay_version=>"Replay v1.9",
# :players_info=>
#  [{:nickname=>"lvl0 <| m.o.b", :color=>:orange, :faction=>:cybran, :team=>1},
#   {:nickname=>"HUECTRUM", :color=>:white, :faction=>:uef, :team=>2}],
# :game_options=>
#  {"FogOfWar"=>"explored",
#   "NoRushOption"=>"Off",
#   "TeamSpawn"=>"fixed",
#   "Victory"=>"demoralization",
#   "map"=>"[2] Spring Duel"}}
###

License

MIT License.