2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2015-2021 MultiMC Contributors
|
2015-08-19 00:10:17 +01:00
|
|
|
*
|
|
|
|
* 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
|
2015-09-06 22:35:58 +01:00
|
|
|
#include <QDateTime>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QFileInfo>
|
2022-07-20 13:21:44 +01:00
|
|
|
#include <optional>
|
2015-08-19 00:10:17 +01:00
|
|
|
|
2021-07-25 18:11:59 +01:00
|
|
|
struct GameType {
|
2021-02-06 14:58:03 +00:00
|
|
|
GameType() = default;
|
2023-08-02 17:35:35 +01:00
|
|
|
GameType(std::optional<int> original);
|
2021-02-06 14:58:03 +00:00
|
|
|
|
|
|
|
QString toTranslatedString() const;
|
|
|
|
QString toLogString() const;
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
enum { Unknown = -1, Survival, Creative, Adventure, Spectator } type = Unknown;
|
2022-07-20 13:21:44 +01:00
|
|
|
std::optional<int> original;
|
2018-12-11 22:53:14 +00:00
|
|
|
};
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class World {
|
|
|
|
public:
|
|
|
|
World(const QFileInfo& file);
|
|
|
|
QString folderName() const { return m_folderName; }
|
|
|
|
QString name() const { return m_actualName; }
|
|
|
|
QString iconFile() const { return m_iconFile; }
|
|
|
|
int64_t bytes() const { return m_size; }
|
|
|
|
QDateTime lastPlayed() const { return m_lastPlayed; }
|
|
|
|
GameType gameType() const { return m_gameType; }
|
|
|
|
int64_t seed() const { return m_randomSeed; }
|
|
|
|
bool isValid() const { return is_valid; }
|
|
|
|
bool isOnFS() const { return m_containerFile.isDir(); }
|
|
|
|
QFileInfo container() const { return m_containerFile; }
|
2015-09-06 22:35:58 +01:00
|
|
|
// delete all the files of this world
|
2015-08-19 00:10:17 +01:00
|
|
|
bool destroy();
|
2015-08-30 20:33:53 +01:00
|
|
|
// replace this world with a copy of the other
|
2023-08-02 17:35:35 +01:00
|
|
|
bool replace(World& with);
|
2015-08-30 20:33:53 +01:00
|
|
|
// change the world's filesystem path (used by world lists for *MAGIC* purposes)
|
2023-08-02 17:35:35 +01:00
|
|
|
void repath(const QFileInfo& file);
|
2020-08-22 00:34:55 +01:00
|
|
|
// remove the icon file, if any
|
|
|
|
bool resetIcon();
|
2015-08-19 00:10:17 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
bool rename(const QString& to);
|
|
|
|
bool install(const QString& to, const QString& name = QString());
|
2015-09-09 22:53:33 +01:00
|
|
|
|
2015-08-30 20:33:53 +01:00
|
|
|
// WEAK compare operator - used for replacing worlds
|
2023-08-02 17:35:35 +01:00
|
|
|
bool operator==(const World& other) const;
|
2015-08-19 00:10:17 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
[[nodiscard]] auto isSymLink() const -> bool { return m_containerFile.isSymLink(); }
|
2023-02-12 09:44:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Take a instance path, checks if the file pointed to by the resource is a symlink or under a symlink in that instance
|
2023-08-02 17:35:35 +01:00
|
|
|
*
|
2023-02-12 09:44:39 +00:00
|
|
|
* @param instPath path to an instance directory
|
2023-08-02 17:35:35 +01:00
|
|
|
* @return true
|
|
|
|
* @return false
|
2023-02-12 09:44:39 +00:00
|
|
|
*/
|
|
|
|
[[nodiscard]] bool isSymLinkUnder(const QString& instPath) const;
|
|
|
|
|
|
|
|
[[nodiscard]] bool isMoreThanOneHardLink() const;
|
|
|
|
|
|
|
|
QString canonicalFilePath() const { return m_containerFile.canonicalFilePath(); }
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
private:
|
|
|
|
void readFromZip(const QFileInfo& file);
|
|
|
|
void readFromFS(const QFileInfo& file);
|
2015-09-14 22:49:32 +01:00
|
|
|
void loadFromLevelDat(QByteArray data);
|
2015-09-09 22:53:33 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
protected:
|
2015-09-09 22:53:33 +01:00
|
|
|
QFileInfo m_containerFile;
|
2015-09-13 03:21:26 +01:00
|
|
|
QString m_containerOffsetPath;
|
2015-09-06 22:35:58 +01:00
|
|
|
QString m_folderName;
|
|
|
|
QString m_actualName;
|
2020-08-22 00:34:55 +01:00
|
|
|
QString m_iconFile;
|
2015-09-09 22:53:33 +01:00
|
|
|
QDateTime levelDatTime;
|
2015-09-06 22:35:58 +01:00
|
|
|
QDateTime m_lastPlayed;
|
2022-03-31 17:45:17 +01:00
|
|
|
int64_t m_size;
|
2015-09-06 22:35:58 +01:00
|
|
|
int64_t m_randomSeed = 0;
|
2021-02-06 14:58:03 +00:00
|
|
|
GameType m_gameType;
|
2015-09-06 22:35:58 +01:00
|
|
|
bool is_valid = false;
|
2015-08-19 00:10:17 +01:00
|
|
|
};
|