2007-06-28 07:47:20 +00:00
|
|
|
|
#ifndef PERFORMANCEDB_HXX
|
|
|
|
|
#define PERFORMANCEDB_HXX
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <map>
|
2012-10-05 18:12:46 +01:00
|
|
|
|
#include <vector>
|
2007-06-28 07:47:20 +00:00
|
|
|
|
|
2012-10-05 18:12:46 +01:00
|
|
|
|
class PerformanceData;
|
|
|
|
|
class SGPath;
|
2007-06-28 07:47:20 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Registry for performance data.
|
|
|
|
|
*
|
|
|
|
|
* Allows to store performance data for later reuse/retrieval. Just
|
|
|
|
|
* a simple map for now.
|
|
|
|
|
*
|
2009-05-05 10:36:38 +00:00
|
|
|
|
* @author Thomas F<EFBFBD>rster <t.foerster@biologie.hu-berlin.de>
|
2007-06-28 07:47:20 +00:00
|
|
|
|
*/
|
|
|
|
|
//TODO provide std::map interface?
|
|
|
|
|
class PerformanceDB
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
PerformanceDB();
|
|
|
|
|
~PerformanceDB();
|
|
|
|
|
|
|
|
|
|
void registerPerformanceData(const std::string& id, PerformanceData* data);
|
|
|
|
|
void registerPerformanceData(const std::string& id, const std::string& filename);
|
|
|
|
|
|
2012-10-05 18:12:46 +01:00
|
|
|
|
/**
|
|
|
|
|
* get performance data for an aircraft type / class. Type is specific, eg
|
|
|
|
|
* '738' or 'A319'. Class is more generic, such as 'jet_transport'.
|
|
|
|
|
*/
|
|
|
|
|
PerformanceData* getDataFor(const std::string& acType, const std::string& acClass);
|
|
|
|
|
void load(const SGPath& path);
|
2007-06-28 07:47:20 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::map<std::string, PerformanceData*> _db;
|
2012-10-05 18:12:46 +01:00
|
|
|
|
|
|
|
|
|
std::string findAlias(const std::string& acType) const;
|
|
|
|
|
|
|
|
|
|
typedef std::pair<std::string, std::string> StringPair;
|
|
|
|
|
/// alias list, to allow type/class names to share data. This is used to merge
|
|
|
|
|
/// related types together. Note it's ordered, and not a map since we permit
|
|
|
|
|
/// partial matches when merging - the first matching alias is used.
|
|
|
|
|
std::vector<StringPair> _aliases;
|
2007-06-28 07:47:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|