forked from Hypnotoad90/RocketLauncher2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathengine_Doom64EX.cpp
107 lines (94 loc) · 3.07 KB
/
engine_Doom64EX.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* This file (engine_Doom64EX) is part of Rocket Launcher 2.0 - A cross platform
* front end for all DOOM engine source ports.
*
* Copyright (C) Hypnotoad
*
* Rocket Launcher 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.
*
* Rocket Launcher 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 Rocket Launcher. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QSettings>
#include <QDir>
#include <QDir>
#include <QFileDialog>
#include <QMessageBox>
#include "abstractmodels.h"
#include <QProcess>
#include <QException>
#include <QStandardItemModel>
#include <QDebug>
#include <QCommandLineParser>
#include <QDragEnterEvent>
#include <QDropEvent>
#include <QMimeData>
#include <QMenu>
#include <QShortcut>
#include "dndfilesystemlistview.h"
#include "rocketlauncher2.h"
#include "ui_rocketlauncher2.h"
#include "hyp_commonfunc.h"
#include "commandlinedialog.h"
// TODO: Add bool for launching without pwads
extern QStringList RocketLauncher2::genDoom64EXcmds(bool displayOnly=true, bool loadFiles = false)
{
QStringList ret;
bool filesadded = false;
if (loadFiles && pwadloadlist->rowCount() > 0 )
{
for (int i = 0; i < pwadloadlist->rowCount(); i++ )
{
if (pwadloadlist->item(i)->checkState() == Qt::Checked)
{
if (!filesadded)
{
ret << "-file";
filesadded = true;
}
if (displayOnly == true){
ret << '"'+pwadloadlist->item(i)->data(Qt::UserRole).toString()+'"';
} else {
ret << pwadloadlist->item(i)->data(Qt::UserRole).toString();
}
}
}
}
if (ui->input_map->text() != "" && ui->input_map->text() != NULL)
{
if (enginelist->getEngineType() == Engine_ZDoom)
{
ret << "+MAP" << ui->input_map->text();
}
else
{
QStringList warp = ui->input_map->text().split(" ");
ret << "-warp";
ret.append(warp);
}
}
if (ui->combo_skill->currentText() != "Default")
{
qint16 skill = ui->combo_skill->currentIndex();
ret << "-skill" << QString::number(skill);
}
if (ui->check_nomonsters->isChecked())
ret << "-nomonsters";
if (ui->check_nomusic->isChecked())
ret << "-nomusic";
if (ui->check_record->isChecked())
{
ret << "-record";
ret << ui->input_record->text();
}
if (ui->input_argbox->text() != "" && ui->input_argbox->text() != NULL)
ret.append(splitArgs(ui->input_argbox->text()));
return ret;
}