diff --git a/oscar/main.cpp b/oscar/main.cpp index 22503757..a3a11682 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -289,6 +289,18 @@ int main(int argc, char *argv[]) { forcedEngine = "Software Engine forced by --legacy command line switch"; } } +#ifdef Q_OS_WIN + bool oscarCrashed = false; + if (settings.value("OpenGLCompatibilityCheck").toBool()) { + oscarCrashed = true; + } + if (oscarCrashed) { + settings.setValue(GFXEngineSetting, (unsigned int)GFX_Software); + forcedEngine = "Software Engine forced by previous crash"; + settings.remove("OpenGLCompatibilityCheck"); + } +#endif + GFXEngine gfxEngine = (GFXEngine)qMin((unsigned int)settings.value(GFXEngineSetting, (unsigned int)GFX_OpenGL).toUInt(), (unsigned int)MaxGFXEngine); switch (gfxEngine) { case 0: // GFX_OpenGL @@ -305,6 +317,15 @@ int main(int argc, char *argv[]) { QApplication a(argc, argv); QStringList args = a.arguments(); +#ifdef Q_OS_WIN + // QMessageBox must come after the application is created. The graphics engine has to be selected before. + if (oscarCrashed) { + QMessageBox::warning(nullptr, STR_MessageBox_Error, + QObject::tr("OSCAR crashed due to an incompatibility with your graphics hardware.") + "\n\n" + + QObject::tr("To resolve this, OSCAR has reverted to a slower but more compatible method of drawing."), + QMessageBox::Ok); + } +#endif QString lastlanguage = settings.value(LangSetting, "").toString(); if (lastlanguage.compare("is", Qt::CaseInsensitive)) // Convert code for Hebrew from 'is' to 'he' diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 90f46a18..369e2199 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -628,8 +628,38 @@ void MainWindow::CloseProfile() } +#ifdef Q_OS_WIN +void MainWindow::TestWindowsOpenGL() +{ +#if (QT_VERSION >= QT_VERSION_CHECK(5,4,0)) && !defined(BROKEN_OPENGL_BUILD) + // 1. Set OpenGLCompatibilityCheck=1 in registry. + QSettings settings; + settings.setValue("OpenGLCompatibilityCheck", true); + + // 2. See if OpenGL crashes the application: + QOpenGLWidget* gl; + gl = new QOpenGLWidget(ui->tabWidget); + ui->tabWidget->insertTab(2, gl, ""); + //qDebug() << __LINE__; + QCoreApplication::processEvents(); // this triggers the SIGSEGV + //qDebug() << __LINE__; + // If we get here, OpenGL won't crash the application. + ui->tabWidget->removeTab(2); + delete gl; + + // 3. Remove OpenGLCompatibilityCheck from the registry upon success. + settings.remove("OpenGLCompatibilityCheck"); +#endif +} +#endif + + void MainWindow::Startup() { +#ifdef Q_OS_WIN + TestWindowsOpenGL(); +#endif + for (auto & loader : GetLoaders()) { loader->setParent(this); } diff --git a/oscar/mainwindow.h b/oscar/mainwindow.h index 9d91ed3a..37592e17 100644 --- a/oscar/mainwindow.h +++ b/oscar/mainwindow.h @@ -204,6 +204,11 @@ class MainWindow : public QMainWindow //! \brief Display About Dialog void on_action_About_triggered(); +#ifdef Q_OS_WIN + //! \brief Called on Windows to see whether the current OpenGL driver will cause the application to crash + void TestWindowsOpenGL(); +#endif + //! \brief Called after a timeout to initiate loading of all summary data for this profile void Startup();