git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1080 993157c7-ee19-0410-b2c4-bb4e9862e678

This commit is contained in:
bob
2007-06-26 12:40:42 +00:00
parent 08c0638982
commit f87448c958
6 changed files with 216 additions and 166 deletions

View File

@@ -13,7 +13,7 @@ namespace MapViewer
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.RestoreDirectory = true;
ofd.Filter = "Map files (*.ini)|*.ini";
ofd.Filter = "Map files (*.ini;*.mpr)|*.ini;*.mpr";
return (DialogResult.OK == ofd.ShowDialog()) ? ofd.OpenFile() : null;
}
@@ -38,86 +38,19 @@ namespace MapViewer
IniFile iniFile = new IniFile(s);
Console.WriteLine("Done.");
IniSection basic = iniFile.GetSection("Basic");
Console.WriteLine("Name: {0}", basic.GetValue("Name", "(null)"));
Console.WriteLine("Official: {0}", basic.GetValue("Official", "no"));
Map map = new Map( iniFile );
IniSection map = iniFile.GetSection("Map");
Console.WriteLine("Theater: {0}", map.GetValue("Theater", "TEMPERATE"));
Console.WriteLine("X: {0} Y: {1} Width: {2} Height: {3}",
map.GetValue("X", "0"), map.GetValue("Y", "0"),
map.GetValue("Width", "0"), map.GetValue("Height", "0"));
Console.WriteLine( "Name: {0}", map.Title );
int width = int.Parse(map.GetValue("Width", "0"));
int height = int.Parse(map.GetValue("Height", "0"));
IniSection basic = iniFile.GetSection( "Basic" );
Console.WriteLine( "Official: {0}", basic.GetValue( "Official", "no" ) );
int x = int.Parse(map.GetValue("X", "0"));
int y = int.Parse(map.GetValue("Y", "0"));
Console.WriteLine( "Theater: {0}", map.Theater );
Console.WriteLine( "X: {0} Y: {1} Width: {2} Height: {3}",
map.XOffset, map.YOffset, map.Width, map.Height );
// parse MapPack section
IniSection mapPackSection = iniFile.GetSection("MapPack");
StringBuilder sb = new StringBuilder();
for (int i = 1; ; i++)
{
string line = mapPackSection.GetValue(i.ToString(), null);
if (line == null)
break;
sb.Append(line.Trim());
}
byte[] data = Convert.FromBase64String(sb.ToString());
Console.WriteLine("Format80 data: {0}", data.Length);
List<byte[]> chunks = new List<byte[]>();
BinaryReader reader = new BinaryReader(new MemoryStream(data));
try
{
while (true)
{
uint length = reader.ReadUInt32() & 0xdfffffff;
byte[] dest = new byte[8192];
byte[] src = reader.ReadBytes((int)length);
int actualLength = Format80.DecodeInto(new MemoryStream(src), dest);
chunks.Add(dest);
Console.WriteLine("Chunk length: {0}", actualLength);
}
}
catch (EndOfStreamException) { }
MemoryStream ms = new MemoryStream();
foreach (byte[] chunk in chunks)
ms.Write(chunk, 0, chunk.Length);
ms.Position = 0;
TileReference[ , ] tiles = new TileReference[ 128, 128 ];
for( int i = 0 ; i < 128 ; i++ )
{
for( int j = 0 ; j < 128 ; j++ )
{
tiles[ i, j ].tile = ReadByte( ms );
tiles[ i, j ].tile |= (ushort)( ReadByte( ms ) << 8 );
}
}
for( int i = 0 ; i < 128 ; i++ )
for( int j = 0 ; j < 128 ; j++ )
tiles[ i, j ].image = ReadByte( ms );
foreach( TileReference r in tiles )
Console.Write( "{0:x4}.{1:x2} ", r.tile, r.image );
foreach( TileReference r in map.MapTiles )
Console.WriteLine( "{0:x4}.{1:x2} ", r.tile, r.image );
}
}
struct TileReference
{
public ushort tile;
public byte image;
}
}