toolfunc文件拆分
This commit is contained in:
42
Zframework/copyTable.lua
Normal file
42
Zframework/copyTable.lua
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
function copyList(org)
|
||||||
|
local L={}
|
||||||
|
for i=1,#org do
|
||||||
|
if type(org[i])~="table"then
|
||||||
|
L[i]=org[i]
|
||||||
|
else
|
||||||
|
L[i]=copyList(org[i])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return L
|
||||||
|
end
|
||||||
|
function copyTable(org)
|
||||||
|
local L={}
|
||||||
|
for k,v in next,org do
|
||||||
|
if type(v)~="table"then
|
||||||
|
L[k]=v
|
||||||
|
else
|
||||||
|
L[k]=copyTable(v)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return L
|
||||||
|
end
|
||||||
|
function addToTable(G,base)--For all things in G if same type in base, push to base
|
||||||
|
for k,v in next,G do
|
||||||
|
if type(v)==type(base[k])then
|
||||||
|
if type(v)=="table"then
|
||||||
|
addToTable(v,base[k])
|
||||||
|
else
|
||||||
|
base[k]=v
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
function completeTable(G,base)--For all things in G if no val in base, push to base
|
||||||
|
for k,v in next,G do
|
||||||
|
if base[k]==nil then
|
||||||
|
base[k]=v
|
||||||
|
elseif type(v)=="table"and type(base[k])=="table"then
|
||||||
|
completeTable(v,base[k])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
50
Zframework/dumpTable.lua
Normal file
50
Zframework/dumpTable.lua
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
local find=string.find
|
||||||
|
local tabs={
|
||||||
|
[0]="",
|
||||||
|
"\t",
|
||||||
|
"\t\t",
|
||||||
|
"\t\t\t",
|
||||||
|
"\t\t\t\t",
|
||||||
|
"\t\t\t\t\t",
|
||||||
|
}
|
||||||
|
function dumpTable(L,t)
|
||||||
|
local s
|
||||||
|
if t then
|
||||||
|
s="{\n"
|
||||||
|
else
|
||||||
|
s="return{\n"
|
||||||
|
t=1
|
||||||
|
if type(L)~="table"then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
local count=1
|
||||||
|
for k,v in next,L do
|
||||||
|
local T=type(k)
|
||||||
|
if T=="number"then
|
||||||
|
if k==count then
|
||||||
|
k=""
|
||||||
|
count=count+1
|
||||||
|
else
|
||||||
|
k="["..k.."]="
|
||||||
|
end
|
||||||
|
elseif T=="string"then
|
||||||
|
if find(k,"[^0-9a-zA-Z_]")then
|
||||||
|
k="[\""..k.."\"]="
|
||||||
|
else
|
||||||
|
k=k.."="
|
||||||
|
end
|
||||||
|
elseif T=="boolean"then k="["..k.."]="
|
||||||
|
else error("Error key type!")
|
||||||
|
end
|
||||||
|
T=type(v)
|
||||||
|
if T=="number"then v=tostring(v)
|
||||||
|
elseif T=="string"then v="\""..v.."\""
|
||||||
|
elseif T=="table"then v=dumpTable(v,t+1)
|
||||||
|
elseif T=="boolean"then v=tostring(v)
|
||||||
|
else error("Error data type!")
|
||||||
|
end
|
||||||
|
s=s..tabs[t]..k..v..",\n"
|
||||||
|
end
|
||||||
|
return s..tabs[t-1].."}"
|
||||||
|
end
|
||||||
@@ -3,7 +3,18 @@ COLOR= require"Zframework/color"
|
|||||||
SCN= require"Zframework/scene"
|
SCN= require"Zframework/scene"
|
||||||
LOG= require"Zframework/log"
|
LOG= require"Zframework/log"
|
||||||
|
|
||||||
require"Zframework/toolfunc"
|
require"Zframework/loadLib"
|
||||||
|
require"Zframework/network"
|
||||||
|
require"Zframework/setFont"
|
||||||
|
require"Zframework/mDraw"
|
||||||
|
-- require"Zframework/upperChar"
|
||||||
|
require"Zframework/json"
|
||||||
|
require"Zframework/urlEncode"
|
||||||
|
require"Zframework/wheelScroll"
|
||||||
|
require"Zframework/dumpTable"
|
||||||
|
require"Zframework/copyTable"
|
||||||
|
require"Zframework/splitStr"
|
||||||
|
require"Zframework/toTime"
|
||||||
|
|
||||||
VIB= require"Zframework/vibrate"
|
VIB= require"Zframework/vibrate"
|
||||||
SFX= require"Zframework/sfx"
|
SFX= require"Zframework/sfx"
|
||||||
|
|||||||
355
Zframework/json.lua
Normal file
355
Zframework/json.lua
Normal file
@@ -0,0 +1,355 @@
|
|||||||
|
-- json.lua
|
||||||
|
|
||||||
|
-- Copyright (c) 2020 rxi
|
||||||
|
|
||||||
|
-- Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
-- this software and associated documentation files (the "Software"), to deal in
|
||||||
|
-- the Software without restriction, including without limitation the rights to
|
||||||
|
-- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
-- of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
-- so, subject to the following conditions:
|
||||||
|
|
||||||
|
-- The above copyright notice and this permission notice shall be included in all
|
||||||
|
-- copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
-- SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
local ins,char=table.insert,string.char
|
||||||
|
json = {}
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
-- Encode
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
local encode
|
||||||
|
|
||||||
|
local escape_char_map = {
|
||||||
|
["\\"] = "\\",
|
||||||
|
["\""] = "\"",
|
||||||
|
["\b"] = "b",
|
||||||
|
["\f"] = "f",
|
||||||
|
["\n"] = "n",
|
||||||
|
["\r"] = "r",
|
||||||
|
["\t"] = "t"
|
||||||
|
}
|
||||||
|
|
||||||
|
local escape_char_map_inv = {["/"] = "/"}
|
||||||
|
for k, v in pairs(escape_char_map) do escape_char_map_inv[v] = k end
|
||||||
|
|
||||||
|
local function escape_char(c)
|
||||||
|
return "\\" .. (escape_char_map[c] or string.format("u%04x", c:byte()))
|
||||||
|
end
|
||||||
|
|
||||||
|
local function encode_nil() return "null" end
|
||||||
|
|
||||||
|
local function encode_table(val, stack)
|
||||||
|
local res = {}
|
||||||
|
stack = stack or {}
|
||||||
|
|
||||||
|
-- Circular reference?
|
||||||
|
if stack[val] then error("circular reference") end
|
||||||
|
|
||||||
|
stack[val] = true
|
||||||
|
|
||||||
|
if rawget(val, 1) ~= nil or next(val) == nil then
|
||||||
|
-- Treat as array -- check keys are valid and it is not sparse
|
||||||
|
local n = 0
|
||||||
|
for k in pairs(val) do
|
||||||
|
if type(k) ~= "number" then
|
||||||
|
error("invalid table: mixed or invalid key types")
|
||||||
|
end
|
||||||
|
n = n + 1
|
||||||
|
end
|
||||||
|
if n ~= #val then error("invalid table: sparse array") end
|
||||||
|
-- Encode
|
||||||
|
for _, v in ipairs(val) do ins(res, encode(v, stack)) end
|
||||||
|
stack[val] = nil
|
||||||
|
return "[" .. table.concat(res, ",") .. "]"
|
||||||
|
|
||||||
|
else
|
||||||
|
-- Treat as an object
|
||||||
|
for k, v in pairs(val) do
|
||||||
|
if type(k) ~= "string" then
|
||||||
|
error("invalid table: mixed or invalid key types")
|
||||||
|
end
|
||||||
|
ins(res, encode(k, stack) .. ":" .. encode(v, stack))
|
||||||
|
end
|
||||||
|
stack[val] = nil
|
||||||
|
return "{" .. table.concat(res, ",") .. "}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function encode_string(val)
|
||||||
|
return '"' .. val:gsub('[%z\1-\31\\"]', escape_char) .. '"'
|
||||||
|
end
|
||||||
|
|
||||||
|
local function encode_number(val)
|
||||||
|
-- Check for NaN, -inf and inf
|
||||||
|
if val ~= val or val <= -math.huge or val >= math.huge then
|
||||||
|
error("unexpected number value '" .. tostring(val) .. "'")
|
||||||
|
end
|
||||||
|
return string.format("%.14g", val)
|
||||||
|
end
|
||||||
|
|
||||||
|
local type_func_map = {
|
||||||
|
["nil"] = encode_nil,
|
||||||
|
["table"] = encode_table,
|
||||||
|
["string"] = encode_string,
|
||||||
|
["number"] = encode_number,
|
||||||
|
["boolean"] = tostring
|
||||||
|
}
|
||||||
|
|
||||||
|
encode = function(val, stack)
|
||||||
|
local t = type(val)
|
||||||
|
local f = type_func_map[t]
|
||||||
|
if f then return f(val, stack) end
|
||||||
|
error("unexpected type '" .. t .. "'")
|
||||||
|
end
|
||||||
|
|
||||||
|
function json.encode(val)
|
||||||
|
local a,b=pcall(encode,val)
|
||||||
|
if a then
|
||||||
|
return b
|
||||||
|
else
|
||||||
|
LOG.print(text.jsonError..": "..(b or"uknErr"),"warn")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
-- Decode
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
local parse
|
||||||
|
|
||||||
|
local function create_set(...)
|
||||||
|
local res = {}
|
||||||
|
for i = 1, select("#", ...) do res[select(i, ...)] = true end
|
||||||
|
return res
|
||||||
|
end
|
||||||
|
|
||||||
|
local space_chars = create_set(" ", "\t", "\r", "\n")
|
||||||
|
local delim_chars = create_set(" ", "\t", "\r", "\n", "]", "}", ",")
|
||||||
|
local escape_chars = create_set("\\", "/", '"', "b", "f", "n", "r", "t", "u")
|
||||||
|
local literals = create_set("true", "false", "null")
|
||||||
|
|
||||||
|
local literal_map = {["true"] = true, ["false"] = false, ["null"] = nil}
|
||||||
|
|
||||||
|
local function next_char(str, idx, set, negate)
|
||||||
|
for i = idx, #str do if set[str:sub(i, i)] ~= negate then return i end end
|
||||||
|
return #str + 1
|
||||||
|
end
|
||||||
|
|
||||||
|
local function decode_error(str, idx, msg)
|
||||||
|
local line_count = 1
|
||||||
|
local col_count = 1
|
||||||
|
for i = 1, idx - 1 do
|
||||||
|
col_count = col_count + 1
|
||||||
|
if str:sub(i, i) == "\n" then
|
||||||
|
line_count = line_count + 1
|
||||||
|
col_count = 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
error(string.format("%s at line %d col %d", msg, line_count, col_count))
|
||||||
|
end
|
||||||
|
|
||||||
|
local function codepoint_to_utf8(n)
|
||||||
|
-- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=iws-appendixa
|
||||||
|
local f = bit.rshift
|
||||||
|
if n <= 0x7f then
|
||||||
|
return char(n)
|
||||||
|
elseif n <= 0x7ff then
|
||||||
|
return char(f(n, 6) + 192, n % 64 + 128)
|
||||||
|
elseif n <= 0xffff then
|
||||||
|
return char(f(n, 12) + 224, f(n % 4096, 6) + 128, n % 64 + 128)
|
||||||
|
elseif n <= 0x10ffff then
|
||||||
|
return char(f(n, 18) + 240, f(n % 262144, 12) + 128, f(n % 4096, 6) + 128, n % 64 + 128)
|
||||||
|
end
|
||||||
|
error(string.format("invalid unicode codepoint '%x'", n))
|
||||||
|
end
|
||||||
|
|
||||||
|
local function parse_unicode_escape(s)
|
||||||
|
local n1 = tonumber(s:sub(1, 4), 16)
|
||||||
|
local n2 = tonumber(s:sub(7, 10), 16)
|
||||||
|
-- Surrogate pair?
|
||||||
|
if n2 then
|
||||||
|
return
|
||||||
|
codepoint_to_utf8((n1 - 0xd800) * 0x400 + (n2 - 0xdc00) + 0x10000)
|
||||||
|
else
|
||||||
|
return codepoint_to_utf8(n1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function parse_string(str, i)
|
||||||
|
local res = ""
|
||||||
|
local j = i + 1
|
||||||
|
local k = j
|
||||||
|
|
||||||
|
while j <= #str do
|
||||||
|
local x = str:byte(j)
|
||||||
|
|
||||||
|
if x < 32 then
|
||||||
|
decode_error(str, j, "control character in string")
|
||||||
|
|
||||||
|
elseif x == 92 then -- `\`: Escape
|
||||||
|
res = res .. str:sub(k, j - 1)
|
||||||
|
j = j + 1
|
||||||
|
local c = str:sub(j, j)
|
||||||
|
if c == "u" then
|
||||||
|
local hex = str:match("^[dD][89aAbB]%x%x\\u%x%x%x%x", j + 1) or
|
||||||
|
str:match("^%x%x%x%x", j + 1) or
|
||||||
|
decode_error(str, j - 1,
|
||||||
|
"invalid unicode escape in string")
|
||||||
|
res = res .. parse_unicode_escape(hex)
|
||||||
|
j = j + #hex
|
||||||
|
else
|
||||||
|
if not escape_chars[c] then
|
||||||
|
decode_error(str, j - 1,
|
||||||
|
"invalid escape char '" .. c .. "' in string")
|
||||||
|
end
|
||||||
|
res = res .. escape_char_map_inv[c]
|
||||||
|
end
|
||||||
|
k = j + 1
|
||||||
|
|
||||||
|
elseif x == 34 then -- `"`: End of string
|
||||||
|
res = res .. str:sub(k, j - 1)
|
||||||
|
return res, j + 1
|
||||||
|
end
|
||||||
|
|
||||||
|
j = j + 1
|
||||||
|
end
|
||||||
|
|
||||||
|
decode_error(str, i, "expected closing quote for string")
|
||||||
|
end
|
||||||
|
|
||||||
|
local function parse_number(str, i)
|
||||||
|
local x = next_char(str, i, delim_chars)
|
||||||
|
local s = str:sub(i, x - 1)
|
||||||
|
local n = tonumber(s)
|
||||||
|
if not n then decode_error(str, i, "invalid number '" .. s .. "'") end
|
||||||
|
return n, x
|
||||||
|
end
|
||||||
|
|
||||||
|
local function parse_literal(str, i)
|
||||||
|
local x = next_char(str, i, delim_chars)
|
||||||
|
local word = str:sub(i, x - 1)
|
||||||
|
if not literals[word] then
|
||||||
|
decode_error(str, i, "invalid literal '" .. word .. "'")
|
||||||
|
end
|
||||||
|
return literal_map[word], x
|
||||||
|
end
|
||||||
|
|
||||||
|
local function parse_array(str, i)
|
||||||
|
local res = {}
|
||||||
|
local n = 1
|
||||||
|
i = i + 1
|
||||||
|
while 1 do
|
||||||
|
local x
|
||||||
|
i = next_char(str, i, space_chars, true)
|
||||||
|
-- Empty / end of array?
|
||||||
|
if str:sub(i, i) == "]" then
|
||||||
|
i = i + 1
|
||||||
|
break
|
||||||
|
end
|
||||||
|
-- Read token
|
||||||
|
x, i = parse(str, i)
|
||||||
|
res[n] = x
|
||||||
|
n = n + 1
|
||||||
|
-- Next token
|
||||||
|
i = next_char(str, i, space_chars, true)
|
||||||
|
local chr = str:sub(i, i)
|
||||||
|
i = i + 1
|
||||||
|
if chr == "]" then break end
|
||||||
|
if chr ~= "," then decode_error(str, i, "expected ']' or ','") end
|
||||||
|
end
|
||||||
|
return res, i
|
||||||
|
end
|
||||||
|
|
||||||
|
local function parse_object(str, i)
|
||||||
|
local res = {}
|
||||||
|
i = i + 1
|
||||||
|
while 1 do
|
||||||
|
local key, val
|
||||||
|
i = next_char(str, i, space_chars, true)
|
||||||
|
-- Empty / end of object?
|
||||||
|
if str:sub(i, i) == "}" then
|
||||||
|
i = i + 1
|
||||||
|
break
|
||||||
|
end
|
||||||
|
-- Read key
|
||||||
|
if str:sub(i, i) ~= '"' then
|
||||||
|
decode_error(str, i, "expected string for key")
|
||||||
|
end
|
||||||
|
key, i = parse(str, i)
|
||||||
|
-- Read ':' delimiter
|
||||||
|
i = next_char(str, i, space_chars, true)
|
||||||
|
if str:sub(i, i) ~= ":" then
|
||||||
|
decode_error(str, i, "expected ':' after key")
|
||||||
|
end
|
||||||
|
i = next_char(str, i + 1, space_chars, true)
|
||||||
|
-- Read value
|
||||||
|
val, i = parse(str, i)
|
||||||
|
-- Set
|
||||||
|
res[key] = val
|
||||||
|
-- Next token
|
||||||
|
i = next_char(str, i, space_chars, true)
|
||||||
|
local chr = str:sub(i, i)
|
||||||
|
i = i + 1
|
||||||
|
if chr == "}" then break end
|
||||||
|
if chr ~= "," then decode_error(str, i, "expected '}' or ','") end
|
||||||
|
end
|
||||||
|
return res, i
|
||||||
|
end
|
||||||
|
|
||||||
|
local char_func_map = {
|
||||||
|
['"'] = parse_string,
|
||||||
|
["0"] = parse_number,
|
||||||
|
["1"] = parse_number,
|
||||||
|
["2"] = parse_number,
|
||||||
|
["3"] = parse_number,
|
||||||
|
["4"] = parse_number,
|
||||||
|
["5"] = parse_number,
|
||||||
|
["6"] = parse_number,
|
||||||
|
["7"] = parse_number,
|
||||||
|
["8"] = parse_number,
|
||||||
|
["9"] = parse_number,
|
||||||
|
["-"] = parse_number,
|
||||||
|
["t"] = parse_literal,
|
||||||
|
["f"] = parse_literal,
|
||||||
|
["n"] = parse_literal,
|
||||||
|
["["] = parse_array,
|
||||||
|
["{"] = parse_object
|
||||||
|
}
|
||||||
|
|
||||||
|
function parse(str, idx)
|
||||||
|
local chr = str:sub(idx, idx)
|
||||||
|
local f = char_func_map[chr]
|
||||||
|
if f then return f(str, idx) end
|
||||||
|
decode_error(str, idx, "unexpected character '" .. chr .. "'")
|
||||||
|
end
|
||||||
|
|
||||||
|
local function decode(str)
|
||||||
|
if type(str) ~= "string" then
|
||||||
|
error("expected argument of type string, got " .. type(str))
|
||||||
|
end
|
||||||
|
local res, idx = parse(str, next_char(str, 1, space_chars, true))
|
||||||
|
idx = next_char(str, idx, space_chars, true)
|
||||||
|
if idx <= #str then decode_error(str, idx, "trailing garbage") end
|
||||||
|
return res
|
||||||
|
end
|
||||||
|
function json.decode(str)
|
||||||
|
local a,b=pcall(decode,str)
|
||||||
|
if a then
|
||||||
|
return b
|
||||||
|
else
|
||||||
|
LOG.print(text.jsonError..": "..(b or"uknErr"),"warn")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
end
|
||||||
57
Zframework/loadLib.lua
Normal file
57
Zframework/loadLib.lua
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
local libs={
|
||||||
|
CC={
|
||||||
|
Windows="CCloader",
|
||||||
|
Linux="CCloader",
|
||||||
|
Android="libCCloader.so",
|
||||||
|
libFunc="luaopen_CCloader",
|
||||||
|
},
|
||||||
|
NETlib={
|
||||||
|
Windows="client",
|
||||||
|
Linux="client",
|
||||||
|
Android="client.so",
|
||||||
|
libFunc="luaopen_client",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
function loadLib(name)
|
||||||
|
local libName=libs[name]
|
||||||
|
if SYSTEM=="Windows"or SYSTEM=="Linux"then
|
||||||
|
local r1,r2,r3=pcall(require,libName[SYSTEM])
|
||||||
|
if r1 and r2 then
|
||||||
|
return r2
|
||||||
|
else
|
||||||
|
LOG.print("Cannot load "..name..": "..(r2 or r3),"warn",COLOR.red)
|
||||||
|
end
|
||||||
|
elseif SYSTEM=="Android"then
|
||||||
|
local fs=love.filesystem
|
||||||
|
local platform={"arm64-v8a","armeabi-v7a"}
|
||||||
|
local libFunc
|
||||||
|
for i=1,#platform do
|
||||||
|
local soFile,size=fs.read("data","libAndroid/"..platform[i].."/"..libName.Android)
|
||||||
|
if soFile then
|
||||||
|
local success,message=fs.write(libName.Android,soFile,size)
|
||||||
|
if success then
|
||||||
|
libFunc,message=package.loadlib(table.concat({SAVEDIR,libName.Android},"/"),libName.libFunc)
|
||||||
|
if libFunc then
|
||||||
|
LOG.print(name.." lib loaded","warn",COLOR.green)
|
||||||
|
break
|
||||||
|
else
|
||||||
|
LOG.print("Cannot load "..name..": "..message,"warn",COLOR.red)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
LOG.print("Write "..name.."-"..platform[i].." to saving failed: "..message,"warn",COLOR.red)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
LOG.print("Read "..name.."-"..platform[i].." failed","warn",COLOR.red)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if not libFunc then
|
||||||
|
LOG.print("Cannot load "..name,"warn",COLOR.red)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
return libFunc()
|
||||||
|
else
|
||||||
|
LOG.print("No "..name.." for "..SYSTEM,"warn",COLOR.red)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
return true
|
||||||
|
end
|
||||||
10
Zframework/mDraw.lua
Normal file
10
Zframework/mDraw.lua
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
local gc=love.graphics
|
||||||
|
function mStr(s,x,y)
|
||||||
|
gc.printf(s,x-626,y,1252,"center")
|
||||||
|
end
|
||||||
|
function mText(s,x,y)
|
||||||
|
gc.draw(s,x-s:getWidth()*.5,y)
|
||||||
|
end
|
||||||
|
function mDraw(s,x,y,a,k)
|
||||||
|
gc.draw(s,x,y,a,k,nil,s:getWidth()*.5,s:getHeight()*.5)
|
||||||
|
end
|
||||||
55
Zframework/network.lua
Normal file
55
Zframework/network.lua
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
client=loadLib("NETlib")
|
||||||
|
if client then
|
||||||
|
function httpRequest(tick,path,method,header,body)
|
||||||
|
local task,err=client.httpraw{
|
||||||
|
url="http://"..PATH.url..":"..PATH.port..path,
|
||||||
|
method=method or"GET",
|
||||||
|
header=header,
|
||||||
|
body=body,
|
||||||
|
}
|
||||||
|
if task then
|
||||||
|
TASK.newNet(tick,task)
|
||||||
|
else
|
||||||
|
LOG.print("NETlib error: "..err,"warn")
|
||||||
|
end
|
||||||
|
TASK.netTaskCount=TASK.netTaskCount+1
|
||||||
|
end
|
||||||
|
|
||||||
|
function wsConnect(tick,path,header)
|
||||||
|
if TASK.wsConnecting then
|
||||||
|
LOG.print(text.waitNetTask,"message")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local task,err=client.wsraw{
|
||||||
|
url="ws://"..PATH.url..":"..PATH.port..path,
|
||||||
|
origin=PATH.url,
|
||||||
|
header=header,
|
||||||
|
}
|
||||||
|
if task then
|
||||||
|
TASK.newWS(tick,task)
|
||||||
|
else
|
||||||
|
LOG.print("NETlib error: "..err,"warn")
|
||||||
|
end
|
||||||
|
TASK.netTaskCount=TASK.netTaskCount+1
|
||||||
|
end
|
||||||
|
|
||||||
|
function wsWrite(data)
|
||||||
|
if WSCONN then
|
||||||
|
local writeErr=client.write(WSCONN,data)
|
||||||
|
if writeErr then
|
||||||
|
LOG.print(writeErr,"error")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
return true
|
||||||
|
else
|
||||||
|
LOG.print(text.wsNoConn,"warn")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local function noNetLib()
|
||||||
|
LOG.print("[NO NETlib for "..SYSTEM.."]",5,COLOR.yellow)
|
||||||
|
end
|
||||||
|
httpRequest=noNetLib
|
||||||
|
wsConnect=noNetLib
|
||||||
|
wsWrite=noNetLib
|
||||||
|
end
|
||||||
38
Zframework/setFont.lua
Normal file
38
Zframework/setFont.lua
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
local gc=love.graphics
|
||||||
|
local newFont=gc.setNewFont
|
||||||
|
local setNewFont=gc.setFont
|
||||||
|
local fontCache,currentFontSize={}
|
||||||
|
if love.filesystem.getInfo("font.ttf")then
|
||||||
|
local fontData=love.filesystem.newFile("font.ttf")
|
||||||
|
function setFont(s)
|
||||||
|
if s~=currentFontSize then
|
||||||
|
if not fontCache[s]then
|
||||||
|
fontCache[s]=newFont(fontData,s)
|
||||||
|
end
|
||||||
|
setNewFont(fontCache[s])
|
||||||
|
currentFontSize=s
|
||||||
|
end
|
||||||
|
end
|
||||||
|
function getFont(s)
|
||||||
|
if not fontCache[s]then
|
||||||
|
fontCache[s]=newFont(fontData,s)
|
||||||
|
end
|
||||||
|
return fontCache[s]
|
||||||
|
end
|
||||||
|
else
|
||||||
|
function setFont(s)
|
||||||
|
if s~=currentFontSize then
|
||||||
|
if not fontCache[s]then
|
||||||
|
fontCache[s]=newFont(s)
|
||||||
|
end
|
||||||
|
setNewFont(fontCache[s])
|
||||||
|
currentFontSize=s
|
||||||
|
end
|
||||||
|
end
|
||||||
|
function getFont(s)
|
||||||
|
if not fontCache[s]then
|
||||||
|
fontCache[s]=newFont(s)
|
||||||
|
end
|
||||||
|
return fontCache[s]
|
||||||
|
end
|
||||||
|
end
|
||||||
11
Zframework/splitStr.lua
Normal file
11
Zframework/splitStr.lua
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
local find,sub=string.find,string.sub
|
||||||
|
function splitStr(s,sep)
|
||||||
|
local L={}
|
||||||
|
local p1,p2=1--start,target
|
||||||
|
while p1<=#s do
|
||||||
|
p2=find(s,sep,p1)or #s+1
|
||||||
|
L[#L+1]=sub(s,p1,p2-1)
|
||||||
|
p1=p2+#sep
|
||||||
|
end
|
||||||
|
return L
|
||||||
|
end
|
||||||
11
Zframework/toTime.lua
Normal file
11
Zframework/toTime.lua
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
local int,format=math.floor,string.format
|
||||||
|
function toTime(s)
|
||||||
|
if s<60 then
|
||||||
|
return format("%.3fs",s)
|
||||||
|
elseif s<3600 then
|
||||||
|
return format("%d:%.2f",int(s/60),s%60)
|
||||||
|
else
|
||||||
|
local h=int(s/3600)
|
||||||
|
return format("%d:%d:%.2f",h,int(s/60%60),s%60)
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -1,690 +0,0 @@
|
|||||||
local gc=love.graphics
|
|
||||||
local int=math.floor
|
|
||||||
local sub,find,format=string.sub,string.find,string.format
|
|
||||||
local ins=table.insert
|
|
||||||
|
|
||||||
do--LOADLIB
|
|
||||||
local libs={
|
|
||||||
CC={
|
|
||||||
Windows="CCloader",
|
|
||||||
Linux="CCloader",
|
|
||||||
Android="libCCloader.so",
|
|
||||||
libFunc="luaopen_CCloader",
|
|
||||||
},
|
|
||||||
NETlib={
|
|
||||||
Windows="client",
|
|
||||||
Linux="client",
|
|
||||||
Android="client.so",
|
|
||||||
libFunc="luaopen_client",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
function LOADLIB(name)
|
|
||||||
local libName=libs[name]
|
|
||||||
if SYSTEM=="Windows"or SYSTEM=="Linux"then
|
|
||||||
local r1,r2,r3=pcall(require,libName[SYSTEM])
|
|
||||||
if r1 and r2 then
|
|
||||||
return r2
|
|
||||||
else
|
|
||||||
LOG.print("Cannot load "..name..": "..(r2 or r3),"warn",COLOR.red)
|
|
||||||
end
|
|
||||||
elseif SYSTEM=="Android"then
|
|
||||||
local fs=love.filesystem
|
|
||||||
local platform={"arm64-v8a","armeabi-v7a"}
|
|
||||||
local libFunc
|
|
||||||
for i=1,#platform do
|
|
||||||
local soFile,size=fs.read("data","libAndroid/"..platform[i].."/"..libName.Android)
|
|
||||||
if soFile then
|
|
||||||
local success,message=fs.write(libName.Android,soFile,size)
|
|
||||||
if success then
|
|
||||||
libFunc,message=package.loadlib(table.concat({SAVEDIR,libName.Android},"/"),libName.libFunc)
|
|
||||||
if libFunc then
|
|
||||||
LOG.print(name.." lib loaded","warn",COLOR.green)
|
|
||||||
break
|
|
||||||
else
|
|
||||||
LOG.print("Cannot load "..name..": "..message,"warn",COLOR.red)
|
|
||||||
end
|
|
||||||
else
|
|
||||||
LOG.print("Write "..name.."-"..platform[i].." to saving failed: "..message,"warn",COLOR.red)
|
|
||||||
end
|
|
||||||
else
|
|
||||||
LOG.print("Read "..name.."-"..platform[i].." failed","warn",COLOR.red)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if not libFunc then
|
|
||||||
LOG.print("Cannot load "..name,"warn",COLOR.red)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
return libFunc()
|
|
||||||
else
|
|
||||||
LOG.print("No "..name.." for "..SYSTEM,"warn",COLOR.red)
|
|
||||||
return
|
|
||||||
end
|
|
||||||
return true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--setFont
|
|
||||||
local newFont=gc.setNewFont
|
|
||||||
local setNewFont=gc.setFont
|
|
||||||
local fontCache,currentFontSize={}
|
|
||||||
if love.filesystem.getInfo("font.ttf")then
|
|
||||||
local fontData=love.filesystem.newFile("font.ttf")
|
|
||||||
function setFont(s)
|
|
||||||
if s~=currentFontSize then
|
|
||||||
if not fontCache[s]then
|
|
||||||
fontCache[s]=newFont(fontData,s)
|
|
||||||
end
|
|
||||||
setNewFont(fontCache[s])
|
|
||||||
currentFontSize=s
|
|
||||||
end
|
|
||||||
end
|
|
||||||
function getFont(s)
|
|
||||||
if not fontCache[s]then
|
|
||||||
fontCache[s]=newFont(fontData,s)
|
|
||||||
end
|
|
||||||
return fontCache[s]
|
|
||||||
end
|
|
||||||
else
|
|
||||||
function setFont(s)
|
|
||||||
if s~=currentFontSize then
|
|
||||||
if not fontCache[s]then
|
|
||||||
fontCache[s]=newFont(s)
|
|
||||||
end
|
|
||||||
setNewFont(fontCache[s])
|
|
||||||
currentFontSize=s
|
|
||||||
end
|
|
||||||
end
|
|
||||||
function getFont(s)
|
|
||||||
if not fontCache[s]then
|
|
||||||
fontCache[s]=newFont(s)
|
|
||||||
end
|
|
||||||
return fontCache[s]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--upperChar
|
|
||||||
local upper=string.upper
|
|
||||||
local upperList={
|
|
||||||
["1"]="!",["2"]="@",["3"]="#",["4"]="$",["5"]="%",
|
|
||||||
["6"]="^",["7"]="&",["8"]="*",["9"]="(",["0"]=")",
|
|
||||||
["`"]="~",["-"]="_",["="]="+",
|
|
||||||
["["]="{",["]"]="}",["\\"]="|",
|
|
||||||
[";"]=":",["'"]="\"",
|
|
||||||
[","]="<",["."]=">",["/"]="?",
|
|
||||||
}
|
|
||||||
function upperChar(c)
|
|
||||||
return upperList[c]or upper(c)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--dumpTable
|
|
||||||
local tabs={
|
|
||||||
[0]="",
|
|
||||||
"\t",
|
|
||||||
"\t\t",
|
|
||||||
"\t\t\t",
|
|
||||||
"\t\t\t\t",
|
|
||||||
"\t\t\t\t\t",
|
|
||||||
}
|
|
||||||
function dumpTable(L,t)
|
|
||||||
local s
|
|
||||||
if t then
|
|
||||||
s="{\n"
|
|
||||||
else
|
|
||||||
s="return{\n"
|
|
||||||
t=1
|
|
||||||
if type(L)~="table"then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
end
|
|
||||||
local count=1
|
|
||||||
for k,v in next,L do
|
|
||||||
local T=type(k)
|
|
||||||
if T=="number"then
|
|
||||||
if k==count then
|
|
||||||
k=""
|
|
||||||
count=count+1
|
|
||||||
else
|
|
||||||
k="["..k.."]="
|
|
||||||
end
|
|
||||||
elseif T=="string"then
|
|
||||||
if find(k,"[^0-9a-zA-Z_]")then
|
|
||||||
k="[\""..k.."\"]="
|
|
||||||
else
|
|
||||||
k=k.."="
|
|
||||||
end
|
|
||||||
elseif T=="boolean"then k="["..k.."]="
|
|
||||||
else error("Error key type!")
|
|
||||||
end
|
|
||||||
T=type(v)
|
|
||||||
if T=="number"then v=tostring(v)
|
|
||||||
elseif T=="string"then v="\""..v.."\""
|
|
||||||
elseif T=="table"then v=dumpTable(v,t+1)
|
|
||||||
elseif T=="boolean"then v=tostring(v)
|
|
||||||
else error("Error data type!")
|
|
||||||
end
|
|
||||||
s=s..tabs[t]..k..v..",\n"
|
|
||||||
end
|
|
||||||
return s..tabs[t-1].."}"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--json
|
|
||||||
|
|
||||||
-- json.lua
|
|
||||||
|
|
||||||
-- Copyright (c) 2020 rxi
|
|
||||||
|
|
||||||
-- Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
||||||
-- this software and associated documentation files (the "Software"), to deal in
|
|
||||||
-- the Software without restriction, including without limitation the rights to
|
|
||||||
-- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
||||||
-- of the Software, and to permit persons to whom the Software is furnished to do
|
|
||||||
-- so, subject to the following conditions:
|
|
||||||
|
|
||||||
-- The above copyright notice and this permission notice shall be included in all
|
|
||||||
-- copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
-- SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
local char=string.char
|
|
||||||
json = {}
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
-- Encode
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
local encode
|
|
||||||
|
|
||||||
local escape_char_map = {
|
|
||||||
["\\"] = "\\",
|
|
||||||
["\""] = "\"",
|
|
||||||
["\b"] = "b",
|
|
||||||
["\f"] = "f",
|
|
||||||
["\n"] = "n",
|
|
||||||
["\r"] = "r",
|
|
||||||
["\t"] = "t"
|
|
||||||
}
|
|
||||||
|
|
||||||
local escape_char_map_inv = {["/"] = "/"}
|
|
||||||
for k, v in pairs(escape_char_map) do escape_char_map_inv[v] = k end
|
|
||||||
|
|
||||||
local function escape_char(c)
|
|
||||||
return "\\" .. (escape_char_map[c] or string.format("u%04x", c:byte()))
|
|
||||||
end
|
|
||||||
|
|
||||||
local function encode_nil() return "null" end
|
|
||||||
|
|
||||||
local function encode_table(val, stack)
|
|
||||||
local res = {}
|
|
||||||
stack = stack or {}
|
|
||||||
|
|
||||||
-- Circular reference?
|
|
||||||
if stack[val] then error("circular reference") end
|
|
||||||
|
|
||||||
stack[val] = true
|
|
||||||
|
|
||||||
if rawget(val, 1) ~= nil or next(val) == nil then
|
|
||||||
-- Treat as array -- check keys are valid and it is not sparse
|
|
||||||
local n = 0
|
|
||||||
for k in pairs(val) do
|
|
||||||
if type(k) ~= "number" then
|
|
||||||
error("invalid table: mixed or invalid key types")
|
|
||||||
end
|
|
||||||
n = n + 1
|
|
||||||
end
|
|
||||||
if n ~= #val then error("invalid table: sparse array") end
|
|
||||||
-- Encode
|
|
||||||
for _, v in ipairs(val) do ins(res, encode(v, stack)) end
|
|
||||||
stack[val] = nil
|
|
||||||
return "[" .. table.concat(res, ",") .. "]"
|
|
||||||
|
|
||||||
else
|
|
||||||
-- Treat as an object
|
|
||||||
for k, v in pairs(val) do
|
|
||||||
if type(k) ~= "string" then
|
|
||||||
error("invalid table: mixed or invalid key types")
|
|
||||||
end
|
|
||||||
ins(res, encode(k, stack) .. ":" .. encode(v, stack))
|
|
||||||
end
|
|
||||||
stack[val] = nil
|
|
||||||
return "{" .. table.concat(res, ",") .. "}"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function encode_string(val)
|
|
||||||
return '"' .. val:gsub('[%z\1-\31\\"]', escape_char) .. '"'
|
|
||||||
end
|
|
||||||
|
|
||||||
local function encode_number(val)
|
|
||||||
-- Check for NaN, -inf and inf
|
|
||||||
if val ~= val or val <= -math.huge or val >= math.huge then
|
|
||||||
error("unexpected number value '" .. tostring(val) .. "'")
|
|
||||||
end
|
|
||||||
return string.format("%.14g", val)
|
|
||||||
end
|
|
||||||
|
|
||||||
local type_func_map = {
|
|
||||||
["nil"] = encode_nil,
|
|
||||||
["table"] = encode_table,
|
|
||||||
["string"] = encode_string,
|
|
||||||
["number"] = encode_number,
|
|
||||||
["boolean"] = tostring
|
|
||||||
}
|
|
||||||
|
|
||||||
encode = function(val, stack)
|
|
||||||
local t = type(val)
|
|
||||||
local f = type_func_map[t]
|
|
||||||
if f then return f(val, stack) end
|
|
||||||
error("unexpected type '" .. t .. "'")
|
|
||||||
end
|
|
||||||
|
|
||||||
function json.encode(val)
|
|
||||||
local a,b=pcall(encode,val)
|
|
||||||
if a then
|
|
||||||
return b
|
|
||||||
else
|
|
||||||
LOG.print(text.jsonError..": "..(b or"uknErr"),"warn")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
-- Decode
|
|
||||||
-------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
local parse
|
|
||||||
|
|
||||||
local function create_set(...)
|
|
||||||
local res = {}
|
|
||||||
for i = 1, select("#", ...) do res[select(i, ...)] = true end
|
|
||||||
return res
|
|
||||||
end
|
|
||||||
|
|
||||||
local space_chars = create_set(" ", "\t", "\r", "\n")
|
|
||||||
local delim_chars = create_set(" ", "\t", "\r", "\n", "]", "}", ",")
|
|
||||||
local escape_chars = create_set("\\", "/", '"', "b", "f", "n", "r", "t", "u")
|
|
||||||
local literals = create_set("true", "false", "null")
|
|
||||||
|
|
||||||
local literal_map = {["true"] = true, ["false"] = false, ["null"] = nil}
|
|
||||||
|
|
||||||
local function next_char(str, idx, set, negate)
|
|
||||||
for i = idx, #str do if set[str:sub(i, i)] ~= negate then return i end end
|
|
||||||
return #str + 1
|
|
||||||
end
|
|
||||||
|
|
||||||
local function decode_error(str, idx, msg)
|
|
||||||
local line_count = 1
|
|
||||||
local col_count = 1
|
|
||||||
for i = 1, idx - 1 do
|
|
||||||
col_count = col_count + 1
|
|
||||||
if str:sub(i, i) == "\n" then
|
|
||||||
line_count = line_count + 1
|
|
||||||
col_count = 1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
error(string.format("%s at line %d col %d", msg, line_count, col_count))
|
|
||||||
end
|
|
||||||
|
|
||||||
local function codepoint_to_utf8(n)
|
|
||||||
-- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=iws-appendixa
|
|
||||||
local f = bit.rshift
|
|
||||||
if n <= 0x7f then
|
|
||||||
return char(n)
|
|
||||||
elseif n <= 0x7ff then
|
|
||||||
return char(f(n, 6) + 192, n % 64 + 128)
|
|
||||||
elseif n <= 0xffff then
|
|
||||||
return char(f(n, 12) + 224, f(n % 4096, 6) + 128, n % 64 + 128)
|
|
||||||
elseif n <= 0x10ffff then
|
|
||||||
return char(f(n, 18) + 240, f(n % 262144, 12) + 128, f(n % 4096, 6) + 128, n % 64 + 128)
|
|
||||||
end
|
|
||||||
error(string.format("invalid unicode codepoint '%x'", n))
|
|
||||||
end
|
|
||||||
|
|
||||||
local function parse_unicode_escape(s)
|
|
||||||
local n1 = tonumber(s:sub(1, 4), 16)
|
|
||||||
local n2 = tonumber(s:sub(7, 10), 16)
|
|
||||||
-- Surrogate pair?
|
|
||||||
if n2 then
|
|
||||||
return
|
|
||||||
codepoint_to_utf8((n1 - 0xd800) * 0x400 + (n2 - 0xdc00) + 0x10000)
|
|
||||||
else
|
|
||||||
return codepoint_to_utf8(n1)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function parse_string(str, i)
|
|
||||||
local res = ""
|
|
||||||
local j = i + 1
|
|
||||||
local k = j
|
|
||||||
|
|
||||||
while j <= #str do
|
|
||||||
local x = str:byte(j)
|
|
||||||
|
|
||||||
if x < 32 then
|
|
||||||
decode_error(str, j, "control character in string")
|
|
||||||
|
|
||||||
elseif x == 92 then -- `\`: Escape
|
|
||||||
res = res .. str:sub(k, j - 1)
|
|
||||||
j = j + 1
|
|
||||||
local c = str:sub(j, j)
|
|
||||||
if c == "u" then
|
|
||||||
local hex = str:match("^[dD][89aAbB]%x%x\\u%x%x%x%x", j + 1) or
|
|
||||||
str:match("^%x%x%x%x", j + 1) or
|
|
||||||
decode_error(str, j - 1,
|
|
||||||
"invalid unicode escape in string")
|
|
||||||
res = res .. parse_unicode_escape(hex)
|
|
||||||
j = j + #hex
|
|
||||||
else
|
|
||||||
if not escape_chars[c] then
|
|
||||||
decode_error(str, j - 1,
|
|
||||||
"invalid escape char '" .. c .. "' in string")
|
|
||||||
end
|
|
||||||
res = res .. escape_char_map_inv[c]
|
|
||||||
end
|
|
||||||
k = j + 1
|
|
||||||
|
|
||||||
elseif x == 34 then -- `"`: End of string
|
|
||||||
res = res .. str:sub(k, j - 1)
|
|
||||||
return res, j + 1
|
|
||||||
end
|
|
||||||
|
|
||||||
j = j + 1
|
|
||||||
end
|
|
||||||
|
|
||||||
decode_error(str, i, "expected closing quote for string")
|
|
||||||
end
|
|
||||||
|
|
||||||
local function parse_number(str, i)
|
|
||||||
local x = next_char(str, i, delim_chars)
|
|
||||||
local s = str:sub(i, x - 1)
|
|
||||||
local n = tonumber(s)
|
|
||||||
if not n then decode_error(str, i, "invalid number '" .. s .. "'") end
|
|
||||||
return n, x
|
|
||||||
end
|
|
||||||
|
|
||||||
local function parse_literal(str, i)
|
|
||||||
local x = next_char(str, i, delim_chars)
|
|
||||||
local word = str:sub(i, x - 1)
|
|
||||||
if not literals[word] then
|
|
||||||
decode_error(str, i, "invalid literal '" .. word .. "'")
|
|
||||||
end
|
|
||||||
return literal_map[word], x
|
|
||||||
end
|
|
||||||
|
|
||||||
local function parse_array(str, i)
|
|
||||||
local res = {}
|
|
||||||
local n = 1
|
|
||||||
i = i + 1
|
|
||||||
while 1 do
|
|
||||||
local x
|
|
||||||
i = next_char(str, i, space_chars, true)
|
|
||||||
-- Empty / end of array?
|
|
||||||
if str:sub(i, i) == "]" then
|
|
||||||
i = i + 1
|
|
||||||
break
|
|
||||||
end
|
|
||||||
-- Read token
|
|
||||||
x, i = parse(str, i)
|
|
||||||
res[n] = x
|
|
||||||
n = n + 1
|
|
||||||
-- Next token
|
|
||||||
i = next_char(str, i, space_chars, true)
|
|
||||||
local chr = str:sub(i, i)
|
|
||||||
i = i + 1
|
|
||||||
if chr == "]" then break end
|
|
||||||
if chr ~= "," then decode_error(str, i, "expected ']' or ','") end
|
|
||||||
end
|
|
||||||
return res, i
|
|
||||||
end
|
|
||||||
|
|
||||||
local function parse_object(str, i)
|
|
||||||
local res = {}
|
|
||||||
i = i + 1
|
|
||||||
while 1 do
|
|
||||||
local key, val
|
|
||||||
i = next_char(str, i, space_chars, true)
|
|
||||||
-- Empty / end of object?
|
|
||||||
if str:sub(i, i) == "}" then
|
|
||||||
i = i + 1
|
|
||||||
break
|
|
||||||
end
|
|
||||||
-- Read key
|
|
||||||
if str:sub(i, i) ~= '"' then
|
|
||||||
decode_error(str, i, "expected string for key")
|
|
||||||
end
|
|
||||||
key, i = parse(str, i)
|
|
||||||
-- Read ':' delimiter
|
|
||||||
i = next_char(str, i, space_chars, true)
|
|
||||||
if str:sub(i, i) ~= ":" then
|
|
||||||
decode_error(str, i, "expected ':' after key")
|
|
||||||
end
|
|
||||||
i = next_char(str, i + 1, space_chars, true)
|
|
||||||
-- Read value
|
|
||||||
val, i = parse(str, i)
|
|
||||||
-- Set
|
|
||||||
res[key] = val
|
|
||||||
-- Next token
|
|
||||||
i = next_char(str, i, space_chars, true)
|
|
||||||
local chr = str:sub(i, i)
|
|
||||||
i = i + 1
|
|
||||||
if chr == "}" then break end
|
|
||||||
if chr ~= "," then decode_error(str, i, "expected '}' or ','") end
|
|
||||||
end
|
|
||||||
return res, i
|
|
||||||
end
|
|
||||||
|
|
||||||
local char_func_map = {
|
|
||||||
['"'] = parse_string,
|
|
||||||
["0"] = parse_number,
|
|
||||||
["1"] = parse_number,
|
|
||||||
["2"] = parse_number,
|
|
||||||
["3"] = parse_number,
|
|
||||||
["4"] = parse_number,
|
|
||||||
["5"] = parse_number,
|
|
||||||
["6"] = parse_number,
|
|
||||||
["7"] = parse_number,
|
|
||||||
["8"] = parse_number,
|
|
||||||
["9"] = parse_number,
|
|
||||||
["-"] = parse_number,
|
|
||||||
["t"] = parse_literal,
|
|
||||||
["f"] = parse_literal,
|
|
||||||
["n"] = parse_literal,
|
|
||||||
["["] = parse_array,
|
|
||||||
["{"] = parse_object
|
|
||||||
}
|
|
||||||
|
|
||||||
function parse(str, idx)
|
|
||||||
local chr = str:sub(idx, idx)
|
|
||||||
local f = char_func_map[chr]
|
|
||||||
if f then return f(str, idx) end
|
|
||||||
decode_error(str, idx, "unexpected character '" .. chr .. "'")
|
|
||||||
end
|
|
||||||
|
|
||||||
local function decode(str)
|
|
||||||
if type(str) ~= "string" then
|
|
||||||
error("expected argument of type string, got " .. type(str))
|
|
||||||
end
|
|
||||||
local res, idx = parse(str, next_char(str, 1, space_chars, true))
|
|
||||||
idx = next_char(str, idx, space_chars, true)
|
|
||||||
if idx <= #str then decode_error(str, idx, "trailing garbage") end
|
|
||||||
return res
|
|
||||||
end
|
|
||||||
function json.decode(str)
|
|
||||||
local a,b=pcall(decode,str)
|
|
||||||
if a then
|
|
||||||
return b
|
|
||||||
else
|
|
||||||
LOG.print(text.jsonError..": "..(b or"uknErr"),"warn")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--urlencode
|
|
||||||
local rshift=bit.rshift
|
|
||||||
local b16={[0]="0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"}
|
|
||||||
function urlEncode(str)
|
|
||||||
local out=""
|
|
||||||
for i=1,#str do
|
|
||||||
if str:sub(i,i):match("[a-zA-Z0-9]")then
|
|
||||||
out=out..str:sub(i,i)
|
|
||||||
else
|
|
||||||
local b=str:byte(i)
|
|
||||||
out=out.."%"..b16[rshift(b,4)]..b16[b%16]
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return out
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--httpRequest & wsConnect
|
|
||||||
client=LOADLIB("NETlib")
|
|
||||||
if client then
|
|
||||||
function httpRequest(tick,path,method,header,body)
|
|
||||||
local task,err=client.httpraw{
|
|
||||||
url="http://"..PATH.url..":"..PATH.port..path,
|
|
||||||
method=method or"GET",
|
|
||||||
header=header,
|
|
||||||
body=body,
|
|
||||||
}
|
|
||||||
if task then
|
|
||||||
TASK.newNet(tick,task)
|
|
||||||
else
|
|
||||||
LOG.print("NETlib error: "..err,"warn")
|
|
||||||
end
|
|
||||||
TASK.netTaskCount=TASK.netTaskCount+1
|
|
||||||
end
|
|
||||||
|
|
||||||
function wsConnect(tick,path,header)
|
|
||||||
if TASK.wsConnecting then
|
|
||||||
LOG.print(text.waitNetTask,"message")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
local task,err=client.wsraw{
|
|
||||||
url="ws://"..PATH.url..":"..PATH.port..path,
|
|
||||||
origin=PATH.url,
|
|
||||||
header=header,
|
|
||||||
}
|
|
||||||
if task then
|
|
||||||
TASK.newWS(tick,task)
|
|
||||||
else
|
|
||||||
LOG.print("NETlib error: "..err,"warn")
|
|
||||||
end
|
|
||||||
TASK.netTaskCount=TASK.netTaskCount+1
|
|
||||||
end
|
|
||||||
|
|
||||||
function wsWrite(data)
|
|
||||||
if WSCONN then
|
|
||||||
local writeErr=client.write(WSCONN,data)
|
|
||||||
if writeErr then
|
|
||||||
LOG.print(writeErr,"error")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
return true
|
|
||||||
else
|
|
||||||
LOG.print(text.wsNoConn,"warn")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
local function noNetLib()
|
|
||||||
LOG.print("[NO NETlib for "..SYSTEM.."]",5,COLOR.yellow)
|
|
||||||
end
|
|
||||||
httpRequest=noNetLib
|
|
||||||
wsConnect=noNetLib
|
|
||||||
wsWrite=noNetLib
|
|
||||||
end
|
|
||||||
end
|
|
||||||
do--wheelScroll
|
|
||||||
local floatWheel=0
|
|
||||||
function wheelScroll(y)
|
|
||||||
if y>0 then
|
|
||||||
if floatWheel<0 then floatWheel=0 end
|
|
||||||
floatWheel=floatWheel+y^1.2
|
|
||||||
elseif y<0 then
|
|
||||||
if floatWheel>0 then floatWheel=0 end
|
|
||||||
floatWheel=floatWheel-(-y)^1.2
|
|
||||||
end
|
|
||||||
while floatWheel>=1 do
|
|
||||||
love.keypressed("up")
|
|
||||||
floatWheel=floatWheel-1
|
|
||||||
end
|
|
||||||
while floatWheel<=-1 do
|
|
||||||
love.keypressed("down")
|
|
||||||
floatWheel=floatWheel+1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
function copyList(org)
|
|
||||||
local L={}
|
|
||||||
for i=1,#org do
|
|
||||||
if type(org[i])~="table"then
|
|
||||||
L[i]=org[i]
|
|
||||||
else
|
|
||||||
L[i]=copyList(org[i])
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return L
|
|
||||||
end
|
|
||||||
function copyTable(org)
|
|
||||||
local L={}
|
|
||||||
for k,v in next,org do
|
|
||||||
if type(v)~="table"then
|
|
||||||
L[k]=v
|
|
||||||
else
|
|
||||||
L[k]=copyTable(v)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return L
|
|
||||||
end
|
|
||||||
function addToTable(G,base)--For all things in G if same type in base, push to base
|
|
||||||
for k,v in next,G do
|
|
||||||
if type(v)==type(base[k])then
|
|
||||||
if type(v)=="table"then
|
|
||||||
addToTable(v,base[k])
|
|
||||||
else
|
|
||||||
base[k]=v
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
function completeTable(G,base)--For all things in G if no val in base, push to base
|
|
||||||
for k,v in next,G do
|
|
||||||
if base[k]==nil then
|
|
||||||
base[k]=v
|
|
||||||
elseif type(v)=="table"and type(base[k])=="table"then
|
|
||||||
completeTable(v,base[k])
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
function splitStr(s,sep)
|
|
||||||
local L={}
|
|
||||||
local p1,p2=1--start,target
|
|
||||||
while p1<=#s do
|
|
||||||
p2=find(s,sep,p1)or #s+1
|
|
||||||
L[#L+1]=sub(s,p1,p2-1)
|
|
||||||
p1=p2+#sep
|
|
||||||
end
|
|
||||||
return L
|
|
||||||
end
|
|
||||||
function toTime(s)
|
|
||||||
if s<60 then
|
|
||||||
return format("%.3fs",s)
|
|
||||||
elseif s<3600 then
|
|
||||||
return format("%d:%.2f",int(s/60),s%60)
|
|
||||||
else
|
|
||||||
local h=int(s/3600)
|
|
||||||
return format("%d:%d:%.2f",h,int(s/60%60),s%60)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
function mStr(s,x,y)
|
|
||||||
gc.printf(s,x-626,y,1252,"center")
|
|
||||||
end
|
|
||||||
function mText(s,x,y)
|
|
||||||
gc.draw(s,x-s:getWidth()*.5,y)
|
|
||||||
end
|
|
||||||
function mDraw(s,x,y,a,k)
|
|
||||||
gc.draw(s,x,y,a,k,nil,s:getWidth()*.5,s:getHeight()*.5)
|
|
||||||
end
|
|
||||||
12
Zframework/upperChar.lua
Normal file
12
Zframework/upperChar.lua
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
local upper=string.upper
|
||||||
|
local upperList={
|
||||||
|
["1"]="!",["2"]="@",["3"]="#",["4"]="$",["5"]="%",
|
||||||
|
["6"]="^",["7"]="&",["8"]="*",["9"]="(",["0"]=")",
|
||||||
|
["`"]="~",["-"]="_",["="]="+",
|
||||||
|
["["]="{",["]"]="}",["\\"]="|",
|
||||||
|
[";"]=":",["'"]="\"",
|
||||||
|
[","]="<",["."]=">",["/"]="?",
|
||||||
|
}
|
||||||
|
function upperChar(c)
|
||||||
|
return upperList[c]or upper(c)
|
||||||
|
end
|
||||||
14
Zframework/urlEncode.lua
Normal file
14
Zframework/urlEncode.lua
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
local rshift=bit.rshift
|
||||||
|
local b16={[0]="0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"}
|
||||||
|
function urlEncode(str)
|
||||||
|
local out=""
|
||||||
|
for i=1,#str do
|
||||||
|
if str:sub(i,i):match("[a-zA-Z0-9]")then
|
||||||
|
out=out..str:sub(i,i)
|
||||||
|
else
|
||||||
|
local b=str:byte(i)
|
||||||
|
out=out.."%"..b16[rshift(b,4)]..b16[b%16]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return out
|
||||||
|
end
|
||||||
18
Zframework/wheelScroll.lua
Normal file
18
Zframework/wheelScroll.lua
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
local floatWheel=0
|
||||||
|
function wheelScroll(y)
|
||||||
|
if y>0 then
|
||||||
|
if floatWheel<0 then floatWheel=0 end
|
||||||
|
floatWheel=floatWheel+y^1.2
|
||||||
|
elseif y<0 then
|
||||||
|
if floatWheel>0 then floatWheel=0 end
|
||||||
|
floatWheel=floatWheel-(-y)^1.2
|
||||||
|
end
|
||||||
|
while floatWheel>=1 do
|
||||||
|
love.keypressed("up")
|
||||||
|
floatWheel=floatWheel-1
|
||||||
|
end
|
||||||
|
while floatWheel<=-1 do
|
||||||
|
love.keypressed("down")
|
||||||
|
floatWheel=floatWheel+1
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -14,7 +14,7 @@ local ins,rem=table.insert,table.remove
|
|||||||
-- 11~13:LL,RR,DD
|
-- 11~13:LL,RR,DD
|
||||||
local blockPos={4,4,4,4,4,5,4}
|
local blockPos={4,4,4,4,4,5,4}
|
||||||
-------------------------------------------------Cold clear
|
-------------------------------------------------Cold clear
|
||||||
local _CC=LOADLIB("CC")cc=nil
|
local _CC=loadLib("CC")cc=nil
|
||||||
if _CC then
|
if _CC then
|
||||||
local CCblockID={6,5,4,3,2,1,0}
|
local CCblockID={6,5,4,3,2,1,0}
|
||||||
CC={
|
CC={
|
||||||
|
|||||||
Reference in New Issue
Block a user