整理代码

This commit is contained in:
MrZ626
2021-08-26 14:39:27 +08:00
parent db4f193046
commit 27a0e8ee3a
3 changed files with 36 additions and 38 deletions

View File

@@ -3,6 +3,7 @@
6~10:hD,sD,H,A,R,
11~13:LL,RR,DD
]]
local pcall=pcall
local ins,rem=table.insert,table.remove
local yield=coroutine.yield
local bot_cc={}
@@ -71,15 +72,12 @@ function bot_cc:thread()
end
function bot_cc:updateField()
local P=self.P
local F0=P.field
local F,i={},1
for y=1,#P.field do
for x=1,10 do
F[i],i=P.field[y][x]>0,i+1
end
end
while i<=400 do
F[i],i=false,i+1
end
for y=1,#F0 do for x=1,10 do
F[i],i=F0[y][x]>0,i+1
end end
while i<=400 do F[i],i=false,i+1 end
if not pcall(self.ccBot.reset,self.ccBot,F,P.b2b>=100,P.combo)then
print("CC is dead ("..P.id..")","error")
end

View File

@@ -80,7 +80,7 @@ function BOT.new(P,data)
bot.delay0=data.delay
if P.gameEnv.holdCount and P.gameEnv.holdCount>1 then P:setHold(1)end
local cc=require"CCloader"
local cc=LOADLIB"CCloader"
local opt,wei=cc.getDefaultConfig()
wei:fastWeights()
opt:setHold(data.hold)
@@ -91,10 +91,10 @@ function BOT.new(P,data)
local cc_lua=require"parts.bot.bot_cc"
setmetatable(bot,{__index=function(self,k)
return
self.ccBot[k] and function(_,...)self.ccBot[k](self.ccBot,...)end or
cc_lua[k] and function(_,...)cc_lua[k](self,...)end or
baseBot[k] and baseBot[k] or
error("MrZ did something bad again! He just wanted "..k)
self.ccBot[k]and function(_,...)self.ccBot[k](self.ccBot,...)end or
cc_lua[k]and function(_,...)cc_lua[k](self,...)end or
baseBot[k]and baseBot[k]or
error("No actions called "..k)
end})
for i,B in next,P.nextQueue do