AirframeComponentAirframes.cc 2.78 KB
Newer Older
1
2
3
4
5
6
7
8
9
/****************************************************************************
 *
 *   (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

Don Gagne's avatar
Don Gagne committed
10
11
12
13
14
15

/// @file
///     @author Don Gagne <don@thegagnes.com>

#include "AirframeComponentAirframes.h"

Lorenz Meier's avatar
Lorenz Meier committed
16
17
18
19
QMap<QString, AirframeComponentAirframes::AirframeType_t*> AirframeComponentAirframes::rgAirframeTypes;

QMap<QString, AirframeComponentAirframes::AirframeType_t*>& AirframeComponentAirframes::get() {

Lorenz Meier's avatar
Lorenz Meier committed
20
#if 0
Lorenz Meier's avatar
Lorenz Meier committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    // Set a single airframe to prevent the UI from going crazy
    if (rgAirframeTypes.count() == 0) {
        // Standard planes
        AirframeType_t *standardPlane = new AirframeType_t;
        standardPlane->name = "Standard Airplane";
        standardPlane->imageResource = "qrc:/qmlimages/AirframeStandardPlane.png";
        AirframeInfo_t *easystar = new AirframeInfo_t;
        easystar->name = "Multiplex Easystar 1/2";
        easystar->autostartId = 2100;
        standardPlane->rgAirframeInfo.append(easystar);
        rgAirframeTypes.insert("StandardPlane", standardPlane);
        qDebug() << "Adding plane config";

        // Flying wings
    }
Lorenz Meier's avatar
Lorenz Meier committed
36
#endif
Lorenz Meier's avatar
Lorenz Meier committed
37
38

    return rgAirframeTypes;
39
40
}

Lorenz Meier's avatar
Lorenz Meier committed
41
42
43
44
45
46
void AirframeComponentAirframes::insert(QString& group, QString& image, QString& name, int id)
{
    AirframeType_t *g;
    if (!rgAirframeTypes.contains(group)) {
        g = new AirframeType_t;
        g->name = group;
Don Gagne's avatar
Don Gagne committed
47

48
        if (image.length() > 0) {
Don Gagne's avatar
Don Gagne committed
49
50
51
52
53
54
55
56
57
58
            g->imageResource = QString(":/qmlimages/Airframe/").append(image);
            if (!QFile::exists(g->imageResource)) {
                g->imageResource.clear();
            } else {
                g->imageResource.prepend(QStringLiteral("qrc"));
            }
        }

        if (g->imageResource.isEmpty()) {
            g->imageResource = QString("qrc:/qmlimages/Airframe/AirframeUnknown");
59
        }
Don Gagne's avatar
Don Gagne committed
60

Lorenz Meier's avatar
Lorenz Meier committed
61
62
63
64
65
66
67
68
69
70
71
72
        rgAirframeTypes.insert(group, g);
    } else {
        g = rgAirframeTypes.value(group);
    }

    AirframeInfo_t *i = new AirframeInfo_t;
    i->name = name;
    i->autostartId = id;

    g->rgAirframeInfo.append(i);
}

Lorenz Meier's avatar
Lorenz Meier committed
73
void AirframeComponentAirframes::clear() {
74

Lorenz Meier's avatar
Lorenz Meier committed
75
    // Run through all and delete them
Lorenz Meier's avatar
Lorenz Meier committed
76
    for (int tindex = 0; tindex < AirframeComponentAirframes::get().count(); tindex++) {
77

Lorenz Meier's avatar
Lorenz Meier committed
78
        const AirframeComponentAirframes::AirframeType_t* pType = AirframeComponentAirframes::get().values().at(tindex);
79

Lorenz Meier's avatar
Lorenz Meier committed
80
        for (int index = 0; index < pType->rgAirframeInfo.count(); index++) {
Lorenz Meier's avatar
Lorenz Meier committed
81
82
83
            const AirframeComponentAirframes::AirframeInfo_t* pInfo = pType->rgAirframeInfo.at(index);
            delete pInfo;
        }
84

Lorenz Meier's avatar
Lorenz Meier committed
85
86
        delete pType;
    }
87

Lorenz Meier's avatar
Lorenz Meier committed
88
89
    rgAirframeTypes.clear();
}