2014-05-17 07:10:16 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2013 The ioquake Group
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
2014-05-17 07:00:38 +00:00
|
|
|
#include <QDir>
|
|
|
|
#include <QMessageBox>
|
2014-05-08 11:37:32 +00:00
|
|
|
#include <QProcess>
|
2013-12-02 00:25:01 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "ui_mainwindow.h"
|
2014-05-12 08:49:59 +00:00
|
|
|
#include "installwizard.h"
|
2014-05-17 07:00:38 +00:00
|
|
|
#include "quakeutils.h"
|
2013-12-02 00:25:01 +00:00
|
|
|
|
|
|
|
ioLaunch::ioLaunch(QWidget *parent) :
|
|
|
|
QMainWindow(parent),
|
2014-05-09 07:06:21 +00:00
|
|
|
ui(new Ui::ioLaunch)
|
2013-12-02 00:25:01 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2014-05-17 07:00:38 +00:00
|
|
|
// Calculate the ioquake3 home path.
|
|
|
|
const QString homePath = QuakeUtils::calculateHomePath();
|
|
|
|
const QDir homeDir(homePath);
|
2014-05-09 05:17:33 +00:00
|
|
|
|
|
|
|
// Try to parse q3config.cfg to get default settings if this is the first time the program has run.
|
|
|
|
if (!homePath.isEmpty() && homeDir.exists() && !settings.getHaveRun())
|
|
|
|
{
|
2014-05-17 07:00:38 +00:00
|
|
|
QuakeUtils::parseQuake3Config(&settings, homePath);
|
2014-05-09 05:17:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-17 07:00:38 +00:00
|
|
|
// On first run, try to get the Q3A path.
|
2014-05-14 12:53:01 +00:00
|
|
|
if (!settings.getHaveRun())
|
|
|
|
{
|
2014-05-17 07:00:38 +00:00
|
|
|
settings.setQuakePath(QuakeUtils::calculateQuake3Path());
|
2014-05-14 12:53:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-09 05:17:33 +00:00
|
|
|
settings.setHaveRun(true);
|
2014-05-09 06:17:35 +00:00
|
|
|
|
|
|
|
// Populate the GUI with values read from settings.
|
|
|
|
if (settings.getResolutionMode() >= 0)
|
|
|
|
{
|
|
|
|
// Predefined.
|
|
|
|
ui->cbResolution->setCurrentIndex(2 + settings.getResolutionMode());
|
|
|
|
}
|
|
|
|
else if (settings.getResolutionMode() == -1)
|
|
|
|
{
|
|
|
|
// Custom.
|
2014-05-09 07:06:21 +00:00
|
|
|
ui->cbResolution->setCurrentIndex(1);
|
2014-05-09 06:17:35 +00:00
|
|
|
}
|
|
|
|
else if (settings.getResolutionMode() == -2)
|
|
|
|
{
|
|
|
|
// Desktop.
|
2014-05-09 07:06:21 +00:00
|
|
|
ui->cbResolution->setCurrentIndex(0);
|
2014-05-09 06:17:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ui->sbWidth->setValue(settings.getResolutionWidth());
|
|
|
|
ui->sbHeight->setValue(settings.getResolutionHeight());
|
|
|
|
|
|
|
|
if (settings.getResolutionFullscreen())
|
|
|
|
{
|
|
|
|
ui->rbFull->setChecked(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->rbWin->setChecked(true);
|
|
|
|
}
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ioLaunch::~ioLaunch()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ioLaunch::on_btnLaunch_clicked()
|
|
|
|
{
|
2014-05-09 02:21:42 +00:00
|
|
|
QString ioq3;
|
|
|
|
|
2013-12-02 00:25:01 +00:00
|
|
|
#ifdef Q_OS_WIN32
|
2014-05-12 08:49:59 +00:00
|
|
|
if(!isQuake3PathValid())
|
2013-12-02 00:25:01 +00:00
|
|
|
{
|
2014-05-12 08:49:59 +00:00
|
|
|
InstallWizard wizard(this, &settings);
|
|
|
|
wizard.exec();
|
2014-05-09 02:21:42 +00:00
|
|
|
|
2014-05-12 08:49:59 +00:00
|
|
|
if(!isQuake3PathValid())
|
2014-05-09 02:21:42 +00:00
|
|
|
return;
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
2014-05-09 02:21:42 +00:00
|
|
|
|
2014-05-09 07:06:21 +00:00
|
|
|
ioq3 = QString("\"") + settings.getQuakePath() + "/ioquake3.x86.exe\"";
|
2015-01-04 20:14:33 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#if defined Q_OS_MAC
|
2014-05-09 07:06:21 +00:00
|
|
|
ioq3 = "open -a ioquake3 --args";
|
2014-03-24 20:06:49 +00:00
|
|
|
#elif defined Q_OS_UNIX
|
2014-05-09 07:06:21 +00:00
|
|
|
ioq3 = "ioquake3";
|
2014-03-24 20:06:49 +00:00
|
|
|
#else
|
|
|
|
#error "Unsupported platform"
|
2013-12-02 00:25:01 +00:00
|
|
|
#endif
|
|
|
|
|
2015-01-04 20:14:33 +00:00
|
|
|
QString quakePath = settings.getQuakePath();
|
|
|
|
if ( !quakePath.isEmpty() )
|
|
|
|
{
|
|
|
|
ioq3 += QString(" +set fs_basepath \"%1\"").arg(quakePath);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-09 07:38:28 +00:00
|
|
|
int r_mode = settings.getResolutionMode();
|
|
|
|
int r_width = settings.getResolutionWidth();
|
|
|
|
int r_height = settings.getResolutionHeight();
|
2013-12-02 00:25:01 +00:00
|
|
|
|
2014-05-09 07:38:28 +00:00
|
|
|
// Handle modes outside what ioquake3 recognize.
|
|
|
|
if (r_mode == 12)
|
2013-12-02 00:25:01 +00:00
|
|
|
{
|
2014-05-09 07:38:28 +00:00
|
|
|
r_mode = -1;
|
|
|
|
r_width = 1280;
|
|
|
|
r_height = 720;
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
2014-05-09 07:38:28 +00:00
|
|
|
else if (r_mode == 13)
|
2013-12-02 00:25:01 +00:00
|
|
|
{
|
2014-05-09 07:38:28 +00:00
|
|
|
r_mode = -1;
|
|
|
|
r_width = 1920;
|
|
|
|
r_height = 1080;
|
|
|
|
}
|
|
|
|
else if (r_mode == 14)
|
|
|
|
{
|
|
|
|
r_mode = -1;
|
|
|
|
r_width = 1280;
|
|
|
|
r_height = 800;
|
|
|
|
}
|
|
|
|
|
|
|
|
ioq3 += QString(" +set r_mode \"%1\"").arg(r_mode);
|
|
|
|
|
|
|
|
if (r_mode == -1)
|
|
|
|
{
|
|
|
|
ioq3 += QString(" +set r_customwidth %1").arg(r_width) + QString(" +set r_customheight %1").arg(r_height);
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
|
|
|
|
2014-05-09 07:06:21 +00:00
|
|
|
ioq3 += QString(" +set r_fullscreen %1").arg(settings.getResolutionFullscreen() ? "1" : "0");
|
|
|
|
|
|
|
|
if(!QProcess::startDetached(ioq3))
|
2013-12-02 00:25:01 +00:00
|
|
|
{
|
2014-05-09 07:06:21 +00:00
|
|
|
QMessageBox ioq3Failed;
|
2013-12-02 00:25:01 +00:00
|
|
|
ioq3Failed.setText("ioquake3 failed to start!\nIs it installed?\n");
|
|
|
|
ioq3Failed.exec();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ioLaunch::on_cbResolution_currentIndexChanged(int index)
|
|
|
|
{
|
2014-05-09 06:17:35 +00:00
|
|
|
if (index == 0)
|
|
|
|
{
|
2014-05-09 07:06:21 +00:00
|
|
|
// Desktop.
|
|
|
|
settings.setResolutionMode(-2);
|
2014-05-09 06:17:35 +00:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2014-05-09 07:06:21 +00:00
|
|
|
// Custom.
|
|
|
|
settings.setResolutionMode(-1);
|
2014-05-09 06:17:35 +00:00
|
|
|
}
|
2014-05-09 07:06:21 +00:00
|
|
|
else if (index >= 2)
|
2014-05-09 06:17:35 +00:00
|
|
|
{
|
|
|
|
// Predefined.
|
|
|
|
settings.setResolutionMode(index - 2);
|
|
|
|
}
|
2014-05-09 07:41:45 +00:00
|
|
|
|
|
|
|
if (index == 1)
|
|
|
|
{
|
|
|
|
ui->sbWidth->setEnabled(true);
|
|
|
|
ui->sbHeight->setEnabled(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->sbWidth->setEnabled(false);
|
|
|
|
ui->sbHeight->setEnabled(false);
|
|
|
|
}
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ioLaunch::on_rbFull_toggled(bool checked)
|
|
|
|
{
|
|
|
|
if(checked)
|
|
|
|
{
|
2014-05-09 06:17:35 +00:00
|
|
|
settings.setResolutionFullscreen(true);
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ioLaunch::on_rbWin_toggled(bool checked)
|
|
|
|
{
|
|
|
|
if(checked)
|
|
|
|
{
|
2014-05-09 06:17:35 +00:00
|
|
|
settings.setResolutionFullscreen(false);
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ioLaunch::on_sbWidth_valueChanged(int arg1)
|
|
|
|
{
|
2014-05-09 06:17:35 +00:00
|
|
|
settings.setResolutionWidth(arg1);
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ioLaunch::on_sbHeight_valueChanged(int arg1)
|
|
|
|
{
|
2014-05-09 06:17:35 +00:00
|
|
|
settings.setResolutionHeight(arg1);
|
2013-12-02 00:25:01 +00:00
|
|
|
}
|
2014-05-09 05:17:33 +00:00
|
|
|
|
2014-05-12 08:49:59 +00:00
|
|
|
void ioLaunch::on_btnRunInstallWizard_clicked()
|
|
|
|
{
|
|
|
|
InstallWizard wizard(this, &settings);
|
|
|
|
wizard.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
bool ioLaunch::isQuake3PathValid() const
|
|
|
|
{
|
|
|
|
if (!settings.containsQuakePath())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return !settings.getQuakePath().isEmpty() && QDir(settings.getQuakePath()).exists();
|
|
|
|
}
|
|
|
|
#endif
|