Read mod files to get versions... and stuff.
This commit is contained in:
parent
a266e5d0cc
commit
fcd05ca2f6
@ -16,7 +16,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
#include <QIODevice>
|
||||||
|
|
||||||
#include "libsettings_config.h"
|
#include "libsettings_config.h"
|
||||||
|
|
||||||
@ -26,6 +26,7 @@ class LIBSETTINGS_EXPORT INIFile : public QMap<QString, QVariant>
|
|||||||
public:
|
public:
|
||||||
explicit INIFile();
|
explicit INIFile();
|
||||||
|
|
||||||
|
bool loadFile(QByteArray file);
|
||||||
bool loadFile(QString fileName);
|
bool loadFile(QString fileName);
|
||||||
bool saveFile(QString fileName);
|
bool saveFile(QString fileName);
|
||||||
|
|
||||||
|
@ -60,10 +60,16 @@ bool INIFile::saveFile(QString fileName)
|
|||||||
|
|
||||||
bool INIFile::loadFile(QString fileName)
|
bool INIFile::loadFile(QString fileName)
|
||||||
{
|
{
|
||||||
// TODO Handle errors.
|
|
||||||
QFile file(fileName);
|
QFile file(fileName);
|
||||||
file.open(QIODevice::ReadOnly);
|
if(!file.open(QIODevice::ReadOnly))
|
||||||
QTextStream in(&file);
|
return false;
|
||||||
|
bool success = loadFile(file.readAll());
|
||||||
|
file.close();
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
bool INIFile::loadFile( QByteArray file )
|
||||||
|
{
|
||||||
|
QTextStream in(file);
|
||||||
in.setCodec("UTF-8");
|
in.setCodec("UTF-8");
|
||||||
|
|
||||||
QStringList lines = in.readAll().split('\n');
|
QStringList lines = in.readAll().split('\n');
|
||||||
|
230
logic/Mod.cpp
230
logic/Mod.cpp
@ -14,9 +14,20 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
//
|
//
|
||||||
|
|
||||||
|
#include <QDir>
|
||||||
|
#include <QString>
|
||||||
|
#include <QJsonDocument>
|
||||||
|
#include <QJsonObject>
|
||||||
|
#include <QJsonArray>
|
||||||
|
#include <QJsonValue>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <quazip.h>
|
||||||
|
#include <quazipfile.h>
|
||||||
|
|
||||||
#include "Mod.h"
|
#include "Mod.h"
|
||||||
#include <pathutils.h>
|
#include <pathutils.h>
|
||||||
#include <QDir>
|
#include <inifile.h>
|
||||||
|
|
||||||
|
|
||||||
Mod::Mod( const QFileInfo& file )
|
Mod::Mod( const QFileInfo& file )
|
||||||
{
|
{
|
||||||
@ -40,164 +51,117 @@ void Mod::repath ( const QFileInfo& file )
|
|||||||
else
|
else
|
||||||
m_type = MOD_SINGLEFILE;
|
m_type = MOD_SINGLEFILE;
|
||||||
}
|
}
|
||||||
|
if(m_type == MOD_ZIPFILE)
|
||||||
|
{
|
||||||
|
QuaZip zip(m_file.filePath());
|
||||||
|
if(!zip.open(QuaZip::mdUnzip))
|
||||||
|
return;
|
||||||
|
|
||||||
/*
|
QuaZipFile file(&zip);
|
||||||
switch (modType)
|
for(bool more=zip.goToFirstFile(); more; more=zip.goToNextFile())
|
||||||
{
|
{
|
||||||
case MOD_ZIPFILE:
|
QString name = zip.getCurrentFileName();
|
||||||
|
if(name == "mcmod.info")
|
||||||
{
|
{
|
||||||
wxFFileInputStream fileIn(modFile.GetFullPath());
|
if(!file.open(QIODevice::ReadOnly))
|
||||||
wxZipInputStream zipIn(fileIn);
|
|
||||||
|
|
||||||
std::auto_ptr<wxZipEntry> entry;
|
|
||||||
|
|
||||||
bool is_forge = false;
|
|
||||||
while(true)
|
|
||||||
{
|
{
|
||||||
entry.reset(zipIn.GetNextEntry());
|
zip.close();
|
||||||
if (entry.get() == nullptr)
|
return;
|
||||||
break;
|
}
|
||||||
if(entry->GetInternalName().EndsWith("mcmod.info"))
|
ReadMCModInfo(file.readAll());
|
||||||
break;
|
file.close();
|
||||||
if(entry->GetInternalName().EndsWith("forgeversion.properties"))
|
zip.close();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else if(name == "forgeversion.properties")
|
||||||
{
|
{
|
||||||
is_forge = true;
|
if(!file.open(QIODevice::ReadOnly))
|
||||||
break;
|
{
|
||||||
|
zip.close();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ReadForgeInfo(file.readAll());
|
||||||
|
file.close();
|
||||||
|
zip.close();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
zip.close();
|
||||||
if (entry.get() != nullptr)
|
}
|
||||||
|
else if(m_type == MOD_FOLDER)
|
||||||
{
|
{
|
||||||
// Read the info file into text
|
QFileInfo mcmod_info(PathCombine(m_file.filePath(), "mcmod.info"));
|
||||||
wxString infoFileData;
|
if (mcmod_info.isFile())
|
||||||
wxStringOutputStream stringOut(&infoFileData);
|
|
||||||
zipIn.Read(stringOut);
|
|
||||||
if(!is_forge)
|
|
||||||
ReadModInfoData(infoFileData);
|
|
||||||
else
|
|
||||||
ReadForgeInfoData(infoFileData);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case MOD_FOLDER:
|
|
||||||
{
|
{
|
||||||
wxString infoFile = Path::Combine(modFile, "mcmod.info");
|
QFile mcmod(mcmod_info.filePath());
|
||||||
if (!wxFileExists(infoFile))
|
if(!mcmod.open(QIODevice::ReadOnly))
|
||||||
{
|
return;
|
||||||
infoFile = wxEmptyString;
|
auto data = mcmod.readAll();
|
||||||
|
if(data.isEmpty() || data.isNull())
|
||||||
wxDir modDir(modFile.GetFullPath());
|
return;
|
||||||
|
ReadMCModInfo(data);
|
||||||
if (!modDir.IsOpened())
|
|
||||||
{
|
|
||||||
wxLogError(_("Can't fine mod info file. Failed to open mod folder."));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
wxString currentFile;
|
|
||||||
if (modDir.GetFirst(¤tFile))
|
|
||||||
{
|
|
||||||
do
|
|
||||||
{
|
|
||||||
if (currentFile.EndsWith("mcmod.info"))
|
|
||||||
{
|
|
||||||
infoFile = Path::Combine(modFile.GetFullPath(), currentFile);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} while (modDir.GetNext(¤tFile));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (infoFile != wxEmptyString && wxFileExists(infoFile))
|
|
||||||
{
|
|
||||||
wxString infoStr;
|
|
||||||
wxFFileInputStream fileIn(infoFile);
|
|
||||||
wxStringOutputStream strOut(&infoStr);
|
|
||||||
fileIn.Read(strOut);
|
|
||||||
ReadModInfoData(infoStr);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NEW format
|
||||||
|
// https://github.com/MinecraftForge/FML/wiki/FML-mod-information-file/6f62b37cea040daf350dc253eae6326dd9c822c3
|
||||||
|
|
||||||
/*
|
// OLD format:
|
||||||
void ReadModInfoData(QString info)
|
// https://github.com/MinecraftForge/FML/wiki/FML-mod-information-file/5bf6a2d05145ec79387acc0d45c958642fb049fc
|
||||||
|
void Mod::ReadMCModInfo(QByteArray contents)
|
||||||
{
|
{
|
||||||
using namespace boost::property_tree;
|
auto getInfoFromArray = [&]( QJsonArray arr ) -> void
|
||||||
|
|
||||||
// Read the data
|
|
||||||
ptree ptRoot;
|
|
||||||
|
|
||||||
std::stringstream stringIn(cStr(info));
|
|
||||||
try
|
|
||||||
{
|
{
|
||||||
read_json(stringIn, ptRoot);
|
if(!arr.at(0).isObject())
|
||||||
|
return;
|
||||||
ptree pt = ptRoot.get_child(ptRoot.count("modlist") == 1 ? "modlist" : "").begin()->second;
|
auto firstObj = arr.at(0).toObject();
|
||||||
|
m_id = firstObj.value("modid").toString();
|
||||||
modID = wxStr(pt.get<std::string>("modid"));
|
m_name = firstObj.value("name").toString();
|
||||||
modName = wxStr(pt.get<std::string>("name"));
|
m_version = firstObj.value("version").toString();
|
||||||
modVersion = wxStr(pt.get<std::string>("version"));
|
return;
|
||||||
|
};
|
||||||
|
QJsonParseError jsonError;
|
||||||
|
QJsonDocument jsonDoc = QJsonDocument::fromJson(contents, &jsonError);
|
||||||
|
// this is the very old format that had just the array
|
||||||
|
if(jsonDoc.isArray())
|
||||||
|
{
|
||||||
|
getInfoFromArray(jsonDoc.array());
|
||||||
}
|
}
|
||||||
catch (json_parser_error e)
|
else if(jsonDoc.isObject())
|
||||||
{
|
{
|
||||||
// Silently fail...
|
auto val = jsonDoc.object().value("modinfoversion");
|
||||||
|
int version = val.toDouble();
|
||||||
|
if(version != 2)
|
||||||
|
{
|
||||||
|
qDebug() << "BAD stuff happened to mod json:";
|
||||||
|
qDebug() << contents;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
catch (ptree_error e)
|
auto arrVal = jsonDoc.object().value("modlist");
|
||||||
|
if(arrVal.isArray())
|
||||||
{
|
{
|
||||||
// Silently fail...
|
getInfoFromArray(arrVal.toArray());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
// FIXME: abstraction violated.
|
void Mod::ReadForgeInfo(QByteArray contents)
|
||||||
/*
|
|
||||||
void Mod::ReadForgeInfoData(QString infoFileData)
|
|
||||||
{
|
{
|
||||||
using namespace boost::property_tree;
|
|
||||||
|
|
||||||
// Read the data
|
// Read the data
|
||||||
ptree ptRoot;
|
m_name = "Minecraft Forge";
|
||||||
modName = "Minecraft Forge";
|
m_id = "Forge";
|
||||||
modID = "Forge";
|
INIFile ini;
|
||||||
std::stringstream stringIn(cStr(infoFileData));
|
if(!ini.loadFile(contents))
|
||||||
try
|
return;
|
||||||
{
|
|
||||||
read_ini(stringIn, ptRoot);
|
QString major = ini.get("forge.major.number","0").toString();
|
||||||
wxString major, minor, revision, build;
|
QString minor = ini.get("forge.minor.number","0").toString();
|
||||||
// BUG: boost property tree is bad. won't let us get a key with dots in it
|
QString revision = ini.get("forge.revision.number","0").toString();
|
||||||
// Likely cause = treating the dots as path separators.
|
QString build = ini.get("forge.build.number","0").toString();
|
||||||
for (auto iter = ptRoot.begin(); iter != ptRoot.end(); iter++)
|
|
||||||
{
|
m_version = major + "." + minor + "." + revision + "." + build;
|
||||||
auto &item = *iter;
|
|
||||||
std::string key = item.first;
|
|
||||||
std::string value = item.second.get_value<std::string>();
|
|
||||||
if(key == "forge.major.number")
|
|
||||||
major = value;
|
|
||||||
if(key == "forge.minor.number")
|
|
||||||
minor = value;
|
|
||||||
if(key == "forge.revision.number")
|
|
||||||
revision = value;
|
|
||||||
if(key == "forge.build.number")
|
|
||||||
build = value;
|
|
||||||
}
|
|
||||||
modVersion.Empty();
|
|
||||||
modVersion << major << "." << minor << "." << revision << "." << build;
|
|
||||||
}
|
|
||||||
catch (json_parser_error e)
|
|
||||||
{
|
|
||||||
std::cerr << e.what();
|
|
||||||
}
|
|
||||||
catch (ptree_error e)
|
|
||||||
{
|
|
||||||
std::cerr << e.what();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
bool Mod::replace ( Mod& with )
|
bool Mod::replace ( Mod& with )
|
||||||
{
|
{
|
||||||
|
@ -56,6 +56,9 @@ public:
|
|||||||
{
|
{
|
||||||
return filename() == other.filename() && id() == other.id() && version() == other.version() && type() == other.type();
|
return filename() == other.filename() && id() == other.id() && version() == other.version() && type() == other.type();
|
||||||
}
|
}
|
||||||
|
private:
|
||||||
|
void ReadMCModInfo(QByteArray contents);
|
||||||
|
void ReadForgeInfo(QByteArray contents);
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
//FIXME: what do do with those? HMM...
|
//FIXME: what do do with those? HMM...
|
||||||
|
Loading…
Reference in New Issue
Block a user