mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
* logical / physical add/remote member functions in drivers, renamed functions * added access to snapshot * snapshot generation in analyzer * snapshot handling in driver * moved simulator base class in own files (.h/.cpp) * added functions as required to context
125 lines
4.9 KiB
C++
125 lines
4.9 KiB
C++
/* Copyright (C) 2015
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
#include "airspaceaircraftsnapshot.h"
|
|
|
|
using namespace BlackMisc::Aviation;
|
|
using namespace BlackMisc::PhysicalQuantities;
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Simulation
|
|
{
|
|
CAirspaceAircraftSnapshot::CAirspaceAircraftSnapshot()
|
|
{ }
|
|
|
|
CAirspaceAircraftSnapshot::CAirspaceAircraftSnapshot(
|
|
const CSimulatedAircraftList &allAircraft,
|
|
bool restricted, int maxAircraft, const CLength &maxRenderedDistance, const CLength &maxRenderedBoundary) :
|
|
m_timestampMsSinceEpoch(QDateTime::currentMSecsSinceEpoch()),
|
|
m_restricted(restricted)
|
|
{
|
|
m_renderingEnabled = !restricted || (
|
|
maxAircraft > 0 &&
|
|
(maxRenderedBoundary.isNull() || maxRenderedBoundary.isPositiveWithEpsilonConsidered()) &&
|
|
(maxRenderedDistance.isNull() || maxRenderedDistance.isPositiveWithEpsilonConsidered())
|
|
);
|
|
if (allAircraft.isEmpty()) { return; }
|
|
|
|
CSimulatedAircraftList aircraft(allAircraft);
|
|
aircraft.sortByDistanceToOwnAircraft();
|
|
CSimulatedAircraftList vtolAircraft(aircraft.findByVtol(true));
|
|
m_aircraftCallsignsByDistance = aircraft.getCallsigns();
|
|
m_vtolAircraftCallsignsByDistance = vtolAircraft.getCallsigns();
|
|
|
|
if (!restricted)
|
|
{
|
|
m_enabledAircraftCallsignsByDistance = aircraft.findByEnabled(true).getCallsigns();
|
|
m_disabledAircraftCallsignsByDistance = aircraft.findByEnabled(false).getCallsigns();
|
|
m_enabledVtolAircraftCallsignsByDistance = vtolAircraft.findByEnabled(true).getCallsigns();
|
|
}
|
|
else
|
|
{
|
|
// if no rendering all aircraft are disabled
|
|
if (!m_renderingEnabled)
|
|
{
|
|
m_disabledAircraftCallsignsByDistance = aircraft.getCallsigns();
|
|
return;
|
|
}
|
|
|
|
int count = 0;
|
|
for (const CSimulatedAircraft ¤tAircraft : aircraft)
|
|
{
|
|
CCallsign cs(currentAircraft.getCallsign());
|
|
if (currentAircraft.isEnabled())
|
|
{
|
|
CLength distance(currentAircraft.getDistanceToOwnAircraft());
|
|
if (count >= maxAircraft ||
|
|
(!maxRenderedDistance.isNull() && distance >= maxRenderedBoundary) ||
|
|
(!maxRenderedBoundary.isNull() && distance >= maxRenderedBoundary))
|
|
{
|
|
m_disabledAircraftCallsignsByDistance.push_back(cs);
|
|
}
|
|
else
|
|
{
|
|
count++;
|
|
m_enabledAircraftCallsignsByDistance.push_back(cs);
|
|
if (currentAircraft.isVtol()) { m_enabledVtolAircraftCallsignsByDistance.push_back(cs); }
|
|
}
|
|
}
|
|
else
|
|
{
|
|
m_disabledAircraftCallsignsByDistance.push_back(cs);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool CAirspaceAircraftSnapshot::isValidSnapshot() const
|
|
{
|
|
return m_timestampMsSinceEpoch > 0;
|
|
}
|
|
|
|
void CAirspaceAircraftSnapshot::setRestrictionChanged(const CAirspaceAircraftSnapshot &snapshot)
|
|
{
|
|
if (this->isValidSnapshot() == snapshot.isValidSnapshot())
|
|
{
|
|
this->m_restrictionChanged = (snapshot.m_restricted != this->m_restricted);
|
|
}
|
|
else
|
|
{
|
|
this->m_restrictionChanged = true;
|
|
}
|
|
}
|
|
|
|
CVariant CAirspaceAircraftSnapshot::propertyByIndex(const CPropertyIndex &index) const
|
|
{
|
|
if (index.isMyself()) { return this->toCVariant(); }
|
|
return CValueObject::propertyByIndex(index);
|
|
}
|
|
|
|
void CAirspaceAircraftSnapshot::setPropertyByIndex(const CVariant &variant, const CPropertyIndex &index)
|
|
{
|
|
if (index.isMyself())
|
|
{
|
|
this->convertFromCVariant(variant);
|
|
return;
|
|
}
|
|
CValueObject::setPropertyByIndex(variant, index);
|
|
}
|
|
|
|
QString CAirspaceAircraftSnapshot::convertToQString(bool i18n) const
|
|
{
|
|
Q_UNUSED(i18n);
|
|
return this->getTimestamp().toString();
|
|
}
|
|
|
|
} // ns
|
|
} // ns
|