Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
801 - 1
/***************************************************************************
2
 *   Copyright (C) 2009 by Manuel Schrape                                  *
3
 *   manuel.schrape@gmx.de                                                 *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation; either version 2 of the License.        *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
19
 
20
#include <QFileDialog>
21
#include <QMessageBox>
22
#include <QSettings>
23
 
24
#include "dlg_Main.h"
25
 
26
// Konstruktor Main-Form
27
dlg_Main::dlg_Main()
28
{
29
    setupUi(this);
30
 
31
    o_Settings = new cSettings();
32
 
33
    o_Input = new Input();
34
 
35
    o_Timer = new QTimer();
36
    o_Timer->setInterval(500);
37
 
38
    f_MotorMixer = new dlg_MotorMixer(this);
39
 
40
    init_Directorys();
41
    init_GUI();
42
    init_Connections();
43
}
44
 
45
// Grafische Oberfläche initialisieren
46
void dlg_Main::init_GUI()
47
{
48
    setWindowTitle(QA_NAME + " " + QA_VERSION);
49
 
50
    resize(o_Settings->GUI.Size);
51
    move(o_Settings->GUI.Point);
52
 
53
    if (o_Settings->GUI.isMax)
54
    {
55
        showMaximized();
56
    }
57
 
58
    for(int z = 0; z < o_Settings->SERVER.IP_MAX; z++)
59
    {
60
        if (cb_Server->findText(o_Settings->SERVER.IP[z]) == -1)
61
        {
62
            cb_Server->addItem(o_Settings->SERVER.IP[z]);
63
        }
64
    }
65
 
66
    cb_Server->setCurrentIndex(o_Settings->SERVER.IP_ID);
67
 
68
    le_Password->setText(o_Settings->SERVER.Password);
69
}
70
 
71
// Signale mit Slots verbinden
72
void dlg_Main::init_Connections()
73
{
74
    connect(o_Timer, SIGNAL(timeout()), this, SLOT(slot_Timer()));
75
 
76
    connect(ac_Connect, SIGNAL(triggered()), this, SLOT(slot_ac_Connect()));
77
 
78
    connect(ac_Write, SIGNAL(triggered()), this, SLOT(slot_ac_Write()));
79
    connect(ac_Read, SIGNAL(triggered()), this, SLOT(slot_ac_Read()));
80
    connect(ac_Save, SIGNAL(triggered()), this, SLOT(slot_ac_Save()));
81
    connect(ac_Load, SIGNAL(triggered()), this, SLOT(slot_ac_Load()));
82
 
83
    connect(ac_MotorMixer, SIGNAL(triggered()), this, SLOT(slot_ac_MotorMixer()));
84
 
85
    // About QMK-Settings & About-QT Dialog einfügen
86
    connect(ac_About, SIGNAL(triggered()), this, SLOT(slot_ac_About()));
87
    menu_Help->addAction(trUtf8("Über &Qt"), qApp, SLOT(aboutQt()));
88
 
89
    connect(listWidget, SIGNAL(currentRowChanged(int)), this, SLOT(slot_PageChange(int)));
90
 
91
    // Settings - LED's J16
92
    connect(J16_0,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
93
    connect(J16_1,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
94
    connect(J16_2,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
95
    connect(J16_3,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
96
    connect(J16_4,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
97
    connect(J16_5,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
98
    connect(J16_6,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
99
    connect(J16_7,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
100
 
101
    // Settings - LED's J17
102
    connect(J17_0,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
103
    connect(J17_1,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
104
    connect(J17_2,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
105
    connect(J17_3,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
106
    connect(J17_4,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
107
    connect(J17_5,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
108
    connect(J17_6,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
109
    connect(J17_7,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
110
 
111
    // Settings - LED's J16
112
    connect(J16_A_0,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
113
    connect(J16_A_1,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
114
    connect(J16_A_2,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
115
    connect(J16_A_3,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
116
    connect(J16_A_4,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
117
    connect(J16_A_5,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
118
    connect(J16_A_6,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
119
    connect(J16_A_7,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
120
 
121
    // Settings - LED's J17
122
    connect(J17_A_0,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
123
    connect(J17_A_1,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
124
    connect(J17_A_2,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
125
    connect(J17_A_3,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
126
    connect(J17_A_4,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
127
    connect(J17_A_5,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
128
    connect(J17_A_6,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
129
    connect(J17_A_7,  SIGNAL(clicked()), this, SLOT(slot_LEDtoValue()));
130
 
131
    connect(sb_11_1, SIGNAL(valueChanged(int)), this, SLOT(slot_ValuetoLED16(int)));
132
    connect(sb_11_3, SIGNAL(valueChanged(int)), this, SLOT(slot_ValuetoLED17(int)));
133
    connect(sb_11_5, SIGNAL(valueChanged(int)), this, SLOT(slot_ValuetoLED16A(int)));
134
    connect(sb_11_6, SIGNAL(valueChanged(int)), this, SLOT(slot_ValuetoLED17A(int)));
135
 
136
    connect(tb_9_6,  SIGNAL(clicked()), this, SLOT(slot_tbUp()));
137
    connect(tb_9_7,  SIGNAL(clicked()), this, SLOT(slot_tbDown()));
138
    connect(tb_9_8,  SIGNAL(clicked()), this, SLOT(slot_tbLeft()));
139
    connect(tb_9_9,  SIGNAL(clicked()), this, SLOT(slot_tbRight()));
140
}
141
 
142
void dlg_Main::init_Directorys()
143
{
144
    QDir *t_Dir = new QDir();
145
 
146
    s_Dir.MainData = QDir::homePath() + "/QMK-Data";
147
    if (!t_Dir->exists(s_Dir.MainData))
148
    {
149
        t_Dir->mkdir(s_Dir.MainData);
150
    }
151
 
152
    s_Dir.Settings = s_Dir.MainData + "/Settings";
153
    if (!t_Dir->exists(s_Dir.Settings))
154
    {
155
        t_Dir->mkdir(s_Dir.Settings);
156
    }
157
}
158
 
159
void dlg_Main::parse_IP_Data(QString t_Data)
160
{
161
    QStringList Data;
162
    Data = t_Data.split(":");
163
 
164
    if (Data.count() > 1)
165
    {
166
        int CMD = Data[2].toInt();
167
 
168
        switch(CMD)
169
        {
170
            case 501 :
171
            {
172
                o_Input->send_Data(HandlerIP::make_Frame(ID_SETTINGS, 105, le_Password->text()));
173
            }
174
            break;
175
            case 505 :
176
            {
177
                if (Data[3] == "OK")
178
                {
179
                }
180
                else
181
                {
182
                    QMessageBox::warning(this, QA_NAME, trUtf8("Authentifizierung fehlgeschlagen. <br />Daten senden zum Mikrokopter nicht möglich."), QMessageBox::Ok);
183
                }
184
            }
185
            break;
186
        }
187
    }
188
}
189
 
190
// Eingangsdaten verarbeiten
191
void dlg_Main::parse_MK_Data(QString t_Data)
192
{
193
    unsigned char OutData[150];
194
    char *InData = t_Data.toLatin1().data();
195
 
196
    if (HandlerMK::Decode_64(InData, t_Data.length(), OutData) != 0)
197
    {
198
        switch(InData[2])
199
        {
200
            case 'V' : // Versions-Info
201
                {
202
                    o_Input->stop_Resend(DATA_VERSION);
203
                    VersionInfo = HandlerMK::parse_Version(OutData, InData[1] - 'a');
204
                    setWindowTitle(QA_NAME + " " + QA_VERSION + " - " + VersionInfo.Hardware + " " + VersionInfo.Version);
205
 
206
                    if (VersionInfo.ID == ADDRESS_FC)
207
                    {
208
//                        qDebug("get FC-Settings");
209
                        c_Data[0] = 0xff;
210
                        o_Input->send_Data(HandlerMK::make_Frame('q', ADDRESS_FC, c_Data, 1).toLatin1().data(), DATA_READ_SETTINGS);
211
                    }
212
                }
213
            break;
214
            case 'Q' : // Settings lesen
215
                {
216
                    o_Input->stop_Resend(DATA_READ_SETTINGS);
217
                    if (OutData[1] == MK_VERSION_SETTINGS)
218
                    {
219
                        s_MK_Settings MK_Set;
220
 
221
                        memcpy((unsigned char *)&MK_Set, (unsigned char *)&OutData, sizeof(MK_Set));
222
  //                      qDebug(MK_Set.Name);
223
                        show_MK_Settings(MK_Set);
224
                    }
225
                    else
226
                    {
227
                        QMessageBox::warning(this, QA_NAME, tr("Versionen inkompatibel. \nParameterbearbeitung nicht moeglich."), QMessageBox::Ok);
228
                        ac_Read->setEnabled(false);
229
                        ac_Write->setEnabled(false);
230
                    }
231
                }
232
            break;
233
            case 'S' : // Settings geschrieben
234
                {
235
                    o_Input->stop_Resend(DATA_WRITE_SETTINGS);
236
                    if (OutData[0] == 0)
237
                    {
238
                        QMessageBox::warning(this, QA_NAME, tr("Fehler beim Settings-Schreiben."), QMessageBox::Ok);
239
                    }
240
                }
241
            break;
242
            case 'P' : // RC-Kanäle
243
                {
244
                    int PPM_in[11];
245
 
246
                    memcpy((unsigned char *)&PPM_in, (unsigned char *)&OutData, sizeof(PPM_in));
247
                    pb_K1->setValue(PPM_in[0]);
248
                    pb_K2->setValue(PPM_in[1]);
249
                    pb_K3->setValue(PPM_in[2]);
250
                    pb_K4->setValue(PPM_in[3]);
251
                    pb_K5->setValue(PPM_in[4]);
252
                    pb_K6->setValue(PPM_in[5]);
253
                    pb_K7->setValue(PPM_in[6]);
254
                    pb_K8->setValue(PPM_in[7]);
255
                }
256
            break;
257
            case 'N' : // MotorMixer lesen
258
                {
259
                    o_Input->stop_Resend(DATA_READ_MIXER);
260
 
261
                    s_MK_Mixer MK_Mixer;
262
 
263
                    memcpy((unsigned char *)&MK_Mixer, (unsigned char *)&OutData, sizeof(MK_Mixer));
264
 
265
                    if (MK_Mixer.Revision == MK_VERSION_MIXER)
266
                    {
267
                        f_MotorMixer->set_MotorConfig(MK_Mixer);
268
                    }
269
                }
270
            break;
271
            case 'M' : // MotorMixer geschrieben
272
                {
273
                    o_Input->stop_Resend(DATA_WRITE_MIXER);
274
 
275
                    if (OutData[0] == 0)
276
                    {
277
                        QMessageBox::warning(this, QA_NAME, tr("Fehler beim MotorMixer-Schreiben."), QMessageBox::Ok);
278
                    }
279
                }
280
            break;
281
 
282
        }
283
    }
284
}
285
 
286
///////////
287
// Slots //
288
///////////
289
 
290
// About-Dialog
291
void dlg_Main::slot_ac_About()
292
{
293
    QMessageBox::about(this, trUtf8(("Über ")) + QA_NAME, QA_ABOUT);
294
}
295
 
296
// Verbindung zum Server aufbauen
297
void dlg_Main::slot_ac_Connect()
298
{
299
    if (!o_Input->IsOpen())
300
    {
301
        if (cb_Server->findText(cb_Server->currentText()) == -1)
302
        {
303
            cb_Server->addItem(cb_Server->currentText());
304
            cb_Server->setCurrentIndex(cb_Server->findText(cb_Server->currentText()));
305
        }
306
 
307
        cb_Server->setEnabled(false);
308
        le_Password->setEnabled(false);
309
 
310
        if (cb_Server->currentText().startsWith('/'))
311
        {
312
            o_Input = new Input_TTY();
313
            o_Input->Init();
314
 
315
            set_Input s_Input;
316
            s_Input.Main = cb_Server->currentText();
317
 
318
            if (o_Input->Open(s_Input) == true)
319
            {
320
                ac_Connect->setText(tr("Trennen"));
321
                connect(o_Input, SIGNAL(sig_NewData(QString)), this, SLOT(slot_Input_Data(QString)));
322
 
323
                o_Input->send_Data(HandlerMK::make_Frame('v', 0, c_Data, 0).toLatin1().data(), DATA_VERSION);
324
            }
325
            else
326
            {
327
                cb_Server->setEnabled(true);
328
                le_Password->setEnabled(true);
329
            }
330
 
331
        }
332
        else
333
        {
334
            o_Input = new Input_TCP();
335
            o_Input->Init();
336
 
337
            set_Input s_Input;
338
 
339
            QStringList Server = cb_Server->currentText().split(":");
340
 
341
            s_Input.Main = Server[0];
342
            s_Input.Sub  = Server[1];
343
 
344
            if (o_Input->Open(s_Input) == true)
345
            {
346
                connect(o_Input, SIGNAL(sig_Disconnected(int)), this, SLOT(slot_Input_Disconnected(int)));
347
                connect(o_Input, SIGNAL(sig_Connected()), this, SLOT(slot_Input_Connected()));
348
            }
349
        }
350
    }
351
    else
352
    {
353
        cb_Server->setEnabled(true);
354
        le_Password->setEnabled(true);
355
 
356
        ac_Connect->setText(tr("Verbinden"));
357
        o_Input->Close();
358
        disconnect(o_Input, SIGNAL(sig_NewData(QString)), 0, 0);
359
        if (o_Input->Mode() == TCP)
360
        {
361
            disconnect(o_Input, SIGNAL(sig_Disconnected(int)), 0, 0);
362
            disconnect(o_Input, SIGNAL(sig_Connected()), 0, 0);
363
        }
364
    }
365
}
366
 
367
// Neue Daten empfangen.
368
void dlg_Main::slot_Input_Data(QString t_Data)
369
{
370
    if ((t_Data[0] == '#'))
371
    {
372
        if ((HandlerMK::Check_CRC(t_Data.toLatin1().data(), t_Data.length() - 1)) || ((o_Input->Mode() == TTY)  && (HandlerMK::Check_CRC(t_Data.toLatin1().data(), t_Data.length()))))
373
        {
374
            parse_MK_Data(t_Data);
375
        }
376
        else
377
        {
378
//            qDebug(QString("CRC-Error - " + t_Data).toLatin1().data());
379
        }
380
    }
381
    else if (o_Input->Mode() == TCP)
382
    {
383
        parse_IP_Data(t_Data);
384
    }
385
}
386
 
387
void dlg_Main::slot_Input_Disconnected(int Error)
388
{
389
    cb_Server->setEnabled(true);
390
    le_Password->setEnabled(true);
391
 
392
//    qDebug("Close");
393
    disconnect(o_Input, SIGNAL(sig_NewData(QString)), 0, 0);
394
    if (o_Input->Mode() == TCP)
395
    {
396
        disconnect(o_Input, SIGNAL(sig_Disconnected(int)), 0, 0);
397
        disconnect(o_Input, SIGNAL(sig_Connected()), 0, 0);
398
    }
399
    ac_Connect->setChecked(false);
400
    ac_Connect->setText(tr("Verbinden"));
401
 
402
    switch (Error)
403
    {
404
        case REMOTECLOSED :
405
        {
406
//            lb_Status->setText(tr("Verbindung vom Server beendet."));
407
            QMessageBox::warning(this, QA_NAME,tr("QMK-Datenserver: Verbindung wurde vom Server beendet."), QMessageBox::Ok);
408
        }
409
        break;
410
        case REFUSED :
411
        {
412
//            lb_Status->setText(tr("Server nicht gefunden."));
413
            QMessageBox::warning(this, QA_NAME,tr("QMK-Datenserver: Kann nicht zum Server verbinden."), QMessageBox::Ok);
414
        }
415
        break;
416
        case 3 :
417
        {
418
//            lb_Status->setText(tr("Serververbindung getrennt. Logindaten falsch."));
419
            QMessageBox::warning(this, QA_NAME,tr("QMK-Datenserver: Loginname oder Password falsch."), QMessageBox::Ok);
420
        }
421
        break;
422
        default :
423
        {
424
//            lb_Status->setText(tr("Getrennt vom QMK-Datenserver."));
425
        }
426
        break;
427
    }
428
 
429
}
430
 
431
void dlg_Main::slot_Input_Connected()
432
{
433
    connect(o_Input, SIGNAL(sig_NewData(QString)), this, SLOT(slot_Input_Data(QString)));
434
 
435
    o_Input->send_Data(HandlerIP::make_Frame(ID_SETTINGS, 101, QA_NAME + " " + QA_VERSION));
436
    o_Input->send_Data(HandlerMK::make_Frame('v', ADDRESS_ALL, c_Data, 0).toLatin1().data(), DATA_VERSION);
437
    ac_Connect->setText(tr("Trennen"));
438
}
439
 
440
///////////////////////////////////////////////////////////////////
441
// QMK-Settings                                                  //
442
///////////////////////////////////////////////////////////////////
443
 
444
void dlg_Main::slot_PageChange(int Page)
445
{
446
    if (Page == 1)
447
        o_Timer->start();
448
    else
449
        o_Timer->stop();
450
}
451
 
452
void dlg_Main::slot_Timer()
453
{
454
    o_Input->send_Data(HandlerMK::make_Frame('p', ADDRESS_FC, c_Data, 0).toLatin1().data(), 0);
455
}
456
 
457
void dlg_Main::slot_ac_MotorMixer()
458
{
459
    f_MotorMixer->set_Objects(o_Input, o_Settings, s_Dir);
460
    f_MotorMixer->read_Mixer();
461
 
462
    if (f_MotorMixer->exec()==QDialog::Accepted)
463
    {
464
    }
465
}
466
 
467
// Settings-Funktionen
468
void dlg_Main::slot_ac_Write()
469
{
470
    s_MK_Settings t_Set;
471
 
472
    t_Set = get_MK_Settings();
473
 
474
    memcpy((unsigned char *)&c_Data, (unsigned char *)&t_Set, sizeof(t_Set));
475
 
476
    o_Input->send_Data(HandlerMK::make_Frame('s', ADDRESS_FC, c_Data, sizeof(t_Set)).toLatin1().data(), DATA_WRITE_SETTINGS);
477
}
478
 
479
void dlg_Main::slot_ac_Read()
480
{
481
    c_Data[0] = sb_Set->value();
482
    o_Input->send_Data(HandlerMK::make_Frame('q', ADDRESS_FC, c_Data, 1).toLatin1().data(), DATA_READ_SETTINGS);
483
}
484
 
485
void dlg_Main::slot_ac_Save()
486
{
487
    QString Filename = QFileDialog::getSaveFileName(this, "Mikrokopter Parameter speichern", s_Dir.Settings + "/" + VersionInfo.VersionShort + "_" + le_SetName->text() + ".mkp", "Mikrokopter Parameter(*.mkp);;Alle Dateien (*)");
488
 
489
    if (!Filename.isEmpty())
490
    {
491
        if (!(Filename.endsWith(".mkp", Qt::CaseInsensitive)))
492
        {
493
            Filename = Filename + QString(".mkp");
494
        }
495
 
496
        s_MK_Settings t_Set = get_MK_Settings();
497
 
498
        QSettings Setting(Filename, QSettings::IniFormat);
499
 
500
        Setting.beginGroup("Setup");
501
            Setting.setValue("Name",         le_SetName->text());
502
            Setting.setValue("IniVersion",   3);
503
            Setting.setValue("GlobalConfig", t_Set.GlobalConfig);
504
            Setting.setValue("GlobalConfig2", t_Set.ExtraConfig);
505
        Setting.endGroup();
506
 
507
        Setting.beginGroup("Channels");
508
            Setting.setValue("Nick",   t_Set.Kanalbelegung[0]);
509
            Setting.setValue("Roll",   t_Set.Kanalbelegung[1]);
510
            Setting.setValue("Gas",    t_Set.Kanalbelegung[2]);
511
            Setting.setValue("Gier",   t_Set.Kanalbelegung[3]);
512
            Setting.setValue("Poti_1", t_Set.Kanalbelegung[4]);
513
            Setting.setValue("Poti_2", t_Set.Kanalbelegung[5]);
514
            Setting.setValue("Poti_3", t_Set.Kanalbelegung[6]);
515
            Setting.setValue("Poti_4", t_Set.Kanalbelegung[7]);
516
        Setting.endGroup();
517
 
518
        Setting.beginGroup("Stick");
519
            Setting.setValue("Nick_Roll-P",     t_Set.Stick_P);
520
            Setting.setValue("Nick_Roll-D",     t_Set.Stick_D);
521
            Setting.setValue("Gier-P",          t_Set.Gier_P);
522
            Setting.setValue("ExternalControl", t_Set.ExternalControl);
523
        Setting.endGroup();
524
 
525
        Setting.beginGroup("Altitude");
526
            Setting.setValue("Setpoint",          t_Set.MaxHoehe);
527
            Setting.setValue("MinGas",            t_Set.Hoehe_MinGas);
528
            Setting.setValue("P",                 t_Set.Hoehe_P);
529
            Setting.setValue("Barometric-D",      t_Set.Luftdruck_D);
530
            Setting.setValue("Z-ACC-Effect",      t_Set.Hoehe_ACC_Wirkung);
531
            Setting.setValue("Gain",              t_Set.Hoehe_Verstaerkung);
532
            Setting.setValue("HoverVariation",    t_Set.Hoehe_HoverBand);
533
            Setting.setValue("GPS_Z",             t_Set.Hoehe_GPS_Z);
534
            Setting.setValue("StickNeutralPoint", t_Set.Hoehe_StickNeutralPoint);
535
        Setting.endGroup();
536
 
537
        Setting.beginGroup("Gyro");
538
            Setting.setValue("P",                     t_Set.Gyro_P);
539
            Setting.setValue("I",                     t_Set.Gyro_I);
540
            Setting.setValue("D",                     t_Set.Gyro_D);
541
            Setting.setValue("Gier_P",                t_Set.Gyro_Gier_P);
542
            Setting.setValue("Gier_I",                t_Set.Gyro_Gier_I);
543
            Setting.setValue("DynamicStability",      t_Set.DynamicStability);
544
            Setting.setValue("ACC_Gyro-Factor",       t_Set.GyroAccFaktor);
545
            Setting.setValue("ACC_Gyro-Compensation", t_Set.GyroAccAbgleich);
546
            Setting.setValue("DriftCompensation",     t_Set.Driftkomp);
547
            Setting.setValue("Main-I",                t_Set.I_Faktor);
548
        Setting.endGroup();
549
 
550
        Setting.beginGroup("Camera");
551
            Setting.setValue("ServoNickControl",      t_Set.ServoNickControl);
552
            Setting.setValue("ServoNickCompensation", t_Set.ServoNickComp);
553
            Setting.setValue("ServoNickMin",          t_Set.ServoNickMin);
554
            Setting.setValue("ServoNickMax",          t_Set.ServoNickMax);
555
 
556
            Setting.setValue("ServoRollControl",      t_Set.ServoRollControl);
557
            Setting.setValue("ServoRollCompensation", t_Set.ServoRollComp);
558
            Setting.setValue("ServoRollMin",          t_Set.ServoRollMin);
559
            Setting.setValue("ServoRollMax",          t_Set.ServoRollMax);
560
 
561
            Setting.setValue("ServoInvert",           t_Set.ServoCompInvert);
562
            Setting.setValue("ServoNickRefreshRate",  t_Set.ServoNickRefresh);
563
        Setting.endGroup();
564
 
565
        Setting.beginGroup("Others");
566
            Setting.setValue("MinGas",         t_Set.Gas_Min);
567
            Setting.setValue("MaxGas",         t_Set.Gas_Max);
568
            Setting.setValue("Compass-Effect", t_Set.KompassWirkung);
569
            Setting.setValue("UnderVoltage",   t_Set.UnterspannungsWarnung);
570
            Setting.setValue("NotGas",         t_Set.NotGas);
571
            Setting.setValue("NotGasTime",     t_Set.NotGasZeit);
572
        Setting.endGroup();
573
 
574
        Setting.beginGroup("Coupling");
575
            Setting.setValue("YawPosFeedback",   t_Set.AchsKopplung1);
576
            Setting.setValue("NickRollFeedback", t_Set.AchsKopplung2);
577
            Setting.setValue("YawCorrection",    t_Set.CouplingYawCorrection);
578
        Setting.endGroup();
579
 
580
        Setting.beginGroup("Loop");
581
            Setting.setValue("Config", t_Set.BitConfig);
582
            Setting.setValue("GasLimit", t_Set.LoopGasLimit);
583
            Setting.setValue("StickThreshold", t_Set.LoopThreshold);
584
            Setting.setValue("LoopHysteresis", t_Set.LoopHysterese);
585
            Setting.setValue("TurnOverNick", t_Set.WinkelUmschlagNick);
586
            Setting.setValue("TurnOverRoll", t_Set.WinkelUmschlagRoll);
587
        Setting.endGroup();
588
 
589
        Setting.beginGroup("User");
590
             Setting.setValue("Parameter_1", t_Set.UserParam1);
591
             Setting.setValue("Parameter_2", t_Set.UserParam2);
592
             Setting.setValue("Parameter_3", t_Set.UserParam3);
593
             Setting.setValue("Parameter_4", t_Set.UserParam4);
594
             Setting.setValue("Parameter_5", t_Set.UserParam5);
595
             Setting.setValue("Parameter_6", t_Set.UserParam6);
596
             Setting.setValue("Parameter_7", t_Set.UserParam7);
597
             Setting.setValue("Parameter_8", t_Set.UserParam8);
598
        Setting.endGroup();
599
 
600
        Setting.beginGroup("Output");
601
            Setting.setValue("J16_Bitmask",      t_Set.J16Bitmask);
602
            Setting.setValue("J16_Timing",       t_Set.J16Timing);
603
            Setting.setValue("J17_Bitmask",      t_Set.J17Bitmask);
604
            Setting.setValue("J17_Timing",       t_Set.J17Timing);
605
            Setting.setValue("WARN_J16_Bitmask", t_Set.WARN_J16_Bitmask);
606
            Setting.setValue("WARN_J17_Bitmask", t_Set.WARN_J17_Bitmask);
607
        Setting.endGroup();
608
 
609
        Setting.beginGroup("NaviCtrl");
610
            Setting.setValue("GPS_ModeControl",       t_Set.NaviGpsModeControl);
611
            Setting.setValue("GPS_Gain",              t_Set.NaviGpsGain);
612
            Setting.setValue("GPS_P",                 t_Set.NaviGpsP);
613
            Setting.setValue("GPS_I",                 t_Set.NaviGpsI);
614
            Setting.setValue("GPS_D",                 t_Set.NaviGpsD);
615
            Setting.setValue("GPS_P_Limit",           t_Set.NaviGpsPLimit);
616
            Setting.setValue("GPS_I_Limit",           t_Set.NaviGpsILimit);
617
            Setting.setValue("GPS_D_Limit",           t_Set.NaviGpsDLimit);
618
            Setting.setValue("GPS_Acc",               t_Set.NaviGpsACC);
619
            Setting.setValue("GPS_MinSat",            t_Set.NaviGpsMinSat);
620
            Setting.setValue("GPS_StickThreshold",    t_Set.NaviStickThreshold);
621
            Setting.setValue("GPS_WindCorrection",    t_Set.NaviWindCorrection);
622
            Setting.setValue("GPS_SpeedCompensation", t_Set.NaviSpeedCompensation);
623
            Setting.setValue("GPS_MaxRadius",         t_Set.NaviOperatingRadius);
624
            Setting.setValue("GPS_AngleLimit",        t_Set.NaviAngleLimitation);
625
            Setting.setValue("GPS_PH_Login_Time",     t_Set.NaviPH_LoginTime);
626
        Setting.endGroup();
627
    }
628
}
629
 
630
void dlg_Main::slot_ac_Load()
631
{
632
    QString Filename = QFileDialog::getOpenFileName(this, "Mikrokopter Parameter laden",  s_Dir.Settings + "", "Mikrokopter Parameter(*.mkp);;Alle Dateien (*)");
633
 
634
    if (!Filename.isEmpty())
635
    {
636
        s_MK_Settings t_Set = get_MK_Settings();
637
 
638
        t_Set.Index = sb_Set->value();
639
 
640
        QSettings Setting(Filename, QSettings::IniFormat);
641
 
642
        Setting.beginGroup("Setup");
643
            QString Name = Setting.value("Name", QString("--noname--")).toString();
644
 
645
            memcpy(t_Set.Name, Name.toLatin1().data(), 12);
646
 
647
            t_Set.GlobalConfig = Setting.value("GlobalConfig", 104).toInt();
648
            t_Set.ExtraConfig  = Setting.value("GlobalConfig2", 1).toInt();
649
        Setting.endGroup();
650
 
651
        Setting.beginGroup("Channels");
652
            t_Set.Kanalbelegung[0] = Setting.value("Nick", 1).toInt();
653
            t_Set.Kanalbelegung[1] = Setting.value("Roll", 2).toInt();
654
            t_Set.Kanalbelegung[2] = Setting.value("Gas", 3).toInt();
655
            t_Set.Kanalbelegung[3] = Setting.value("Gier", 4).toInt();
656
            t_Set.Kanalbelegung[4] = Setting.value("Poti_1", 5).toInt();
657
            t_Set.Kanalbelegung[5] = Setting.value("Poti_2", 6).toInt();
658
            t_Set.Kanalbelegung[6] = Setting.value("Poti_3", 7).toInt();
659
            t_Set.Kanalbelegung[7] = Setting.value("Poti_4", 8).toInt();
660
        Setting.endGroup();
661
 
662
        Setting.beginGroup("Stick");
663
            t_Set.Stick_P         = Setting.value("Nick_Roll-P", 10).toInt();
664
            t_Set.Stick_D         = Setting.value("Nick_Roll-D", 16).toInt();
665
            t_Set.Gier_P          = Setting.value("Gier-P", 6).toInt();
666
            t_Set.ExternalControl = Setting.value("ExternalControl", 0).toInt();
667
        Setting.endGroup();
668
 
669
        Setting.beginGroup("Altitude");
670
            t_Set.MaxHoehe                = Setting.value("Setpoint", 251).toInt();
671
            t_Set.Hoehe_MinGas            = Setting.value("MinGas", 30).toInt();
672
            t_Set.Hoehe_P                 = Setting.value("P", 10).toInt();
673
            t_Set.Luftdruck_D             = Setting.value("Barometric-D", 30).toInt();
674
            t_Set.Hoehe_ACC_Wirkung       = Setting.value("Z-ACC-Effect", 30).toInt();
675
            t_Set.Hoehe_Verstaerkung      = Setting.value("Gain", 15).toInt();
676
            t_Set.Hoehe_HoverBand         = Setting.value("HoverVariation", 5).toInt();
677
            t_Set.Hoehe_GPS_Z             = Setting.value("GPS_Z", 64).toInt();
678
            t_Set.Hoehe_StickNeutralPoint = Setting.value("StickNeutralPoint", 0).toInt();
679
        Setting.endGroup();
680
 
681
        Setting.beginGroup("Gyro");
682
            t_Set.Gyro_P           = Setting.value("P", 90).toInt();
683
            t_Set.Gyro_I           = Setting.value("I", 120).toInt();
684
            t_Set.Gyro_D           = Setting.value("D", 3).toInt();
685
            t_Set.Gyro_Gier_P      = Setting.value("Gier_P", 100).toInt();
686
            t_Set.Gyro_Gier_I      = Setting.value("Gier_I", 120).toInt();
687
            t_Set.DynamicStability = Setting.value("DynamicStability", 75).toInt();
688
            t_Set.GyroAccFaktor    = Setting.value("ACC_Gyro-Factor", 30).toInt();
689
            t_Set.GyroAccAbgleich  = Setting.value("ACC_Gyro-Compensation", 32).toInt();
690
            t_Set.Driftkomp        = Setting.value("DriftCompensation", 32).toInt();
691
            t_Set.I_Faktor         = Setting.value("Main-I", 32).toInt();
692
        Setting.endGroup();
693
 
694
        Setting.beginGroup("Camera");
695
            t_Set.ServoNickControl = Setting.value("ServoNickControl", 100).toInt();
696
            t_Set.ServoNickComp    = Setting.value("ServoNickCompensation", 40).toInt();
697
            t_Set.ServoNickMin     = Setting.value("ServoNickMin", 0).toInt();
698
            t_Set.ServoNickMax     = Setting.value("ServoNickMax", 250).toInt();
699
 
700
            t_Set.ServoRollControl = Setting.value("ServoRollControl", 100).toInt();
701
            t_Set.ServoRollComp    = Setting.value("ServoRollCompensation", 40).toInt();
702
            t_Set.ServoRollMin     = Setting.value("ServoRollMin", 0).toInt();
703
            t_Set.ServoRollMax     = Setting.value("ServoRollMax", 250).toInt();
704
 
705
            t_Set.ServoCompInvert  = Setting.value("ServoInvert", 0).toInt();
706
            t_Set.ServoNickRefresh = Setting.value("ServoNickRefreshRate", 3).toInt();
707
        Setting.endGroup();
708
 
709
        Setting.beginGroup("Others");
710
            t_Set.Gas_Min               = Setting.value("MinGas", 8).toInt();
711
            t_Set.Gas_Max               = Setting.value("MaxGas", 230).toInt();
712
            t_Set.KompassWirkung        = Setting.value("Compass-Effect", 128).toInt();
713
            t_Set.UnterspannungsWarnung = Setting.value("UnderVoltage", 99).toInt();
714
            t_Set.NotGas                = Setting.value("NotGas", 35).toInt();
715
            t_Set.NotGasZeit            = Setting.value("NotGasTime", 30).toInt();
716
        Setting.endGroup();
717
 
718
        Setting.beginGroup("Coupling");
719
            t_Set.AchsKopplung1         = Setting.value("YawPosFeedback", 90).toInt();
720
            t_Set.AchsKopplung2         = Setting.value("NickRollFeedback", 80).toInt();
721
            t_Set.CouplingYawCorrection = Setting.value("YawCorrection", 60).toInt();
722
        Setting.endGroup();
723
 
724
        Setting.beginGroup("Loop");
725
            t_Set.BitConfig          = Setting.value("Config", 0).toInt();
726
            t_Set.LoopGasLimit       = Setting.value("GasLimit", 50).toInt();
727
            t_Set.LoopThreshold      = Setting.value("StickThreshold", 90).toInt();
728
            t_Set.LoopHysterese      = Setting.value("LoopHysteresis", 50).toInt();
729
            t_Set.WinkelUmschlagNick = Setting.value("TurnOverNick", 85).toInt();
730
            t_Set.WinkelUmschlagRoll = Setting.value("TurnOverRoll", 85).toInt();
731
        Setting.endGroup();
732
 
733
        Setting.beginGroup("User");
734
            t_Set.UserParam1 = Setting.value("Parameter_1", 0).toInt();
735
            t_Set.UserParam2 = Setting.value("Parameter_2", 0).toInt();
736
            t_Set.UserParam3 = Setting.value("Parameter_3", 0).toInt();
737
            t_Set.UserParam4 = Setting.value("Parameter_4", 0).toInt();
738
            t_Set.UserParam5 = Setting.value("Parameter_5", 0).toInt();
739
            t_Set.UserParam6 = Setting.value("Parameter_6", 0).toInt();
740
            t_Set.UserParam7 = Setting.value("Parameter_7", 0).toInt();
741
            t_Set.UserParam8 = Setting.value("Parameter_8", 0).toInt();
742
        Setting.endGroup();
743
 
744
        Setting.beginGroup("Output");
745
            t_Set.J16Bitmask       = Setting.value("J16_Bitmask", 255).toInt();
746
            t_Set.J16Timing        = Setting.value("J16_Timing", 15).toInt();
747
            t_Set.J17Bitmask       = Setting.value("J17_Bitmask", 255).toInt();
748
            t_Set.J17Timing        = Setting.value("J17_Timing", 15).toInt();
749
            t_Set.WARN_J16_Bitmask = Setting.value("WARN_J16_Bitmask", 0xaa).toInt();
750
            t_Set.WARN_J17_Bitmask = Setting.value("WARN_J17_Bitmask", 0xaa).toInt();
751
        Setting.endGroup();
752
 
753
        Setting.beginGroup("NaviCtrl");
754
            t_Set.NaviGpsModeControl    = Setting.value("GPS_ModeControl", 253).toInt();
755
            t_Set.NaviGpsGain           = Setting.value("GPS_Gain", 100).toInt();
756
            t_Set.NaviGpsP              = Setting.value("GPS_P", 90).toInt();
757
            t_Set.NaviGpsI              = Setting.value("GPS_I", 90).toInt();
758
            t_Set.NaviGpsD              = Setting.value("GPS_D", 90).toInt();
759
            t_Set.NaviGpsPLimit         = Setting.value("GPS_P_Limit", 75).toInt();
760
            t_Set.NaviGpsILimit         = Setting.value("GPS_I_Limit", 75).toInt();
761
            t_Set.NaviGpsDLimit         = Setting.value("GPS_D_Limit", 75).toInt();
762
            t_Set.NaviGpsACC            = Setting.value("GPS_Acc", 0).toInt();
763
            t_Set.NaviGpsMinSat         = Setting.value("GPS_MinSat", 6).toInt();
764
            t_Set.NaviStickThreshold    = Setting.value("GPS_StickThreshold", 8).toInt();
765
            t_Set.NaviWindCorrection    = Setting.value("GPS_WindCorrection", 90).toInt();
766
            t_Set.NaviSpeedCompensation = Setting.value("GPS_SpeedCompensation", 30).toInt();
767
            t_Set.NaviOperatingRadius   = Setting.value("GPS_MaxRadius", 100).toInt();
768
            t_Set.NaviAngleLimitation   = Setting.value("GPS_AngleLimit", 100).toInt();
769
            t_Set.NaviPH_LoginTime      = Setting.value("GPS_PH_Login_Time", 4).toInt();
770
        Setting.endGroup();
771
 
772
        show_MK_Settings(t_Set);
773
    }
774
}
775
 
776
void dlg_Main::show_MK_Settings(s_MK_Settings t_Set) // DONE 0.75i
777
{
778
    sb_Set->setValue(int(t_Set.Index));
779
 
780
    le_SetName->setText(QString(t_Set.Name));
781
    // Seite 1
782
{
783
    s_1_1_cb->setChecked(t_Set.GlobalConfig & CFG_HOEHENREGELUNG);
784
    s_1_2_cb->setChecked(t_Set.GlobalConfig & CFG_KOMPASS_AKTIV);
785
    s_1_3_cb->setChecked(t_Set.GlobalConfig & CFG_KOMPASS_FIX);
786
    s_1_4_cb->setChecked(t_Set.GlobalConfig & CFG_GPS_AKTIV);
787
    s_1_5_cb->setChecked(t_Set.ExtraConfig & CFG_SENSITIVE_RC);
788
    s_1_6_cb->setChecked(t_Set.GlobalConfig & CFG_ACHSENKOPPLUNG_AKTIV);
789
    s_1_7_cb->setChecked(t_Set.GlobalConfig & CFG_DREHRATEN_BEGRENZER);
790
    s_1_8_cb->setChecked(t_Set.GlobalConfig & CFG_HEADING_HOLD);
791
}
792
    // Seite 2
793
{
794
    sb_2_1->setValue(t_Set.Kanalbelegung[2]);
795
    sb_2_2->setValue(t_Set.Kanalbelegung[3]);
796
    sb_2_3->setValue(t_Set.Kanalbelegung[0]);
797
    sb_2_4->setValue(t_Set.Kanalbelegung[1]);
798
    sb_2_5->setValue(t_Set.Kanalbelegung[4]);
799
    sb_2_6->setValue(t_Set.Kanalbelegung[5]);
800
    sb_2_7->setValue(t_Set.Kanalbelegung[6]);
801
    sb_2_8->setValue(t_Set.Kanalbelegung[7]);
802
}
803
    // Seite 3
804
{
805
    sb_3_1->setValue(t_Set.Stick_P);
806
    sb_3_2->setValue(t_Set.Stick_D);
807
    cb_3_3 = setCombo(cb_3_3, t_Set.Gier_P);
808
    cb_3_4 = setCombo(cb_3_4, t_Set.ExternalControl);
809
}
810
    // Seite 4
811
{
812
    s_4_2_rb->setChecked(t_Set.ExtraConfig & CFG2_HEIGHT_LIMIT);
813
    s_4_5_cb->setChecked(t_Set.ExtraConfig & CFG2_VARIO_BEEP);
814
    s_4_4_cb->setChecked(t_Set.GlobalConfig & CFG_HOEHEN_SCHALTER);
815
 
816
    cb_4_1 = setCombo(cb_4_1, t_Set.MaxHoehe);
817
    sb_4_2->setValue(t_Set.Hoehe_MinGas);
818
    cb_4_3 = setCombo(cb_4_3, t_Set.Hoehe_P);
819
    cb_4_4 = setCombo(cb_4_4, t_Set.Luftdruck_D);
820
    cb_4_5 = setCombo(cb_4_5, t_Set.Hoehe_ACC_Wirkung);
821
    sb_4_6->setValue(t_Set.Hoehe_Verstaerkung);
822
    sb_4_7->setValue(t_Set.Hoehe_HoverBand);
823
    cb_4_8 = setCombo(cb_4_8, t_Set.Hoehe_GPS_Z);
824
    sb_4_9->setValue(t_Set.Hoehe_StickNeutralPoint);
825
}
826
    // Seite 5
827
{
828
    cb_5_1 = setCombo(cb_5_1, t_Set.Gyro_P);
829
    cb_5_2 = setCombo(cb_5_2, t_Set.Gyro_I);
830
    cb_5_8 = setCombo(cb_5_8, t_Set.Gyro_D);
831
    cb_5_3 = setCombo(cb_5_3, t_Set.DynamicStability);
832
    sb_5_4->setValue(t_Set.GyroAccFaktor);
833
    sb_5_5->setValue(t_Set.GyroAccAbgleich);
834
    cb_5_6 = setCombo(cb_5_6, t_Set.I_Faktor);
835
    sb_5_7->setValue(t_Set.Driftkomp);
836
    cb_5_9 = setCombo(cb_5_9, t_Set.Gyro_Gier_P);
837
    cb_5_10 = setCombo(cb_5_10, t_Set.Gyro_Gier_I);
838
}
839
    // Seite 6
840
{
841
    cb_6_1 = setCombo(cb_6_1, t_Set.ServoNickControl);
842
    sb_6_2->setValue(t_Set.ServoNickComp);
843
    sb_6_3->setValue(t_Set.ServoNickMin);
844
    sb_6_4->setValue(t_Set.ServoNickMax);
845
 
846
    cb_6_7 = setCombo(cb_6_7, t_Set.ServoRollControl);
847
    sb_6_8->setValue(t_Set.ServoRollComp);
848
    sb_6_10->setValue(t_Set.ServoRollMin);
849
    sb_6_11->setValue(t_Set.ServoRollMax);
850
 
851
    cb_6_6->setChecked(t_Set.ServoCompInvert & 0x01);
852
    cb_6_9->setChecked(t_Set.ServoCompInvert & 0x02);
853
 
854
    sb_6_5->setValue(t_Set.ServoNickRefresh);
855
}
856
    // Seite 7
857
{
858
    sb_7_1->setValue(t_Set.Gas_Min);
859
    sb_7_2->setValue(t_Set.Gas_Max);
860
    cb_7_3 = setCombo(cb_7_3, t_Set.KompassWirkung);
861
    sb_7_4->setValue(t_Set.UnterspannungsWarnung);
862
    sb_7_5->setValue(t_Set.NotGasZeit);
863
    sb_7_6->setValue(t_Set.NotGas);
864
}
865
    // Seite 8
866
{
867
    cb_8_1 = setCombo(cb_8_1, t_Set.AchsKopplung1);
868
    cb_8_2 = setCombo(cb_8_2, t_Set.AchsKopplung2);
869
    cb_8_3 = setCombo(cb_8_3, t_Set.CouplingYawCorrection);
870
}
871
    // Seite 9  - Looping
872
{
873
    if (t_Set.BitConfig & 0x01)
874
    {
875
        tb_9_6->setText("1");
876
        tb_9_6->setChecked(true);
877
    }
878
    else
879
    {
880
        tb_9_6->setText("0");
881
        tb_9_6->setChecked(false);
882
    }
883
 
884
    if (t_Set.BitConfig & 0x02)
885
    {
886
        tb_9_7->setText("1");
887
        tb_9_7->setChecked(true);
888
    }
889
    else
890
    {
891
        tb_9_7->setText("0");
892
        tb_9_7->setChecked(false);
893
    }
894
 
895
    if (t_Set.BitConfig & 0x04)
896
    {
897
        tb_9_8->setText("1");
898
        tb_9_8->setChecked(true);
899
    }
900
    else
901
    {
902
        tb_9_8->setText("0");
903
        tb_9_8->setChecked(false);
904
    }
905
 
906
    if (t_Set.BitConfig & 0x08)
907
    {
908
        tb_9_9->setText("1");
909
        tb_9_9->setChecked(true);
910
    }
911
    else
912
    {
913
        tb_9_9->setText("0");
914
        tb_9_9->setChecked(false);
915
    }
916
 
917
    cb_9_1 = setCombo(cb_9_1, t_Set.LoopGasLimit);
918
    sb_9_2->setValue(t_Set.LoopThreshold);
919
    sb_9_3->setValue(t_Set.WinkelUmschlagNick);
920
    sb_9_4->setValue(t_Set.LoopHysterese);
921
    sb_9_5->setValue(t_Set.WinkelUmschlagRoll);
922
 
923
}
924
    // Seite 10 - Userparameter
925
{
926
    cb_10_1 = setCombo(cb_10_1, t_Set.UserParam1);
927
    cb_10_2 = setCombo(cb_10_2, t_Set.UserParam2);
928
    cb_10_3 = setCombo(cb_10_3, t_Set.UserParam3);
929
    cb_10_4 = setCombo(cb_10_4, t_Set.UserParam4);
930
    cb_10_5 = setCombo(cb_10_5, t_Set.UserParam5);
931
    cb_10_6 = setCombo(cb_10_6, t_Set.UserParam6);
932
    cb_10_7 = setCombo(cb_10_7, t_Set.UserParam7);
933
    cb_10_8 = setCombo(cb_10_8, t_Set.UserParam8);
934
}
935
    // Seite 11 - Output
936
{
937
    sb_11_1->setValue(t_Set.J16Bitmask);
938
    cb_11_2 = setCombo(cb_11_2, int(t_Set.J16Timing));
939
    sb_11_3->setValue(t_Set.J17Bitmask);
940
    cb_11_4 = setCombo(cb_11_4, int(t_Set.J17Timing));
941
    sb_11_5->setValue(t_Set.WARN_J16_Bitmask);
942
    sb_11_6->setValue(t_Set.WARN_J17_Bitmask);
943
    cb_11_7->setChecked(t_Set.BitConfig & CFG_MOTOR_BLINK);
944
    J16_8->setChecked(t_Set.BitConfig & CFG_MOTOR_OFF_LED1);
945
    J17_8->setChecked(t_Set.BitConfig & CFG_MOTOR_OFF_LED2);
946
}
947
    // Seite 12
948
{
949
    cb_12_1 = setCombo(cb_12_1, t_Set.NaviGpsModeControl);
950
    cb_12_2 = setCombo(cb_12_2, t_Set.NaviGpsGain);
951
    sb_12_3->setValue(t_Set.NaviStickThreshold);
952
    sb_12_4->setValue(t_Set.NaviGpsMinSat);
953
    cb_12_5 = setCombo(cb_12_5, t_Set.NaviGpsP);
954
    cb_12_6 = setCombo(cb_12_6, t_Set.NaviGpsI);
955
    cb_12_7 = setCombo(cb_12_7, t_Set.NaviGpsD);
956
    cb_12_8 = setCombo(cb_12_8, t_Set.NaviGpsACC);
957
    cb_12_9 = setCombo(cb_12_9, t_Set.NaviGpsPLimit);
958
    cb_12_10 = setCombo(cb_12_10, t_Set.NaviGpsILimit);
959
    cb_12_11 = setCombo(cb_12_11, t_Set.NaviGpsDLimit);
960
}
961
    // Seite 13
962
{
963
    cb_13_1 = setCombo(cb_13_1, t_Set.NaviWindCorrection);
964
    cb_13_2 = setCombo(cb_13_2, t_Set.NaviSpeedCompensation);
965
    cb_13_3 = setCombo(cb_13_3, t_Set.NaviOperatingRadius);
966
    cb_13_4 = setCombo(cb_13_4, t_Set.NaviAngleLimitation);
967
    sb_13_5->setValue(t_Set.NaviPH_LoginTime);
968
}
969
}
970
 
971
s_MK_Settings dlg_Main::get_MK_Settings() // DONE 0.75i
972
{
973
    s_MK_Settings t_Set;
974
 
975
    memcpy(t_Set.Name, le_SetName->text().toLatin1().data(), 12);
976
    t_Set.Index = sb_Set->value();
977
    t_Set.Version = MK_VERSION_SETTINGS;
978
 
979
    // Seite 1
980
    {
981
    t_Set.GlobalConfig = 0;
982
    t_Set.ExtraConfig = 0;
983
 
984
    if (s_1_1_cb->isChecked())
985
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_HOEHENREGELUNG;
986
    if (s_1_2_cb->isChecked())
987
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_KOMPASS_AKTIV;
988
    if (s_1_3_cb->isChecked())
989
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_KOMPASS_FIX;
990
    if (s_1_4_cb->isChecked())
991
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_GPS_AKTIV;
992
    if (s_1_5_cb->isChecked())
993
        t_Set.ExtraConfig = t_Set.ExtraConfig | CFG_SENSITIVE_RC;
994
    if (s_1_6_cb->isChecked())
995
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_ACHSENKOPPLUNG_AKTIV;
996
    if (s_1_7_cb->isChecked())
997
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_DREHRATEN_BEGRENZER;
998
    if (s_1_8_cb->isChecked())
999
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_HEADING_HOLD;
1000
    }
1001
    // Seite 2
1002
    {
1003
    t_Set.Kanalbelegung[2] = sb_2_1->value();
1004
    t_Set.Kanalbelegung[3] = sb_2_2->value();
1005
    t_Set.Kanalbelegung[0] = sb_2_3->value();
1006
    t_Set.Kanalbelegung[1] = sb_2_4->value();
1007
    t_Set.Kanalbelegung[4] = sb_2_5->value();
1008
    t_Set.Kanalbelegung[5] = sb_2_6->value();
1009
    t_Set.Kanalbelegung[6] = sb_2_7->value();
1010
    t_Set.Kanalbelegung[7] = sb_2_8->value();
1011
    }
1012
    // Seite 3
1013
    {
1014
    t_Set.Stick_P = sb_3_1->value();
1015
    t_Set.Stick_D = sb_3_2->value();
1016
    t_Set.Gier_P  = get_Value(cb_3_3);
1017
    t_Set.ExternalControl = get_Value(cb_3_4);
1018
    }
1019
    // Seite 4
1020
    {
1021
    t_Set.MaxHoehe           = get_Value(cb_4_1);
1022
    t_Set.Hoehe_MinGas       = sb_4_2->value();
1023
    t_Set.Hoehe_P            = get_Value(cb_4_3);
1024
    t_Set.Luftdruck_D        = get_Value(cb_4_4);
1025
    t_Set.Hoehe_ACC_Wirkung  = get_Value(cb_4_5);
1026
    t_Set.Hoehe_Verstaerkung = sb_4_6->value();
1027
    t_Set.Hoehe_HoverBand    = sb_4_7->value();
1028
    t_Set.Hoehe_GPS_Z        = get_Value(cb_4_8);
1029
    t_Set.Hoehe_StickNeutralPoint = sb_4_9->value();
1030
 
1031
    if (s_4_2_rb->isChecked())
1032
        t_Set.ExtraConfig = t_Set.ExtraConfig | CFG2_HEIGHT_LIMIT;
1033
    if (s_4_4_cb->isChecked())
1034
        t_Set.GlobalConfig = t_Set.GlobalConfig | CFG_HOEHEN_SCHALTER;
1035
    if (s_4_5_cb->isChecked())
1036
        t_Set.ExtraConfig = t_Set.ExtraConfig | CFG2_VARIO_BEEP;
1037
    }
1038
    // Seite 5
1039
    {
1040
    t_Set.Gyro_P           = get_Value(cb_5_1);
1041
    t_Set.Gyro_I           = get_Value(cb_5_2);
1042
    t_Set.Gyro_D           = get_Value(cb_5_8);
1043
    t_Set.DynamicStability = get_Value(cb_5_3);
1044
    t_Set.GyroAccFaktor    = sb_5_4->value();
1045
    t_Set.GyroAccAbgleich  = sb_5_5->value();
1046
    t_Set.I_Faktor         = get_Value(cb_5_6);
1047
    t_Set.Driftkomp        = sb_5_7->value();
1048
    t_Set.Gyro_Gier_P      = get_Value(cb_5_9);
1049
    t_Set.Gyro_Gier_I      = get_Value(cb_5_10);
1050
    }
1051
    // Seite 6
1052
    {
1053
    t_Set.ServoNickControl = get_Value(cb_6_1);
1054
    t_Set.ServoNickComp    = sb_6_2->value();
1055
    t_Set.ServoNickMin     = sb_6_3->value();
1056
    t_Set.ServoNickMax     = sb_6_4->value();
1057
 
1058
    t_Set.ServoRollControl = get_Value(cb_6_7);
1059
    t_Set.ServoRollComp    = sb_6_8->value();
1060
    t_Set.ServoRollMin     = sb_6_10->value();
1061
    t_Set.ServoRollMax     = sb_6_11->value();
1062
 
1063
    t_Set.ServoNickRefresh = sb_6_5->value();
1064
 
1065
    if (cb_6_6->isChecked())
1066
        t_Set.ServoCompInvert = t_Set.ServoCompInvert | 0x01;
1067
    if (cb_6_9->isChecked())
1068
        t_Set.ServoCompInvert = t_Set.ServoCompInvert | 0x02;
1069
    }
1070
    // Seite 7
1071
    {
1072
    t_Set.Gas_Min               = sb_7_1->value();
1073
    t_Set.Gas_Max               = sb_7_2->value();
1074
    t_Set.KompassWirkung        = get_Value(cb_7_3);
1075
    t_Set.UnterspannungsWarnung = sb_7_4->value();
1076
    t_Set.NotGasZeit            = sb_7_5->value();
1077
    t_Set.NotGas                = sb_7_6->value();
1078
    }
1079
    // Seite 8
1080
    {
1081
    t_Set.AchsKopplung1         = get_Value(cb_8_1);
1082
    t_Set.AchsKopplung2         = get_Value(cb_8_2);
1083
    t_Set.CouplingYawCorrection = get_Value(cb_8_3);
1084
    }
1085
    // Seite 9
1086
    {
1087
    t_Set.BitConfig = 0;
1088
    if (tb_9_6->text() == QString("1"))
1089
        t_Set.BitConfig = t_Set.BitConfig | 0x01;
1090
    if (tb_9_7->text() == QString("1"))
1091
        t_Set.BitConfig = t_Set.BitConfig | 0x02;
1092
    if (tb_9_8->text() == QString("1"))
1093
        t_Set.BitConfig = t_Set.BitConfig | 0x04;
1094
    if (tb_9_9->text() == QString("1"))
1095
        t_Set.BitConfig = t_Set.BitConfig | 0x08;
1096
 
1097
 
1098
    t_Set.LoopGasLimit       = get_Value(cb_9_1);
1099
    t_Set.LoopThreshold      = sb_9_2->value();
1100
    t_Set.WinkelUmschlagNick = sb_9_3->value();
1101
    t_Set.LoopHysterese      = sb_9_4->value();
1102
    t_Set.WinkelUmschlagRoll = sb_9_5->value();
1103
    }
1104
    // Seite 10
1105
    {
1106
    t_Set.UserParam1 = get_Value(cb_10_1);
1107
    t_Set.UserParam2 = get_Value(cb_10_2);
1108
    t_Set.UserParam3 = get_Value(cb_10_3);
1109
    t_Set.UserParam4 = get_Value(cb_10_4);
1110
    t_Set.UserParam5 = get_Value(cb_10_5);
1111
    t_Set.UserParam6 = get_Value(cb_10_6);
1112
    t_Set.UserParam7 = get_Value(cb_10_7);
1113
    t_Set.UserParam8 = get_Value(cb_10_8);
1114
    }
1115
    // Seite 11
1116
    {
1117
    t_Set.J16Bitmask = sb_11_1->value();
1118
    t_Set.J16Timing  = get_Value(cb_11_2);
1119
    t_Set.J17Bitmask = sb_11_3->value();
1120
    t_Set.J17Timing  = get_Value(cb_11_4);
1121
    t_Set.WARN_J16_Bitmask = sb_11_5->value();
1122
    t_Set.WARN_J17_Bitmask = sb_11_6->value();
1123
 
1124
    if (cb_11_7->isChecked())
1125
        t_Set.BitConfig = t_Set.BitConfig | CFG_MOTOR_BLINK;
1126
    if (J16_8->isChecked())
1127
        t_Set.BitConfig = t_Set.BitConfig | CFG_MOTOR_OFF_LED1;
1128
    if (J17_8->isChecked())
1129
        t_Set.BitConfig = t_Set.BitConfig | CFG_MOTOR_OFF_LED2;
1130
    }
1131
    // Seite 12
1132
    {
1133
    t_Set.NaviGpsModeControl = get_Value(cb_12_1);
1134
    t_Set.NaviGpsGain        = get_Value(cb_12_2);
1135
    t_Set.NaviStickThreshold = sb_12_3->value();
1136
    t_Set.NaviGpsMinSat      = sb_12_4->value();
1137
    t_Set.NaviGpsP           = get_Value(cb_12_5);
1138
    t_Set.NaviGpsI           = get_Value(cb_12_6);
1139
    t_Set.NaviGpsD           = get_Value(cb_12_7);
1140
    t_Set.NaviGpsACC         = get_Value(cb_12_8);
1141
    t_Set.NaviGpsPLimit      = get_Value(cb_12_9);
1142
    t_Set.NaviGpsILimit      = get_Value(cb_12_10);
1143
    t_Set.NaviGpsDLimit      = get_Value(cb_12_11);
1144
    }
1145
    // Seite 13
1146
    {
1147
    t_Set.NaviWindCorrection    = get_Value(cb_13_1);
1148
    t_Set.NaviSpeedCompensation = get_Value(cb_13_2);
1149
    t_Set.NaviOperatingRadius   = get_Value(cb_13_3);
1150
    t_Set.NaviAngleLimitation   = get_Value(cb_13_4);
1151
    t_Set.NaviPH_LoginTime      = sb_13_5->value();
1152
    }
1153
 
1154
    return t_Set;
1155
}
1156
 
1157
int dlg_Main::get_Value(QComboBox *Combo)
1158
{
1159
    if (Combo->currentText() == QString("Poti 1"))
1160
        return 251;
1161
    if (Combo->currentText() == QString("Poti 2"))
1162
        return 252;
1163
    if (Combo->currentText() == QString("Poti 3"))
1164
        return 253;
1165
    if (Combo->currentText() == QString("Poti 4"))
1166
        return 254;
1167
    return Combo->currentText().toInt();
1168
}
1169
 
1170
QComboBox *dlg_Main::setCombo(QComboBox *Combo, int Wert)
1171
{
1172
    if (Wert <= 250)
1173
    {
1174
        Combo->setItemText(4, QString("%1").arg(Wert));
1175
        Combo->setCurrentIndex(4);
1176
    }
1177
    else
1178
    {
1179
        Combo->setCurrentIndex(Wert - 251);
1180
    }
1181
    return Combo;
1182
}
1183
 
1184
void dlg_Main::set_LED(QToolButton *ToolButton, bool On)
1185
{
1186
    QIcon Icons[2] ;
1187
    Icons[0].addPixmap(QPixmap(QString::fromUtf8(":/Flags/Global/Images/Actions/LED_Off.png")), QIcon::Normal, QIcon::Off);
1188
    Icons[1].addPixmap(QPixmap(QString::fromUtf8(":/Flags/Global/Images/Actions/LED_Red.png")), QIcon::Normal, QIcon::Off);
1189
 
1190
    if (ToolButton->text() == QString("0") && On)
1191
    {
1192
        ToolButton->setIcon(Icons[1]);
1193
        ToolButton->setText("1");
1194
    }
1195
    else if (ToolButton->text() == QString("1") && !On)
1196
    {
1197
        ToolButton->setIcon(Icons[0]);
1198
        ToolButton->setText("0");
1199
    }
1200
    else if (ToolButton->text() == QString("00") && On)
1201
    {
1202
        ToolButton->setIcon(Icons[1]);
1203
        ToolButton->setText("11");
1204
    }
1205
    else if (ToolButton->text() == QString("11") && !On)
1206
    {
1207
        ToolButton->setIcon(Icons[0]);
1208
        ToolButton->setText("00");
1209
    }
1210
    else if (ToolButton->text() == QString("000") && On)
1211
    {
1212
        ToolButton->setIcon(Icons[1]);
1213
        ToolButton->setText("111");
1214
    }
1215
    else if (ToolButton->text() == QString("111") && !On)
1216
    {
1217
        ToolButton->setIcon(Icons[0]);
1218
        ToolButton->setText("000");
1219
    }
1220
    else if (ToolButton->text() == QString("0000") && On)
1221
    {
1222
        ToolButton->setIcon(Icons[1]);
1223
        ToolButton->setText("1111");
1224
    }
1225
    else if (ToolButton->text() == QString("1111") && !On)
1226
    {
1227
        ToolButton->setIcon(Icons[0]);
1228
        ToolButton->setText("0000");
1229
    }
1230
}
1231
 
1232
void dlg_Main::slot_LEDtoValue()
1233
{
1234
    QToolButton *ToolButton = (QToolButton*)sender();
1235
 
1236
         if (ToolButton->text() == QString("0"))
1237
    {
1238
        set_LED(ToolButton, true);
1239
        sb_11_1->setValue(sb_11_1->value() + ToolButton->toolTip().toInt());
1240
    }
1241
    else if (ToolButton->text() == QString("1"))
1242
    {
1243
        set_LED(ToolButton);
1244
        sb_11_1->setValue(sb_11_1->value() - ToolButton->toolTip().toInt());
1245
    }
1246
 
1247
    else if (ToolButton->text() == QString("00"))
1248
    {
1249
        set_LED(ToolButton, true);
1250
        sb_11_3->setValue(sb_11_3->value() + ToolButton->toolTip().toInt());
1251
    }
1252
    else if (ToolButton->text() == QString("11"))
1253
    {
1254
        set_LED(ToolButton);
1255
        sb_11_3->setValue(sb_11_3->value() - ToolButton->toolTip().toInt());
1256
    }
1257
 
1258
    else if (ToolButton->text() == QString("000"))
1259
    {
1260
        set_LED(ToolButton, true);
1261
        sb_11_5->setValue(sb_11_5->value() + ToolButton->toolTip().toInt());
1262
    }
1263
    else if (ToolButton->text() == QString("111"))
1264
    {
1265
        set_LED(ToolButton);
1266
        sb_11_5->setValue(sb_11_5->value() - ToolButton->toolTip().toInt());
1267
    }
1268
 
1269
    else if (ToolButton->text() == QString("0000"))
1270
    {
1271
        set_LED(ToolButton, true);
1272
        sb_11_6->setValue(sb_11_6->value() + ToolButton->toolTip().toInt());
1273
    }
1274
    else if (ToolButton->text() == QString("1111"))
1275
    {
1276
        set_LED(ToolButton);
1277
        sb_11_6->setValue(sb_11_6->value() - ToolButton->toolTip().toInt());
1278
    }
1279
 
1280
 
1281
}
1282
 
1283
void dlg_Main::slot_ValuetoLED16(int Wert)
1284
{
1285
    set_LED(J16_0, Wert & 0x80);
1286
    set_LED(J16_1, Wert & 0x40);
1287
    set_LED(J16_2, Wert & 0x20);
1288
    set_LED(J16_3, Wert & 0x10);
1289
    set_LED(J16_4, Wert & 0x08);
1290
    set_LED(J16_5, Wert & 0x04);
1291
    set_LED(J16_6, Wert & 0x02);
1292
    set_LED(J16_7, Wert & 0x01);
1293
}
1294
 
1295
void dlg_Main::slot_ValuetoLED17(int Wert)
1296
{
1297
    set_LED(J17_0, Wert & 0x80);
1298
    set_LED(J17_1, Wert & 0x40);
1299
    set_LED(J17_2, Wert & 0x20);
1300
    set_LED(J17_3, Wert & 0x10);
1301
    set_LED(J17_4, Wert & 0x08);
1302
    set_LED(J17_5, Wert & 0x04);
1303
    set_LED(J17_6, Wert & 0x02);
1304
    set_LED(J17_7, Wert & 0x01);
1305
}
1306
 
1307
void dlg_Main::slot_ValuetoLED16A(int Wert)
1308
{
1309
    set_LED(J16_A_0, Wert & 0x80);
1310
    set_LED(J16_A_1, Wert & 0x40);
1311
    set_LED(J16_A_2, Wert & 0x20);
1312
    set_LED(J16_A_3, Wert & 0x10);
1313
    set_LED(J16_A_4, Wert & 0x08);
1314
    set_LED(J16_A_5, Wert & 0x04);
1315
    set_LED(J16_A_6, Wert & 0x02);
1316
    set_LED(J16_A_7, Wert & 0x01);
1317
}
1318
 
1319
void dlg_Main::slot_ValuetoLED17A(int Wert)
1320
{
1321
    set_LED(J17_A_0, Wert & 0x80);
1322
    set_LED(J17_A_1, Wert & 0x40);
1323
    set_LED(J17_A_2, Wert & 0x20);
1324
    set_LED(J17_A_3, Wert & 0x10);
1325
    set_LED(J17_A_4, Wert & 0x08);
1326
    set_LED(J17_A_5, Wert & 0x04);
1327
    set_LED(J17_A_6, Wert & 0x02);
1328
    set_LED(J17_A_7, Wert & 0x01);
1329
}
1330
 
1331
void dlg_Main::slot_tbUp()
1332
{
1333
    if (tb_9_6->text() == QString("0"))
1334
    {
1335
        tb_9_6->setText("1");
1336
    }
1337
    else
1338
    {
1339
        tb_9_6->setText("0");
1340
    }
1341
}
1342
 
1343
void dlg_Main::slot_tbDown()
1344
{
1345
    if (tb_9_7->text() == QString("0"))
1346
    {
1347
        tb_9_7->setText("1");
1348
    }
1349
    else
1350
    {
1351
        tb_9_7->setText("0");
1352
    }
1353
}
1354
 
1355
void dlg_Main::slot_tbLeft()
1356
{
1357
    if (tb_9_8->text() == QString("0"))
1358
    {
1359
        tb_9_8->setText("1");
1360
    }
1361
    else
1362
    {
1363
        tb_9_8->setText("0");
1364
    }
1365
}
1366
 
1367
void dlg_Main::slot_tbRight()
1368
{
1369
    if (tb_9_9->text() == QString("0"))
1370
    {
1371
        tb_9_9->setText("1");
1372
    }
1373
    else
1374
    {
1375
        tb_9_9->setText("0");
1376
    }
1377
}
1378
 
1379
// Programm Ende
1380
dlg_Main::~dlg_Main()
1381
{
1382
    o_Settings->GUI.isMax       = isMaximized();
1383
    o_Settings->GUI.Size        = size();
1384
    o_Settings->GUI.Point       = pos();
1385
 
1386
    o_Settings->SERVER.Password = le_Password->text();
1387
    o_Settings->SERVER.IP_MAX  = cb_Server->count();
1388
    o_Settings->SERVER.IP_ID   = cb_Server->currentIndex();
1389
 
1390
    for (int z = 0; z < cb_Server->count(); z++)
1391
    {
1392
        if (z < 10)
1393
        {
1394
            o_Settings->SERVER.IP[z] = cb_Server->itemText(z);
1395
        }
1396
    }
1397
 
1398
    o_Settings->write_Settings();
1399
//    qDebug("Ende.");
1400
}