136 lines
3.6 KiB
Lua
136 lines
3.6 KiB
Lua
--文件是自动生成,请勿手动修改.来自数据文件:Treasure_Recovery
|
|
local L_CompressMaxColumn = 2
|
|
local L_CompressData = {
|
|
152081385,37130,
|
|
--1001,14102_0;14202_1;14302_2,浩然鉴,,6_3000,,
|
|
152089578,37132,
|
|
--1002,60081_9,机缘星魂(手镯),,6_1500,,
|
|
152097771,37132,
|
|
--1003,60085_9,机缘星魂(耳环),,6_1500,,
|
|
1370631590438865,37135,
|
|
--2001,14103_0;14203_1;14303_2,玉渊归藏,2553000,6_4000,,
|
|
1370631590447058,37137,
|
|
--2002,60082_9,造化星魂(手镯),2553000,6_2000,,
|
|
1370631590455251,37137,
|
|
--2003,60086_9,造化星魂(耳环),2553000,6_2000,,
|
|
}
|
|
local L_MainKeyDic = {
|
|
[1001]=1,[1002]=2,[1003]=3,[2001]=4,[2002]=5,[2003]=6,}
|
|
local L_NamesByNum = {
|
|
Id = 1,
|
|
Condition = 3,
|
|
}
|
|
local L_NamesByString = {
|
|
Item = 2,
|
|
Reward = 4,
|
|
}
|
|
local L_ColNameIndexs = {
|
|
Id = 0,
|
|
Item = 1,
|
|
Condition = 2,
|
|
Reward = 3,
|
|
}
|
|
--local L_ColumnUseBitCount = {12,17,23,17,}
|
|
--local L_ColumnList = {1,1,1,2,}
|
|
--local L_ShiftDataList = {0,12,29,0,}
|
|
--local L_AndDataList = {2047,65535,4194303,65535,}
|
|
local L_ColumnShiftAndList = {1,0,2047,1,12,65535,1,29,4194303,2,0,65535,}
|
|
local L_ColNum = 4;
|
|
local L_UseDataK = setmetatable({ },{ __mode = 'k'});
|
|
local L_UseDataV = setmetatable({ },{ __mode = 'v'});
|
|
local L_UseDataRow = setmetatable({ },{ __mode = 'v'});
|
|
local L_IsCache = false;
|
|
local mt = {}
|
|
local function GetData(row, column)
|
|
local startIndex = (column - 1) * 3
|
|
local _compressData = L_CompressData[(row - 1)*L_CompressMaxColumn+L_ColumnShiftAndList[startIndex + 1]]
|
|
local _tempData = _compressData >> L_ColumnShiftAndList[startIndex + 2]
|
|
local _data = _tempData & L_ColumnShiftAndList[startIndex + 3]
|
|
local _andSign = L_ColumnShiftAndList[startIndex + 3] + 1
|
|
local _isMinus = (_andSign & _tempData) == _andSign
|
|
return _isMinus and -_data or _data;
|
|
end
|
|
|
|
mt.__index = function (t,key)
|
|
local _key = L_UseDataK[t];
|
|
local _row = L_MainKeyDic[_key];
|
|
local _column = L_NamesByNum[key];
|
|
if _column ~= nil then
|
|
if L_IsCache then
|
|
local _data = L_UseDataRow[_row * L_ColNum + _column]
|
|
if not _data then
|
|
_data = GetData(_row, _column)
|
|
L_UseDataRow[_row * L_ColNum + _column] = _data
|
|
end
|
|
return _data
|
|
else
|
|
return GetData(_row, _column)
|
|
end
|
|
end
|
|
_column = L_NamesByString[key]
|
|
if _column ~= nil then
|
|
return StringDefines[GetData(_row, _column)]
|
|
end
|
|
if string.find(key, '_') then
|
|
local _newKey = string.gsub(key, '_', '')
|
|
_column = L_NamesByString[_newKey]
|
|
if _column ~= nil then
|
|
return GetData(_row, _column)
|
|
end
|
|
end
|
|
if key ~= '_OnCopyAfter_' then
|
|
return
|
|
end
|
|
end
|
|
|
|
local M = {
|
|
_CompressData_ = L_CompressData,
|
|
_ColumnShiftAndList_ = L_ColumnShiftAndList,
|
|
_CompressMaxColumn_ = L_CompressMaxColumn,
|
|
_ColumnNameIndexs_ = L_ColNameIndexs,
|
|
Count = 6
|
|
}
|
|
|
|
function M:Foreach(func)
|
|
for i=1,M.Count do
|
|
local _key = GetData(i, 1)
|
|
func(_key, M[_key])
|
|
end
|
|
end
|
|
|
|
function M:ForeachCanBreak(func)
|
|
for i = 1,M.Count do
|
|
local _key = GetData(i, 1)
|
|
if func(_key, M[_key]) then
|
|
break
|
|
end
|
|
end
|
|
end
|
|
|
|
function M:GetByIndex(index)
|
|
return M[GetData(index, 1)];
|
|
end
|
|
|
|
function M:IsContainKey(key)
|
|
return not(not L_MainKeyDic[key]);
|
|
end
|
|
|
|
function M:SetIsCache(isCh)
|
|
L_IsCache = isCh;
|
|
end
|
|
|
|
setmetatable(M, {__index = function(t, key)
|
|
if not L_MainKeyDic[key] then
|
|
return;
|
|
end
|
|
local _t = L_UseDataV[key];
|
|
if not _t then
|
|
_t = setmetatable({}, mt);
|
|
L_UseDataV[key] = _t;
|
|
L_UseDataK[_t] = key;
|
|
end
|
|
return _t
|
|
end})
|
|
|
|
return M
|