mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
refs #614, move utility functions into own class so I can resuse them better
This commit is contained in:
50
src/blackmisc/simulation/aircraftmodelutils.cpp
Normal file
50
src/blackmisc/simulation/aircraftmodelutils.cpp
Normal file
@@ -0,0 +1,50 @@
|
||||
/* 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 "aircraftmodelutils.h"
|
||||
|
||||
|
||||
namespace BlackMisc
|
||||
{
|
||||
namespace Simulation
|
||||
{
|
||||
bool CAircraftModelUtilities::mergeWithDbData(CAircraftModelList &modelToBeModified, const CAircraftModelList &dbModels, bool force)
|
||||
{
|
||||
if (dbModels.isEmpty() || modelToBeModified.isEmpty()) { return false; }
|
||||
for (CAircraftModel &simModel : modelToBeModified)
|
||||
{
|
||||
if (!force && simModel.hasValidDbKey()) { continue; } // already done
|
||||
CAircraftModel dbModel(dbModels.findFirstByModelStringOrDefault(simModel.getModelString()));
|
||||
if (!dbModel.hasValidDbKey())
|
||||
{
|
||||
continue; // not found
|
||||
}
|
||||
dbModel.updateMissingParts(simModel, false);
|
||||
simModel = dbModel;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user