56 lines
1.6 KiB
C#
Executable File
56 lines
1.6 KiB
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using IjwFramework.Types;
|
|
using OpenRa.Game.Graphics;
|
|
|
|
namespace OpenRa.Game.Traits
|
|
{
|
|
class RenderUnitRotor : RenderUnit
|
|
{
|
|
public Animation rotorAnim, secondRotorAnim;
|
|
|
|
public RenderUnitRotor( Actor self )
|
|
: base(self)
|
|
{
|
|
rotorAnim = new Animation(self.unitInfo.Name);
|
|
rotorAnim.PlayRepeating("rotor");
|
|
|
|
if (self.unitInfo.SecondaryAnim != null)
|
|
{
|
|
secondRotorAnim = new Animation(self.unitInfo.Name);
|
|
secondRotorAnim.PlayRepeating(self.unitInfo.SecondaryAnim);
|
|
}
|
|
}
|
|
|
|
public override IEnumerable<Pair<Sprite, float2>> Render(Actor self)
|
|
{
|
|
var mobile = self.traits.Get<Mobile>();
|
|
|
|
yield return Util.Centered(anim.Image, self.CenterLocation);
|
|
yield return Util.Centered(rotorAnim.Image, self.CenterLocation
|
|
+ Util.GetTurretPosition(self, self.unitInfo.PrimaryOffset, 0));
|
|
if (self.unitInfo.SecondaryOffset != null)
|
|
yield return Util.Centered((secondRotorAnim ?? rotorAnim).Image, self.CenterLocation
|
|
+ Util.GetTurretPosition(self, self.unitInfo.SecondaryOffset, 0));
|
|
}
|
|
|
|
public override void Tick(Actor self)
|
|
{
|
|
base.Tick(self);
|
|
rotorAnim.Tick();
|
|
if (secondRotorAnim != null)
|
|
secondRotorAnim.Tick();
|
|
|
|
var mobile = self.traits.Get<Mobile>();
|
|
var isFlying = mobile.HasActivity;
|
|
if (isFlying ^ (rotorAnim.CurrentSequence.Name != "rotor"))
|
|
return;
|
|
|
|
rotorAnim.PlayRepeatingPreservingPosition(isFlying ? "rotor" : "slow-rotor");
|
|
if (secondRotorAnim != null)
|
|
secondRotorAnim.PlayRepeatingPreservingPosition(isFlying ? "rotor2" : "slow-rotor2");
|
|
}
|
|
}
|
|
}
|