64 lines
1.9 KiB
C#
64 lines
1.9 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2017 The OpenRA Developers (see AUTHORS)
|
|
* 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 System.Drawing;
|
|
using System.Linq;
|
|
using OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Common.Traits.Render
|
|
{
|
|
[Desc("Display the time remaining until the super weapon attached to the actor is ready.")]
|
|
class SupportPowerChargeBarInfo : ITraitInfo
|
|
{
|
|
[Desc("Defines to which players the bar is to be shown.")]
|
|
public readonly Stance DisplayStances = Stance.Ally;
|
|
|
|
public readonly Color Color = Color.Magenta;
|
|
|
|
public object Create(ActorInitializer init) { return new SupportPowerChargeBar(init.Self, this); }
|
|
}
|
|
|
|
class SupportPowerChargeBar : ISelectionBar, INotifyOwnerChanged
|
|
{
|
|
readonly Actor self;
|
|
readonly SupportPowerChargeBarInfo info;
|
|
SupportPowerManager spm;
|
|
|
|
public SupportPowerChargeBar(Actor self, SupportPowerChargeBarInfo info)
|
|
{
|
|
this.self = self;
|
|
this.info = info;
|
|
spm = self.Owner.PlayerActor.Trait<SupportPowerManager>();
|
|
}
|
|
|
|
float ISelectionBar.GetValue()
|
|
{
|
|
var power = spm.GetPowersForActor(self).FirstOrDefault(sp => !sp.Disabled);
|
|
if (power == null)
|
|
return 0;
|
|
|
|
var viewer = self.World.RenderPlayer ?? self.World.LocalPlayer;
|
|
if (viewer != null && !info.DisplayStances.HasStance(self.Owner.Stances[viewer]))
|
|
return 0;
|
|
|
|
return 1 - (float)power.RemainingTime / power.TotalTime;
|
|
}
|
|
|
|
Color ISelectionBar.GetColor() { return info.Color; }
|
|
bool ISelectionBar.DisplayWhenEmpty { get { return false; } }
|
|
|
|
void INotifyOwnerChanged.OnOwnerChanged(Actor self, Player oldOwner, Player newOwner)
|
|
{
|
|
spm = newOwner.PlayerActor.Trait<SupportPowerManager>();
|
|
}
|
|
}
|
|
}
|