49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2016 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 COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using OpenRA.Mods.Common.Activities;
|
|
using OpenRA.Mods.Common.Traits;
|
|
using OpenRA.Scripting;
|
|
using OpenRA.Traits;
|
|
|
|
namespace OpenRA.Mods.Common.Scripting
|
|
{
|
|
[ScriptPropertyGroup("Movement")]
|
|
public class AircraftProperties : ScriptActorProperties, Requires<AircraftInfo>
|
|
{
|
|
readonly bool isPlane;
|
|
|
|
public AircraftProperties(ScriptContext context, Actor self)
|
|
: base(context, self)
|
|
{
|
|
isPlane = self.Trait<Aircraft>().IsPlane;
|
|
}
|
|
|
|
[ScriptActorPropertyActivity]
|
|
[Desc("Fly within the cell grid.")]
|
|
public void Move(CPos cell)
|
|
{
|
|
if (isPlane)
|
|
Self.QueueActivity(new Fly(Self, Target.FromCell(Self.World, cell)));
|
|
else
|
|
Self.QueueActivity(new HeliFly(Self, Target.FromCell(Self.World, cell)));
|
|
}
|
|
|
|
[ScriptActorPropertyActivity]
|
|
[Desc("Return to the base, which is either the airfield given, or an auto-selected one otherwise.")]
|
|
public void ReturnToBase(Actor airfield = null)
|
|
{
|
|
if (isPlane)
|
|
Self.QueueActivity(new ReturnToBase(Self, airfield));
|
|
else
|
|
Self.QueueActivity(new HeliReturnToBase(Self));
|
|
}
|
|
}
|
|
} |