~ruther/NosSmooth

ref: 344dc6da529c05ae0e25c753b99ae0dbd7d9cb1b NosSmooth/Samples/DataBrowser/Commands/MonsterInfoCommand.cs -rw-r--r-- 2.1 KiB
344dc6da — František Boháček feat(samples): add data browser cli sample 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
//
//  MonsterInfoCommand.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.Logging;
using NosSmooth.Data.Abstractions;
using NosSmooth.Data.Abstractions.Language;
using Remora.Commands.Attributes;
using Remora.Commands.Groups;
using Remora.Results;

namespace DataBrowser.Commands;

/// <summary>
/// Command for getting information about a monster.
/// </summary>
public class MonsterInfoCommand : CommandGroup
{
    private readonly IInfoService _infoService;
    private readonly ILanguageService _languageService;

    /// <summary>
    /// Initializes a new instance of the <see cref="MonsterInfoCommand"/> class.
    /// </summary>
    /// <param name="infoService">The info service.</param>
    /// <param name="languageService">The language service.</param>
    public MonsterInfoCommand(IInfoService infoService, ILanguageService languageService)
    {
        _infoService = infoService;
        _languageService = languageService;
    }

    /// <summary>
    /// Gets the info about the specified monster.
    /// </summary>
    /// <param name="vnum">The vnum of the Monster.</param>
    /// <param name="language">The language.</param>
    /// <returns>A result that may or may not succeeded.</returns>
    [Command("monster")]
    public async Task<Result> HandleMonsterInfo(int vnum, Language language = Language.Uk)
    {
        var monsterResult = await _infoService.GetMonsterInfoAsync(vnum, CancellationToken);
        if (!monsterResult.IsSuccess)
        {
            return Result.FromError(monsterResult);
        }

        var translationResult = await _languageService.GetTranslationAsync
            (monsterResult.Entity.Name, language, CancellationToken);
        if (!translationResult.IsSuccess)
        {
            return Result.FromError(translationResult);
        }

        Console.WriteLine("Found Monster {0}", translationResult.Entity);
        Console.WriteLine("  Level: {0}", monsterResult.Entity.Level);

        return Result.FromSuccess();
    }
}
Do not follow this link