ref: hashComparer

This commit is contained in:
semenov
2024-10-07 09:02:53 +03:00
parent 38e5b7655f
commit 65335027e1
22 changed files with 255 additions and 134 deletions

View File

@@ -8,6 +8,7 @@ UpdateController::UpdateController(DataParser *parser,SendSystem *sendSystem, QO
this->dataParser = parser; this->dataParser = parser;
this->sendSystem = sendSystem; this->sendSystem = sendSystem;
localPath = QDir::currentPath() + applicationFolderName; localPath = QDir::currentPath() + applicationFolderName;
calculateStreamingHash();
} }
void UpdateController::calculateCommonHash() void UpdateController::calculateCommonHash()
@@ -69,12 +70,13 @@ void UpdateController::calculateHash(QString path)
readSize = qMin(fileSize,bufferSize); readSize = qMin(fileSize,bufferSize);
} }
file.close();
hashString = QString(hash.result().toHex()); hashString = QString(hash.result().toHex());
currentFile.path = Tools::createLocalPath(fileInfo.absoluteFilePath()); currentFile.path = Tools::createLocalPath(fileInfo.absoluteFilePath());
currentFile.hash = hashString; currentFile.hash = hashString;
files->push_back(currentFile); files->push_back(currentFile);
file.close();
} }
else if (fileInfo.isDir() && !fileInfo.isRoot() && fileInfo.fileName() != "..") else if (fileInfo.isDir() && !fileInfo.isRoot() && fileInfo.fileName() != "..")
{ {

View File

@@ -13,6 +13,7 @@ void HashComparer::CompareDeltas()
{ {
QList<FileData> *serverStreamingHash = new QList<FileData>; QList<FileData> *serverStreamingHash = new QList<FileData>;
QList<FileData> *localStreamingHash = new QList<FileData>; QList<FileData> *localStreamingHash = new QList<FileData>;
QList<FileData> *files = new QList<FileData>;
QFile file(serverHash); QFile file(serverHash);
file.open(QIODevice::ReadOnly | QIODevice::Text); file.open(QIODevice::ReadOnly | QIODevice::Text);
@@ -30,14 +31,13 @@ void HashComparer::CompareDeltas()
for (auto &item:*localStreamingHash) for (auto &item:*localStreamingHash)
{ {
if(serverStreamingHash->contains(item)) if(!serverStreamingHash->contains(item))
{ {
serverStreamingHash->removeOne(item); files->append(item);
localStreamingHash->removeOne(item);
} }
} }
filesForUpdate = localStreamingHash; filesForUpdate = files;
showDeltas(); showDeltas();
} }

View File

@@ -12,6 +12,7 @@ RecognizeSystem::RecognizeSystem(QObject *parent):
sizeReceiveData = 0; sizeReceiveData = 0;
tmpBlock.clear(); tmpBlock.clear();
countSend = 0; countSend = 0;
folderList = new QList<QString>;
} }
RecognizeSystem::~RecognizeSystem() RecognizeSystem::~RecognizeSystem()
@@ -82,7 +83,6 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
if(packetType == PacketType::TYPE_FILE) //загрузка файлов if(packetType == PacketType::TYPE_FILE) //загрузка файлов
{ {
//ПОЛУЧЕНИЕ ПУТИ //ПОЛУЧЕНИЕ ПУТИ
//ПОЛУЧЕНИЕ РАЗМЕРА ФАЙЛА //ПОЛУЧЕНИЕ РАЗМЕРА ФАЙЛА
forever forever
@@ -107,7 +107,7 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
emit sigSendDebugLog("CLIENT: filesize: " + QString::number(fileSize)); emit sigSendDebugLog("CLIENT: filesize: " + QString::number(fileSize));
emit sigSendDebugLog("CLIENT: filePath: " + filePath); emit sigSendDebugLog("CLIENT: filePath: " + filePath);
emit sigSocketWaitForReadyRead(100); socket->waitForReadyRead(100);
break; break;
} }
@@ -122,6 +122,7 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
{ {
file.remove(); //удаление файла, если он уже есть, но необходимо обновить file.remove(); //удаление файла, если он уже есть, но необходимо обновить
emit sigSendDebugLog(Tools::getTime() + "Delete exist file: " + filePath); emit sigSendDebugLog(Tools::getTime() + "Delete exist file: " + filePath);
socket->waitForReadyRead(100);
} }
@@ -191,7 +192,8 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
if(fileInfo.exists()) if(fileInfo.exists())
{ {
if(fileInfo.isFile()){ if(fileInfo.isFile())
{
QFile file(filePath); QFile file(filePath);
file.remove(); file.remove();
} }
@@ -226,6 +228,10 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
stream >> size; stream >> size;
stream >> fileCount; stream >> fileCount;
if(!stream.commitTransaction()){
continue;
}
emit sigNeedUpdate(flag,size,fileCount); emit sigNeedUpdate(flag,size,fileCount);
packetType = PacketType::TYPE_NONE; packetType = PacketType::TYPE_NONE;
} }
@@ -326,7 +332,6 @@ void RecognizeSystem::checkAccessType(QString type)
{ {
if(type == "instructor") if(type == "instructor")
{ {
updateController->calculateStreamingHash();
mainWindow->callUpdateList(); mainWindow->callUpdateList();
} }
} }

View File

@@ -34,6 +34,7 @@ signals:
void sigStartCompare(); void sigStartCompare();
private: private:
QList<QString> *folderList;
MainWindow *mainWindow; MainWindow *mainWindow;
UpdateController *updateController; UpdateController *updateController;
DataParser *dataParser; DataParser *dataParser;

View File

@@ -96,7 +96,7 @@ void TCPClient::slotSendCommand(QString command)
emit sigSendDebugLog("Update started"); emit sigSendDebugLog("Update started");
stream << PacketType::TYPE_COMMAND; stream << PacketType::TYPE_COMMAND;
stream << command; stream << command;
socket->waitForBytesWritten(); socket->waitForReadyRead(1000);
} }
else if(command == "run"){ else if(command == "run"){
externalExecuter->callApp(); externalExecuter->callApp();

View File

@@ -5,7 +5,7 @@
#include <QTime> #include <QTime>
#include <QDebug> #include <QDebug>
#define TCP_READ_TIMEOUT 1000 #define TCP_READ_TIMEOUT 2000
static QString applicationEXEName = "RRJ.exe"; static QString applicationEXEName = "RRJ.exe";
static QString applicationFolderName = "/Application"; static QString applicationFolderName = "/Application";

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.11.1, 2024-10-04T09:04:14. --> <!-- Written by QtCreator 4.11.1, 2024-10-04T17:31:41. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

View File

@@ -24,69 +24,176 @@
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Resources" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Bin" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/SampleNA3" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/bin" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/bin/Debug" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Data" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/TempPE" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Properties" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Bin/DataSpamer.exe" Hash="b86eac372b215c7832e3bd2d150741a8"/> <FileData Path="/Application/RRJLoader/D3D12/D3D12Core.dll" Hash="7fc05c9a8366d19302dfd13d09d3ebac"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Bin/Na3Responser.exe" Hash="7e583c2f270b348719b01e76bc290fc4"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime/mono-2.0-bdwgc.dll" Hash="1ce1473bec6862c3445a5697d28c3b7d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/DataSpamer.sln" Hash="477de8e402408bf40759b6f0588f8364"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/EmbedRuntime/MonoPosixHelper.dll" Hash="2734ad3f554d1b95d7b04766260175e5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/DataSpamer.vcxproj" Hash="dfecd0be60ea7582c3ca45f785bd7665"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/DataSpamer.vcxproj.filters" Hash="b5ade5553a469a4ac988aab42d2ac1e3"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/DataSpamer.vcxproj.user" Hash="244d056f5e959be6d9a2f7e94686f1c8"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/machine.config" Hash="5b791b8493c4e9a55d8c5ee522ce1cef"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.exe" Hash="97406b53af4fa3887877748fe2e9b30c"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/settings.map" Hash="22c818a23169e12bd3c8587b6394c731"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.exe.recipe" Hash="9872fd2a8638f2be91bea3f30b9e6859"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/2.0/web.config" Hash="dc6dd6d8d1fc74e76c84b0b38dc6b1e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.ilk" Hash="e3c26187dbf35fa4226d9893210b0ef2"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.log" Hash="c52eb05813fcdeff0ede6670f4d6bd16"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.pdb" Hash="e5615f71bef783ea459b7bb684834046"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/machine.config" Hash="32bf879734966ef6659d914a217691e0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/CL.command.1.tlog" Hash="c3a05db6e2c898533e8076c10febf8fe"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/settings.map" Hash="ba17ade8a8e3ee221377534c8136f617"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/CL.read.1.tlog" Hash="dfeb8946d056a7d62dd7815c055a4df1"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.0/web.config" Hash="d081581e16b06480a5aaef8cdfb305ab"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/CL.write.1.tlog" Hash="6ebe630de28e7fa7dbab738744091c6e"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/Browsers/Compat.browser" Hash="0d831c1264b5b32a39fa347de368fe48"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/DataSpamer.lastbuildstate" Hash="22e0cfcdb0cec55dd629e71bb1dbfa41"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/DefaultWsdlHelpGenerator.aspx" Hash="f7be9f1841ff92f9d4040aed832e0c79"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/link.command.1.tlog" Hash="5d25f52b33b879f4a920a2d5f13f9cd9"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/machine.config" Hash="25ff1ec49e3ac9285bd943cf036bd813"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/link.read.1.tlog" Hash="55e6b2338de35ff5811cc30f91ded7f2"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/settings.map" Hash="ba17ade8a8e3ee221377534c8136f617"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.tlog/link.write.1.tlog" Hash="1dd733a9ab83df120a441218e7b5de8c"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/4.5/web.config" Hash="5075af18fe1d2b5f9555d5cc68029814"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/DataSpamer.vcxproj.FileListAbsolute.txt" Hash="8b24f4a23bae258d6c74b5b6e87fd3e1"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/browscap.ini" Hash="378be809df7d15aac75a175693e25fbb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/SampleNA3.obj" Hash="9fe4cf72664595bb46c90bf06718635e"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/config" Hash="67611b783439b35abfe05a97413bba46"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/vc142.idb" Hash="6bee600b142975372827c6e8d283d9e8"/> <FileData Path="/Application/RRJLoader/MonoBleedingEdge/etc/mono/mconfig/config.xml" Hash="f34b330f20dce1bdcce9058fca287099"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/Debug/vc142.pdb" Hash="619eea75de0abe71f5762da6636a120d"/> <FileData Path="/Application/RRJLoader/RRJ.exe" Hash="d8d1ae60ce447c51879c27f15dde7195"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/SampleNA3/NA3Headers.h" Hash="97f9e9f1e2c412f29d09bf03787a7c4c"/> <FileData Path="/Application/RRJLoader/RRJ_BurstDebugInformation_DoNotShip/Data/Plugins/x86_64/lib_burst_generated.txt" Hash="28a5d827e5b26c4e8af32f3022116f54"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/DataSpamer/SampleNA3/SampleNA3.c" Hash="2726f95f86d602f5ce5a30e3c6c72b9a"/> <FileData Path="/Application/RRJLoader/RRJ_Data/app.info" Hash="40abc32f793ac28bdd0bfa15c090595d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/App.config" Hash="9dbad5517b46f41dbb0d8780b20ab87e"/> <FileData Path="/Application/RRJLoader/RRJ_Data/boot.config" Hash="d2efbaf133b8c9a5d752a0c8fcfc1ef9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/bin/Debug/Na3Responser.exe" Hash="7e583c2f270b348719b01e76bc290fc4"/> <FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers" Hash="9e04e3c9575add79ccecb56d2909b916"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/bin/Debug/Na3Responser.exe.config" Hash="9dbad5517b46f41dbb0d8780b20ab87e"/> <FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets" Hash="4487c33f4272a4900326138859f8daa1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/bin/Debug/Na3Responser.pdb" Hash="3294d74eeaf5d910ffc19e6767ccbb98"/> <FileData Path="/Application/RRJLoader/RRJ_Data/globalgamemanagers.assets.resS" Hash="cc481c35e79b509dcd950c6adf2346ce"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/ConnectionCreator.cs" Hash="2886da5be5813c955eb68dae8e939406"/> <FileData Path="/Application/RRJLoader/RRJ_Data/level0" Hash="65b76c3483f64609f9be534f2cf161c7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Data/IOSProtocolHeader.cs" Hash="12b02e2cdfe798a082a82e0c4d70073f"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Assembly-CSharp.dll" Hash="2b075722e64700cbdba7d1bb766e96c8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Data/IOSStructureHeader.cs" Hash="9fe0b6e295d1213f0763e5c36bbfdc3c"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/IngameDebugConsole.Runtime.dll" Hash="db7bfb1bd97dfba03252aa79e5dc4b53"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Data/Na3Headers.cs" Hash="11158d1ac8c8f63c97d8c31bf2c0332b"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Mono.Security.dll" Hash="dbd7e99a9ac5352fd4febaa5a7660e09"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Data/NetArinc3BlockHeader.cs" Hash="ecae1dcc8ab9bcbe99bf3eafd0c11c40"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/mscorlib.dll" Hash="9c0f93ea22eb12021728a1effe48ccad"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Data/NetArinc3ProtocolHeader.cs" Hash="9b5667fcca892ad14a1ca53c1621f18e"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/netstandard.dll" Hash="c61967ebe7f07f6a5a1b3f91842bbc3c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/DataParser.cs" Hash="f555f131800ee55857d681ba87487b76"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.ComponentModel.Composition.dll" Hash="9a5463df5469541750cca835743414c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Na3Responser.csproj" Hash="58e30b44626773f26b5e162cc39a27b0"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Configuration.dll" Hash="ea06fc126f0f0e6a9d44e089469b7653"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Na3Responser.sln" Hash="2288e2837e6d62e609745b00a7749a29"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Core.dll" Hash="5df5fd16437d20f41e58f8db73b42b47"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" Hash="896ab120ac6b6af2895fdb71c452b9d3"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Data.DataSetExtensions.dll" Hash="48ff393c9b420ade92a47c8cded8df57"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache" Hash="cda2848607657057cf01b8d077497df9"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Data.dll" Hash="83260b81a7f2c359842ae712cf8403a5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/Na3Responser.csproj.AssemblyReference.cache" Hash="18785e92fdb029aa9adcc7a52e5f8ba7"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.dll" Hash="97151f7e52d13119d4b7fc147c01dcd7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/Na3Responser.csproj.CoreCompileInputs.cache" Hash="0546aa93d69131d920b7a4d4fc1e0d6a"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Drawing.dll" Hash="e9a4ee8d28124309d5068758ae9cf29a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/Na3Responser.csproj.FileListAbsolute.txt" Hash="208203bbe097e4a8743e34eb6e96ac98"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.EnterpriseServices.dll" Hash="ce5f01bef57e504e6bcba5136f6cac3f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/Na3Responser.exe" Hash="7e583c2f270b348719b01e76bc290fc4"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.IO.Compression.dll" Hash="968bf6f5309660610233bf75b21584c1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/obj/Debug/Na3Responser.pdb" Hash="3294d74eeaf5d910ffc19e6767ccbb98"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.IO.Compression.FileSystem.dll" Hash="941b52daf342862624349b9cec0cb4a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Program.cs" Hash="2fe4ea373299b8816d403b97a80753ac"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Net.Http.dll" Hash="dab4d77c5675bd94394baa2c45e4a311"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Na3/Proj/Na3Responser/Properties/AssemblyInfo.cs" Hash="0c750243bd90aad3bf39eda5d20900d6"/> <FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Numerics.dll" Hash="73cd840f06347a172cdc8764564c6361"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Runtime.dll" Hash="77d74adcdea84d53a1fbe89e79737c1e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Runtime.Serialization.dll" Hash="4ef33c922491087198e413279a709791"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Security.dll" Hash="c3030222a71dad399344f8067dd36299"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.ServiceModel.Internals.dll" Hash="0b563b4cf046e3e484669ce10ce3bfa1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Transactions.dll" Hash="6191fb6d054e9f0910f42730230d7e5b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Xml.dll" Hash="6fed4a1385091135fcc224bda4f83222"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/System.Xml.Linq.dll" Hash="f59d549bdb4b3310647d344446958c3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Burst.dll" Hash="3d93246db4e4fa4e519fa15ff5ee3ff4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Burst.Unsafe.dll" Hash="129351e9879a83262ea92a4a45aacc46"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Collections.dll" Hash="9896d66646d20face9591a222cf2ccdf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Collections.LowLevel.ILSupport.dll" Hash="a28c546a9e048223b6899d2856ef6c11"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Mathematics.dll" Hash="88db1f1b78092627dd59ba7098212fb9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Rendering.LightTransport.Runtime.dll" Hash="e47312870d4e8ef8f50dfa0504db5ab3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.Runtime.dll" Hash="b7f1b29575e39edb80529f80dbe96b51"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.Runtime.Shared.dll" Hash="ebbeac963fbf7bb908ab0aa5d698c350"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.Core.ShaderLibrary.dll" Hash="b5f27626025df2464cc3216bfb349ff6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.HighDefinition.Config.Runtime.dll" Hash="4232e384bb18cf0b470748f16a451077"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.HighDefinition.Runtime.dll" Hash="8b2775ed44dd1b71ea4d8dc9c33df5a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" Hash="bb8e7c89045af4b8e7886720e5dc2474"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.TextMeshPro.dll" Hash="a944c0a16abff15b71bf7c220de5bcbd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.Timeline.dll" Hash="9d32cd828350ca76224a61f9cf98211c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualEffectGraph.Runtime.dll" Hash="ddd586575079cc22739a5e5e49d18a77"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Antlr3.Runtime.dll" Hash="62a6ef88ac683a13104417515323896b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Core.dll" Hash="de557512eb1a4da119ef4b7cdf0de9ea"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.Flow.dll" Hash="6078b460cb8803b87f89410f2fdef9f2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/Unity.VisualScripting.State.dll" Hash="0a778b955b1a2df7397f338386070323"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AccessibilityModule.dll" Hash="bf51e59da996c816b7d3944d9d235ca3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AIModule.dll" Hash="245cfae2b9eaee92e87eae662d3b8ca5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AndroidJNIModule.dll" Hash="19aba924468d523bd6ab0af1977ce553"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AnimationModule.dll" Hash="5301e420d7216e0376b2ae6771836a08"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ARModule.dll" Hash="5007e1920fd5f556be659d873b07f1a4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AssetBundleModule.dll" Hash="5c3168c646fb035e811a09fd4de30759"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.AudioModule.dll" Hash="12b91b4940b3418061837bc12e7d7050"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClothModule.dll" Hash="6ca3c4a421c921526e07950998a89ee9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClusterInputModule.dll" Hash="9ed9069d73075969a156f89851e58d4c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ClusterRendererModule.dll" Hash="525752cc5b0c1d39c49ec4ac50a4101b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CommandStateObserverModule.dll" Hash="55957ff738edeb5fb2723f625112d4d3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ContentLoadModule.dll" Hash="eedc3dcf14a3ce65072b84335b54b758"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CoreModule.dll" Hash="7352cddb3575dbbcca53a8fa9568fe6f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.CrashReportingModule.dll" Hash="ea3c9f6c8098cf864e3353697a32ff65"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.DirectorModule.dll" Hash="87d7f67b284b7e5748bb8cc4c645662c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.dll" Hash="8ffa9dfdffe9c31b96856f5be0f839e4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.DSPGraphModule.dll" Hash="347a60da7e315fbfeca71360aa69169b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GameCenterModule.dll" Hash="ceb426370ca4ccd14de6d2bf86b143c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GIModule.dll" Hash="2918d57cd975b218d0d5a94a0e6c386a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GraphToolsFoundationModule.dll" Hash="b2c7eea97fa9ee185d6be4dbccbaad68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.GridModule.dll" Hash="3cb34eb625d4fabbbefed7563619f854"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.HierarchyCoreModule.dll" Hash="4f1dfca0153c6cda61b749cf04b864d4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.HotReloadModule.dll" Hash="f1c6fd8ef2ec0c3a607b148bcd87038d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ImageConversionModule.dll" Hash="102bfdba9d7a2b1f876c7dd9ff0fd440"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.IMGUIModule.dll" Hash="c9fc2dcdf69f5c081ee1d809715624f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputForUIModule.dll" Hash="2c6253ae2586b692d55140e38fc3e242"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputLegacyModule.dll" Hash="a9a370555a93c547284b2e8a27945bc5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.InputModule.dll" Hash="cf38dc062b4d1218628488ee5cbbdd5d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.JSONSerializeModule.dll" Hash="0b294a1c0dca9e8180f122ba7ac942dc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.LocalizationModule.dll" Hash="ecc911c3f4fb74ef6fe9d756e3d18408"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.MarshallingModule.dll" Hash="4be2900caf53c5a77e14d40d26804016"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.MultiplayerModule.dll" Hash="3821d1940fef8c2fd2bc09f8cdc50b7b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.NVIDIAModule.dll" Hash="0dde1799779f99200903622ecf279b4b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ParticleSystemModule.dll" Hash="fb86ca13989f7357917cb8fad2bc9571"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PerformanceReportingModule.dll" Hash="76ea7a15db5d193ffd90ac126ecdf573"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.Physics2DModule.dll" Hash="c2e6a62916ad3207cdc8daf42e033d37"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PhysicsModule.dll" Hash="b3d8e6427893f8ed1c6717e8bc8480eb"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ProfilerModule.dll" Hash="f1f4d1ee69bff46452fba519b3a0c90b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.PropertiesModule.dll" Hash="dff0bf609e5e116146f3139297a8cf55"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" Hash="b3c3f7cf1d76fbf5cb72d06b48fadce8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.ScreenCaptureModule.dll" Hash="512a77e433577d2aea66bbf774b26e68"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SharedInternalsModule.dll" Hash="b5dfed05ba23999348fb41a3946a8c60"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SpriteMaskModule.dll" Hash="d35600c344dda3162201ee876109dfa2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SpriteShapeModule.dll" Hash="c1da3125886675c29f911186ba57c77f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.StreamingModule.dll" Hash="3c1a919df199410b6d97d3233c2ae8af"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SubstanceModule.dll" Hash="5654a4342f349a828d1e42100bd5b069"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.SubsystemsModule.dll" Hash="bd7ad5e02272b6cffc6ac3c9f64a5d00"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TerrainModule.dll" Hash="3f4b1cca251fc0e4ac8ee5855c21c829"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TerrainPhysicsModule.dll" Hash="2d87f1c8ac3b32158d0c8751989c97f7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextCoreFontEngineModule.dll" Hash="f02c97fc1dc7cee24efb7a161761cad7"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextCoreTextEngineModule.dll" Hash="211586ac1307e75b04944ae69602d439"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TextRenderingModule.dll" Hash="7c4b7a99c671f612956c8d9a8b059d3d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TilemapModule.dll" Hash="680c311a782c27b84939de1109387abf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.TLSModule.dll" Hash="f5e69a25d7e5711f9d96c6d72ebef3a6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UI.dll" Hash="c5ff0bd048336c6e10704e5bf0151e05"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UIElementsModule.dll" Hash="edb209860d38406902f38078afb09dc4"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UIModule.dll" Hash="6dc8c0bd62247ae98f3ab47b58dbe79b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UmbraModule.dll" Hash="9e9645956824b3d24d0a5c721ebedfcc"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityAnalyticsCommonModule.dll" Hash="35cc2a3004f37694740edc9394bc05bf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityAnalyticsModule.dll" Hash="07396be9516ddff18c7f49ba9ed9d5c2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityConnectModule.dll" Hash="c2b0504f4621a92e91d5ed5e79017295"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityCurlModule.dll" Hash="92203292162a4a4ea627f41e2032855d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityTestProtocolModule.dll" Hash="f7995ec8be70852443cefdf2b9ec8a4e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestAssetBundleModule.dll" Hash="57d96c793a720456cc5ebc45d0b6f4e1"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestAudioModule.dll" Hash="8490f076ba120cb60dab94932adff771"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestModule.dll" Hash="f033891c341f917838a1ae9caa9c73e8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestTextureModule.dll" Hash="fe6a04ff44a2f53a27331ca4834211e3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.UnityWebRequestWWWModule.dll" Hash="3e9d46adb7d36d390783d7917dd043b8"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VehiclesModule.dll" Hash="74065cdf5a92f299a5197a7cf2505725"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VFXModule.dll" Hash="ae89bc0a52ba6cfeea7261e330bc972b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VideoModule.dll" Hash="c00f0cfb424ad22ecf90a1f5d6f5bd2b"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VirtualTexturingModule.dll" Hash="a68ac0d470b2de4b492e6c0d9b88e9de"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.VRModule.dll" Hash="1943a6b4296e967056f48f34e7cc10b3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.WindModule.dll" Hash="4cb40be94a81fac1bb759d28e6dcd381"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Managed/UnityEngine.XRModule.dll" Hash="635e638a237f3b28a661c6cf4a18046a"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64/lib_burst_generated.dll" Hash="57c1f876ac85e909504eb6fb9ce2ab8c"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Plugins/x86_64/pdfrenderer.dll" Hash="bb9613277346c4b3bf0ea29a44c903e9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources/unity default resources" Hash="510aeddf6e1cb415533ad2b13937f0bd"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/Resources/unity_builtin_extra" Hash="4ec578ed51d7dd617c9245fc406c1fc2"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/resources.assets" Hash="aa1503fcf0cca3c176162ed3d985eca3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/resources.assets.resS" Hash="415d6f432a82d14f862a7fc1897ab50e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/RuntimeInitializeOnLoads.json" Hash="6208c41654630850756b3fca5a5e6905"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/ScriptingAssemblies.json" Hash="bc1156dee1f08ecf1afb66a3cbd653a9"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets" Hash="1007009da1bc4721385a45b38f143ea3"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/sharedassets0.assets.resS" Hash="897317a657f377346d8932827dc78da0"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100/docs.xml" Hash="fcad1626c1ef3851931bf68a1aa054c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS/024.31.00a.xml" Hash="e730fbd64cd77dd163732cfaf2bd0e75"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_begin.wav" Hash="2e0057ee08c7b6fa07d28863a40d1cbf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_end.wav" Hash="e83345df81f1e577bb53766875efc31d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Menu Command.wav" Hash="822b4c37ce07436e2192785f3274386f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Minimize.wav" Hash="8fb59dad02c94ebc63590b14f4d1de2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Navigation Start.wav" Hash="b82aa79f496456ffc5b952b484af25f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Connection.wav" Hash="00882d550b9389c6183ee3da0b668b2d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Notification.wav" Hash="e15f0210410a574af39b07840ccbe4cc"/>
<FileData Path="/Application/RRJLoader/UnityCrashHandler64.exe" Hash="ea440810e323f7b7ca54727cd23d068e"/>
<FileData Path="/Application/RRJLoader/UnityPlayer.dll" Hash="0486f8cc69625acdb24a62855754b228"/>
</FileDataList> </FileDataList>

View File

@@ -5,4 +5,13 @@
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/> <FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI" Hash="FOLDER"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RRJ-95NEW-100/docs.xml" Hash="fcad1626c1ef3851931bf68a1aa054c6"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/RUS/024.31.00a.xml" Hash="e730fbd64cd77dd163732cfaf2bd0e75"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_begin.wav" Hash="2e0057ee08c7b6fa07d28863a40d1cbf"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/ir_end.wav" Hash="e83345df81f1e577bb53766875efc31d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Menu Command.wav" Hash="822b4c37ce07436e2192785f3274386f"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Minimize.wav" Hash="8fb59dad02c94ebc63590b14f4d1de2e"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Navigation Start.wav" Hash="b82aa79f496456ffc5b952b484af25f5"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Connection.wav" Hash="00882d550b9389c6183ee3da0b668b2d"/>
<FileData Path="/Application/RRJLoader/RRJ_Data/StreamingAssets/Sounds/UI/Proximity Notification.wav" Hash="e15f0210410a574af39b07840ccbe4cc"/>
</FileDataList> </FileDataList>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -10,48 +10,48 @@ static const unsigned char qt_resource_data[] = {
// E:/Projects/QT/GUIProj/RRJClient/RRJClient/style.css // E:/Projects/QT/GUIProj/RRJClient/RRJClient/style.css
0x0,0x0,0x2,0x99, 0x0,0x0,0x2,0x99,
0x0, 0x0,
0x0,0xb,0x56,0x78,0x9c,0xd5,0x56,0x5b,0x6f,0xda,0x30,0x18,0x7d,0x47,0xe2,0x3f, 0x0,0xb,0x22,0x78,0x9c,0xd5,0x56,0x5b,0x6f,0xda,0x30,0x14,0x7e,0x47,0xe2,0x3f,
0x58,0xe5,0x85,0x4a,0xa1,0x24,0x1,0x5a,0x94,0xbe,0xd1,0x4e,0xbb,0xa8,0x4c,0x43, 0x58,0xe5,0x85,0x4a,0x50,0x92,0x0,0x2d,0x4a,0xdf,0x68,0xa7,0x5d,0x54,0xa6,0xa1,
0x45,0xeb,0xb3,0x13,0x9b,0xe4,0x13,0xc6,0x46,0xb6,0x23,0x40,0xd3,0xfe,0xfb,0x4c, 0xa2,0xf5,0xd9,0x89,0x4d,0x72,0x84,0xb1,0x91,0xed,0x8,0xd0,0xb4,0xff,0x3e,0x93,
0x12,0x32,0x72,0x81,0x86,0x8e,0x97,0x11,0x89,0x44,0x89,0x7d,0xce,0xf9,0xee,0x6e, 0x84,0x8c,0xdc,0x68,0xe8,0x78,0x19,0x91,0x48,0x94,0xd8,0xdf,0xf9,0xce,0xf9,0xce,
0xb7,0x66,0x53,0xc,0xfc,0xd,0x38,0x11,0x9b,0x76,0xeb,0x57,0xbb,0x85,0xcc,0xcf, 0xc5,0xed,0xd6,0x7c,0x86,0x81,0xbf,0x1,0x27,0x62,0xdb,0x6e,0xfd,0x6a,0xb7,0x90,
0xc7,0xc1,0x32,0x94,0x22,0xe6,0xa4,0x7,0x2b,0x1c,0x52,0xf,0xc5,0x92,0x75,0xbd, 0xf9,0x79,0xd8,0x5f,0x5,0x52,0x44,0x9c,0xf4,0x61,0x8d,0x3,0xea,0xa2,0x48,0xb2,
0xbe,0xa4,0x4a,0xc4,0x32,0xa0,0xfd,0xd7,0xd7,0x6f,0x3d,0xc7,0xb6,0x9f,0xb1,0x5c, 0xae,0x3b,0x90,0x54,0x89,0x48,0xfa,0x74,0xf0,0xfa,0xfa,0xad,0x6f,0x5b,0xd6,0x33,
0xde,0xad,0x79,0x78,0xfb,0x58,0xd9,0xb7,0x16,0xa,0x34,0x8,0xee,0xa1,0x80,0x72, 0x96,0xab,0xbb,0xd,0xf,0x6e,0x1f,0x4b,0xfb,0x36,0x42,0x81,0x6,0xc1,0x5d,0xe4,
0x4d,0xa5,0x59,0xf1,0xbb,0xdd,0x6a,0xb7,0x66,0x4f,0x62,0xe5,0x8b,0x89,0xd8,0xd6, 0x53,0xae,0xa9,0x34,0x2b,0x7e,0xb7,0x5b,0xed,0xd6,0xfc,0x49,0xac,0x3d,0x31,0x15,
0x91,0x5,0x82,0x9,0xe9,0x21,0x19,0xfa,0x5d,0xd7,0x1e,0x58,0xae,0x3b,0xb6,0xdc, 0xbb,0x2a,0x63,0xbe,0x60,0x42,0xba,0x48,0x6,0x5e,0xd7,0xb1,0x86,0x3d,0xc7,0x99,
0xd1,0x28,0x47,0x17,0x92,0x50,0xd9,0x53,0x7a,0xc7,0x8c,0x22,0x11,0x6b,0x45,0x75, 0xf4,0x9c,0xf1,0x38,0x43,0x17,0x92,0x50,0xd9,0x57,0x7a,0xcf,0xc,0x23,0x11,0x69,
0xf1,0x93,0xc4,0x4,0x62,0xe5,0xa1,0xc1,0x7a,0x9b,0x7d,0x58,0x8,0xae,0x7b,0xb, 0x45,0x75,0xfe,0x93,0xc4,0x4,0x22,0xe5,0xa2,0xe1,0x66,0x97,0x7e,0x58,0xa,0xae,
0xbc,0x2,0xb6,0xf3,0xd0,0xcd,0x13,0x66,0xe0,0x4b,0xb8,0x39,0xfa,0xe8,0x21,0xe7, 0xfb,0x4b,0xbc,0x6,0xb6,0x77,0xd1,0xcd,0x13,0x66,0xe0,0x49,0xb8,0x39,0xf9,0xe8,
0x3e,0x5f,0x7d,0xc4,0x3f,0x1c,0x59,0xe3,0xa1,0xe5,0xc,0xec,0xdb,0x5c,0xf9,0x8f, 0x22,0xfb,0x3e,0x5b,0x7d,0x62,0x7f,0x34,0xee,0x4d,0x46,0x3d,0x7b,0x68,0xdd,0x66,
0x58,0x45,0x93,0x58,0x6b,0xc1,0xff,0x67,0xed,0x1e,0x1,0x85,0x7d,0x46,0xc9,0x19, 0xcc,0x7f,0x44,0x2a,0x9c,0x46,0x5a,0xb,0xfe,0x3f,0x73,0x77,0x9,0x28,0xec,0x31,
0x23,0x18,0x84,0x91,0xfe,0x2c,0xf1,0xae,0x88,0x1d,0x9a,0x37,0x7,0xc0,0x29,0x55, 0x4a,0xce,0x38,0xc1,0x20,0x8,0xf5,0x67,0x89,0xf7,0x79,0xec,0xc0,0xbc,0x39,0x2,
0xca,0x64,0xc6,0xf9,0x40,0x6e,0x22,0xd0,0xf4,0xb1,0xba,0x5,0xcd,0x5e,0xb0,0x4f, 0xce,0xa8,0x52,0x26,0x33,0xce,0xb,0xb9,0xd,0x41,0xd3,0xc7,0xf2,0x16,0x34,0x7f,
0x59,0xbe,0xb3,0x81,0xa5,0xae,0x5d,0xb6,0xd4,0x67,0x86,0xaf,0x16,0xbc,0x2e,0x50, 0xc1,0x1e,0x65,0xd9,0xce,0x6,0x9e,0x3a,0x56,0xd1,0x53,0x8f,0x19,0x7b,0x95,0xe0,
0x45,0x27,0xbb,0x39,0xd8,0x1a,0x13,0x2,0x3c,0xf4,0x90,0x7d,0xe7,0xd2,0x55,0xfe, 0x55,0x42,0xe5,0x83,0xec,0x64,0x60,0x1b,0x4c,0x8,0xf0,0xc0,0x45,0xd6,0x9d,0x43,
0x3f,0x38,0x3c,0x67,0xcb,0x56,0xc0,0x7b,0x1b,0x20,0x3a,0xf2,0xd0,0x43,0xaa,0x24, 0xd7,0xd9,0xff,0xf0,0xf8,0x9c,0x2e,0x5b,0x3,0xef,0x6f,0x81,0xe8,0xd0,0x45,0xf,
0xa5,0x7d,0x1,0x4e,0x3f,0x11,0xd0,0x65,0xa2,0xc6,0x81,0xce,0xc2,0x23,0x45,0x68, 0x9,0x93,0xc4,0xec,0xb,0x70,0xfa,0x89,0x80,0x2e,0x1a,0x6a,0x2c,0x74,0x2a,0x8f,
0x8a,0x4b,0x4d,0xb0,0x2c,0x21,0x25,0x5a,0x91,0x12,0xc,0x48,0x35,0xb6,0x35,0xa8, 0x14,0x81,0x29,0x2e,0x35,0xc5,0xb2,0x80,0x14,0x73,0x45,0x4a,0x30,0x20,0x65,0x6d,
0xa3,0x53,0x6e,0x6a,0x9a,0x51,0x6,0xc0,0x60,0x32,0x92,0xbd,0xd5,0x74,0xab,0x7b, 0x2b,0x50,0xc7,0x75,0x61,0x6a,0x9a,0x51,0x6,0xc0,0x60,0x32,0x92,0xbe,0xd5,0x74,
0x66,0x61,0x58,0xa9,0xe4,0xa2,0x6c,0xcf,0xb,0xa2,0x98,0x2f,0x4f,0x39,0xfc,0xaf, 0xa7,0xfb,0x66,0x61,0x50,0xaa,0xe4,0x3c,0x6d,0xd7,0xf5,0xc3,0x88,0xaf,0xea,0x2,
0xac,0x46,0x25,0x93,0xb5,0x8a,0x88,0x6,0xcb,0xe3,0xc,0x3b,0xd6,0x7f,0x42,0xfe, 0xfe,0x97,0x56,0xa3,0x92,0x49,0x5b,0x45,0x48,0xfd,0xd5,0x69,0x86,0x9d,0xf2,0xaf,
0xb8,0x6c,0x7f,0x31,0x7,0xdf,0x80,0x84,0x54,0x77,0x20,0x10,0x3c,0x7d,0x2c,0xb, 0xa1,0x3f,0x29,0xfa,0x9f,0xcf,0xc1,0x37,0x20,0x1,0xd5,0x1d,0xf0,0x5,0x4f,0x1e,
0xae,0xef,0x77,0x5f,0xcd,0x7a,0xd5,0x5f,0x33,0xcc,0x69,0xd2,0xef,0x90,0x9d,0x5d, 0x8b,0x84,0xab,0xfb,0xdd,0x57,0xb3,0x5e,0xd,0x36,0xc,0x73,0x1a,0xf7,0x3b,0x64,
0x4a,0x4b,0xaa,0x83,0xe8,0x70,0x3f,0x24,0xd5,0xa9,0xe6,0x77,0x85,0xb4,0x2f,0xda, 0xa5,0x97,0xd2,0x92,0x6a,0x3f,0x3c,0xde,0x8f,0x49,0x55,0xd7,0xfc,0xae,0x90,0xf6,
0x93,0x0,0x76,0x80,0x33,0x93,0x87,0x73,0x13,0xaa,0x67,0xea,0xc7,0xe1,0x25,0x4, 0x79,0x7f,0x62,0xc0,0xe,0x70,0x66,0xf2,0x70,0x61,0xa4,0x7a,0xa6,0x5e,0x14,0x5c,
0x99,0xc3,0xa,0xde,0x89,0x28,0x36,0xae,0x28,0xfb,0xa7,0x1c,0xb7,0x2b,0x75,0xba, 0x62,0x20,0xd,0x58,0x2e,0x3a,0x21,0xc5,0x26,0x14,0xc5,0xf8,0x14,0x75,0xab,0x95,
0x2,0x73,0xbc,0x26,0x58,0xd3,0xf7,0x98,0xf7,0x19,0x83,0x8f,0xb9,0x3f,0xc6,0xef, 0x2d,0x45,0x89,0x36,0x4,0x6b,0xfa,0x1e,0xca,0x41,0x7d,0x7c,0x8a,0xf3,0xb1,0xae,
0xd8,0x15,0x1,0xe8,0xe3,0xa,0xec,0x72,0x45,0x5e,0x43,0xc1,0x55,0x1a,0x65,0xfd, 0x69,0x5b,0x25,0x37,0xd0,0xc7,0x19,0x58,0xc5,0xea,0xba,0x6,0x83,0xab,0x34,0xbd,
0x48,0x98,0xee,0xcc,0xd0,0xff,0x92,0x44,0x3a,0xb,0xf8,0xc5,0x54,0xd5,0x62,0x3b, 0xea,0xf6,0x3e,0xdb,0x9b,0x1,0xfe,0x25,0x56,0x2d,0x15,0xef,0x62,0x53,0xe5,0xc2,
0x31,0x7d,0xd2,0x2c,0x35,0xd5,0x13,0xc6,0xa6,0xba,0xe6,0xa0,0x19,0x6d,0xc6,0x73, 0xa9,0x99,0x24,0x49,0xc6,0x99,0x4a,0x8,0x22,0x53,0x29,0xb,0xd0,0x8c,0x36,0xb3,
0x26,0xe7,0xbf,0xb,0xd,0xb,0x8,0xf0,0xbe,0xce,0x2e,0x50,0x5e,0x3b,0x3c,0x52, 0x73,0x26,0x7f,0xbf,0xb,0xd,0x4b,0xf0,0xf1,0xa1,0x66,0x2e,0x60,0x5e,0x39,0x8,
0x44,0x7e,0x16,0x31,0xf7,0x6c,0xba,0x65,0x2e,0x4,0x4b,0x67,0x4c,0xc7,0xc,0x54, 0x12,0x44,0x7e,0x16,0x31,0x8b,0x6c,0xb2,0x65,0x21,0x4,0x4b,0xe6,0x45,0xc7,0xc,
0xd3,0x19,0x76,0x3f,0x81,0x6e,0x2a,0xcd,0x7b,0xf8,0x4f,0xcd,0xbb,0x7e,0xcf,0x3b, 0x47,0x53,0xe5,0xfb,0x9f,0x40,0xb7,0xa5,0x46,0x3c,0xfa,0xa7,0x46,0x5c,0xbd,0xe7,
0x63,0xb6,0x5e,0x99,0x69,0xcf,0xa6,0x99,0x9e,0x9d,0xfa,0x7b,0x36,0x67,0xe4,0x58, 0x9d,0x91,0x59,0xcd,0xcc,0xb4,0x5a,0xd3,0x18,0xcf,0x4e,0xf0,0x83,0x35,0x7b,0x6c,
0xce,0xc3,0xbd,0x49,0x67,0x27,0xf,0xdf,0x69,0xcc,0x6,0x47,0x89,0x1a,0xd0,0x33, 0xf7,0xec,0x87,0x7b,0x93,0xce,0x76,0x26,0x5f,0x3d,0x66,0x83,0x63,0x41,0x5,0xe8,
0xf6,0x25,0x8c,0x47,0xf3,0xbb,0x93,0xa9,0x4e,0xc2,0xd1,0xe4,0xec,0x85,0xbb,0xb6, 0x19,0xff,0x62,0x8b,0x27,0xb3,0xb8,0x93,0xb2,0x8e,0xe5,0x68,0x72,0x8e,0xc2,0x5d,
0x95,0x5c,0x75,0x47,0x9f,0x8e,0xe9,0x92,0xcb,0x8b,0x51,0x1a,0xa6,0x94,0xcf,0xe2, 0xab,0x17,0x5f,0x55,0xc7,0x98,0x8e,0xe9,0x78,0xab,0x8b,0x51,0x1a,0xa6,0x94,0xc7,
0x3c,0x6,0x7f,0x0,0xd4,0x31,0x46,0xce, 0xa2,0x4c,0x83,0x3f,0xae,0x6e,0x36,0xa8,
// E:/Projects/QT/GUIProj/RRJClient/RRJClient/resource/SSJ-100.png // E:/Projects/QT/GUIProj/RRJClient/RRJClient/resource/SSJ-100.png
0x0,0xc,0x7c,0xaa, 0x0,0xc,0x7c,0xaa,
0x89, 0x89,
@@ -131984,7 +131984,7 @@ static const unsigned char qt_resource_struct[] = {
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/style.css // :/style.css
0x0,0x0,0x0,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x92,0x56,0x7e,0x8f,0xe2, 0x0,0x0,0x1,0x92,0x56,0xb1,0xc1,0x4,
// :/resource // :/resource
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3, 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -50,7 +50,6 @@ void MainWindow::initialize()
emit sigInitializeClient(recognizeSystem,externalExecuter,sendSystem,connectionThread); emit sigInitializeClient(recognizeSystem,externalExecuter,sendSystem,connectionThread);
recognizeSystem->initialize(updateController,dataParser,this); recognizeSystem->initialize(updateController,dataParser,this);
screenChecker->check(); screenChecker->check();
loadStaticData(); loadStaticData();
@@ -102,7 +101,7 @@ void MainWindow::bindConnection()
connect(recognizeSystem,&RecognizeSystem::sigNeedUpdate,this,&MainWindow::setNeedUpdate); connect(recognizeSystem,&RecognizeSystem::sigNeedUpdate,this,&MainWindow::setNeedUpdate);
connect(recognizeSystem,&RecognizeSystem::sigSocketDisabled,this,&MainWindow::lostConnection); connect(recognizeSystem,&RecognizeSystem::sigSocketDisabled,this,&MainWindow::lostConnection);
connect(recognizeSystem,&RecognizeSystem::sigSaveLoginData,this,&MainWindow::checkLoginResult); connect(recognizeSystem,&RecognizeSystem::sigSaveLoginData,this,&MainWindow::checkLoginResult);
connect(recognizeSystem,&RecognizeSystem::sigSocketWaitForReadyRead,client,&TCPClient::waitRead,Qt::AutoConnection); connect(recognizeSystem,&RecognizeSystem::sigSocketWaitForReadyRead,client,&TCPClient::waitRead,Qt::DirectConnection);
connect(recognizeSystem,&RecognizeSystem::sigServerBlocked,this,&MainWindow::serverBlocked); connect(recognizeSystem,&RecognizeSystem::sigServerBlocked,this,&MainWindow::serverBlocked);
connect(updateController,&UpdateController::sigUpdateComplete,this,&MainWindow::showCompleteDialogBox); connect(updateController,&UpdateController::sigUpdateComplete,this,&MainWindow::showCompleteDialogBox);
@@ -165,6 +164,9 @@ void MainWindow::setNeedUpdate(bool flag,quint64 size, quint64 fileCount)
QString result = tr("Доступно обновление: ") + Tools::convertFileSize(size); QString result = tr("Доступно обновление: ") + Tools::convertFileSize(size);
result += tr("Количество файлов: ") + QString::number(fileCount); result += tr("Количество файлов: ") + QString::number(fileCount);
ui->inlineTextDebug->setText(result); ui->inlineTextDebug->setText(result);
ui->startButton->show();
ui->updateButton->setEnabled(flag);
ui->startButton->setEnabled(true);
ui->updateButton->show(); ui->updateButton->show();
ui->autostartCheckBox->show(); ui->autostartCheckBox->show();
stopLoadingMovie(); stopLoadingMovie();
@@ -178,9 +180,6 @@ void MainWindow::setNeedUpdate(bool flag,quint64 size, quint64 fileCount)
ui->offlineStartButton->setEnabled(true); ui->offlineStartButton->setEnabled(true);
stopLoadingMovie(); stopLoadingMovie();
} }
ui->updateButton->setEnabled(flag);
ui->startButton->setEnabled(!flag);
} }
void MainWindow::lostConnection() void MainWindow::lostConnection()
@@ -336,7 +335,6 @@ void MainWindow::slotDisableNotify()
void MainWindow::callUpdateList() void MainWindow::callUpdateList()
{ {
updateController->calculateStreamingHash();
hashComparer->setWidget(updateWidget); hashComparer->setWidget(updateWidget);
QByteArray answer = dataParser->xmlAnswer_notify("GETSERVERDATALIST"); QByteArray answer = dataParser->xmlAnswer_notify("GETSERVERDATALIST");
@@ -375,6 +373,7 @@ void MainWindow::on_updateButton_clicked()
emit sigSendCommand("update"); emit sigSendCommand("update");
ui->updateButton->hide(); ui->updateButton->hide();
ui->startButton->hide();
ui->loadingProgressBar->setValue(0); ui->loadingProgressBar->setValue(0);
ui->loadingProgressBar->show(); ui->loadingProgressBar->show();
} }
@@ -510,7 +509,7 @@ void MainWindow::showUpdateInfo()
ui->updateWidget->show(); ui->updateWidget->show();
ui->updateButtonGroup_2->show(); ui->updateButtonGroup_2->show();
ui->offlineStartButton->setGeometry(570,552,250,35); ui->offlineStartButton->setGeometry(540,552,250,35);
fileCountForUpdate = hashComparer->getFilesForUpdate()->length(); fileCountForUpdate = hashComparer->getFilesForUpdate()->length();
filesLoaded = 0; filesLoaded = 0;

View File

@@ -49,7 +49,7 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>541</y> <y>541</y>
<width>550</width> <width>540</width>
<height>50</height> <height>50</height>
</rect> </rect>
</property> </property>
@@ -73,7 +73,7 @@
</property> </property>
<layout class="QHBoxLayout" name="downlayout"> <layout class="QHBoxLayout" name="downlayout">
<property name="spacing"> <property name="spacing">
<number>1</number> <number>10</number>
</property> </property>
<item> <item>
<widget class="QProgressBar" name="loadingProgressBar"> <widget class="QProgressBar" name="loadingProgressBar">
@@ -923,9 +923,9 @@
<widget class="QWidget" name="updateButtonGroup_2" native="true"> <widget class="QWidget" name="updateButtonGroup_2" native="true">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>10</x> <x>0</x>
<y>541</y> <y>541</y>
<width>551</width> <width>540</width>
<height>50</height> <height>50</height>
</rect> </rect>
</property> </property>
@@ -1104,8 +1104,8 @@
<bool>false</bool> <bool>false</bool>
</property> </property>
</widget> </widget>
<zorder>mainFrame</zorder>
<zorder>downLayout</zorder> <zorder>downLayout</zorder>
<zorder>mainFrame</zorder>
<zorder>horizontalWidget</zorder> <zorder>horizontalWidget</zorder>
<zorder>notificationLabel</zorder> <zorder>notificationLabel</zorder>
<zorder>debugWidget</zorder> <zorder>debugWidget</zorder>

View File

@@ -102,8 +102,6 @@ QLabel#inlineTextDebug
QWidget#headerWidget QWidget#headerWidget
{ {
background-color:rgb(203,228,255); background-color:rgb(203,228,255);
border-style: outset;
border-radius: 3px;
} }
QWidget#updateWidget QWidget#updateWidget

View File

@@ -107,13 +107,13 @@ public:
centralwidget->setMaximumSize(QSize(800, 600)); centralwidget->setMaximumSize(QSize(800, 600));
downLayout = new QWidget(centralwidget); downLayout = new QWidget(centralwidget);
downLayout->setObjectName(QString::fromUtf8("downLayout")); downLayout->setObjectName(QString::fromUtf8("downLayout"));
downLayout->setGeometry(QRect(0, 541, 550, 50)); downLayout->setGeometry(QRect(0, 541, 540, 50));
sizePolicy.setHeightForWidth(downLayout->sizePolicy().hasHeightForWidth()); sizePolicy.setHeightForWidth(downLayout->sizePolicy().hasHeightForWidth());
downLayout->setSizePolicy(sizePolicy); downLayout->setSizePolicy(sizePolicy);
downLayout->setMinimumSize(QSize(0, 40)); downLayout->setMinimumSize(QSize(0, 40));
downLayout->setMaximumSize(QSize(16777215, 60)); downLayout->setMaximumSize(QSize(16777215, 60));
downlayout = new QHBoxLayout(downLayout); downlayout = new QHBoxLayout(downLayout);
downlayout->setSpacing(1); downlayout->setSpacing(10);
downlayout->setObjectName(QString::fromUtf8("downlayout")); downlayout->setObjectName(QString::fromUtf8("downlayout"));
loadingProgressBar = new QProgressBar(downLayout); loadingProgressBar = new QProgressBar(downLayout);
loadingProgressBar->setObjectName(QString::fromUtf8("loadingProgressBar")); loadingProgressBar->setObjectName(QString::fromUtf8("loadingProgressBar"));
@@ -460,7 +460,7 @@ public:
updateButtonGroup_2 = new QWidget(centralwidget); updateButtonGroup_2 = new QWidget(centralwidget);
updateButtonGroup_2->setObjectName(QString::fromUtf8("updateButtonGroup_2")); updateButtonGroup_2->setObjectName(QString::fromUtf8("updateButtonGroup_2"));
updateButtonGroup_2->setGeometry(QRect(10, 541, 551, 50)); updateButtonGroup_2->setGeometry(QRect(0, 541, 540, 50));
updateButtonGroup = new QHBoxLayout(updateButtonGroup_2); updateButtonGroup = new QHBoxLayout(updateButtonGroup_2);
updateButtonGroup->setObjectName(QString::fromUtf8("updateButtonGroup")); updateButtonGroup->setObjectName(QString::fromUtf8("updateButtonGroup"));
loadToServerButton = new QPushButton(updateButtonGroup_2); loadToServerButton = new QPushButton(updateButtonGroup_2);
@@ -524,8 +524,8 @@ public:
offlineStartButton->setCheckable(false); offlineStartButton->setCheckable(false);
offlineStartButton->setChecked(false); offlineStartButton->setChecked(false);
MainWindow->setCentralWidget(centralwidget); MainWindow->setCentralWidget(centralwidget);
mainFrame->raise();
downLayout->raise(); downLayout->raise();
mainFrame->raise();
horizontalWidget->raise(); horizontalWidget->raise();
notificationLabel->raise(); notificationLabel->raise();
debugWidget->raise(); debugWidget->raise();