DotRecastNetSim/README.md

87 lines
5.3 KiB
Markdown
Raw Normal View History

2023-05-28 05:47:14 +03:00
[![License: Zlib](https://img.shields.io/badge/License-Zlib-lightgrey.svg)](https://opensource.org/licenses/Zlib)
2023-04-18 17:23:44 +03:00
[![.NET](https://github.com/ikpil/DotRecast/actions/workflows/dotnet.yml/badge.svg)](https://github.com/ikpil/DotRecast/actions/workflows/dotnet.yml)
2023-11-16 08:07:56 +03:00
[![CodeQL](https://github.com/ikpil/DotRecast/actions/workflows/codeql.yml/badge.svg?branch=main)](https://github.com/ikpil/DotRecast/actions/workflows/codeql.yml)
2023-12-12 15:46:14 +03:00
[![NuGet Version and Downloads count](https://buildstats.info/nuget/DotRecast.Core)](https://www.nuget.org/packages/DotRecast.Core)
2024-01-01 17:42:37 +03:00
![Github Repo Size](https://img.shields.io/github/repo-size/ikpil/DotRecast)
2023-09-23 01:28:42 +03:00
![Languages](https://img.shields.io/github/languages/top/ikpil/DotRecast)
2023-11-17 08:07:35 +03:00
[![Visitors](https://api.visitorbadge.io/api/daily?path=https%3A%2F%2Fgithub.com%2Fikpil%2FDotRecast&countColor=%23263759&style=flat-square)](https://visitorbadge.io/status?path=https%3A%2F%2Fgithub.com%2Fikpil%2FDotRecast)
2024-01-01 17:42:37 +03:00
[![GitHub Sponsors](https://img.shields.io/github/sponsors/ikpil?style=flat-square&logo=GitHub-Sponsors&link=https%3A%2F%2Fgithub.com%2Fsponsors%2Fikpil)](https://github.com/sponsors/ikpil)
2023-05-28 05:47:14 +03:00
2024-01-07 15:48:03 +03:00
# Demo Video
[![Demo](https://img.youtube.com/vi/zIFIgziKLhQ/0.jpg)](https://youtu.be/zIFIgziKLhQ)
2024-01-03 18:19:27 +03:00
2024-01-07 15:48:03 +03:00
[![Demo](https://img.youtube.com/vi/CPvc19gNUEk/0.jpg)](https://youtu.be/CPvc19gNUEk)
2023-09-02 10:14:23 +03:00
2023-06-07 17:56:32 +03:00
# Introduction
2023-06-07 18:01:01 +03:00
1. DotRecast is a port of C++'s [recastnavigation](https://github.com/recastnavigation/recastnavigation) and Java's [recast4j](https://github.com/ppiastucki/recast4j) to the C# language.
2023-06-07 17:56:32 +03:00
2. For game development, C# servers, C# project, and Unity3D are supported.
3. DotRecast consists of Recast and Detour, Crowd, Dynamic, Extras, TileCache, DemoTool, Demo
2023-03-27 18:34:05 +03:00
2023-10-03 17:46:33 +03:00
2023-04-16 08:21:57 +03:00
## DotRecast.Recast
2023-03-27 18:34:05 +03:00
Recast is state of the art navigation mesh construction toolset for games.
Recast is...
* 🤖 **Automatic** - throw any level geometry at it and you will get a robust navmesh out
* 🏎️ **Fast** - swift turnaround times for level designers
* 🧘 **Flexible** - easily customize the navmesh generation and runtime navigation systems to suit your specific game's needs.
Recast constructs a navmesh through a multi-step rasterization process:
1. First Recast voxelizes the input triangle mesh by rasterizing the triangles into a multi-layer heightfield.
2. Voxels in areas where the character would not be able to move are removed by applying simple voxel data filters.
3. The walkable areas described by the voxel grid are then divided into sets of 2D polygonal regions.
2023-10-31 18:42:57 +03:00
4. The navigation polygons are generated by triangulating and stitching together the generated 2d polygonal regions.
2023-03-27 18:34:05 +03:00
2023-04-16 08:21:57 +03:00
## DotRecast.Detour
2023-03-27 18:34:05 +03:00
Recast is accompanied by Detour, a path-finding and spatial reasoning toolkit. You can use any navigation mesh with Detour, but of course the data generated with Recast fits perfectly.
2023-03-16 19:09:10 +03:00
2023-03-27 18:34:05 +03:00
Detour offers a simple static navmesh data representation which is suitable for many simple cases. It also provides a tiled navigation mesh representation, which allows you to stream of navigation data in and out as the player progresses through the world and regenerate sections of the navmesh data as the world changes.
2023-03-16 19:09:10 +03:00
2023-04-16 08:21:57 +03:00
## DotRecast.Recast.Demo
2023-03-16 19:09:10 +03:00
2023-04-16 08:28:58 +03:00
You can find a comprehensive demo project in the `DotRecast.Recast.Demo` folder. It's a kitchen sink demo showcasing all the functionality of the library. If you are new to Recast & Detour, check out [SoloNavMeshBuilder.cs](/src/DotRecast.Recast.Demo/Builder/SoloNavMeshBuilder.cs) to get started with building navmeshes and [TestNavmeshTool.cs](/src/DotRecast.Recast.Demo/Tools/TestNavmeshTool.cs) to see how Detour can be used to find paths.
2023-04-16 08:21:57 +03:00
### Building DotRecast.Recast.Demo
2023-12-14 07:34:30 +03:00
1. `DotRecast.Recast.Demo` uses [dotnet 8](https://dotnet.microsoft.com/) to build platform specific projects. Download it and make sure it's available on your path, or specify the path to it.
2023-09-09 07:11:27 +03:00
2. Open a command prompt, point it to a directory and clone DotRecast to it: `git clone https://github.com/ikpil/DotRecast.git`
2023-08-28 19:15:21 +03:00
3. Open `<DotRecastDir>\DotRecast.sln` with Visual Studio 2022 and build `DotRecast.Recast.Demo`
- Optionally, you can run using the `dotnet run` command with `DotRecast.Recast.Demo.csproj`
2023-04-16 08:21:57 +03:00
#### Windows
2023-08-28 19:15:21 +03:00
- need to install [microsoft visual c++ redistributable package](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist)
2023-04-16 08:21:57 +03:00
#### Linux & macOS & Windows
- Navigate to the `DotRecast.Recast.Demo` folder and run `dotnet run`
### Running Unit tests
2023-08-28 19:15:21 +03:00
#### With VS2022
- In Visual Studio 2022 go to the test menu and press `Run All Tests`
#### With CLI
- in the DotRecast folder open a command prompt and run `dotnet test`
2023-04-16 08:21:57 +03:00
## Integrating with your game or engine
It is recommended to add the source directories `DotRecast.Core`, `DotRecast.Detour.Crowd`, `DotRecast.Detour.Dynamic`, `DotRecast.Detour.TitleCache`, `DotRecast.Detour.Extras` and `DotRecast.Recast` into your own project depending on which parts of the project you need. For example your level building tool could include `DotRecast.Core`, `DotRecast.Recast`, and `DotRecast.Detour`, and your game runtime could just include `DotRecast.Detour`.
## Discuss
2024-01-05 07:53:47 +03:00
- discussions:
- https://github.com/recastnavigation/recastnavigation/discussions
- issues:
- https://github.com/ikpil/DotRecast/issues or
- https://github.com/recastnavigation/recastnavigation/issues
2023-04-16 08:21:57 +03:00
## License
2023-12-02 07:08:44 +03:00
DotRecast is licensed under ZLib license, see [LICENSE.txt](LICENSE.txt) for more information.