diff --git a/sleepyhead/SleepLib/loader_plugins/md300w1_loader.cpp b/sleepyhead/SleepLib/loader_plugins/md300w1_loader.cpp index 74d9de1e..2b4947f2 100644 --- a/sleepyhead/SleepLib/loader_plugins/md300w1_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/md300w1_loader.cpp @@ -177,6 +177,13 @@ bool MD300W1Loader::readDATFile(QString path) // Number of records int n = ((unsigned char)data.at(2) << 8) | (unsigned char)data.at(1); + // CHECKME: + if (size < (n*11)+3) { + qDebug() << "Short MD300W1 .dat file" << path; + return false; + } + + unsigned char o2, pr; qint32 lasttime=0, ts=0; diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index bae31333..3d3984d6 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include "SleepLib/schema.h" #include "mainwindow.h" @@ -142,6 +143,7 @@ void sDelay(int s) int compareVersion(QString version); + int main(int argc, char *argv[]) { #ifdef Q_WS_X11 @@ -177,6 +179,32 @@ int main(int argc, char *argv[]) initializeStrings(); // Important, call this AFTER translator is installed. a.setApplicationName(STR_TR_SleepyHead); +#if defined(Q_OS_WIN) +#ifndef BROKEN_OPENGL_BUILD + QString glversion = (char *)glGetString(GL_VERSION); + qDebug() << "OpenGL Version detected:" << glversion; + // if (QSysInfo::windowsVersion() < QSysInfo::WV_VISTA) { + if (glversion.contains("ANGLE")) { + QMessageBox::warning(nullptr, QObject::tr("You have the wrong version of SleepyHead"), + QObject::tr("This build of SleepyHead was designed to work with computers lacking full OpenGL 2.0 support, and only runs on (native) Windows Vista or higher.") + "

"+ + QObject::tr("There is another special build available for computers that do not support OpenGL 2.0 via ANGLE, tagged '-BrokenGL', that has been designed to work with Windows XP, Virtual Box, VMware, etc.")+"

"+ + QObject::tr("Because graphs will not render correctly, this version will now exit."), QMessageBox::Ok, QMessageBox::Ok); + exit(1); + } +// } +#else + if (QSysInfo::windowsVersion() > QSysInfo::WV_VISTA) { + QMessageBox::information(nullptr, QObject::tr("A faster build may be available"), + QObject::tr("This special build of SleepyHead was designed to work with computers lacking OpenGL 2.0 support.") + "

"+ + QObject::tr("There is another special build available for computers running Windows Vista or higher that do not support OpenGL 2.0, tagged 'ANGLE', which will work faster on your computer.")+"

"+ + QObject::tr("If your running Windows in a Virutal machine, disregard this message, because the version you are running works best.") + + QMessageBox::Ok, QMessageBox::Ok); + } + +#endif +#endif + //////////////////////////////////////////////////////////////////////////////////////////// // Datafolder location Selection ////////////////////////////////////////////////////////////////////////////////////////////