2022-10-23 00:20:32 +05:30
|
|
|
//
|
|
|
|
// Created by marcelohdez on 10/22/22.
|
|
|
|
//
|
|
|
|
|
2022-10-29 10:25:33 +05:30
|
|
|
#pragma once
|
2022-10-23 00:20:32 +05:30
|
|
|
|
2022-10-26 09:50:36 +05:30
|
|
|
#include <QStringList>
|
|
|
|
|
2022-10-23 00:20:32 +05:30
|
|
|
struct InstanceCopyPrefs {
|
2022-10-29 10:25:33 +05:30
|
|
|
public:
|
|
|
|
[[nodiscard]] bool allTrue() const;
|
|
|
|
[[nodiscard]] QString getSelectedFiltersAsRegex() const;
|
|
|
|
// Getters
|
|
|
|
[[nodiscard]] bool isCopySavesEnabled() const;
|
|
|
|
[[nodiscard]] bool isKeepPlaytimeEnabled() const;
|
|
|
|
[[nodiscard]] bool isCopyGameOptionsEnabled() const;
|
|
|
|
[[nodiscard]] bool isCopyResourcePacksEnabled() const;
|
|
|
|
[[nodiscard]] bool isCopyShaderPacksEnabled() const;
|
|
|
|
[[nodiscard]] bool isCopyServersEnabled() const;
|
|
|
|
[[nodiscard]] bool isCopyModsEnabled() const;
|
2022-10-30 07:57:31 +05:30
|
|
|
[[nodiscard]] bool isCopyScreenshotsEnabled() const;
|
2022-10-29 10:25:33 +05:30
|
|
|
// Setters
|
|
|
|
void enableCopySaves(bool b);
|
|
|
|
void enableKeepPlaytime(bool b);
|
|
|
|
void enableCopyGameOptions(bool b);
|
|
|
|
void enableCopyResourcePacks(bool b);
|
|
|
|
void enableCopyShaderPacks(bool b);
|
|
|
|
void enableCopyServers(bool b);
|
|
|
|
void enableCopyMods(bool b);
|
2022-10-30 07:57:31 +05:30
|
|
|
void enableCopyScreenshots(bool b);
|
2022-10-29 10:25:33 +05:30
|
|
|
|
|
|
|
protected: // data
|
2022-10-23 09:55:38 +05:30
|
|
|
bool copySaves = true;
|
|
|
|
bool keepPlaytime = true;
|
|
|
|
bool copyGameOptions = true;
|
|
|
|
bool copyResourcePacks = true;
|
|
|
|
bool copyShaderPacks = true;
|
|
|
|
bool copyServers = true;
|
|
|
|
bool copyMods = true;
|
2022-10-30 07:57:31 +05:30
|
|
|
bool copyScreenshots = true;
|
2022-10-23 00:20:32 +05:30
|
|
|
};
|