Method | Description | |
---|---|---|
Compress ( Stream uncompressedPcc ) : Stream |
compress an entire ME3 pcc into a byte array.
|
|
Compress ( byte uncompressedPcc ) : byte[] |
compress an entire ME3 pcc into a byte array.
|
|
CompressAndSave ( Stream uncompressedPcc, string pccFileName ) : void |
compress an entire ME3 pcc into a file.
|
|
CompressAndSave ( byte uncompressedPcc, string pccFileName ) : void |
compress an entire ME3 pcc into a file.
|
|
Decompress ( string pccFileName ) : byte[] |
decompress an entire ME3, 2, or 1 package file.
|
|
DecompressME1orME2 ( Stream raw ) : |
decompress an entire ME1 or 2 pcc file.
|
|
DecompressME3 ( Stream input ) : |
decompress an entire ME3 pcc file into a new stream
|
|
DecompressME3 ( byte rawData ) : byte[] |
decompress an entire ME3 pcc file.
|
public static Compress ( Stream uncompressedPcc ) : Stream | ||
uncompressedPcc | Stream | uncompressed pcc stream. |
return | Stream |
public static Compress ( byte uncompressedPcc ) : byte[] | ||
uncompressedPcc | byte | uncompressed pcc file stored in a byte array. |
return | byte[] |
public static CompressAndSave ( Stream uncompressedPcc, string pccFileName ) : void | ||
uncompressedPcc | Stream | uncompressed pcc stream. |
pccFileName | string | pcc file name to save. |
return | void |
public static CompressAndSave ( byte uncompressedPcc, string pccFileName ) : void | ||
uncompressedPcc | byte | uncompressed pcc file stored in a byte array. |
pccFileName | string | pcc file name to save. |
return | void |
public static Decompress ( string pccFileName ) : byte[] | ||
pccFileName | string | pcc file's name to open. |
return | byte[] |
public static DecompressME1orME2 ( Stream raw ) : |
||
raw | Stream | pcc file passed in stream format |
return |
public static DecompressME3 ( Stream input ) : |
||
input | Stream | pcc file passed in stream format |
return |
public static DecompressME3 ( byte rawData ) : byte[] | ||
rawData | byte | pcc file passed in byte array format. |
return | byte[] |