2022-05-11 04:27:47 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 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
|
2022-04-15 08:54:57 +05:30
|
|
|
|
2016-11-17 07:25:02 +05:30
|
|
|
#include <QDateTime>
|
2022-04-15 08:54:57 +05:30
|
|
|
#include <QFileInfo>
|
2019-08-04 06:57:53 +05:30
|
|
|
#include <QList>
|
|
|
|
|
2022-08-09 10:23:50 +05:30
|
|
|
#include "Resource.h"
|
2019-08-04 06:57:53 +05:30
|
|
|
#include "ModDetails.h"
|
2019-08-03 09:00:46 +05:30
|
|
|
|
2022-08-09 10:23:50 +05:30
|
|
|
class Mod : public Resource
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2022-06-26 22:47:15 +05:30
|
|
|
Q_OBJECT
|
2013-08-14 11:43:41 +05:30
|
|
|
public:
|
2022-06-26 22:47:15 +05:30
|
|
|
using Ptr = shared_qobject_ptr<Mod>;
|
2022-08-12 02:54:26 +05:30
|
|
|
using WeakPtr = QPointer<Mod>;
|
2022-06-26 22:47:15 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
Mod() = default;
|
2018-07-15 18:21:05 +05:30
|
|
|
Mod(const QFileInfo &file);
|
2022-08-10 23:18:34 +05:30
|
|
|
Mod(const QDir& mods_dir, const Metadata::ModStruct& metadata);
|
|
|
|
Mod(QString file_path) : Mod(QFileInfo(file_path)) {}
|
2018-07-15 18:21:05 +05:30
|
|
|
|
2022-04-20 04:49:51 +05:30
|
|
|
auto details() const -> const ModDetails&;
|
2022-08-09 10:23:50 +05:30
|
|
|
auto name() const -> QString override;
|
2022-04-20 04:49:51 +05:30
|
|
|
auto version() const -> QString;
|
|
|
|
auto homeurl() const -> QString;
|
|
|
|
auto description() const -> QString;
|
|
|
|
auto authors() const -> QStringList;
|
2022-04-21 03:15:39 +05:30
|
|
|
auto status() const -> ModStatus;
|
2019-08-03 09:00:46 +05:30
|
|
|
|
2022-06-05 07:41:25 +05:30
|
|
|
auto metadata() -> std::shared_ptr<Metadata::ModStruct>;
|
|
|
|
auto metadata() const -> const std::shared_ptr<Metadata::ModStruct>;
|
2022-04-17 18:00:32 +05:30
|
|
|
|
2022-04-21 03:15:39 +05:30
|
|
|
void setStatus(ModStatus status);
|
2022-08-13 01:36:20 +05:30
|
|
|
void setMetadata(std::shared_ptr<Metadata::ModStruct>&& metadata);
|
|
|
|
void setMetadata(const Metadata::ModStruct& metadata) { setMetadata(std::make_shared<Metadata::ModStruct>(metadata)); }
|
2022-04-21 03:15:39 +05:30
|
|
|
|
2022-08-10 23:12:24 +05:30
|
|
|
[[nodiscard]] auto compare(Resource const& other, SortType type) const -> std::pair<int, bool> override;
|
|
|
|
[[nodiscard]] bool applyFilter(QRegularExpression filter) const override;
|
|
|
|
|
2022-08-09 10:23:50 +05:30
|
|
|
// Delete all the files of this mod
|
2022-06-11 03:57:25 +05:30
|
|
|
auto destroy(QDir& index_dir, bool preserve_metadata = false) -> bool;
|
2019-08-03 09:00:46 +05:30
|
|
|
|
2022-08-13 01:36:20 +05:30
|
|
|
void finishResolvingWithDetails(ModDetails&& details);
|
2019-08-04 06:57:53 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
protected:
|
2022-08-13 01:36:20 +05:30
|
|
|
ModDetails m_local_details;
|
2013-08-14 11:43:41 +05:30
|
|
|
};
|