mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-16 08:17:58 +00:00
187 lines
3.6 KiB
C++
187 lines
3.6 KiB
C++
#pragma once
|
|
|
|
#include "identitymanager.h"
|
|
#include "nvapp.h"
|
|
|
|
#include <Limelight.h>
|
|
|
|
#include <QUrl>
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
|
|
class NvDisplayMode
|
|
{
|
|
public:
|
|
bool operator==(const NvDisplayMode& other) const
|
|
{
|
|
return width == other.width &&
|
|
height == other.height &&
|
|
refreshRate == other.refreshRate;
|
|
}
|
|
|
|
int width;
|
|
int height;
|
|
int refreshRate;
|
|
};
|
|
|
|
class GfeHttpResponseException : public std::exception
|
|
{
|
|
public:
|
|
GfeHttpResponseException(int statusCode, QString message) :
|
|
m_StatusCode(statusCode),
|
|
m_StatusMessage(message)
|
|
{
|
|
|
|
}
|
|
|
|
const char* what() const throw()
|
|
{
|
|
return m_StatusMessage.toLatin1();
|
|
}
|
|
|
|
const char* getStatusMessage() const
|
|
{
|
|
return m_StatusMessage.toLatin1();
|
|
}
|
|
|
|
int getStatusCode() const
|
|
{
|
|
return m_StatusCode;
|
|
}
|
|
|
|
QString toQString() const
|
|
{
|
|
return m_StatusMessage + " (Error " + QString::number(m_StatusCode) + ")";
|
|
}
|
|
|
|
private:
|
|
int m_StatusCode;
|
|
QString m_StatusMessage;
|
|
};
|
|
|
|
class QtNetworkReplyException : public std::exception
|
|
{
|
|
public:
|
|
QtNetworkReplyException(QNetworkReply::NetworkError error, QString errorText) :
|
|
m_Error(error),
|
|
m_ErrorText(errorText)
|
|
{
|
|
|
|
}
|
|
|
|
const char* what() const throw()
|
|
{
|
|
return m_ErrorText.toLatin1();
|
|
}
|
|
|
|
const char* getErrorText() const
|
|
{
|
|
return m_ErrorText.toLatin1();
|
|
}
|
|
|
|
QNetworkReply::NetworkError getError() const
|
|
{
|
|
return m_Error;
|
|
}
|
|
|
|
QString toQString() const
|
|
{
|
|
return m_ErrorText + " (Error " + QString::number(m_Error) + ")";
|
|
}
|
|
|
|
private:
|
|
QNetworkReply::NetworkError m_Error;
|
|
QString m_ErrorText;
|
|
};
|
|
|
|
class NvHTTP : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum NvLogLevel {
|
|
NVLL_NONE,
|
|
NVLL_ERROR,
|
|
NVLL_VERBOSE
|
|
};
|
|
|
|
explicit NvHTTP(QString address, QSslCertificate serverCert);
|
|
|
|
static
|
|
int
|
|
getCurrentGame(QString serverInfo);
|
|
|
|
QString
|
|
getServerInfo(NvLogLevel logLevel, bool fastFail = false);
|
|
|
|
static
|
|
void
|
|
verifyResponseStatus(QString xml);
|
|
|
|
static
|
|
QString
|
|
getXmlString(QString xml,
|
|
QString tagName);
|
|
|
|
static
|
|
QByteArray
|
|
getXmlStringFromHex(QString xml,
|
|
QString tagName);
|
|
|
|
QString
|
|
openConnectionToString(QUrl baseUrl,
|
|
QString command,
|
|
QString arguments,
|
|
int timeoutMs,
|
|
NvLogLevel logLevel = NvLogLevel::NVLL_VERBOSE);
|
|
|
|
void setServerCert(QSslCertificate serverCert);
|
|
|
|
void setAddress(QString address);
|
|
|
|
QString address();
|
|
|
|
static
|
|
QVector<int>
|
|
parseQuad(QString quad);
|
|
|
|
void
|
|
quitApp();
|
|
|
|
void
|
|
resumeApp(PSTREAM_CONFIGURATION streamConfig);
|
|
|
|
void
|
|
launchApp(int appId,
|
|
PSTREAM_CONFIGURATION streamConfig,
|
|
bool sops,
|
|
bool localAudio,
|
|
int gamepadMask);
|
|
|
|
QVector<NvApp>
|
|
getAppList();
|
|
|
|
QImage
|
|
getBoxArt(int appId);
|
|
|
|
static
|
|
QVector<NvDisplayMode>
|
|
getDisplayModeList(QString serverInfo);
|
|
|
|
QUrl m_BaseUrlHttp;
|
|
QUrl m_BaseUrlHttps;
|
|
private:
|
|
void
|
|
handleSslErrors(QNetworkReply* reply, const QList<QSslError>& errors);
|
|
|
|
QNetworkReply*
|
|
openConnection(QUrl baseUrl,
|
|
QString command,
|
|
QString arguments,
|
|
int timeoutMs,
|
|
NvLogLevel logLevel);
|
|
|
|
QString m_Address;
|
|
QNetworkAccessManager m_Nam;
|
|
QSslCertificate m_ServerCert;
|
|
};
|