Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local httpService = game:GetService("HttpService");
- local SaveManager = {};
- do
- SaveManager.Folder = "FluentSettings";
- SaveManager.Ignore = {};
- SaveManager.Parser = {Toggle={Save=function(idx, object)
- return {type="Toggle",idx=idx,value=object.Value};
- end,Load=function(idx, data)
- if SaveManager.Options[idx] then
- SaveManager.Options[idx]:SetValue(data.value);
- end
- end},Slider={Save=function(idx, object)
- return {type="Slider",idx=idx,value=tostring(object.Value)};
- end,Load=function(idx, data)
- if SaveManager.Options[idx] then
- SaveManager.Options[idx]:SetValue(data.value);
- end
- end},Dropdown={Save=function(idx, object)
- return {type="Dropdown",idx=idx,value=object.Value,mutli=object.Multi};
- end,Load=function(idx, data)
- if SaveManager.Options[idx] then
- SaveManager.Options[idx]:SetValue(data.value);
- end
- end},Colorpicker={Save=function(idx, object)
- return {type="Colorpicker",idx=idx,value=object.Value:ToHex(),transparency=object.Transparency};
- end,Load=function(idx, data)
- if SaveManager.Options[idx] then
- SaveManager.Options[idx]:SetValueRGB(Color3.fromHex(data.value), data.transparency);
- end
- end},Keybind={Save=function(idx, object)
- return {type="Keybind",idx=idx,mode=object.Mode,key=object.Value};
- end,Load=function(idx, data)
- if SaveManager.Options[idx] then
- SaveManager.Options[idx]:SetValue(data.key, data.mode);
- end
- end},Input={Save=function(idx, object)
- return {type="Input",idx=idx,text=object.Value};
- end,Load=function(idx, data)
- if (SaveManager.Options[idx] and (type(data.text) == "string")) then
- SaveManager.Options[idx]:SetValue(data.text);
- end
- end}};
- SaveManager.SetIgnoreIndexes = function(self, list)
- for _, key in next, list do
- self.Ignore[key] = true;
- end
- end;
- SaveManager.SetFolder = function(self, folder)
- self.Folder = folder;
- self:BuildFolderTree();
- end;
- SaveManager.Save = function(self, name)
- if not name then
- return false, "no config file is selected";
- end
- local fullPath = self.Folder .. "/settings/" .. name .. ".json";
- local data = {objects={}};
- for idx, option in next, SaveManager.Options do
- if not self.Parser[option.Type] then
- continue;
- end
- if self.Ignore[idx] then
- continue;
- end
- table.insert(data.objects, self.Parser[option.Type].Save(idx, option));
- end
- local success, encoded = pcall(httpService.JSONEncode, httpService, data);
- if not success then
- return false, "failed to encode data";
- end
- writefile(fullPath, encoded);
- return true;
- end;
- SaveManager.Load = function(self, name)
- if not name then
- return false, "no config file is selected";
- end
- local file = self.Folder .. "/settings/" .. name .. ".json";
- if not isfile(file) then
- return false, "invalid file";
- end
- local success, decoded = pcall(httpService.JSONDecode, httpService, readfile(file));
- if not success then
- return false, "decode error";
- end
- for _, option in next, decoded.objects do
- if self.Parser[option.type] then
- task.spawn(function()
- self.Parser[option.type].Load(option.idx, option);
- end);
- end
- end
- return true;
- end;
- SaveManager.IgnoreThemeSettings = function(self)
- self:SetIgnoreIndexes({"InterfaceTheme","AcrylicToggle","TransparentToggle","MenuKeybind"});
- end;
- SaveManager.BuildFolderTree = function(self)
- local paths = {self.Folder,(self.Folder .. "/settings")};
- for i = 1, #paths do
- local str = paths[i];
- if not isfolder(str) then
- makefolder(str);
- end
- end
- end;
- SaveManager.RefreshConfigList = function(self)
- local list = listfiles(self.Folder .. "/settings");
- local out = {};
- for i = 1, #list do
- local file = list[i];
- if (file:sub(-5) == ".json") then
- local pos = file:find(".json", 1, true);
- local start = pos;
- local char = file:sub(pos, pos);
- while (char ~= "/") and (char ~= "\\") and (char ~= "") do
- pos = pos - 1;
- char = file:sub(pos, pos);
- end
- if ((char == "/") or (char == "\\")) then
- local name = file:sub(pos + 1, start - 1);
- if (name ~= "options") then
- table.insert(out, name);
- end
- end
- end
- end
- return out;
- end;
- SaveManager.SetLibrary = function(self, library)
- self.Library = library;
- self.Options = library.Options;
- end;
- SaveManager.LoadAutoloadConfig = function(self)
- if isfile(self.Folder .. "/settings/autoload.txt") then
- local name = readfile(self.Folder .. "/settings/autoload.txt");
- local success, err = self:Load(name);
- if not success then
- return self.Library:Notify({Title="介面設置",Content="載入配置",SubContent=("無法載入自動載入配置: " .. err),Duration=7});
- end
- self.Library:Notify({Title="介面設置",Content="載入配置",SubContent=string.format("自動載入配置 %q", name),Duration=7});
- end
- end;
- SaveManager.BuildConfigSection = function(self, tab)
- assert(self.Library, "Must set SaveManager.Library");
- local section = tab:AddSection("配置管理");
- section:AddInput("SaveManager_ConfigName", {Title="配置名稱"});
- section:AddDropdown("SaveManager_ConfigList", {Title="配置列表",Values=self:RefreshConfigList(),AllowNull=true});
- section:AddButton({Title="建立配置",Callback=function()
- local name = SaveManager.Options.SaveManager_ConfigName.Value;
- if (name:gsub(" ", "") == "") then
- return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent="無效的配置名稱(空白)",Duration=7});
- end
- local success, err = self:Save(name);
- if not success then
- return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=("儲存配置失敗: " .. err),Duration=7});
- end
- self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("建立配置 %q", name),Duration=7});
- SaveManager.Options.SaveManager_ConfigList:SetValues(self:RefreshConfigList());
- SaveManager.Options.SaveManager_ConfigList:SetValue(nil);
- end});
- section:AddButton({Title="載入配置",Callback=function()
- local name = SaveManager.Options.SaveManager_ConfigList.Value;
- local success, err = self:Load(name);
- if not success then
- return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=("載入配置失敗: " .. err),Duration=7});
- end
- self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("載入配置 %q", name),Duration=7});
- end});
- section:AddButton({Title="覆蓋配置",Callback=function()
- local name = SaveManager.Options.SaveManager_ConfigList.Value;
- local success, err = self:Save(name);
- if not success then
- return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=("覆蓋配置失敗: " .. err),Duration=7});
- end
- self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("覆蓋配置 %q", name),Duration=7});
- end});
- section:AddButton({Title="重新整理配置列表",Callback=function()
- SaveManager.Options.SaveManager_ConfigList:SetValues(self:RefreshConfigList());
- SaveManager.Options.SaveManager_ConfigList:SetValue(nil);
- end});
- local AutoloadButton;
- AutoloadButton = section:AddButton({Title="設置自動配置",Description="目前自動載入配置: 無",Callback=function()
- local name = SaveManager.Options.SaveManager_ConfigList.Value;
- writefile(self.Folder .. "/settings/autoload.txt", name);
- AutoloadButton:SetDesc("目前自動載入配置: " .. name);
- self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("設置 %q 自動載入", name),Duration=7});
- end});
- if isfile(self.Folder .. "/settings/autoload.txt") then
- local name = readfile(self.Folder .. "/settings/autoload.txt");
- AutoloadButton:SetDesc("目前自動載入配置: " .. name);
- end
- SaveManager:SetIgnoreIndexes({"SaveManager_ConfigList","SaveManager_ConfigName"});
- end;
- SaveManager:BuildFolderTree();
- end
- return SaveManager;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement