mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-20 21:30:59 +00:00
378ff39e5e
On the plus side, it does seem successfully to sniff out an appropriate audio format and to communicate mono/stereo onward.
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QAudioOutput>
|
|
#include <QMainWindow>
|
|
|
|
#include <memory>
|
|
#include "timer.h"
|
|
#include "ui_mainwindow.h"
|
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
|
#include "../../Machines/Utility/MachineForTarget.hpp"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow, public Outputs::Speaker::Speaker::Delegate {
|
|
Q_OBJECT
|
|
|
|
void createActions();
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
protected:
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
private:
|
|
std::unique_ptr<Ui::MainWindow> ui;
|
|
std::unique_ptr<QTimer> qTimer;
|
|
std::unique_ptr<QThread> timerThread;
|
|
std::unique_ptr<Timer> timer;
|
|
|
|
// Initial setup stuff.
|
|
Analyser::Static::TargetList targets;
|
|
enum class UIPhase {
|
|
NoFileSelected, RequestingROMs, RunningMachine
|
|
} uiPhase = UIPhase::NoFileSelected;
|
|
void launchMachine();
|
|
|
|
QString romRequestBaseText;
|
|
std::vector<ROMMachine::ROM> missingRoms;
|
|
|
|
// File drag and drop is supported.
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
// Ongoing state.
|
|
std::unique_ptr<Machine::DynamicMachine> machine;
|
|
std::mutex machineMutex;
|
|
|
|
std::unique_ptr<QAudioOutput> audioOutput;
|
|
QIODevice *audioIODevice = nullptr;
|
|
bool audioIs8bit = false, audioIsStereo = false;
|
|
void speaker_did_complete_samples(Outputs::Speaker::Speaker *speaker, const std::vector<int16_t> &buffer) override;
|
|
|
|
bool processEvent(QKeyEvent *);
|
|
|
|
private slots:
|
|
void open();
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|