~ruther/NosSmooth

ref: d0d6eae78f41999438b9cd7564265139c2edf0be NosSmooth/Extensions/NosSmooth.Extensions.Pathfinding/Extensions/ServiceCollectionExtensions.cs -rw-r--r-- 1.5 KiB
d0d6eae7 — Rutherther feat(pcap): add running indication to pcap nostale client so it won't be run multiple times 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
//  ServiceCollectionExtensions.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Microsoft.Extensions.DependencyInjection;
using NosSmooth.Core.Extensions;
using NosSmooth.Extensions.Pathfinding.Responders;
using NosSmooth.Packets.Server.Character;
using NosSmooth.Packets.Server.Maps;

namespace NosSmooth.Extensions.Pathfinding.Extensions;

/// <summary>
/// Extension methods for <see cref="IServiceCollection"/>.
/// </summary>
public static class ServiceCollectionExtensions
{
    /// <summary>
    /// Adds NosTale pathfinding using <see cref="Pathfinder"/> and <see cref="WalkManager"/>.
    /// </summary>
    /// <remarks>
    /// Finds and walks a given path.
    /// </remarks>
    /// <param name="serviceCollection">The service collection.</param>
    /// <returns>The collection.</returns>
    public static IServiceCollection AddNostalePathfinding(this IServiceCollection serviceCollection)
    {
        return serviceCollection
            .AddPacketResponder<AtResponder>()
            .AddPacketResponder<CMapResponder>()
            .AddPacketResponder<WalkResponder>()
            .AddPacketResponder<SuPacketResponder>()
            .AddPacketResponder<TpPacketResponder>()
            .AddPacketResponder<CInfoPacketResponder>()
            .AddSingleton<WalkManager>()
            .AddSingleton<Pathfinder>()
            .AddSingleton<PathfinderState>();
    }
}
Do not follow this link