Advertisement
chen399d

SaveManager庫文本翻譯

Dec 27th, 2024 (edited)
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.96 KB | Source Code | 0 0
  1. local httpService = game:GetService("HttpService");
  2. local SaveManager = {};
  3. do
  4.     SaveManager.Folder = "FluentSettings";
  5.     SaveManager.Ignore = {};
  6.     SaveManager.Parser = {Toggle={Save=function(idx, object)
  7.         return {type="Toggle",idx=idx,value=object.Value};
  8.     end,Load=function(idx, data)
  9.         if SaveManager.Options[idx] then
  10.             SaveManager.Options[idx]:SetValue(data.value);
  11.         end
  12.     end},Slider={Save=function(idx, object)
  13.         return {type="Slider",idx=idx,value=tostring(object.Value)};
  14.     end,Load=function(idx, data)
  15.         if SaveManager.Options[idx] then
  16.             SaveManager.Options[idx]:SetValue(data.value);
  17.         end
  18.     end},Dropdown={Save=function(idx, object)
  19.         return {type="Dropdown",idx=idx,value=object.Value,mutli=object.Multi};
  20.     end,Load=function(idx, data)
  21.         if SaveManager.Options[idx] then
  22.             SaveManager.Options[idx]:SetValue(data.value);
  23.         end
  24.     end},Colorpicker={Save=function(idx, object)
  25.         return {type="Colorpicker",idx=idx,value=object.Value:ToHex(),transparency=object.Transparency};
  26.     end,Load=function(idx, data)
  27.         if SaveManager.Options[idx] then
  28.             SaveManager.Options[idx]:SetValueRGB(Color3.fromHex(data.value), data.transparency);
  29.         end
  30.     end},Keybind={Save=function(idx, object)
  31.         return {type="Keybind",idx=idx,mode=object.Mode,key=object.Value};
  32.     end,Load=function(idx, data)
  33.         if SaveManager.Options[idx] then
  34.             SaveManager.Options[idx]:SetValue(data.key, data.mode);
  35.         end
  36.     end},Input={Save=function(idx, object)
  37.         return {type="Input",idx=idx,text=object.Value};
  38.     end,Load=function(idx, data)
  39.         if (SaveManager.Options[idx] and (type(data.text) == "string")) then
  40.             SaveManager.Options[idx]:SetValue(data.text);
  41.         end
  42.     end}};
  43.     SaveManager.SetIgnoreIndexes = function(self, list)
  44.         for _, key in next, list do
  45.             self.Ignore[key] = true;
  46.         end
  47.     end;
  48.     SaveManager.SetFolder = function(self, folder)
  49.         self.Folder = folder;
  50.         self:BuildFolderTree();
  51.     end;
  52.     SaveManager.Save = function(self, name)
  53.         if not name then
  54.             return false, "no config file is selected";
  55.         end
  56.         local fullPath = self.Folder .. "/settings/" .. name .. ".json";
  57.         local data = {objects={}};
  58.         for idx, option in next, SaveManager.Options do
  59.             if not self.Parser[option.Type] then
  60.                 continue;
  61.             end
  62.             if self.Ignore[idx] then
  63.                 continue;
  64.             end
  65.             table.insert(data.objects, self.Parser[option.Type].Save(idx, option));
  66.         end
  67.         local success, encoded = pcall(httpService.JSONEncode, httpService, data);
  68.         if not success then
  69.             return false, "failed to encode data";
  70.         end
  71.         writefile(fullPath, encoded);
  72.         return true;
  73.     end;
  74.     SaveManager.Load = function(self, name)
  75.         if not name then
  76.             return false, "no config file is selected";
  77.         end
  78.         local file = self.Folder .. "/settings/" .. name .. ".json";
  79.         if not isfile(file) then
  80.             return false, "invalid file";
  81.         end
  82.         local success, decoded = pcall(httpService.JSONDecode, httpService, readfile(file));
  83.         if not success then
  84.             return false, "decode error";
  85.         end
  86.         for _, option in next, decoded.objects do
  87.             if self.Parser[option.type] then
  88.                 task.spawn(function()
  89.                     self.Parser[option.type].Load(option.idx, option);
  90.                 end);
  91.             end
  92.         end
  93.         return true;
  94.     end;
  95.     SaveManager.IgnoreThemeSettings = function(self)
  96.         self:SetIgnoreIndexes({"InterfaceTheme","AcrylicToggle","TransparentToggle","MenuKeybind"});
  97.     end;
  98.     SaveManager.BuildFolderTree = function(self)
  99.         local paths = {self.Folder,(self.Folder .. "/settings")};
  100.         for i = 1, #paths do
  101.             local str = paths[i];
  102.             if not isfolder(str) then
  103.                 makefolder(str);
  104.             end
  105.         end
  106.     end;
  107.     SaveManager.RefreshConfigList = function(self)
  108.         local list = listfiles(self.Folder .. "/settings");
  109.         local out = {};
  110.         for i = 1, #list do
  111.             local file = list[i];
  112.             if (file:sub(-5) == ".json") then
  113.                 local pos = file:find(".json", 1, true);
  114.                 local start = pos;
  115.                 local char = file:sub(pos, pos);
  116.                 while (char ~= "/") and (char ~= "\\") and (char ~= "") do
  117.                     pos = pos - 1;
  118.                     char = file:sub(pos, pos);
  119.                 end
  120.                 if ((char == "/") or (char == "\\")) then
  121.                     local name = file:sub(pos + 1, start - 1);
  122.                     if (name ~= "options") then
  123.                         table.insert(out, name);
  124.                     end
  125.                 end
  126.             end
  127.         end
  128.         return out;
  129.     end;
  130.     SaveManager.SetLibrary = function(self, library)
  131.         self.Library = library;
  132.         self.Options = library.Options;
  133.     end;
  134.     SaveManager.LoadAutoloadConfig = function(self)
  135.         if isfile(self.Folder .. "/settings/autoload.txt") then
  136.             local name = readfile(self.Folder .. "/settings/autoload.txt");
  137.             local success, err = self:Load(name);
  138.             if not success then
  139.                 return self.Library:Notify({Title="介面設置",Content="載入配置",SubContent=("無法載入自動載入配置: " .. err),Duration=7});
  140.             end
  141.             self.Library:Notify({Title="介面設置",Content="載入配置",SubContent=string.format("自動載入配置 %q", name),Duration=7});
  142.         end
  143.     end;
  144.     SaveManager.BuildConfigSection = function(self, tab)
  145.         assert(self.Library, "Must set SaveManager.Library");
  146.         local section = tab:AddSection("配置管理");
  147.         section:AddInput("SaveManager_ConfigName", {Title="配置名稱"});
  148.         section:AddDropdown("SaveManager_ConfigList", {Title="配置列表",Values=self:RefreshConfigList(),AllowNull=true});
  149.         section:AddButton({Title="建立配置",Callback=function()
  150.             local name = SaveManager.Options.SaveManager_ConfigName.Value;
  151.             if (name:gsub(" ", "") == "") then
  152.                 return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent="無效的配置名稱(空白)",Duration=7});
  153.             end
  154.             local success, err = self:Save(name);
  155.             if not success then
  156.                 return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=("儲存配置失敗: " .. err),Duration=7});
  157.             end
  158.             self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("建立配置 %q", name),Duration=7});
  159.             SaveManager.Options.SaveManager_ConfigList:SetValues(self:RefreshConfigList());
  160.             SaveManager.Options.SaveManager_ConfigList:SetValue(nil);
  161.         end});
  162.         section:AddButton({Title="載入配置",Callback=function()
  163.             local name = SaveManager.Options.SaveManager_ConfigList.Value;
  164.             local success, err = self:Load(name);
  165.             if not success then
  166.                 return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=("載入配置失敗: " .. err),Duration=7});
  167.             end
  168.             self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("載入配置 %q", name),Duration=7});
  169.         end});
  170.         section:AddButton({Title="覆蓋配置",Callback=function()
  171.             local name = SaveManager.Options.SaveManager_ConfigList.Value;
  172.             local success, err = self:Save(name);
  173.             if not success then
  174.                 return self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=("覆蓋配置失敗: " .. err),Duration=7});
  175.             end
  176.             self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("覆蓋配置 %q", name),Duration=7});
  177.         end});
  178.         section:AddButton({Title="重新整理配置列表",Callback=function()
  179.             SaveManager.Options.SaveManager_ConfigList:SetValues(self:RefreshConfigList());
  180.             SaveManager.Options.SaveManager_ConfigList:SetValue(nil);
  181.         end});
  182.         local AutoloadButton;
  183.         AutoloadButton = section:AddButton({Title="設置自動配置",Description="目前自動載入配置: 無",Callback=function()
  184.             local name = SaveManager.Options.SaveManager_ConfigList.Value;
  185.             writefile(self.Folder .. "/settings/autoload.txt", name);
  186.             AutoloadButton:SetDesc("目前自動載入配置: " .. name);
  187.             self.Library:Notify({Title="介面設置",Content="配置載入",SubContent=string.format("設置 %q 自動載入", name),Duration=7});
  188.         end});
  189.         if isfile(self.Folder .. "/settings/autoload.txt") then
  190.             local name = readfile(self.Folder .. "/settings/autoload.txt");
  191.             AutoloadButton:SetDesc("目前自動載入配置: " .. name);
  192.         end
  193.         SaveManager:SetIgnoreIndexes({"SaveManager_ConfigList","SaveManager_ConfigName"});
  194.     end;
  195.     SaveManager:BuildFolderTree();
  196. end
  197. return SaveManager;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement