~ruther/NosSmooth

ref: a4f8525a700dfe18380f893b8c7f1b62427bcb00 NosSmooth/Samples/WalkCommands/Commands/WalkCommands.cs -rw-r--r-- 2.3 KiB
a4f8525a — František Boháček fix: correct generated syntax errors 3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//
//  WalkCommands.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 NosCore.Packets.Enumerations;
using NosCore.Packets.ServerPackets.Chats;
using NosSmooth.Core.Client;
using NosSmooth.Core.Commands;
using Remora.Results;

namespace WalkCommands.Commands;

/// <summary>
/// Represents command group for walking.
/// </summary>
public class WalkCommands
{
    private readonly INostaleClient _client;

    /// <summary>
    /// Initializes a new instance of the <see cref="WalkCommands"/> class.
    /// </summary>
    /// <param name="client">The nostale client.</param>
    public WalkCommands(INostaleClient client)
    {
        _client = client ?? throw new ArgumentNullException(nameof(client));
    }

    /// <summary>
    /// Attempts to walk the character to the specified lcoation.
    /// </summary>
    /// <param name="x">The x coordinate.</param>
    /// <param name="y">The y coordinate.</param>
    /// <param name="isCancellable">Whether the user can cancel the operation.</param>
    /// <param name="ct">The cancellation token for cancelling the operation.</param>
    /// <returns>A result that may or may not have succeeded.</returns>
    public async Task<Result> HandleWalkToAsync
    (
        int x,
        int y,
        bool isCancellable = true,
        CancellationToken ct = default
    )
    {
        var receiveResult = await _client.ReceivePacketAsync
        (
            new SayPacket
            {
                Type = SayColorType.Red, Message = $"Going to walk to {x} {y}"
            },
            ct
        );

        if (!receiveResult.IsSuccess)
        {
            return receiveResult;
        }

        var command = new WalkCommand(x, y, isCancellable);
        var walkResult = await _client.SendCommandAsync(command, ct);
        if (!walkResult.IsSuccess)
        {
            return walkResult;
        }

        return await _client.ReceivePacketAsync
        (
            new SayPacket
            {
                Type = SayColorType.Red, Message = "Walk has finished successfully."
            },
            ct
        );
    }
}
Do not follow this link