C# Class TagTool.Common.TagCacheMap

A lookup table which can be used to find a tag's equivalents in different game versions.
Mostra file Open project: TheGuardians/TagTool Class Usage Examples

Public Methods

Method Description
Add ( string version1, int index1, string version2, int index2 ) : void

Connects a tag index to a tag in another version.

ParseCsv ( TextReader reader ) : TagCacheMap

Parses a map from a CSV.

Translate ( string version1, int index1, string version2 ) : int

Translates a tag index between two versions.

WriteCsv ( TextWriter writer ) : void

Writes the map out to a CSV.

Method Details

Add() public method

Connects a tag index to a tag in another version.
public Add ( string version1, int index1, string version2, int index2 ) : void
version1 string The first version.
index1 int The tag index in the first version.
version2 string The second version.
index2 int The tag index in the second version.
return void

ParseCsv() public static method

Parses a map from a CSV.
public static ParseCsv ( TextReader reader ) : TagCacheMap
reader System.IO.TextReader The reader to read from.
return TagCacheMap

Translate() public method

Translates a tag index between two versions.
public Translate ( string version1, int index1, string version2 ) : int
version1 string The version of the index to translate.
index1 int The tag index.
version2 string The version to get the equivalent tag index in.
return int

WriteCsv() public method

Writes the map out to a CSV.
public WriteCsv ( TextWriter writer ) : void
writer System.IO.TextWriter The writer to write to.
return void