1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-10-01 19:12:14 +02:00
GiantsTools/Sdk/Include/Core/Public/ITextLookupService.h

25 lines
839 B
C
Raw Normal View History

2020-08-27 08:10:21 +02:00
#pragma once
2021-01-24 00:40:09 +01:00
#include "DataTypes.h"
#include "IGameService.h"
2020-08-27 08:10:21 +02:00
#include <string>
enum class NetPlayerState;
enum class GameTeam;
// {770DEBD3-165D-4340-829D-5262F473FBE3}
2020-09-22 07:30:26 +02:00
inline const GUID IID_ITextLookupService = { 0x770debd3, 0x165d, 0x4340, 0x82, 0x9d, 0x52, 0x62, 0xf4, 0x73, 0xfb, 0xe3 };
2020-08-27 08:10:21 +02:00
/// <summary>
/// Service providing localization of text placeholders and friendly-name mappings of common enums.
/// </summary>
2021-01-24 00:40:09 +01:00
DEFINE_SERVICE("{770DEBD3-165D-4340-829D-5262F473FBE3}", ITextLookupService)
2020-08-27 08:10:21 +02:00
{
virtual std::string STDMETHODCALLTYPE GetLocalized(tstring_view lookup) = 0;
2020-08-27 08:10:21 +02:00
virtual std::string STDMETHODCALLTYPE GetNetPlayerStateName(enum class NetPlayerState state) = 0;
virtual std::string STDMETHODCALLTYPE GetGameTeamName(GameTeam team) = 0;
virtual std::string STDMETHODCALLTYPE GetPlayerTeamName(int teamIndex) = 0;
2021-01-24 00:40:09 +01:00
};