mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <QString>
|
|
#include <QTime>
|
|
#include <QDebug>
|
|
|
|
#define TCP_READ_TIMEOUT 1000
|
|
|
|
static QString applicationEXEName = "RRJ.exe";
|
|
static QString applicationFolderName = "/Application";
|
|
static QString staticDataFolderName = "StaticData";
|
|
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";
|
|
|
|
enum PacketType{
|
|
TYPE_NONE = 0,
|
|
TYPE_UNITY = 1,
|
|
TYPE_FILE = 2,
|
|
TYPE_COMMAND = 3,
|
|
TYPE_FOLDER = 4,
|
|
TYPE_DELETE = 5,
|
|
TYPE_FINISH = 6,
|
|
TYPE_NEEDUPDATE = 7,
|
|
TYPE_XMLANSWER = 8,
|
|
TYPE_QT = 9,
|
|
TYPE_DISABLE = 11
|
|
};
|
|
|
|
class Tools {
|
|
public:
|
|
|
|
static void printTime();
|
|
static QString getTime();
|
|
static QString createLocalPath(QString path);
|
|
static QString createFullPath(QString path);
|
|
static QString convertFileSize(quint64 fileSize);
|
|
};
|
|
|
|
#endif // GLOBAL_H
|