ParameterEditorController.cc 5.31 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
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009, 2015 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 "ParameterEditorController.h"
#include "AutoPilotPluginManager.h"
29
#include "QGCApplication.h"
Don Gagne's avatar
Don Gagne committed
30

31 32 33
#ifndef __mobile__
#include "QGCFileDialog.h"
#include "QGCMapRCToParamDialog.h"
Don Gagne's avatar
Don Gagne committed
34
#include "MainWindow.h"
35 36
#endif

Don Gagne's avatar
Don Gagne committed
37
/// @Brief Constructs a new ParameterEditorController Widget. This widget is used within the PX4VehicleConfig set of screens.
Don Gagne's avatar
Don Gagne committed
38
ParameterEditorController::ParameterEditorController(void)
Don Gagne's avatar
Don Gagne committed
39
{
40 41 42 43 44 45 46
    if (_autopilot) {
        const QMap<int, QMap<QString, QStringList> >& groupMap = _autopilot->getGroupMap();

        foreach (int componentId, groupMap.keys()) {
            _componentIds += QString("%1").arg(componentId);
        }
    }
Don Gagne's avatar
Don Gagne committed
47 48
}

49 50 51 52 53
ParameterEditorController::~ParameterEditorController()
{
    
}

Don Gagne's avatar
Don Gagne committed
54 55 56 57 58 59 60
QStringList ParameterEditorController::getGroupsForComponent(int componentId)
{
	const QMap<int, QMap<QString, QStringList> >& groupMap = _autopilot->getGroupMap();

	return groupMap[componentId].keys();
}

Don Gagne's avatar
Don Gagne committed
61
QStringList ParameterEditorController::getParametersForGroup(int componentId, QString group)
Don Gagne's avatar
Don Gagne committed
62 63 64 65 66 67
{
	const QMap<int, QMap<QString, QStringList> >& groupMap = _autopilot->getGroupMap();
	
	return groupMap[componentId][group];
}

Don Gagne's avatar
Don Gagne committed
68 69 70 71
QStringList ParameterEditorController::searchParametersForComponent(int componentId, const QString& searchText, bool searchInName, bool searchInDescriptions)
{
    QStringList list;
    
72
    foreach(const QString &paramName, _autopilot->parameterNames(componentId)) {
Don Gagne's avatar
Don Gagne committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
        if (searchText.isEmpty()) {
            list += paramName;
        } else {
            Fact* fact = _autopilot->getParameterFact(componentId, paramName);
            
            if (searchInName && fact->name().contains(searchText, Qt::CaseInsensitive)) {
                list += paramName;
            } else if (searchInDescriptions && (fact->shortDescription().contains(searchText, Qt::CaseInsensitive) || fact->longDescription().contains(searchText, Qt::CaseInsensitive))) {
                list += paramName;
            }
        }
    }
    list.sort();
    
    return list;
}

Don Gagne's avatar
Don Gagne committed
90 91 92 93 94 95 96 97
void ParameterEditorController::clearRCToParam(void)
{
	Q_ASSERT(_uas);
	_uas->unsetRCToParameterMap();
}

void ParameterEditorController::saveToFile(void)
{
98
#ifndef __mobile__
Don Gagne's avatar
Don Gagne committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112
	Q_ASSERT(_autopilot);
	
    QString msgTitle("Save Parameters");
    
	QString fileName = QGCFileDialog::getSaveFileName(NULL,
                                                      msgTitle,
                                                      qgcApp()->savedParameterFilesLocation(),
                                                      "Parameter Files (*.params)",
                                                      "params",
                                                      true);
	if (!fileName.isEmpty()) {
		QFile file(fileName);
        
		if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
113
            qgcApp()->showMessage("Unable to create file");
Don Gagne's avatar
Don Gagne committed
114 115 116 117 118 119 120
			return;
		}
        
		QTextStream stream(&file);
		_autopilot->writeParametersToStream(stream);
		file.close();
	}
121
#endif
Don Gagne's avatar
Don Gagne committed
122 123 124 125
}

void ParameterEditorController::loadFromFile(void)
{
126
#ifndef __mobile__
127 128
    QString errors;
    
Don Gagne's avatar
Don Gagne committed
129 130 131 132 133 134 135 136 137 138 139 140
    Q_ASSERT(_autopilot);
    
    QString msgTitle("Load Parameters");
    
	QString fileName = QGCFileDialog::getOpenFileName(NULL,
                                                      msgTitle,
                                                      qgcApp()->savedParameterFilesLocation(),
													  "Parameter Files (*.params);;All Files (*)");
    if (!fileName.isEmpty()) {
        QFile file(fileName);
        
        if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
141
            qgcApp()->showMessage("Unable to open file");
Don Gagne's avatar
Don Gagne committed
142 143 144 145
            return;
        }
        
        QTextStream stream(&file);
146
        errors = _autopilot->readParametersFromStream(stream);
Don Gagne's avatar
Don Gagne committed
147
        file.close();
148 149 150 151
        
        if (!errors.isEmpty()) {
            emit showErrorMessage(errors);
        }
Don Gagne's avatar
Don Gagne committed
152
    }
153
#endif
Don Gagne's avatar
Don Gagne committed
154 155 156 157 158 159 160
}

void ParameterEditorController::refresh(void)
{
	_autopilot->refreshAllParameters();
}

161 162 163 164 165 166
void ParameterEditorController::resetAllToDefaults(void)
{
    _autopilot->resetAllParametersToDefaults();
    refresh();
}

Don Gagne's avatar
Don Gagne committed
167 168
void ParameterEditorController::setRCToParam(const QString& paramName)
{
169 170 171
#ifdef __mobile__
    Q_UNUSED(paramName)
#else
Don Gagne's avatar
Don Gagne committed
172
	Q_ASSERT(_uas);
173
    QGCMapRCToParamDialog * d = new QGCMapRCToParamDialog(paramName, _uas, qgcApp()->toolbox()->multiVehicleManager(), MainWindow::instance());
Don Gagne's avatar
Don Gagne committed
174
	d->exec();
175
#endif
Don Gagne's avatar
Don Gagne committed
176
}