From 09059ab869222579acb6c47a3f166f13e344b00f Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 29 Dec 2023 22:04:24 -0500 Subject: [PATCH 1/3] Apply de minimis adaptations to get to build under Qt6. --- OSBindings/Qt/clksignal.pro | 8 ++++---- OSBindings/Qt/mainwindow.cpp | 21 ++++++++++++--------- OSBindings/Qt/mainwindow.h | 5 ++--- OSBindings/Qt/scantargetwidget.cpp | 6 +----- 4 files changed, 19 insertions(+), 21 deletions(-) diff --git a/OSBindings/Qt/clksignal.pro b/OSBindings/Qt/clksignal.pro index f121d8636..3353d979e 100644 --- a/OSBindings/Qt/clksignal.pro +++ b/OSBindings/Qt/clksignal.pro @@ -1,4 +1,4 @@ -QT += core gui multimedia widgets +QT += core gui multimedia widgets openglwidgets # Be specific about C++17 but also try the vaguer C++1z for older # versions of Qt. @@ -24,10 +24,10 @@ DEFINES += TARGET_QT DEFINES += IGNORE_APPLE QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -# Generate warnings for any use of APIs deprecated prior to Qt 6.0.0. -# Development was performed against Qt 5.14. +# Generate warnings for any use of APIs deprecated prior to Qt 7.0.0. +# Development was performed against Qt 6.6.1. DEFINES += QT_DEPRECATED_WARNINGS -DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 +DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x070000 SRC = $$PWD/../.. diff --git a/OSBindings/Qt/mainwindow.cpp b/OSBindings/Qt/mainwindow.cpp index 1e36e338c..900d29089 100644 --- a/OSBindings/Qt/mainwindow.cpp +++ b/OSBindings/Qt/mainwindow.cpp @@ -5,6 +5,9 @@ #include #include +#include +#include + #include #include @@ -314,24 +317,24 @@ void MainWindow::launchMachine() { static constexpr size_t samplesPerBuffer = 256; // TODO: select this dynamically. const auto speaker = audio_producer->get_speaker(); if(speaker) { - const QAudioDeviceInfo &defaultDeviceInfo = QAudioDeviceInfo::defaultOutputDevice(); - if(!defaultDeviceInfo.isNull()) { - QAudioFormat idealFormat = defaultDeviceInfo.preferredFormat(); + QAudioDevice device(QMediaDevices::defaultAudioOutput()); + if(true) { // TODO: how to check that audio output is available in Qt6? + QAudioFormat idealFormat = device.preferredFormat(); // Use the ideal format's sample rate, provide stereo as long as at least two channels // are available, and — at least for now — assume a good buffer size. audioIsStereo = (idealFormat.channelCount() > 1) && speaker->get_is_stereo(); - audioIs8bit = idealFormat.sampleSize() < 16; + audioIs8bit = idealFormat.sampleFormat() == QAudioFormat::UInt8; idealFormat.setChannelCount(1 + int(audioIsStereo)); - idealFormat.setSampleSize(audioIs8bit ? 8 : 16); + idealFormat.setSampleFormat(audioIs8bit ? QAudioFormat::UInt8 : QAudioFormat::Int16); speaker->set_output_rate(idealFormat.sampleRate(), samplesPerBuffer, audioIsStereo); speaker->set_delegate(this); audioThread.start(); - audioThread.performAsync([this, idealFormat] { + audioThread.performAsync([&] { // Create an audio output. - audioOutput = std::make_unique(idealFormat); + audioOutput = std::make_unique(device, idealFormat); // Start the output. The additional `audioBuffer` is meant to minimise latency, // believe it or not, given Qt's semantics. @@ -373,13 +376,13 @@ void MainWindow::launchMachine() { QAction *const asKeyboardAction = new QAction(tr("Use Keyboard as Keyboard"), this); asKeyboardAction->setCheckable(true); asKeyboardAction->setChecked(true); - asKeyboardAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_K)); + // asKeyboardAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_K)); inputMenu->addAction(asKeyboardAction); QAction *const asJoystickAction = new QAction(tr("Use Keyboard as Joystick"), this); asJoystickAction->setCheckable(true); asJoystickAction->setChecked(false); - asJoystickAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_J)); + // asJoystickAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_J)); inputMenu->addAction(asJoystickAction); connect(asKeyboardAction, &QAction::triggered, this, [=] { diff --git a/OSBindings/Qt/mainwindow.h b/OSBindings/Qt/mainwindow.h index e2f434290..e60f17a97 100644 --- a/OSBindings/Qt/mainwindow.h +++ b/OSBindings/Qt/mainwindow.h @@ -1,12 +1,11 @@ #ifndef MAINWINDOW_H #define MAINWINDOW_H -#include +#include #include #include #include -#include #include "audiobuffer.h" #include "timer.h" @@ -71,7 +70,7 @@ class MainWindow : public QMainWindow, public Outputs::Speaker::Speaker::Delegat std::unique_ptr machine; std::mutex machineMutex; - std::unique_ptr audioOutput; + std::unique_ptr audioOutput; bool audioIs8bit = false, audioIsStereo = false; void speaker_did_complete_samples(Outputs::Speaker::Speaker *speaker, const std::vector &buffer) override; AudioBuffer audioBuffer; diff --git a/OSBindings/Qt/scantargetwidget.cpp b/OSBindings/Qt/scantargetwidget.cpp index bdb71e62b..93d100e13 100644 --- a/OSBindings/Qt/scantargetwidget.cpp +++ b/OSBindings/Qt/scantargetwidget.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include #include #include @@ -30,10 +29,7 @@ void ScanTargetWidget::paintGL() { requestedRedrawTime = 0; } - // TODO: if Qt 5.14 can be guaranteed, just use window()->screen(). - const auto screenNumber = QApplication::desktop()->screenNumber(this); - QScreen *const screen = QGuiApplication::screens()[screenNumber]; - + QScreen *const screen = window()->screen(); const float newOutputScale = float(screen->devicePixelRatio()); if(outputScale != newOutputScale) { outputScale = newOutputScale; From 134a11b948d0b241c592ea65da043ccc69b2d50e Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 29 Dec 2023 22:38:08 -0500 Subject: [PATCH 2/3] Mildly circuitously, accept ROM images. --- OSBindings/Qt/mainwindow.cpp | 5 +++-- OSBindings/Qt/mainwindow.ui | 3 --- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/OSBindings/Qt/mainwindow.cpp b/OSBindings/Qt/mainwindow.cpp index 900d29089..9a4d4aaf2 100644 --- a/OSBindings/Qt/mainwindow.cpp +++ b/OSBindings/Qt/mainwindow.cpp @@ -758,12 +758,13 @@ void MainWindow::dropEvent(QDropEvent* event) { QString unusedRoms; for(const auto &url: event->mimeData()->urls()) { - const char *const name = url.toLocalFile().toUtf8(); - FILE *const file = fopen(name, "rb"); + const std::string name = url.toLocalFile().toStdString(); + FILE *const file = fopen(name.c_str(), "rb"); if(!file) continue; const auto contents = fileContentsAndClose(file); if(!contents) continue; + CRC::CRC32 generator; const uint32_t crc = generator.compute_crc(*contents); diff --git a/OSBindings/Qt/mainwindow.ui b/OSBindings/Qt/mainwindow.ui index 4a0b1a731..ca366a9d4 100644 --- a/OSBindings/Qt/mainwindow.ui +++ b/OSBindings/Qt/mainwindow.ui @@ -1170,9 +1170,6 @@ - - true - true From 0c770c474b6cdc9ac3dbea0bd7258b001229d676 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 29 Dec 2023 22:55:34 -0500 Subject: [PATCH 3/3] Add PC startup options. --- OSBindings/Qt/mainwindow.cpp | 19 ++++++ OSBindings/Qt/mainwindow.h | 1 + OSBindings/Qt/mainwindow.ui | 116 ++++++++++++++++++++++++++++------- 3 files changed, 113 insertions(+), 23 deletions(-) diff --git a/OSBindings/Qt/mainwindow.cpp b/OSBindings/Qt/mainwindow.cpp index 9a4d4aaf2..d0b9a53e9 100644 --- a/OSBindings/Qt/mainwindow.cpp +++ b/OSBindings/Qt/mainwindow.cpp @@ -966,6 +966,7 @@ void MainWindow::setButtonPressed(int index, bool isPressed) { #include "../../Analyser/Static/Macintosh/Target.hpp" #include "../../Analyser/Static/MSX/Target.hpp" #include "../../Analyser/Static/Oric/Target.hpp" +#include "../../Analyser/Static/PCCompatible/Target.hpp" #include "../../Analyser/Static/ZX8081/Target.hpp" #include "../../Analyser/Static/ZXSpectrum/Target.hpp" @@ -988,6 +989,7 @@ void MainWindow::startMachine() { TEST(macintosh); TEST(msx); TEST(oric); + TEST(pc); TEST(spectrum); TEST(vic20); TEST(zx80); @@ -1186,6 +1188,23 @@ void MainWindow::start_oric() { launchTarget(std::move(target)); } +void MainWindow::start_pc() { + using Target = Analyser::Static::PCCompatible::Target; + auto target = std::make_unique(); + + switch(ui->pcSpeedComboBox->currentIndex()) { + default: target->speed = Target::Speed::ApproximatelyOriginal; break; + case 1: target->speed = Target::Speed::Fast; break; + } + + switch(ui->pcVideoAdaptorComboBox->currentIndex()) { + default: target->adaptor = Target::VideoAdaptor::MDA; break; + case 1: target->adaptor = Target::VideoAdaptor::CGA; break; + } + + launchTarget(std::move(target)); +} + void MainWindow::start_spectrum() { using Target = Analyser::Static::ZXSpectrum::Target; auto target = std::make_unique(); diff --git a/OSBindings/Qt/mainwindow.h b/OSBindings/Qt/mainwindow.h index e60f17a97..a1aa5e80b 100644 --- a/OSBindings/Qt/mainwindow.h +++ b/OSBindings/Qt/mainwindow.h @@ -95,6 +95,7 @@ class MainWindow : public QMainWindow, public Outputs::Speaker::Speaker::Delegat void start_macintosh(); void start_msx(); void start_oric(); + void start_pc(); void start_spectrum(); void start_vic20(); void start_zx80(); diff --git a/OSBindings/Qt/mainwindow.ui b/OSBindings/Qt/mainwindow.ui index ca366a9d4..ab25f2df6 100644 --- a/OSBindings/Qt/mainwindow.ui +++ b/OSBindings/Qt/mainwindow.ui @@ -39,7 +39,7 @@ - + Chip RAM: @@ -65,7 +65,7 @@ - + Fast RAM: @@ -129,7 +129,7 @@ - + Model: @@ -160,7 +160,7 @@ - + Disk Controller: @@ -214,7 +214,7 @@ - + Model: @@ -240,7 +240,7 @@ - + Memory Size: @@ -294,7 +294,7 @@ - + Model: @@ -348,7 +348,7 @@ - + RAM: @@ -437,7 +437,7 @@ - + Model: @@ -463,7 +463,7 @@ - + Speed: @@ -484,7 +484,7 @@ - + EXOS: @@ -510,7 +510,7 @@ - + BASIC: @@ -541,7 +541,7 @@ - + DOS: @@ -590,7 +590,7 @@ - + Model: @@ -649,7 +649,7 @@ - + Model @@ -691,7 +691,7 @@ - + Region @@ -772,7 +772,7 @@ - + Model: @@ -798,7 +798,7 @@ - + Disk Interface: @@ -852,6 +852,76 @@ + + + PC Compatible + + + + + + + + + + Video Adaptor: + + + + + + + + MDA + + + + + CGA + + + + + + + + Speed: + + + + + + + + Similar to Original + + + + + Turbo + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Vic-20 @@ -862,7 +932,7 @@ - + Region: @@ -898,7 +968,7 @@ - + Memory Size: @@ -972,7 +1042,7 @@ - + Memory Size: @@ -1041,7 +1111,7 @@ - + Memory Size: @@ -1090,7 +1160,7 @@ - + Model: