pollymc/logic/Mod.h

131 lines
2.6 KiB
C
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 MultiMC Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2013-08-14 11:43:41 +05:30
#pragma once
#include <QFileInfo>
class Mod
{
public:
enum ModType
{
MOD_UNKNOWN, //!< Indicates an unspecified mod type.
MOD_ZIPFILE, //!< The mod is a zip file containing the mod's class files.
2013-08-14 11:43:41 +05:30
MOD_SINGLEFILE, //!< The mod is a single file (not a zip file).
MOD_FOLDER, //!< The mod is in a folder on the filesystem.
2013-12-29 06:58:24 +05:30
MOD_LITEMOD, //!< The mod is a litemod
2013-08-14 11:43:41 +05:30
};
Mod(const QFileInfo &file);
QFileInfo filename() const
{
return m_file;
}
QString mmc_id() const
{
return m_mmc_id;
}
QString mod_id() const
{
return m_mod_id;
}
ModType type() const
{
return m_type;
}
QString mcversion() const
{
return m_mcversion;
}
;
bool valid()
{
return m_type != MOD_UNKNOWN;
}
QString name() const
{
return m_name;
}
2013-08-14 11:43:41 +05:30
QString version() const;
QString homeurl() const
{
return m_homeurl;
}
QString description() const
{
return m_description;
}
QString authors() const
{
return m_authors;
}
QString credits() const
{
return m_credits;
}
bool enabled() const
{
return m_enabled;
}
bool enable(bool value);
2013-08-14 11:43:41 +05:30
// delete all the files of this mod
bool destroy();
// replace this mod with a copy of the other
bool replace(Mod &with);
2013-08-14 11:43:41 +05:30
// change the mod's filesystem path (used by mod lists for *MAGIC* purposes)
void repath(const QFileInfo &file);
2013-08-19 00:22:17 +05:30
// WEAK compare operator - used for replacing mods
bool operator==(const Mod &other) const;
bool strongCompare(const Mod &other) const;
private:
void ReadMCModInfo(QByteArray contents);
void ReadForgeInfo(QByteArray contents);
2013-12-29 06:58:24 +05:30
void ReadLiteModInfo(QByteArray contents);
2013-08-14 11:43:41 +05:30
protected:
// FIXME: what do do with those? HMM...
2013-08-14 11:43:41 +05:30
/*
void ReadModInfoData(QString info);
void ReadForgeInfoData(QString infoFileData);
*/
QFileInfo m_file;
QString m_mmc_id;
QString m_mod_id;
bool m_enabled = true;
2013-08-14 11:43:41 +05:30
QString m_name;
QString m_version;
QString m_mcversion;
QString m_homeurl;
2014-05-08 22:30:48 +05:30
QString m_updateurl;
QString m_description;
QString m_authors;
QString m_credits;
2013-08-14 11:43:41 +05:30
ModType m_type;
};