38 lines
1013 B
C#
Executable File
38 lines
1013 B
C#
Executable File
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2010 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. For more information,
|
|
* see LICENSE.
|
|
*/
|
|
#endregion
|
|
|
|
using OpenRA.Mods.RA.Activities;
|
|
|
|
namespace OpenRA.Mods.RA.Render
|
|
{
|
|
class RenderUnitReloadInfo : RenderUnitInfo
|
|
{
|
|
public override object Create(ActorInitializer init) { return new RenderUnitReload(init.self); }
|
|
}
|
|
|
|
class RenderUnitReload : RenderUnit
|
|
{
|
|
public RenderUnitReload(Actor self)
|
|
: base(self) { }
|
|
|
|
public override void Tick(Actor self)
|
|
{
|
|
var isAttacking = self.GetCurrentActivity() is Attack;
|
|
|
|
var attack = self.traits.GetOrDefault<AttackBase>();
|
|
|
|
if (attack != null)
|
|
anim.ReplaceAnim((attack.IsReloading() ? "empty-" : "")
|
|
+ (isAttacking ? "aim" : "idle"));
|
|
base.Tick(self);
|
|
}
|
|
}
|
|
}
|