//
// 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;
///
/// Command for getting information about a monster.
///
public class MonsterInfoCommand : CommandGroup
{
private readonly IInfoService _infoService;
private readonly ILanguageService _languageService;
///
/// Initializes a new instance of the class.
///
/// The info service.
/// The language service.
public MonsterInfoCommand(IInfoService infoService, ILanguageService languageService)
{
_infoService = infoService;
_languageService = languageService;
}
///
/// Gets the info about the specified monster.
///
/// The vnum of the Monster.
/// The language.
/// A result that may or may not succeeded.
[Command("monster")]
public async Task 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();
}
}