Fact.cc 3.66 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(int componentId, QString name, FactMetaData::ValueType_t type, QObject* parent) :
Don Gagne's avatar
Don Gagne committed
32 33
    QObject(parent),
    _name(name),
34
    _componentId(componentId),
35
    _type(type),
Don Gagne's avatar
Don Gagne committed
36
    _metaData(NULL)
Don Gagne's avatar
Don Gagne committed
37
{
38
    _value = 0;
Don Gagne's avatar
Don Gagne committed
39 40
}

41
void Fact::setValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
42
{
43 44
    QVariant newValue;
    
45 46 47 48
    switch (type()) {
        case FactMetaData::valueTypeInt8:
        case FactMetaData::valueTypeInt16:
        case FactMetaData::valueTypeInt32:
49
            newValue = QVariant(value.toInt());
50 51 52 53 54
            break;

        case FactMetaData::valueTypeUint8:
        case FactMetaData::valueTypeUint16:
        case FactMetaData::valueTypeUint32:
55
            newValue = QVariant(value.toUInt());
56 57 58
            break;

        case FactMetaData::valueTypeFloat:
59
            newValue = QVariant(value.toFloat());
60 61 62
            break;

        case FactMetaData::valueTypeDouble:
63
            newValue = QVariant(value.toDouble());
64 65
            break;
    }
66 67 68 69 70 71
    
    if (newValue != _value) {
        _value.setValue(newValue);
        emit valueChanged(_value);
        emit _containerValueChanged(_value);
    }
Don Gagne's avatar
Don Gagne committed
72 73
}

74
void Fact::_containerSetValue(const QVariant& value)
Don Gagne's avatar
Don Gagne committed
75 76
{
    _value = value;
77
    emit valueChanged(_value);
Don Gagne's avatar
Don Gagne committed
78
}
79 80 81 82 83 84

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

85 86 87 88 89
int Fact::componentId(void) const
{
    return _componentId;
}

90 91 92 93 94 95 96 97 98 99 100 101
QVariant Fact::value(void) const
{
    return _value;
}

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

QVariant Fact::defaultValue(void)
{
102
    Q_ASSERT(_metaData);
103 104 105 106
    if (!_metaData->defaultValueAvailable()) {
        qDebug() << "Access to unavailable default value";
    }
    return _metaData->defaultValue();
107 108 109 110
}

FactMetaData::ValueType_t Fact::type(void)
{
111
    return _type;
112 113 114 115
}

QString Fact::shortDescription(void)
{
116 117
    Q_ASSERT(_metaData);
    return _metaData->shortDescription();
118 119 120 121
}

QString Fact::longDescription(void)
{
122 123
    Q_ASSERT(_metaData);
    return _metaData->longDescription();
124 125 126 127
}

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

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

QVariant Fact::max(void)
{
140
    Q_ASSERT(_metaData);
141
    return _metaData->max();
142 143
}

144 145
QString Fact::group(void)
{
146 147
    Q_ASSERT(_metaData);
    return _metaData->group();
148 149
}

150 151 152 153
void Fact::setMetaData(FactMetaData* metaData)
{
    _metaData = metaData;
}
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169

bool Fact::valueEqualsDefault(void)
{
    Q_ASSERT(_metaData);
    if (_metaData->defaultValueAvailable()) {
        return _metaData->defaultValue() == value();
    } else {
        return false;
    }
}

bool Fact::defaultValueAvailable(void)
{
    Q_ASSERT(_metaData);
    return _metaData->defaultValueAvailable();
}