Fact.cc 3.05 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 
 This file is part of the QGROUNDCONTROL project
 
 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 
 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
 
 ======================================================================*/

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

#include "Fact.h"

#include <QtQml>

31
Fact::Fact(QString name, FactMetaData::ValueType_t type, QObject* parent) :
Don Gagne's avatar
Don Gagne committed
32 33
    QObject(parent),
    _name(name),
34
    _type(type),
Don Gagne's avatar
Don Gagne committed
35
    _metaData(NULL)
Don Gagne's avatar
Don Gagne committed
36
{
37
    _value = 0;
Don Gagne's avatar
Don Gagne committed
38 39
}

40
void Fact::setValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
41
{
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    switch (type()) {
        case FactMetaData::valueTypeInt8:
        case FactMetaData::valueTypeInt16:
        case FactMetaData::valueTypeInt32:
            _value.setValue(QVariant(value.toInt()));
            break;

        case FactMetaData::valueTypeUint8:
        case FactMetaData::valueTypeUint16:
        case FactMetaData::valueTypeUint32:
            _value.setValue(value.toUInt());
            break;

        case FactMetaData::valueTypeFloat:
            _value.setValue(value.toFloat());
            break;

        case FactMetaData::valueTypeDouble:
            _value.setValue(value.toDouble());
            break;
    }
63 64
    emit valueChanged(_value);
    emit _containerValueChanged(_value);
Don Gagne's avatar
Don Gagne committed
65 66
}

67
void Fact::_containerSetValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
68 69
{
    _value = value;
70
    emit valueChanged(_value);
Don Gagne's avatar
Don Gagne committed
71
}
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

QString Fact::name(void) const
{
    return _name;
}

QVariant Fact::value(void) const
{
    return _value;
}

QString Fact::valueString(void) const
{
    return _value.toString();
}

QVariant Fact::defaultValue(void)
{
90
    Q_ASSERT(_metaData);
91 92 93 94 95
    return _metaData->defaultValue;
}

FactMetaData::ValueType_t Fact::type(void)
{
96
    return _type;
97 98 99 100
}

QString Fact::shortDescription(void)
{
101 102 103 104 105
    if (_metaData) {
        return _metaData->shortDescription;
    } else {
        return QString();
    }
106 107 108 109
}

QString Fact::longDescription(void)
{
110 111 112 113 114
    if (_metaData) {
        return _metaData->longDescription;
    } else {
        return QString();
    }
115 116 117 118
}

QString Fact::units(void)
{
119 120 121 122 123
    if (_metaData) {
        return _metaData->units;
    } else {
        return QString();
    }
124 125 126 127
}

QVariant Fact::min(void)
{
128
    Q_ASSERT(_metaData);
129 130 131 132 133
    return _metaData->min;
}

QVariant Fact::max(void)
{
134
    Q_ASSERT(_metaData);
135 136 137 138 139 140 141
    return _metaData->max;
}

void Fact::setMetaData(FactMetaData* metaData)
{
    _metaData = metaData;
}