Files
pilotclient/src/blackmisc/simulation/aircraftmodelutils.cpp
Klaus Basan d75b105ee3 refs #720, moved data consolidation with DB data into own class in BlackCore
(in blackcore I can access the readers)
2016-08-26 20:54:52 +01:00

34 lines
1.4 KiB
C++

/* Copyright (C) 2016
* 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 "blackmisc/simulation/aircraftmodel.h"
#include "blackmisc/simulation/aircraftmodelutils.h"
namespace BlackMisc
{
namespace Simulation
{
bool CAircraftModelUtilities::mergeWithVPilotData(CAircraftModelList &modelToBeModified, const CAircraftModelList &vPilotModels, bool force)
{
if (vPilotModels.isEmpty() || modelToBeModified.isEmpty()) { return false; }
for (CAircraftModel &simModel : modelToBeModified)
{
if (!force && simModel.hasValidAircraftAndAirlineDesignator()) { continue; } // already done
CAircraftModel vPilotModel(vPilotModels.findFirstByModelStringOrDefault(simModel.getModelString()));
if (!vPilotModel.hasValidDbKey())
{
continue; // not found
}
simModel.updateMissingParts(vPilotModel, false);
}
return true;
}
} // ns
} // ns