mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-13 23:17:09 +00:00
75 lines
1.3 KiB
C++
75 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "nvhttp.h"
|
|
|
|
#include <QThread>
|
|
#include <QReadWriteLock>
|
|
#include <QSettings>
|
|
#include <QRunnable>
|
|
|
|
class NvComputer
|
|
{
|
|
friend class PcMonitorThread;
|
|
friend class ComputerManager;
|
|
friend class PendingQuitTask;
|
|
|
|
private:
|
|
void sortAppList();
|
|
|
|
bool pendingQuit;
|
|
|
|
public:
|
|
explicit NvComputer(QString address, QString serverInfo);
|
|
|
|
explicit NvComputer(QSettings& settings);
|
|
|
|
bool
|
|
update(NvComputer& that);
|
|
|
|
bool
|
|
wake();
|
|
|
|
QVector<QString>
|
|
uniqueAddresses();
|
|
|
|
void
|
|
serialize(QSettings& settings);
|
|
|
|
enum PairState
|
|
{
|
|
PS_UNKNOWN,
|
|
PS_PAIRED,
|
|
PS_NOT_PAIRED
|
|
};
|
|
|
|
enum ComputerState
|
|
{
|
|
CS_UNKNOWN,
|
|
CS_ONLINE,
|
|
CS_OFFLINE
|
|
};
|
|
|
|
// Ephemeral traits
|
|
ComputerState state;
|
|
PairState pairState;
|
|
QString activeAddress;
|
|
int currentGameId;
|
|
QString gfeVersion;
|
|
QString appVersion;
|
|
QVector<NvDisplayMode> displayModes;
|
|
int maxLumaPixelsHEVC;
|
|
int serverCodecModeSupport;
|
|
QString gpuModel;
|
|
|
|
// Persisted traits
|
|
QString localAddress;
|
|
QString remoteAddress;
|
|
QString manualAddress;
|
|
QByteArray macAddress;
|
|
QString name;
|
|
QString uuid;
|
|
QVector<NvApp> appList;
|
|
|
|
// Synchronization
|
|
QReadWriteLock lock;
|
|
};
|