DotRecastNetSim/src/DotRecast.Recast.Demo/DemoSample.cs

136 lines
4.2 KiB
C#

/*
Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
recast4j copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.org
DotRecast Copyright (c) 2023-2024 Choi Ikpil ikpil@naver.com
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;
using System.Collections.Generic;
using DotRecast.Detour;
using DotRecast.Recast.Toolset;
using DotRecast.Recast.Toolset.Geom;
namespace DotRecast.Recast.Demo
{
public class DemoSample
{
private DemoInputGeomProvider _geom;
private DtNavMesh _navMesh;
private DtNavMeshQuery _navMeshQuery;
private readonly RcNavMeshBuildSettings _settings;
private RcConfig _cfg;
private IList<RcBuilderResult> _recastResults;
private bool _changed;
public DemoSample(DemoInputGeomProvider geom, IList<RcBuilderResult> recastResults, DtNavMesh navMesh)
{
_geom = geom;
_recastResults = recastResults;
_navMesh = navMesh;
_settings = new RcNavMeshBuildSettings();
SetQuery(navMesh);
_changed = true;
}
private void SetQuery(DtNavMesh navMesh)
{
_navMeshQuery = navMesh != null ? new DtNavMeshQuery(navMesh) : null;
}
public DemoInputGeomProvider GetInputGeom()
{
return _geom;
}
public RcConfig GetRecastConfig()
{
return _cfg;
}
public IList<RcBuilderResult> GetRecastResults()
{
return _recastResults;
}
public DtNavMesh GetNavMesh()
{
return _navMesh;
}
public RcNavMeshBuildSettings GetSettings()
{
return _settings;
}
public DtNavMeshQuery GetNavMeshQuery()
{
return _navMeshQuery;
}
public bool IsChanged()
{
return _changed;
}
public void SetChanged(bool changed)
{
_changed = changed;
}
public void Update(DemoInputGeomProvider geom, RcConfig cfg, IList<RcBuilderResult> recastResults, DtNavMesh navMesh)
{
_geom = geom;
_cfg = cfg;
_recastResults = recastResults;
_navMesh = navMesh;
SetQuery(navMesh);
_changed = true;
// // by update
// _inputGeom.ClearConvexVolumes();
// _inputGeom.RemoveOffMeshConnections(x => true);
//
// if (null != _navMesh && 0 < _navMesh.GetTileCount())
// {
// for (int ti = 0; ti < _navMesh.GetTileCount(); ++ti)
// {
// var tile = _navMesh.GetTile(ti);
// for (int pi = 0; pi < tile.data.polys.Length; ++pi)
// {
// var polyType = tile.data.polys[pi].GetPolyType();
// var polyArea= tile.data.polys[pi].GetArea();
//
// if (0 != polyType)
// {
// int a = 3;
// }
//
// if (0 != polyArea)
// {
// int b = 3;
// }
//
// Logger.Error($"tileIdx({ti}) polyIdx({pi}) polyType({polyType} polyArea({polyArea})");
// }
//
// }
// }
}
}
}