// AntennaRange
//
// Extensions.cs
//
// Copyright © 2014, toadicus
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be used
// to endorse or promote products derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using System;
using System.Collections.Generic;
using System.Linq;
using ToadicusTools;
namespace AntennaRange
{
/*
* A class of utility extensions for Vessels and Relays to help find a relay path back to Kerbin.
* */
public static class RelayExtensions
{
///
/// Returns the distance between this IAntennaRelay and a Vessel
///
/// This
/// A
public static double DistanceTo(this AntennaRelay relay, Vessel Vessel)
{
return relay.vessel.DistanceTo(Vessel);
}
///
/// Returns the distance between this IAntennaRelay and a CelestialBody
///
/// This
/// A
public static double DistanceTo(this AntennaRelay relay, CelestialBody body)
{
return relay.vessel.DistanceTo(body) - body.Radius;
}
///
/// Returns the distance between this IAntennaRelay and another IAntennaRelay
///
/// This
/// Another
public static double DistanceTo(this AntennaRelay relayOne, IAntennaRelay relayTwo)
{
return relayOne.DistanceTo(relayTwo.vessel);
}
public static double sqrDistanceTo(this AntennaRelay relay, Vessel vessel)
{
return relay.vessel.sqrDistanceTo(vessel);
}
public static double sqrDistanceTo(this AntennaRelay relay, CelestialBody body)
{
return relay.vessel.sqrDistanceTo(body);
}
public static double sqrDistanceTo(this AntennaRelay relayOne, IAntennaRelay relayTwo)
{
return relayOne.vessel.sqrDistanceTo(relayTwo.vessel);
}
///
/// Returns all of the PartModules or ProtoPartModuleSnapshots implementing IAntennaRelay in this Vessel.
///
/// This
public static IEnumerable GetAntennaRelays (this Vessel vessel)
{
return RelayDatabase.Instance[vessel].Values.ToList();
}
///
/// Determines if the specified vessel has a connected relay.
///
/// true if the specified vessel has a connected relay; otherwise, false.
///
public static bool HasConnectedRelay(this Vessel vessel)
{
foreach (IAntennaRelay relay in RelayDatabase.Instance[vessel].Values)
{
if (relay.CanTransmit())
{
return true;
}
}
return false;
}
}
}