File size: 4,149 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
DefineClass.ModsBackend = {
__parents = { "InitDone" },
source = "",
download_path = "",
screenshots_path = "",
display_name = "",
page_size = 20,
}
function ModsBackend.IsAvailable()
return true
end
---- Auth
--bool ModsBackend:CanAuth()
function ModsBackend:CanAuth()
return false
end
--bool ModsBackend:IsLoggedIn()
function ModsBackend:IsLoggedIn()
return false
end
--bool ModsBackend:AttemptingLogin()
function ModsBackend:AttemptingLogin()
return false
end
---- Create/upload
--bool ModsBackend:CanUpload()
function ModsBackend:CanUpload()
return false
end
--error ModsBackend:CreateMod()
function ModsBackend:CreateMod()
return "not impl"
end
--error ModsBackend:UploadMod()
function ModsBackend:UploadMod()
return "not impl"
end
--error ModsBackend:DeleteMod()
function ModsBackend:DeleteMod()
return "not impl"
end
--error ModsBackend:PublishMod()
function ModsBackend:PublishMod()
return "not impl"
end
---- Download/interact
--bool ModsBackend:CanInstall()
function ModsBackend:CanInstall()
return false
end
--error ModsBackend:Subscribe(backend_id)
function ModsBackend:Subscribe(backend_id)
return "not impl"
end
--error ModsBackend:Unsubscribe(backend_id)
function ModsBackend:Unsubscribe(backend_id)
return "not impl"
end
--error ModsBackend:Install(backend_id)
function ModsBackend:Install(backend_id)
return "not impl"
end
--error ModsBackend:Uninstall(backend_id)
function ModsBackend:Uninstall(backend_id)
return "not impl"
end
--ModsBackend:OnUninstalled(backend_id)
function ModsBackend:OnUninstalled(backend_id)
end
--error, array ModsBackend:GetInstalled()
function ModsBackend:GetInstalled()
return false, {}
end
--error ModsBackend:OnSetEnabled(string mod_def_id, bool enabled)
function ModsBackend:OnSetEnabled(mod_def_id, enabled)
return "not impl"
end
--bool ModsBackend:CanFavorite()
function ModsBackend:CanFavorite()
return false
end
--error ModsBackend:SetFavorite(backend_id, bool favorite)
function ModsBackend:SetFavorite(backend_id, favorite)
return "not impl"
end
--error, bool ModsBackend:IsFavorited(backend_id)
function ModsBackend:IsFavorited(backend_id)
return false, false
end
--bool ModsBackend:CanFlag()
function ModsBackend:CanFlag()
return false
end
--error ModsBackend:Flag(backend_id, string reason, string description)
function ModsBackend:Flag(backend_id, reason, description)
return "not impl"
end
--array ModsBackend:GetFlagReasons()
function ModsBackend:GetFlagReasons()
return {}
end
--bool ModsBackend:CanRate()
function ModsBackend:CanRate()
return false
end
--error ModsBackend:Rate(backend_id, rating)
function ModsBackend:Rate(backend_id, rating)
return "not impl"
end
--error, int ModsBackend:GetRating(backend_id)
function ModsBackend:GetRating(backend_id)
return false, 0
end
---- Query
--bool ModsBackend:CompareBackendID(ModDef mod_def, backend_id)
function ModsBackend:CompareBackendID(mod_def, backend_id)
end
--error, ModUIEntry ModsBackend:GetDetails(backend_id)
function ModsBackend:GetDetails(backend_id)
return "not impl"
end
--error, int ModsBackend:GetModsCount(ModsSearchQuery query)
function ModsBackend:GetModsCount(query)
return false, 0
end
--error, array ModsBackend:GetMods(ModsSearchQuery query)
function ModsBackend:GetMods(query)
return false, {}
end
-----
DefineClass.ModsSearchQuery = {
__parents = { "InitDone" },
Query = false, --string
Tags = false, --array of strings - required tags (all)
SortBy = false, --string
OrderBy = false, --string
Platform = false, --string
Author = false, --string
Page = false, --int
PageSize = false, --int
Favorites = false, --bool
}
-----
if FirstLoad then
g_ModsBackendObj = false
end
function GetModsBackendClass()
for classname, classdef in pairs(ClassDescendants("ModsBackend")) do
if classdef.IsAvailable() then
return classdef
end
end
end
function ModsBackendObjectCreateAndLoad()
if not g_ModsBackendObj then
local classdef = GetModsBackendClass()
if not classdef then return end
g_ModsBackendObj = classdef:new()
end
return g_ModsBackendObj
end
function IsModsBackendLoaded()
return not not g_ModsBackendObj
end
|