local gc,kb,tc=love.graphics,love.keyboard,love.touch local gc_setColor,gc_print=gc.setColor,gc.print local setFont,mStr=setFont,mStr local ins=table.insert local SCR,VK,NET,netPLY=SCR,VK,NET,netPLY local PLAYERS,GAME=PLAYERS,GAME local textBox=WIDGET.newTextBox{name="texts",x=340,y=80,w=600,h=560} local inputBox=WIDGET.newInputBox{name="input",x=340,y=660,w=600,h=50} local playing local lastUpstreamTime local upstreamProgress local lastBackTime=0 local noTouch,noKey=false,false local touchMoveLastFrame=false local function _playerSort(a,b)return a.place0 then NET.sendMessage(mes) inputBox:clear() elseif #EDITING==0 then _switchChat() end else _switchChat() end elseif not inputBox.hide then WIDGET.focus(inputBox) inputBox:keypress(key) elseif playing then if not playing or noKey then return end local k=keyMap.keyboard[key] if k and k>0 then PLAYERS[1]:pressKey(k) VK.press(k) end else if key=="space"then if netPLY.getSelfJoinMode()==0 then (kb.isDown("lctrl","rctrl","lalt","ralt")and _setSpectate or _setReady)() else _setCancel() end elseif key=="s"then _gotoSetting() end end end function scene.keyUp(key) if not playing or noKey then return end local k=keyMap.keyboard[key] if k and k>0 then PLAYERS[1]:releaseKey(k) VK.release(k) end end function scene.gamepadDown(key) if key=="back"then scene.keyDown("escape") else if not playing then return end local k=keyMap.joystick[key] if k and k>0 then PLAYERS[1]:pressKey(k) VK.press(k) end end end function scene.gamepadUp(key) if not playing then return end local k=keyMap.joystick[key] if k and k>0 then PLAYERS[1]:releaseKey(k) VK.release(k) end end function scene.socketRead(cmd,d) if cmd=='join'then textBox:push{ COLOR.lR,d.username, COLOR.dY,"#"..d.uid.." ", COLOR.Y,text.joinRoom, } SFX.play('click') elseif cmd=='leave'then textBox:push{ COLOR.lR,d.username, COLOR.dY,"#"..d.uid.." ", COLOR.Y,text.leaveRoom, } elseif cmd=='talk'then textBox:push{ COLOR.Z,d.username, COLOR.dY,"#"..d.uid.." ", COLOR.N,d.message or"[_]", } elseif cmd=='go'then if not playing then playing=true love.keyboard.setKeyRepeat(false) lastUpstreamTime=0 upstreamProgress=1 resetGameData('n',NET.seed) netPLY.mouseMove(0,0) else LOG.print("Redundant [Go]",'warn') end elseif cmd=='finish'then playing=false love.keyboard.setKeyRepeat(true) table.sort(d.result,_playerSort) for k,v in next,d.result do if v.place==0 then table.remove(d.result,k) end end NET.resultList=d.result netPLY.resetState() elseif cmd=='stream'then if d.uid~=USER.uid then for _,P in next,PLAYERS do if P.uid==d.uid then local res,stream=pcall(love.data.decode,'string','base64',d.stream) if res then DATA.pumpRecording(stream,P.stream) else LOG.print("Bad stream from "..P.username.."#"..P.uid,30) end break end end end end end function scene.update(dt) if NET.checkPlayDisconn()then NET.wsclose_stream() SCN.back() end if playing then local P1=PLAYERS[1] touchMoveLastFrame=false VK.update() --Update players for p=1,#PLAYERS do PLAYERS[p]:update(dt)end --Warning check checkWarning() --Upload stream if not NET.spectate and P1.frameRun-lastUpstreamTime>8 then local stream if not GAME.rep[upstreamProgress]then ins(GAME.rep,P1.frameRun) ins(GAME.rep,0) end stream,upstreamProgress=DATA.dumpRecording(GAME.rep,upstreamProgress) if #stream%3==1 then stream=stream.."\0\0" elseif #stream%3==2 then stream=stream.."\0\0\0\0" end NET.uploadRecStream(stream) lastUpstreamTime=PLAYERS[1].alive and P1.frameRun or 1e99 end else netPLY.update() end end function scene.draw() if playing then drawFWM() --Players for p=1,#PLAYERS do PLAYERS[p]:draw() end --Virtual keys VK.draw() --Warning drawWarning() if NET.spectate then setFont(30) gc_setColor(.2,1,0,.8) gc_print(text.spectating,940,0) end else --Users netPLY.draw() --Ready & Set mark setFont(50) if NET.allReady then gc_setColor(0,1,.5,.9) mStr(text.ready,640,15) elseif NET.connectingStream then gc_setColor(.1,1,.8,.9) mStr(text.connStream,640,15) elseif NET.waitingStream then gc_setColor(0,.8,1,.9) mStr(text.waitStream,640,15) end --Room info. gc_setColor(1,1,1) setFont(25) gc.printf(NET.roomState.roomInfo.name,0,685,1270,'right') setFont(40) gc.print(netPLY.getCount().."/"..NET.roomState.capacity,70,655) if NET.roomState.private then gc.draw(IMG.lock,30,668)end if NET.roomState.start then gc_setColor(0,1,0)gc_print(text.started,230,655)end --Profile drawSelfProfile() --Player count drawOnlinePlayerCount() end --New message if textBox.new then setFont(40) gc_setColor(1,1,0) gc.print("M",430,10) end end scene.widgetList={ textBox, inputBox, WIDGET.newKey{name="setting",fText=TEXTURE.setting,x=1200,y=160,w=90,h=90,code=_gotoSetting,hideF=function()return playing or netPLY.getSelfReady()or NET.getlock('ready')end}, WIDGET.newKey{name="ready",x=1060,y=510,w=370,h=90,color='lG',font=35,code=_setReady, hideF=function() return playing or NET.roomState.start or netPLY.getSelfReady() or NET.getlock('ready') end}, WIDGET.newKey{name="spectate",x=1060,y=610,w=370,h=90,color='lO',font=35,code=_setSpectate, hideF=function() return playing or NET.roomState.start or netPLY.getSelfReady() or NET.getlock('ready') end}, WIDGET.newKey{name="cancel",x=1060,y=560,w=370,h=120,color='lH',font=40,code=_setCancel, hideF=function() return playing or NET.roomState.start or not netPLY.getSelfReady() or NET.getlock('ready') end}, WIDGET.newKey{name="hideChat",fText="...",x=380,y=35,w=60,font=35,code=_switchChat}, WIDGET.newKey{name="quit",fText="X",x=900,y=35,w=60,font=40,code=_quit}, } return scene