From 3c487c5cd69c53d6fea948643c0a76df03516605 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Apr 2022 21:23:39 +0200 Subject: Moved Stars45 to StarsEx --- Stars45/ModConfig.h | 74 ----------------------------------------------------- 1 file changed, 74 deletions(-) delete mode 100644 Stars45/ModConfig.h (limited to 'Stars45/ModConfig.h') diff --git a/Stars45/ModConfig.h b/Stars45/ModConfig.h deleted file mode 100644 index 5b57589..0000000 --- a/Stars45/ModConfig.h +++ /dev/null @@ -1,74 +0,0 @@ -/* Starshatter: The Open Source Project - Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors - Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors - Copyright (c) 1997-2006, Destroyer Studios LLC. - - AUTHOR: John DiCamillo - - - OVERVIEW - ======== - Mod file deployment configuration and manager -*/ - - -#ifndef ModConfig_h -#define ModConfig_h - -#include "Types.h" -#include "Bitmap.h" -#include "Text.h" -#include "List.h" - -// +-------------------------------------------------------------------+ - -class ModConfig; -class ModInfo; -class ModCampaign; - -// +-------------------------------------------------------------------+ - -class ModConfig -{ -public: - static const char* TYPENAME() { return "ModConfig"; } - - ModConfig(); - ~ModConfig(); - - int operator == (const ModConfig& cfg) const { return this == &cfg; } - - static void Initialize(); - static void Close(); - static ModConfig* GetInstance(); - - void Load(); - void Save(); - void FindMods(); - - bool IsDeployed(const char* name); - void Deploy(); - void Undeploy(); - void Redeploy(); - - // these methods change the configuration only - // you must Redeploy() to have them take effect: - - void EnableMod(const char* name); - void DisableMod(const char* name); - void IncreaseModPriority(int mod_index); - void DecreaseModPriority(int mod_index); - - List& EnabledMods() { return enabled; } - List& DisabledMods() { return disabled; } - List& GetModInfoList() { return mods; } - - ModInfo* GetModInfo(const char* filename); - -private: - List enabled; - List disabled; - List mods; -}; - -#endif // ModConfig_h \ No newline at end of file -- cgit v1.1