Exemple #1
0
        public void Read(Map map, int x, int y)
        {
            var index = (ushort)(64 * x + y);
            var offset = Helper.SearchOffset(fileData, streamReader.BaseStream.Position, new byte[] { 0x4B, 0x4E, 0x43, 0x4D });

            while (offset != 0)
            {
                streamReader.BaseStream.Position = offset + 12;

                var chunk = new MapChunk();

                chunk.IndexX = (byte)streamReader.ReadUInt32();
                chunk.IndexY = (byte)streamReader.ReadUInt32();

                streamReader.BaseStream.Position += 40;

                chunk.AreaId = (ushort)streamReader.ReadUInt32();

                streamReader.BaseStream.Position += 72;

                if (map.Tiles.ContainsKey(index))
                    map.Tiles[index].Add(chunk);
                else
                    map.Tiles.TryAdd(index, new List<MapChunk>() { chunk });

                offset = Helper.SearchOffset(fileData, streamReader.BaseStream.Position, new byte[] { 0x4B, 0x4E, 0x43, 0x4D });
            }
        }
Exemple #2
0
        public void Read(Map map, int x, int y)
        {
            var tileId = (ushort)(64 * x + y);

            map.Tiles = new ConcurrentDictionary<ushort, MapTile>();
            map.Tiles.TryAdd(tileId, new MapTile 
            {
                Id = tileId,
                IndexX = (byte)x,
                IndexY = (byte)y,
                Chunks = new List<MapChunk>()
            });

            var offset = Helper.SearchOffset(fileData, streamReader.BaseStream.Position, new byte[] { 0x4B, 0x4E, 0x43, 0x4D });

            while (offset != 0)
            {
                streamReader.BaseStream.Position = offset + 12;

                var chunk = new MapChunk();

                chunk.IndexX = (byte)streamReader.ReadUInt32();
                chunk.IndexY = (byte)streamReader.ReadUInt32();

                streamReader.BaseStream.Position += 40;

                chunk.Area = (ushort)streamReader.ReadUInt32();

                streamReader.BaseStream.Position += 72;

                if (map.Tiles.ContainsKey(tileId))
                    map.Tiles[tileId].Chunks.Add(chunk);

                offset = Helper.SearchOffset(fileData, streamReader.BaseStream.Position, new byte[] { 0x4B, 0x4E, 0x43, 0x4D });
            }
        }