2023-03-13 11:51:46 +08:00
|
|
|
---Set or Get metatable which will find module in folder
|
|
|
|
---@param folder_name string
|
2023-03-14 18:17:07 +08:00
|
|
|
---@param origin table? table to be set metatable
|
2023-03-13 11:51:46 +08:00
|
|
|
---@return table
|
|
|
|
local function metatable(folder_name, origin)
|
|
|
|
return setmetatable(origin or {}, {
|
2023-03-12 11:23:29 +08:00
|
|
|
__index = function(tbl, key)
|
2023-03-14 18:17:07 +08:00
|
|
|
local result = require(('Trans.%s.%s'):format(folder_name, key))
|
2023-03-12 11:23:29 +08:00
|
|
|
tbl[key] = result
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2023-03-13 19:50:28 +08:00
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---@class string
|
|
|
|
---@field width function @Get string display width
|
|
|
|
---@field play function @Use tts to play string
|
2023-03-11 00:24:48 +08:00
|
|
|
|
2023-03-12 11:23:29 +08:00
|
|
|
|
2023-03-14 18:17:07 +08:00
|
|
|
---@class Trans
|
|
|
|
---@field style table @Style module
|
|
|
|
---@field cache table<string, TransData> @Cache for translated data object
|
|
|
|
local M = metatable('core', {
|
|
|
|
style = metatable("style"),
|
|
|
|
cache = {},
|
|
|
|
})
|
|
|
|
|
|
|
|
M.metatable = metatable
|
2023-03-13 19:50:28 +08:00
|
|
|
|
2022-12-17 16:07:27 +08:00
|
|
|
return M
|