房间版本开始使用独立版本号
This commit is contained in:
1
conf.lua
1
conf.lua
@@ -3,6 +3,7 @@ VERSION={
|
|||||||
code=1506,
|
code=1506,
|
||||||
short="V0.15.6",
|
short="V0.15.6",
|
||||||
string="Alpha V0.15.6",
|
string="Alpha V0.15.6",
|
||||||
|
room="V1.0",
|
||||||
name="强化装甲 Reinforced Armor",
|
name="强化装甲 Reinforced Armor",
|
||||||
}
|
}
|
||||||
function love.conf(t)
|
function love.conf(t)
|
||||||
|
|||||||
@@ -310,7 +310,7 @@ function NET.createRoom(roomName,description,capacity,roomType,roomData,password
|
|||||||
roomInfo={
|
roomInfo={
|
||||||
name=roomName,
|
name=roomName,
|
||||||
type=roomType,
|
type=roomType,
|
||||||
version=VERSION.short,
|
version=VERSION.room,
|
||||||
description=description,
|
description=description,
|
||||||
},
|
},
|
||||||
roomData=roomData,
|
roomData=roomData,
|
||||||
|
|||||||
@@ -9,13 +9,6 @@ local gc_print,gc_printf=gc.print,gc.printf
|
|||||||
local NET=NET
|
local NET=NET
|
||||||
local fetchTimer
|
local fetchTimer
|
||||||
|
|
||||||
local compatibleVer={
|
|
||||||
"V0.15.2",
|
|
||||||
"V0.15.3",
|
|
||||||
"V0.15.4",
|
|
||||||
"V0.15.5",
|
|
||||||
}
|
|
||||||
|
|
||||||
local roomList=WIDGET.newListBox{name="roomList",x=50,y=50,w=800,h=440,lineH=40,drawF=function(item,id,ifSel)
|
local roomList=WIDGET.newListBox{name="roomList",x=50,y=50,w=800,h=440,lineH=40,drawF=function(item,id,ifSel)
|
||||||
setFont(35)
|
setFont(35)
|
||||||
if ifSel then
|
if ifSel then
|
||||||
@@ -79,7 +72,7 @@ function scene.keyDown(key)
|
|||||||
elseif roomList:getLen()>0 and key=="return"then
|
elseif roomList:getLen()>0 and key=="return"then
|
||||||
local R=roomList:getSel()
|
local R=roomList:getSel()
|
||||||
if NET.getlock('fetchRoom')or not R then return end
|
if NET.getlock('fetchRoom')or not R then return end
|
||||||
if TABLE.find(compatibleVer,R.roomInfo.version)then
|
if R.roomInfo.version==VERSION.room then
|
||||||
NET.enterRoom(R,passwordBox.value)
|
NET.enterRoom(R,passwordBox.value)
|
||||||
else
|
else
|
||||||
MES.new('error',"Version doesn't compatible 版本不兼容")
|
MES.new('error',"Version doesn't compatible 版本不兼容")
|
||||||
|
|||||||
Reference in New Issue
Block a user