2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2015-2017 MultiMC Contributors
|
2015-08-19 04:40:17 +05:30
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <QFileInfo>
|
2015-09-07 03:05:58 +05:30
|
|
|
#include <QDateTime>
|
2015-08-19 04:40:17 +05:30
|
|
|
|
2015-09-15 03:19:32 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
|
|
|
class MULTIMC_LOGIC_EXPORT World
|
2015-08-19 04:40:17 +05:30
|
|
|
{
|
|
|
|
public:
|
|
|
|
World(const QFileInfo &file);
|
2015-09-07 03:05:58 +05:30
|
|
|
QString folderName() const
|
|
|
|
{
|
|
|
|
return m_folderName;
|
|
|
|
}
|
2015-08-19 04:40:17 +05:30
|
|
|
QString name() const
|
|
|
|
{
|
2015-09-07 03:05:58 +05:30
|
|
|
return m_actualName;
|
|
|
|
}
|
|
|
|
QDateTime lastPlayed() const
|
|
|
|
{
|
|
|
|
return m_lastPlayed;
|
|
|
|
}
|
|
|
|
int64_t seed() const
|
|
|
|
{
|
|
|
|
return m_randomSeed;
|
2015-08-19 04:40:17 +05:30
|
|
|
}
|
|
|
|
bool isValid() const
|
|
|
|
{
|
|
|
|
return is_valid;
|
|
|
|
}
|
2015-09-13 07:51:26 +05:30
|
|
|
bool isOnFS() const
|
|
|
|
{
|
|
|
|
return m_containerFile.isDir();
|
|
|
|
}
|
|
|
|
QFileInfo container() const
|
|
|
|
{
|
|
|
|
return m_containerFile;
|
|
|
|
}
|
2015-09-07 03:05:58 +05:30
|
|
|
// delete all the files of this world
|
2015-08-19 04:40:17 +05:30
|
|
|
bool destroy();
|
2015-08-31 01:03:53 +05:30
|
|
|
// replace this world with a copy of the other
|
2015-08-19 04:40:17 +05:30
|
|
|
bool replace(World &with);
|
2015-08-31 01:03:53 +05:30
|
|
|
// change the world's filesystem path (used by world lists for *MAGIC* purposes)
|
2015-08-19 04:40:17 +05:30
|
|
|
void repath(const QFileInfo &file);
|
|
|
|
|
2015-09-15 03:19:32 +05:30
|
|
|
bool rename(const QString &to);
|
|
|
|
bool install(const QString &to, const QString &name= QString());
|
2015-09-10 03:23:33 +05:30
|
|
|
|
2015-08-31 01:03:53 +05:30
|
|
|
// WEAK compare operator - used for replacing worlds
|
2015-08-19 04:40:17 +05:30
|
|
|
bool operator==(const World &other) const;
|
|
|
|
bool strongCompare(const World &other) const;
|
|
|
|
|
2015-09-10 03:23:33 +05:30
|
|
|
private:
|
|
|
|
void readFromZip(const QFileInfo &file);
|
|
|
|
void readFromFS(const QFileInfo &file);
|
2015-09-15 03:19:32 +05:30
|
|
|
void loadFromLevelDat(QByteArray data);
|
2015-09-10 03:23:33 +05:30
|
|
|
|
2015-08-19 04:40:17 +05:30
|
|
|
protected:
|
|
|
|
|
2015-09-10 03:23:33 +05:30
|
|
|
QFileInfo m_containerFile;
|
2015-09-13 07:51:26 +05:30
|
|
|
QString m_containerOffsetPath;
|
2015-09-07 03:05:58 +05:30
|
|
|
QString m_folderName;
|
|
|
|
QString m_actualName;
|
2015-09-10 03:23:33 +05:30
|
|
|
QDateTime levelDatTime;
|
2015-09-07 03:05:58 +05:30
|
|
|
QDateTime m_lastPlayed;
|
|
|
|
int64_t m_randomSeed = 0;
|
|
|
|
bool is_valid = false;
|
2015-08-19 04:40:17 +05:30
|
|
|
};
|