74 lines
1.8 KiB
C#
74 lines
1.8 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 System.Collections.Generic;
|
|
using OpenRA.GameRules;
|
|
using OpenRA.Graphics;
|
|
using OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Cnc.Effects
|
|
{
|
|
public class IonCannon : IProjectile
|
|
{
|
|
readonly Target target;
|
|
readonly Animation anim;
|
|
readonly Player firedBy;
|
|
readonly string palette;
|
|
readonly WeaponInfo weapon;
|
|
|
|
int weaponDelay;
|
|
bool impacted = false;
|
|
|
|
public IonCannon(Player firedBy, WeaponInfo weapon, World world, WPos launchPos, in Target target, string effect, string sequence, string palette, int delay)
|
|
{
|
|
this.target = target;
|
|
this.firedBy = firedBy;
|
|
this.weapon = weapon;
|
|
this.palette = palette;
|
|
weaponDelay = delay;
|
|
anim = new Animation(world, effect);
|
|
anim.PlayThen(sequence, () => Finish(world));
|
|
|
|
if (weapon.Report != null && weapon.Report.Length > 0)
|
|
Game.Sound.Play(SoundType.World, weapon.Report, world, launchPos);
|
|
}
|
|
|
|
public void Tick(World world)
|
|
{
|
|
anim.Tick();
|
|
|
|
if (!impacted && weaponDelay-- <= 0)
|
|
{
|
|
var warheadArgs = new WarheadArgs
|
|
{
|
|
Weapon = weapon,
|
|
Source = target.CenterPosition,
|
|
SourceActor = firedBy.PlayerActor,
|
|
WeaponTarget = target
|
|
};
|
|
|
|
weapon.Impact(target, warheadArgs);
|
|
impacted = true;
|
|
}
|
|
}
|
|
|
|
public IEnumerable<IRenderable> Render(WorldRenderer wr)
|
|
{
|
|
return anim.Render(target.CenterPosition, wr.Palette(palette));
|
|
}
|
|
|
|
void Finish(World world)
|
|
{
|
|
world.AddFrameEndTask(w => w.Remove(this));
|
|
}
|
|
}
|
|
}
|