101 lines
3.3 KiB
C#
101 lines
3.3 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright (c) The OpenRA Developers and Contributors
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version. For more
|
|
* information, see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Common.Traits
|
|
{
|
|
public abstract class TooltipInfoBase : ConditionalTraitInfo, Requires<IMouseBoundsInfo>
|
|
{
|
|
[FieldLoader.Require]
|
|
[FluentReference]
|
|
public readonly string Name;
|
|
}
|
|
|
|
[Desc("Shown in map editor.")]
|
|
public class EditorOnlyTooltipInfo : TooltipInfoBase
|
|
{
|
|
public override object Create(ActorInitializer init) { return this; }
|
|
}
|
|
|
|
[Desc("Shown in the build palette widget.")]
|
|
public class TooltipInfo : TooltipInfoBase, ITooltipInfo
|
|
{
|
|
[Desc("An optional generic name (i.e. \"Soldier\" or \"Structure\")" +
|
|
"to be shown to chosen players.")]
|
|
[FluentReference(optional: true)]
|
|
public readonly string GenericName;
|
|
|
|
[Desc("Prefix generic tooltip name with 'Ally/Neutral/EnemyPrefix'.")]
|
|
public readonly bool GenericStancePrefix = true;
|
|
|
|
[Desc("Prefix to display in the tooltip for allied units.")]
|
|
[FluentReference(optional: true)]
|
|
public readonly string AllyPrefix = "label-tooltip-prefix.ally";
|
|
|
|
[Desc("Prefix to display in the tooltip for neutral units.")]
|
|
[FluentReference(optional: true)]
|
|
public readonly string NeutralPrefix;
|
|
|
|
[Desc("Prefix to display in the tooltip for enemy units.")]
|
|
[FluentReference(optional: true)]
|
|
public readonly string EnemyPrefix = "label-tooltip-prefix.enemy";
|
|
|
|
[Desc("Player stances that the generic name should be shown to.")]
|
|
public readonly PlayerRelationship GenericVisibility = PlayerRelationship.None;
|
|
|
|
[Desc("Show the actor's owner and their faction flag")]
|
|
public readonly bool ShowOwnerRow = true;
|
|
|
|
public override object Create(ActorInitializer init) { return new Tooltip(init.Self, this); }
|
|
|
|
public string TooltipForPlayerStance(PlayerRelationship relationship)
|
|
{
|
|
if (relationship == PlayerRelationship.None || !GenericVisibility.HasRelationship(relationship))
|
|
return FluentProvider.GetMessage(Name);
|
|
|
|
var genericName = string.IsNullOrEmpty(GenericName) ? "" : FluentProvider.GetMessage(GenericName);
|
|
if (GenericStancePrefix)
|
|
{
|
|
if (!string.IsNullOrEmpty(AllyPrefix) && relationship == PlayerRelationship.Ally)
|
|
return FluentProvider.GetMessage(AllyPrefix) + " " + genericName;
|
|
|
|
if (!string.IsNullOrEmpty(NeutralPrefix) && relationship == PlayerRelationship.Neutral)
|
|
return FluentProvider.GetMessage(NeutralPrefix) + " " + genericName;
|
|
|
|
if (!string.IsNullOrEmpty(EnemyPrefix) && relationship == PlayerRelationship.Enemy)
|
|
return FluentProvider.GetMessage(EnemyPrefix) + " " + genericName;
|
|
}
|
|
|
|
return genericName;
|
|
}
|
|
|
|
public bool IsOwnerRowVisible => ShowOwnerRow;
|
|
}
|
|
|
|
public class Tooltip : ConditionalTrait<TooltipInfo>, ITooltip
|
|
{
|
|
readonly Actor self;
|
|
readonly TooltipInfo info;
|
|
|
|
public ITooltipInfo TooltipInfo => info;
|
|
|
|
public Player Owner => self.EffectiveOwner != null ? self.EffectiveOwner.Owner : self.Owner;
|
|
|
|
public Tooltip(Actor self, TooltipInfo info)
|
|
: base(info)
|
|
{
|
|
this.self = self;
|
|
this.info = info;
|
|
}
|
|
}
|
|
}
|