pollymc/backend/LegacyInstance.h

84 lines
2.8 KiB
C
Raw Normal View History

2013-08-03 19:27:33 +05:30
#pragma once
#include "BaseInstance.h"
class LIBMULTIMC_EXPORT LegacyInstance : public BaseInstance
{
Q_OBJECT
public:
explicit LegacyInstance(const QString &rootDir, SettingsObject * settings, QObject *parent = 0);
/// Path to the instance's minecraft.jar
QString mcJar() const;
//! Path to the instance's mcbackup.jar
QString mcBackup() const;
//! Path to the instance's modlist file.
QString modListFile() const;
////// Directories //////
QString minecraftDir() const;
QString instModsDir() const;
QString binDir() const;
QString savesDir() const;
QString mlModsDir() const;
QString coreModsDir() const;
QString resourceDir() const;
/*!
* \brief Checks whether or not the currentVersion of the instance needs to be updated.
* If this returns true, updateCurrentVersion is called. In the
* standard instance, this is determined by checking a timestamp
* stored in the instance config file against the last modified time of Minecraft.jar.
* \return True if updateCurrentVersion() should be called.
*/
bool shouldUpdateCurrentVersion() const;
/*!
* \brief Updates the current version.
* This function should first set the current version timestamp
* (setCurrentVersionTimestamp()) to the current time. Next, if
* keepCurrent is false, this function should check what the
* instance's current version is and call setCurrentVersion() to
* update it. This function will automatically be called when the
* instance is loaded if shouldUpdateCurrentVersion returns true.
* \param keepCurrent If true, only the version timestamp will be updated.
*/
void updateCurrentVersion(bool keepCurrent = false);
/*!
* Gets the last time that the current version was checked.
* This is checked against the last modified time on the jar file to see if
* the current version needs to be checked again.
*/
qint64 lastCurrentVersionUpdate() const;
void setLastCurrentVersionUpdate(qint64 val);
/*!
* Whether or not the instance's minecraft.jar needs to be rebuilt.
* If this is true, when the instance launches, its jar mods will be
* re-added to a fresh minecraft.jar file.
*/
bool shouldRebuild() const;
void setShouldRebuild(bool val);
2013-08-05 06:59:50 +05:30
virtual QString currentVersionId() const;
virtual void setCurrentVersionId(QString val);
2013-08-03 19:27:33 +05:30
//! The version of LWJGL that this instance uses.
QString lwjglVersion() const;
2013-08-05 06:59:50 +05:30
/// st the version of LWJGL libs this instance will use
2013-08-03 19:27:33 +05:30
void setLWJGLVersion(QString val);
2013-08-05 06:59:50 +05:30
virtual QString intendedVersionId() const;
2013-08-04 03:28:39 +05:30
virtual bool setIntendedVersionId ( QString version );
2013-08-03 19:27:33 +05:30
2013-08-05 06:59:50 +05:30
virtual bool shouldUpdate() const;
virtual void setShouldUpdate(bool val);
2013-08-04 18:16:33 +05:30
virtual OneSixUpdate* doUpdate();
2013-08-03 19:27:33 +05:30
virtual MinecraftProcess* prepareForLaunch( QString user, QString session );
2013-08-05 06:59:50 +05:30
virtual void cleanupAfterRun();
2013-08-03 19:27:33 +05:30
};