2016-03-31 23:41:53 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
|
|
|
* Copyright (C) 2016 Syping
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2016-04-06 04:22:30 +02:00
|
|
|
#include "StringParser.h"
|
2016-04-14 01:27:29 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include <QApplication>
|
2016-03-31 23:41:53 +02:00
|
|
|
#include <QTextCodec>
|
|
|
|
#include <QByteArray>
|
2016-04-14 01:27:29 +02:00
|
|
|
#include <QFileInfo>
|
2016-03-31 23:41:53 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QList>
|
2016-04-14 01:27:29 +02:00
|
|
|
#include <QDir>
|
2016-03-31 23:41:53 +02:00
|
|
|
|
|
|
|
StringParser::StringParser()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-04-06 04:22:30 +02:00
|
|
|
QString StringParser::parseTitleString(const QByteArray &commitBytes, int maxLength)
|
2016-03-31 23:41:53 +02:00
|
|
|
{
|
2016-03-31 23:46:31 +02:00
|
|
|
Q_UNUSED(maxLength)
|
2016-04-01 02:07:00 +02:00
|
|
|
QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed();
|
|
|
|
retStr.remove(QChar((char)0x00));
|
|
|
|
return retStr;
|
2016-03-31 23:41:53 +02:00
|
|
|
}
|
2016-04-06 04:22:30 +02:00
|
|
|
|
|
|
|
QString StringParser::convertDrawStringForLog(const QString &inputStr)
|
|
|
|
{
|
|
|
|
QString outputStr = inputStr;
|
|
|
|
return outputStr.replace("&","&u;").replace(",","&c;");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString StringParser::convertLogStringForDraw(const QString &inputStr)
|
|
|
|
{
|
|
|
|
QString outputStr = inputStr;
|
|
|
|
return outputStr.replace("&c;",",").replace("&u;","&");
|
|
|
|
}
|
2016-04-14 01:27:29 +02:00
|
|
|
|
|
|
|
QString StringParser::convertBuildedString(const QString &buildedStr)
|
|
|
|
{
|
|
|
|
QString outputStr = buildedStr;
|
2016-04-14 07:00:00 +02:00
|
|
|
QByteArray sharePath = GTA5SYNC_SHARE;
|
|
|
|
outputStr.replace("$SHAREDIR", QString::fromUtf8(sharePath));
|
2016-04-14 01:27:29 +02:00
|
|
|
outputStr.replace("$RUNDIR", QFileInfo(qApp->applicationFilePath()).absoluteDir().absolutePath());
|
2016-04-14 06:54:48 +02:00
|
|
|
outputStr.replace("$SEPARATOR", QDir::separator());
|
2016-04-14 01:27:29 +02:00
|
|
|
return outputStr;
|
|
|
|
}
|