简化LOG.print的功能和使用
This commit is contained in:
@@ -4,6 +4,8 @@ local int=math.floor
|
||||
local char,byte=string.char,string.byte
|
||||
local ins=table.insert
|
||||
|
||||
local BAG,FIELD,MISSION,CUSTOMENV,GAME=BAG,FIELD,MISSION,CUSTOMENV,GAME
|
||||
|
||||
local DATA={}
|
||||
--Sep symbol: 33 (!)
|
||||
--Safe char: 34~126
|
||||
@@ -14,7 +16,6 @@ local DATA={}
|
||||
Example: "abcdefg" is [SZJLTOI], "a^aDb)" is [Z*63,Z*37,S*10]
|
||||
]]
|
||||
function DATA.copySequence()
|
||||
local BAG=BAG
|
||||
local str=""
|
||||
|
||||
local count=1
|
||||
@@ -111,22 +112,22 @@ function DATA.pasteBoard(str,page)--Paste [str] data to [page] board
|
||||
if not page then page=1 end
|
||||
if not FIELD[page]then FIELD[page]=DATA.newBoard()end
|
||||
local F=FIELD[page]
|
||||
local _,__
|
||||
|
||||
--Decode
|
||||
local res
|
||||
str=STRING.trim(str)
|
||||
_,str=pcall(data.decode,'string','base64',str)
|
||||
if not _ then return end
|
||||
_,str=pcall(data.decompress,'string','zlib',str)
|
||||
if not _ then return end
|
||||
res,str=pcall(data.decode,'string','base64',str)
|
||||
if not res then return end
|
||||
res,str=pcall(data.decompress,'string','zlib',str)
|
||||
if not res then return end
|
||||
|
||||
local fX,fY=1,1--*ptr for Field(r*10+(c-1))
|
||||
local p=1
|
||||
while true do
|
||||
_=byte(str,p)--1byte
|
||||
local b=byte(str,p)--1byte
|
||||
|
||||
--Str end
|
||||
if not _ then
|
||||
if not b then
|
||||
if fX~=1 then
|
||||
return
|
||||
else
|
||||
@@ -134,11 +135,11 @@ function DATA.pasteBoard(str,page)--Paste [str] data to [page] board
|
||||
end
|
||||
end
|
||||
|
||||
__=_%32-1--Block id
|
||||
if __>26 then return end--Illegal blockid
|
||||
_=int(_/32)--Mode id
|
||||
local id=b%32-1--Block id
|
||||
if id>26 then return end--Illegal blockid
|
||||
b=int(b/32)--Mode id
|
||||
|
||||
F[fY][fX]=__
|
||||
F[fY][fX]=id
|
||||
if fX<10 then
|
||||
fX=fX+1
|
||||
else
|
||||
@@ -176,7 +177,6 @@ end
|
||||
]]
|
||||
function DATA.copyMission()
|
||||
local _
|
||||
local MISSION=MISSION
|
||||
local str=""
|
||||
|
||||
local count=1
|
||||
@@ -362,7 +362,7 @@ do--function DATA.saveRecording()
|
||||
--Filtering modes that cannot be saved
|
||||
for _,v in next,noRecList do
|
||||
if GAME.curModeName:find(v)then
|
||||
LOG.print("Cannot save recording of this mode now!",COLOR.N)
|
||||
LOG.print("Cannot save recording of this mode now!",'warn')
|
||||
return
|
||||
end
|
||||
end
|
||||
@@ -386,7 +386,7 @@ do--function DATA.saveRecording()
|
||||
FILE.save(REPLAY,'conf/replay')
|
||||
return true
|
||||
else
|
||||
LOG.print("Save failed: File already exists")
|
||||
LOG.print("Save failed: File already exists",'error')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -16,7 +16,7 @@ return{
|
||||
load=function()
|
||||
PLY.newPlayer(1)
|
||||
if SETTING.sfx_spawn==0 then
|
||||
LOG.print(text.switchSpawnSFX,COLOR.Y)
|
||||
LOG.print(text.switchSpawnSFX,'warn')
|
||||
end
|
||||
end,
|
||||
mesDisp=function(P)
|
||||
|
||||
@@ -298,21 +298,21 @@ function NET.updateWS_app()
|
||||
end
|
||||
end
|
||||
if VERSION.code<res.newestCode then
|
||||
LOG.print(text.oldVersion:gsub("$1",res.newestName),180,COLOR.N)
|
||||
LOG.print(text.oldVersion:gsub("$1",res.newestName),180,'message')
|
||||
end
|
||||
LOG.print(res.notice,300,COLOR.N)
|
||||
LOG.print(res.notice,300,'message')
|
||||
elseif res.action==0 then--Get new version info
|
||||
--?
|
||||
elseif res.action==1 then--Get notice
|
||||
--?
|
||||
elseif res.action==2 then--Register
|
||||
if res.type=='Self'or res.type=='Server'then
|
||||
LOG.print(res.data.message,300,COLOR.N)
|
||||
LOG.print(res.data.message,300,'message')
|
||||
if SCN.cur=='register'then
|
||||
SCN.back()
|
||||
end
|
||||
else
|
||||
LOG.print(res.reason or"Registration failed",300,COLOR.N)
|
||||
LOG.print(res.reason or"Registration failed",300,'message')
|
||||
end
|
||||
NET.unlock('register')
|
||||
elseif res.action==3 then--Get player counts
|
||||
@@ -351,14 +351,14 @@ function NET.updateWS_user()
|
||||
FILE.save(USER,'conf/user','q')
|
||||
if SCN.cur=='login'then SCN.back()end
|
||||
end
|
||||
LOG.print(text.loginSuccessed)
|
||||
LOG.print(text.loginSuccessed,'message')
|
||||
|
||||
--Get self infos
|
||||
NET.getUserInfo(USER.uid)
|
||||
NET.unlock('wsc_user')
|
||||
elseif res.action==0 then--Get accessToken
|
||||
NET.accessToken=res.accessToken
|
||||
LOG.print(text.accessSuccessed)
|
||||
LOG.print(text.accessSuccessed,'message')
|
||||
NET.wsconn_play()
|
||||
elseif res.action==1 then--Get userInfo
|
||||
USERS.updateUserData(res.data)
|
||||
|
||||
@@ -116,16 +116,16 @@ local function tapBoard(x,y,key)
|
||||
if checkBoard(b)then
|
||||
state=2
|
||||
time=TIME()-startTime
|
||||
if time<1 then LOG.print("不是人",COLOR.lB)
|
||||
elseif time<2 then LOG.print("还是人",COLOR.lB)
|
||||
elseif time<3 then LOG.print("神仙",COLOR.lB)
|
||||
elseif time<5 then LOG.print("太强了",COLOR.lB)
|
||||
elseif time<7.5 then LOG.print("很强",COLOR.lB)
|
||||
elseif time<10 then LOG.print("可以的",COLOR.lB)
|
||||
elseif time<20 then LOG.print("马上入门了",COLOR.lB)
|
||||
elseif time<30 then LOG.print("入门不远了",COLOR.lB)
|
||||
elseif time<60 then LOG.print("多加练习",COLOR.lB)
|
||||
else LOG.print("第一次玩?加油",COLOR.lB)
|
||||
if time<1 then LOG.print("不是人")
|
||||
elseif time<2 then LOG.print("还是人")
|
||||
elseif time<3 then LOG.print("神仙")
|
||||
elseif time<5 then LOG.print("太强了")
|
||||
elseif time<7.5 then LOG.print("很强")
|
||||
elseif time<10 then LOG.print("可以的")
|
||||
elseif time<20 then LOG.print("马上入门了")
|
||||
elseif time<30 then LOG.print("入门不远了")
|
||||
elseif time<60 then LOG.print("多加练习")
|
||||
else LOG.print("第一次玩?加油")
|
||||
end
|
||||
SFX.play('win')
|
||||
return
|
||||
|
||||
@@ -82,7 +82,7 @@ function scene.keyDown(key)
|
||||
str=str.."!"
|
||||
if #MISSION>0 then str=str..DATA.copyMission()end
|
||||
sys.setClipboardText(str.."!"..DATA.copyBoards().."!")
|
||||
LOG.print(text.exportSuccess,COLOR.G)
|
||||
LOG.print(text.exportSuccess,'message')
|
||||
elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then
|
||||
local str=sys.getClipboardText()
|
||||
local args=STRING.split(str:sub((str:find(":")or 0)+1),"!")
|
||||
@@ -98,9 +98,9 @@ function scene.keyDown(key)
|
||||
if args[i]:find("%S")and not DATA.pasteBoard(args[i],i-3)and i<#args then goto THROW_fail end
|
||||
end
|
||||
freshMiniFieldVisible()
|
||||
LOG.print(text.importSuccess,COLOR.G)
|
||||
LOG.print(text.importSuccess,'message')
|
||||
do return end
|
||||
::THROW_fail::LOG.print(text.dataCorrupted,COLOR.R)
|
||||
::THROW_fail::LOG.print(text.dataCorrupted,'error')
|
||||
elseif key=="escape"then
|
||||
FILE.save(CUSTOMENV,'conf/customEnv','q')
|
||||
SCN.back()
|
||||
|
||||
@@ -216,21 +216,21 @@ function scene.keyDown(key)
|
||||
SFX.play('fall',.8)
|
||||
elseif key=="c"and kb.isDown("lctrl","rctrl")or key=="cC"then
|
||||
sys.setClipboardText("Techmino Field:"..DATA.copyBoard(page))
|
||||
LOG.print(text.exportSuccess,COLOR.G)
|
||||
LOG.print(text.exportSuccess,'message')
|
||||
elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then
|
||||
local str=sys.getClipboardText()
|
||||
local p=str:find(":")--ptr*
|
||||
if p then
|
||||
if not str:sub(1,p-1):find("Field")then
|
||||
LOG.print(text.pasteWrongPlace)
|
||||
LOG.print(text.pasteWrongPlace,'warn')
|
||||
end
|
||||
str=str:sub(p+1)
|
||||
end
|
||||
if DATA.pasteBoard(str,page)then
|
||||
LOG.print(text.importSuccess,COLOR.G)
|
||||
LOG.print(text.importSuccess,'message')
|
||||
else
|
||||
print(text.dataCorrupted)
|
||||
LOG.print(text.dataCorrupted,COLOR.R)
|
||||
LOG.print(text.dataCorrupted,'error')
|
||||
end
|
||||
elseif key=="pageup"then
|
||||
page=max(page-1,1)
|
||||
|
||||
@@ -71,22 +71,22 @@ function scene.keyDown(key)
|
||||
elseif key=="c"and kb.isDown("lctrl","rctrl")or key=="cC"then
|
||||
if #MISSION>0 then
|
||||
sys.setClipboardText("Techmino Target:"..DATA.copyMission())
|
||||
LOG.print(text.exportSuccess,COLOR.G)
|
||||
LOG.print(text.exportSuccess,'message')
|
||||
end
|
||||
elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then
|
||||
local str=sys.getClipboardText()
|
||||
local p=str:find(":")--ptr*
|
||||
if p then
|
||||
if not str:sub(1,p-1):find("Target")then
|
||||
LOG.print(text.pasteWrongPlace)
|
||||
LOG.print(text.pasteWrongPlace,'warn')
|
||||
end
|
||||
str=str:sub(p+1)
|
||||
end
|
||||
if DATA.pasteMission(str)then
|
||||
LOG.print(text.importSuccess,COLOR.G)
|
||||
LOG.print(text.importSuccess,'message')
|
||||
cur=#MISSION
|
||||
else
|
||||
LOG.print(text.dataCorrupted,COLOR.R)
|
||||
LOG.print(text.dataCorrupted,'error')
|
||||
end
|
||||
elseif key=="escape"then
|
||||
SCN.back()
|
||||
|
||||
@@ -85,22 +85,22 @@ function scene.keyDown(key)
|
||||
elseif key=="c"and kb.isDown("lctrl","rctrl")or key=="cC"then
|
||||
if #BAG>0 then
|
||||
sys.setClipboardText("Techmino SEQ:"..DATA.copySequence())
|
||||
LOG.print(text.exportSuccess,COLOR.G)
|
||||
LOG.print(text.exportSuccess,'message')
|
||||
end
|
||||
elseif key=="v"and kb.isDown("lctrl","rctrl")or key=="cV"then
|
||||
local str=sys.getClipboardText()
|
||||
local p=str:find(":")--ptr*
|
||||
if p then
|
||||
if not str:sub(1,p-1):find("SEQ")then
|
||||
LOG.print(text.pasteWrongPlace)
|
||||
LOG.print(text.pasteWrongPlace,'warn')
|
||||
end
|
||||
str=str:sub(p+1)
|
||||
end
|
||||
if DATA.pasteSequence(str)then
|
||||
LOG.print(text.importSuccess,COLOR.G)
|
||||
LOG.print(text.importSuccess,'message')
|
||||
cur=#BAG
|
||||
else
|
||||
LOG.print(text.dataCorrupted,COLOR.R)
|
||||
LOG.print(text.dataCorrupted,'error')
|
||||
end
|
||||
elseif key=="escape"then
|
||||
SCN.back()
|
||||
|
||||
@@ -6,9 +6,9 @@ local savePW=false
|
||||
local function login()
|
||||
local email,password=emailBox:getText(),passwordBox:getText()
|
||||
if not STRING.simpEmailCheck(email)then
|
||||
LOG.print(text.wrongEmail)return
|
||||
LOG.print(text.wrongEmail,'warn')return
|
||||
elseif #password==0 then
|
||||
LOG.print(text.noPassword)return
|
||||
LOG.print(text.noPassword,'warn')return
|
||||
end
|
||||
NET.wsconn_user_pswd(email,password)
|
||||
if savePW then
|
||||
|
||||
@@ -83,7 +83,7 @@ function scene.keyDown(key)
|
||||
NET.signal_quit()
|
||||
else
|
||||
lastBackTime=TIME()
|
||||
LOG.print(text.sureQuit,COLOR.O)
|
||||
LOG.print(text.sureQuit,'warn')
|
||||
end
|
||||
elseif key=="return"then
|
||||
if inputBox.hide then
|
||||
@@ -180,7 +180,7 @@ function scene.socketRead(cmd,d)
|
||||
upstreamProgress=1
|
||||
resetGameData('n',d.seed)
|
||||
else
|
||||
LOG.print("Redundant [Go]",30,COLOR.G)
|
||||
LOG.print("Redundant [Go]",'warn')
|
||||
end
|
||||
elseif cmd=='finish'then
|
||||
playing=false
|
||||
@@ -203,7 +203,7 @@ function scene.socketRead(cmd,d)
|
||||
if res then
|
||||
DATA.pumpRecording(stream,P.stream)
|
||||
else
|
||||
LOG.print("Bad stream from "..P.username.."#"..P.uid)
|
||||
LOG.print("Bad stream from "..P.username.."#"..P.uid,30)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -31,7 +31,7 @@ scene.widgetList={
|
||||
SCN.back()
|
||||
end
|
||||
else
|
||||
LOG.print(text.sureQuit,COLOR.O)
|
||||
LOG.print(text.sureQuit,'warn')
|
||||
lastLogoutTime=TIME()
|
||||
end
|
||||
end},
|
||||
|
||||
@@ -74,7 +74,7 @@ function scene.keyDown(k)
|
||||
elseif k=="return"then
|
||||
if NET.getlock('fetchRoom')or not NET.roomList[selected]then return end
|
||||
if NET.roomList[selected].private then
|
||||
LOG.print("Can't enter private room now")
|
||||
LOG.print("Can't enter private room now",'message')
|
||||
return
|
||||
end
|
||||
NET.enterRoom(NET.roomList[selected])--,password
|
||||
|
||||
@@ -6,13 +6,13 @@ local function register()
|
||||
local password= WIDGET.active.password:getText()
|
||||
local password2=WIDGET.active.password2:getText()
|
||||
if #username==0 then
|
||||
LOG.print(text.noUsername)return
|
||||
LOG.print(text.noUsername,'warn')return
|
||||
elseif not STRING.simpEmailCheck(email)then
|
||||
LOG.print(text.wrongEmail)return
|
||||
LOG.print(text.wrongEmail,'warn')return
|
||||
elseif #password==0 or #password2==0 then
|
||||
LOG.print(text.noPassword)return
|
||||
LOG.print(text.noPassword,'warn')return
|
||||
elseif password~=password2 then
|
||||
LOG.print(text.diffPassword)return
|
||||
LOG.print(text.diffPassword,'warn')return
|
||||
end
|
||||
NET.register(username,email,password)
|
||||
end
|
||||
|
||||
@@ -10,7 +10,7 @@ local function dumpCB(T)
|
||||
)
|
||||
)
|
||||
)
|
||||
LOG.print(text.exportSuccess)
|
||||
LOG.print(text.exportSuccess,'message')
|
||||
end
|
||||
local function parseCB()
|
||||
local _
|
||||
@@ -18,9 +18,9 @@ local function parseCB()
|
||||
|
||||
--Decode
|
||||
_,s=pcall(love.data.decode,'string','base64',s)
|
||||
if not _ then LOG.print(text.dataCorrupted,COLOR.R)return end
|
||||
if not _ then LOG.print(text.dataCorrupted,'error')return end
|
||||
_,s=pcall(love.data.decompress,'string','zlib',s)
|
||||
if not _ then LOG.print(text.dataCorrupted,COLOR.R)return end
|
||||
if not _ then LOG.print(text.dataCorrupted,'error')return end
|
||||
|
||||
s=loadstring(s)
|
||||
if s then
|
||||
|
||||
@@ -188,7 +188,7 @@ scene.widgetList={
|
||||
B.x,B.y,B.r=T[2],T[3],T[4]
|
||||
end
|
||||
end
|
||||
LOG.print(("[ %d ]"):format(defaultSetSelect))
|
||||
LOG.print(("==[ %d ]=="):format(defaultSetSelect))
|
||||
defaultSetSelect=defaultSetSelect%5+1
|
||||
selected=false
|
||||
end},
|
||||
|
||||
Reference in New Issue
Block a user