Merge Mods.RA into Mods.Cnc
This commit is contained in:
56
OpenRA.Mods.Cnc/Effects/SatelliteLaunch.cs
Normal file
56
OpenRA.Mods.Cnc/Effects/SatelliteLaunch.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
#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.Collections.Generic;
|
||||
using OpenRA.Effects;
|
||||
using OpenRA.Graphics;
|
||||
using OpenRA.Mods.Cnc.Traits;
|
||||
|
||||
namespace OpenRA.Mods.Cnc.Effects
|
||||
{
|
||||
class SatelliteLaunch : IEffect
|
||||
{
|
||||
readonly GpsPowerInfo info;
|
||||
readonly Actor launcher;
|
||||
readonly Animation doors;
|
||||
readonly WPos pos;
|
||||
int frame = 0;
|
||||
|
||||
public SatelliteLaunch(Actor launcher, GpsPowerInfo info)
|
||||
{
|
||||
this.info = info;
|
||||
this.launcher = launcher;
|
||||
|
||||
doors = new Animation(launcher.World, info.DoorImage);
|
||||
doors.PlayThen(info.DoorSequence,
|
||||
() => launcher.World.AddFrameEndTask(w => w.Remove(this)));
|
||||
|
||||
pos = launcher.CenterPosition;
|
||||
}
|
||||
|
||||
public void Tick(World world)
|
||||
{
|
||||
doors.Tick();
|
||||
|
||||
if (++frame == 19)
|
||||
{
|
||||
var palette = info.SatellitePaletteIsPlayerPalette ? info.SatellitePalette + launcher.Owner.InternalName : info.SatellitePalette;
|
||||
world.AddFrameEndTask(w => w.Add(new GpsSatellite(world, pos, info.SatelliteImage, info.SatelliteSequence, palette, info.RevealDelay * 25, launcher.Owner)));
|
||||
}
|
||||
}
|
||||
|
||||
public IEnumerable<IRenderable> Render(WorldRenderer wr)
|
||||
{
|
||||
var palette = info.DoorPaletteIsPlayerPalette ? info.DoorPalette + launcher.Owner.InternalName : info.DoorPalette;
|
||||
return doors.Render(pos, wr.Palette(palette));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user