fear: add copy version

This commit is contained in:
semenov
2024-12-20 12:00:26 +03:00
parent 3651753d2a
commit 5ff01737d9
57 changed files with 1402 additions and 68 deletions

View File

@@ -6,20 +6,22 @@
#include <QString>
#include <QTime>
#include <QDebug>
#include <QDir>
#define TCP_READ_TIMEOUT 2000
static QString applicationEXEName = "RRJ.exe";
static QString applicationFolderName = "/Application";
static QString staticDataFolderName = "/StaticData";
static QString fullStaticDataFolderName = QDir::currentPath() + staticDataFolderName;
static QString streamingAssetsPath = "/Application/RRJLoader/RRJ_Data/StreamingAssets";
static QString hashFilename = staticDataFolderName + "/clientHash.xml";
static QString settingsName = staticDataFolderName + "/settings.xml";
static QString tempName = staticDataFolderName + "/temp.xml";
static QString authTempName = staticDataFolderName + "/authData.xml";
static QString displayTemp = staticDataFolderName + "/displayData.xml";
static QString streamingHashFilename = staticDataFolderName + "/streamingHash.xml";
static QString serverHash = staticDataFolderName + "/serverHash.xml";
static QString hashFilename = "/clientHash.xml";
static QString settingsName = fullStaticDataFolderName + "/settings.xml";
static QString tempName = fullStaticDataFolderName + "/temp.xml";
static QString authTempName = fullStaticDataFolderName + "/authData.xml";
static QString displayTemp = fullStaticDataFolderName + "/displayData.xml";
static QString streamingHashFilename = fullStaticDataFolderName + "/streamingHash.xml";
static QString serverHash = fullStaticDataFolderName + "/serverHash.xml";
static QString cmd_CheckVersionList = "CHECKVERSIONLIST";
static QString cmd_GetServerHash = "GETSERVERDATALIST";