DotRecastNetSim/src/DotRecast.Detour.TileCache/Io/DtTileCacheWriter.cs

82 lines
3.5 KiB
C#
Raw Normal View History

2023-03-14 08:02:43 +03:00
/*
Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
recast4j copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.org
2023-03-15 17:00:29 +03:00
DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com
2023-03-14 08:02:43 +03:00
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
using System.IO;
using DotRecast.Core;
using DotRecast.Detour.Io;
2023-03-16 19:09:10 +03:00
namespace DotRecast.Detour.TileCache.Io
{
public class DtTileCacheWriter : DtWriter
2023-03-16 19:48:49 +03:00
{
private readonly DtNavMeshParamWriter paramWriter = new DtNavMeshParamWriter();
private readonly DtTileCacheBuilder builder = new DtTileCacheBuilder();
2023-03-16 19:09:10 +03:00
public void Write(BinaryWriter stream, DtTileCache cache, RcByteOrder order, bool cCompatibility)
2023-03-16 19:48:49 +03:00
{
Write(stream, DtTileCacheSetHeader.TILECACHESET_MAGIC, order);
2023-05-05 02:44:48 +03:00
Write(stream, cCompatibility
? DtTileCacheSetHeader.TILECACHESET_VERSION
: DtTileCacheSetHeader.TILECACHESET_VERSION_RECAST4J, order);
2023-03-16 19:48:49 +03:00
int numTiles = 0;
2023-05-05 02:44:48 +03:00
for (int i = 0; i < cache.GetTileCount(); ++i)
2023-03-16 19:48:49 +03:00
{
DtCompressedTile tile = cache.GetTile(i);
2023-03-16 19:48:49 +03:00
if (tile == null || tile.data == null)
continue;
numTiles++;
}
2023-03-14 08:02:43 +03:00
2023-05-05 02:44:48 +03:00
Write(stream, numTiles, order);
paramWriter.Write(stream, cache.GetNavMesh().GetParams(), order);
WriteCacheParams(stream, cache.GetParams(), order);
for (int i = 0; i < cache.GetTileCount(); i++)
2023-03-16 19:48:49 +03:00
{
DtCompressedTile tile = cache.GetTile(i);
2023-03-16 19:48:49 +03:00
if (tile == null || tile.data == null)
continue;
2023-05-05 02:44:48 +03:00
Write(stream, (int)cache.GetTileRef(tile), order);
2023-03-16 19:48:49 +03:00
byte[] data = tile.data;
DtTileCacheLayer layer = cache.DecompressTile(tile);
2023-05-05 02:44:48 +03:00
data = builder.CompressTileCacheLayer(layer, order, cCompatibility);
Write(stream, data.Length, order);
2023-03-16 19:48:49 +03:00
stream.Write(data);
}
2023-03-14 08:02:43 +03:00
}
private void WriteCacheParams(BinaryWriter stream, DtTileCacheParams option, RcByteOrder order)
2023-03-16 19:48:49 +03:00
{
2023-05-05 02:44:48 +03:00
Write(stream, option.orig.x, order);
Write(stream, option.orig.y, order);
Write(stream, option.orig.z, order);
2023-03-16 19:09:10 +03:00
2023-05-05 02:44:48 +03:00
Write(stream, option.cs, order);
Write(stream, option.ch, order);
Write(stream, option.width, order);
Write(stream, option.height, order);
Write(stream, option.walkableHeight, order);
Write(stream, option.walkableRadius, order);
Write(stream, option.walkableClimb, order);
Write(stream, option.maxSimplificationError, order);
Write(stream, option.maxTiles, order);
Write(stream, option.maxObstacles, order);
2023-03-16 19:48:49 +03:00
}
}
2023-03-16 19:09:10 +03:00
}