|
|
@ -990,7 +990,7 @@ function M:OnUpdate()
|
||||||
if result then
|
if result then
|
||||||
|
|
||||||
else
|
else
|
||||||
error(resultInfo)
|
-- error(resultInfo)
|
||||||
self._gamectr = ControllerManager.GetController(GameController)
|
self._gamectr = ControllerManager.GetController(GameController)
|
||||||
if self._gamectr then
|
if self._gamectr then
|
||||||
self._gamectr:ResetConnect()
|
self._gamectr:ResetConnect()
|
||||||
|
|
|
||||||
|
|
@ -944,6 +944,7 @@ end
|
||||||
function M:OnFangziAction(...)
|
function M:OnFangziAction(...)
|
||||||
local arg = { ... }
|
local arg = { ... }
|
||||||
local _player_card_info = self._player_card_info
|
local _player_card_info = self._player_card_info
|
||||||
|
|
||||||
local fz = arg[1]
|
local fz = arg[1]
|
||||||
local player = arg[2]
|
local player = arg[2]
|
||||||
local num = arg[3]
|
local num = arg[3]
|
||||||
|
|
@ -957,7 +958,17 @@ function M:OnFangziAction(...)
|
||||||
self._popEvent = false
|
self._popEvent = false
|
||||||
|
|
||||||
local info = _player_card_info[self:GetPos(player.seat)]
|
local info = _player_card_info[self:GetPos(player.seat)]
|
||||||
|
if fz.type == RB_FZType.Wei or fz.type==RB_FZType.ChouWei then
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.4)
|
||||||
|
info:UpdateFzList(player.fz_list, true, player.seat)
|
||||||
|
end)
|
||||||
|
else
|
||||||
info:UpdateFzList(player.fz_list, true, player.seat) --更新放子数组
|
info:UpdateFzList(player.fz_list, true, player.seat) --更新放子数组
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
if (player == self._room.self_player) then
|
if (player == self._room.self_player) then
|
||||||
if fz.type == RB_FZType.Chi then
|
if fz.type == RB_FZType.Chi then
|
||||||
for i = 1, #fz.opcard do
|
for i = 1, #fz.opcard do
|
||||||
|
|
@ -978,13 +989,27 @@ function M:OnFangziAction(...)
|
||||||
end
|
end
|
||||||
info:UpdateKan(fz.card)
|
info:UpdateKan(fz.card)
|
||||||
elseif fz.type == RB_FZType.Wei then
|
elseif fz.type == RB_FZType.Wei then
|
||||||
|
--显示wei 的牌
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.4)
|
||||||
for i = 1, #fz.opcard do
|
for i = 1, #fz.opcard do
|
||||||
info:DeleteHandCard(fz.opcard[i])
|
info:DeleteHandCard(fz.opcard[i])
|
||||||
end
|
end
|
||||||
|
end)
|
||||||
elseif fz.type == RB_FZType.ChouWei then
|
elseif fz.type == RB_FZType.ChouWei then
|
||||||
|
--[[ for i = 1, #fz.opcard do
|
||||||
|
info:DeleteHandCard(fz.opcard[i])
|
||||||
|
end]]
|
||||||
|
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.4)
|
||||||
for i = 1, #fz.opcard do
|
for i = 1, #fz.opcard do
|
||||||
info:DeleteHandCard(fz.opcard[i])
|
info:DeleteHandCard(fz.opcard[i])
|
||||||
end
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
elseif fz.type == RB_FZType.Pao then
|
elseif fz.type == RB_FZType.Pao then
|
||||||
if num > 0 then
|
if num > 0 then
|
||||||
for i = 1, #fz.opcard do
|
for i = 1, #fz.opcard do
|
||||||
|
|
@ -1000,7 +1025,7 @@ function M:OnFangziAction(...)
|
||||||
end
|
end
|
||||||
coroutine.start(
|
coroutine.start(
|
||||||
function()
|
function()
|
||||||
coroutine.wait(1.3)
|
coroutine.wait(0.3)
|
||||||
if fz.type ~= RB_FZType.Kan then
|
if fz.type ~= RB_FZType.Kan then
|
||||||
info:SendChangeCard()
|
info:SendChangeCard()
|
||||||
end
|
end
|
||||||
|
|
@ -1012,7 +1037,7 @@ function M:OnFangziAction(...)
|
||||||
--printlog("jefe self RB_FZType 2=======")
|
--printlog("jefe self RB_FZType 2=======")
|
||||||
local info = _player_card_info[self:GetPos(player.seat)]
|
local info = _player_card_info[self:GetPos(player.seat)]
|
||||||
local pNode = info._mask_liangpai
|
local pNode = info._mask_liangpai
|
||||||
local effect = UIPackage.CreateObject('Extend_Poker_FanPaoFa', 'FzEffect')
|
local effect = UIPackage.CreateObject('Main_RunBeard', 'FzEffect')
|
||||||
|
|
||||||
if fz.type == RB_FZType.Peng then
|
if fz.type == RB_FZType.Peng then
|
||||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "peng")
|
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "peng")
|
||||||
|
|
@ -1026,33 +1051,95 @@ function M:OnFangziAction(...)
|
||||||
--printlog("jefe self RB_FZType 4=======")
|
--printlog("jefe self RB_FZType 4=======")
|
||||||
elseif fz.type == RB_FZType.Wei then
|
elseif fz.type == RB_FZType.Wei then
|
||||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "wei")
|
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "wei")
|
||||||
|
self:PlaySound(player.self_user.sex, 'F_' .. fz.card)
|
||||||
|
|
||||||
|
info:UpdateOutCardList(fz.card,true,true,fz.from_seat)
|
||||||
|
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(0.8)
|
||||||
|
info:PlayingOutCardAnima()
|
||||||
self:PlaySound(player.self_user.sex, 'F_GuoSao')
|
self:PlaySound(player.self_user.sex, 'F_GuoSao')
|
||||||
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'wei')
|
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'wei')
|
||||||
|
effect.touchable = false
|
||||||
|
effect.x, effect.y = -250, -200
|
||||||
|
effect:GetTransition('t0'):Play()
|
||||||
|
pNode:AddChild(effect)
|
||||||
|
end)
|
||||||
|
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.8)
|
||||||
|
effect:Dispose()
|
||||||
|
end
|
||||||
|
)
|
||||||
|
|
||||||
elseif fz.type == RB_FZType.ChouWei then
|
elseif fz.type == RB_FZType.ChouWei then
|
||||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Extend_Poker_FanPaoFa", "chouwei")
|
self:PlaySound(player.self_user.sex, 'F_' .. fz.card)
|
||||||
|
info:UpdateOutCardList(fz.card,true,true,fz.from_seat)
|
||||||
|
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.2)
|
||||||
|
info:PlayingOutCardAnima()
|
||||||
self:PlaySound(player.self_user.sex, 'F_GuoSao')
|
self:PlaySound(player.self_user.sex, 'F_GuoSao')
|
||||||
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Extend_Poker_FanPaoFa', 'chouwei')
|
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'wei')
|
||||||
|
effect.touchable = false
|
||||||
|
effect.x, effect.y = -250, -200
|
||||||
|
effect:GetTransition('t0'):Play()
|
||||||
|
pNode:AddChild(effect)
|
||||||
|
end)
|
||||||
|
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.7)
|
||||||
|
effect:Dispose()
|
||||||
|
end
|
||||||
|
)
|
||||||
|
|
||||||
elseif fz.type == RB_FZType.Pao then
|
elseif fz.type == RB_FZType.Pao then
|
||||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "pao")
|
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "pao")
|
||||||
self:PlaySound(player.self_user.sex, 'F_KaiDuo')
|
self:PlaySound(player.self_user.sex, 'F_KaiDuo')
|
||||||
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'pao')
|
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'pao')
|
||||||
elseif fz.type == RB_FZType.Ti then
|
elseif fz.type == RB_FZType.Ti then
|
||||||
self:PlaySound(player.self_user.sex, 'F_SaoChuan')
|
self:PlaySound(player.self_user.sex, 'F_' .. fz.card)
|
||||||
|
info:UpdateOutCardList(fz.card,true,true,fz.from_seat)
|
||||||
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'ti')
|
effect:GetChild('icon1').icon = UIPackage.GetItemURL('Main_RunBeard', 'ti')
|
||||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "ti")
|
|
||||||
end
|
|
||||||
|
|
||||||
effect.touchable = false
|
effect.touchable = false
|
||||||
effect.x, effect.y = -250, -200
|
effect.x, effect.y = -250, -200
|
||||||
effect:GetTransition('t0'):Play()
|
effect:GetTransition('t0'):Play()
|
||||||
pNode:AddChild(effect)
|
pNode:AddChild(effect)
|
||||||
coroutine.start(
|
coroutine.start(
|
||||||
function()
|
function()
|
||||||
coroutine.wait(0.5)
|
coroutine.wait(1.2)
|
||||||
|
self:PlaySound(player.self_user.sex, 'F_SaoChuan')
|
||||||
|
info:PlayingOutCardAnima()
|
||||||
|
|
||||||
|
end)
|
||||||
|
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(1.7)
|
||||||
effect:Dispose()
|
effect:Dispose()
|
||||||
end
|
end
|
||||||
)
|
)
|
||||||
|
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "ti")
|
||||||
|
end
|
||||||
|
|
||||||
|
if fz.type~=RB_FZType.Wei and fz.type~=RB_FZType.ChouWei then
|
||||||
|
effect.touchable = false
|
||||||
|
effect.x, effect.y = -250, -200
|
||||||
|
effect:GetTransition('t0'):Play()
|
||||||
|
pNode:AddChild(effect)
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(0.4)
|
||||||
|
effect:Dispose()
|
||||||
|
end
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
if (player == self._room.self_player) then
|
if (player == self._room.self_player) then
|
||||||
coroutine.start(
|
coroutine.start(
|
||||||
|
|
@ -1063,28 +1150,34 @@ function M:OnFangziAction(...)
|
||||||
end
|
end
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
--printlog("seft rbtpe1")
|
|
||||||
local removeOutcard = _player_card_info[self:GetPos(fz.from_seat)]
|
local removeOutcard = _player_card_info[self:GetPos(fz.from_seat)]
|
||||||
local p = self._room:GetPlayerBySeat(fz.from_seat)
|
local p = self._room:GetPlayerBySeat(fz.from_seat)
|
||||||
--printlog("seft rbtpe133")
|
|
||||||
if p.DiceCard ~= nil and fz.active_card == p.DiceCard then
|
if p.DiceCard ~= nil and fz.active_card == p.DiceCard then
|
||||||
--printlog("seft rbtpeeee2")
|
if fz.type==RB_FZType.Wei or fz.type==RB_FZType.ChouWei or fz.type==RB_FZType.Ti or fz.type==RB_FZType.Pao then
|
||||||
|
coroutine.start(
|
||||||
|
function()
|
||||||
|
coroutine.wait(0.8)
|
||||||
removeOutcard:ClearOutCard()
|
removeOutcard:ClearOutCard()
|
||||||
--printlog("seft rbtpeeee")
|
end)
|
||||||
|
else
|
||||||
|
removeOutcard:ClearOutCard()
|
||||||
|
end
|
||||||
p.DiceCard = nil
|
p.DiceCard = nil
|
||||||
end
|
end
|
||||||
--printlog("seft rbtpe2")
|
|
||||||
local list = self._room.player_list
|
local list = self._room.player_list
|
||||||
for i = 1, #list do
|
for i = 1, #list do
|
||||||
local p = list[i]
|
local p = list[i]
|
||||||
local info = self._player_info[self:GetPos(p.seat)]
|
local info = self._player_info[self:GetPos(p.seat)]
|
||||||
info._view:GetChild('huxi').text = p.hu_xi
|
info._view:GetChild('huxi').text = p.hu_xi
|
||||||
end
|
end
|
||||||
--printlog("seft rbtpe3")
|
|
||||||
self._popEvent = true
|
self._popEvent = true
|
||||||
coroutine.start(
|
coroutine.start(
|
||||||
function()
|
function()
|
||||||
coroutine.wait(1.3)
|
coroutine.wait(0.3)
|
||||||
local info = _player_card_info[1]
|
local info = _player_card_info[1]
|
||||||
info:UpdateIsOnClick(true)
|
info:UpdateIsOnClick(true)
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -313,7 +313,7 @@ function M:FillLiuJuItemData(room, data,item)
|
||||||
else
|
else
|
||||||
|
|
||||||
local cards = card_list:AddItemFromPool()
|
local cards = card_list:AddItemFromPool()
|
||||||
cards:GetController('c1').selectedIndex = 1
|
cards:GetController('c1').selectedIndex = 0
|
||||||
cards:GetChild('card_type').text = '将'
|
cards:GetChild('card_type').text = '将'
|
||||||
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
cards:GetChild('card_huxi').text = data.info_list[i].opCardList[k].hu_xi
|
||||||
cards:GetChild('card_1').icon =
|
cards:GetChild('card_1').icon =
|
||||||
|
|
@ -444,7 +444,7 @@ function M:FillLiuJuItemData(room, data,item)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
local cards = card_list:AddItemFromPool()
|
local cards = card_list:AddItemFromPool()
|
||||||
cards:GetController('c1').selectedIndex = 1
|
cards:GetController('c1').selectedIndex = 0
|
||||||
cards:GetChild('card_type').text = '将'
|
cards:GetChild('card_type').text = '将'
|
||||||
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
cards:GetChild('card_huxi').text = info_list[i].opCardList[k].hu_xi
|
||||||
cards:GetChild('card_1').icon =
|
cards:GetChild('card_1').icon =
|
||||||
|
|
|
||||||
|
|
@ -118,28 +118,6 @@ function M:playAnim(fzitem,fzcards, size,i,ispaly,seat)
|
||||||
if(ispaly and i == size)then --匹配最后一个牌
|
if(ispaly and i == size)then --匹配最后一个牌
|
||||||
local faArray= fzitem:GetChild("chiwei1")
|
local faArray= fzitem:GetChild("chiwei1")
|
||||||
|
|
||||||
if(DataManager.CurrenRoom.room_config.people_num ==3)then
|
|
||||||
if(DataManager.CurrenRoom.self_player.seat == 1)then
|
|
||||||
if(seat == 2)then
|
|
||||||
faArray= fzitem:GetChild("chiwei1")
|
|
||||||
else
|
|
||||||
faArray= fzitem:GetChild("chiwei")
|
|
||||||
end
|
|
||||||
elseif(DataManager.CurrenRoom.self_player.seat == 2) then
|
|
||||||
if(seat == 3)then
|
|
||||||
faArray= fzitem:GetChild("chiwei1")
|
|
||||||
else
|
|
||||||
faArray= fzitem:GetChild("chiwei")
|
|
||||||
end
|
|
||||||
elseif(DataManager.CurrenRoom.self_player.seat == 3)then
|
|
||||||
if(seat == 1)then
|
|
||||||
faArray= fzitem:GetChild("chiwei1")
|
|
||||||
else
|
|
||||||
faArray= fzitem:GetChild("chiwei")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if(faArray~=nil)then
|
if(faArray~=nil)then
|
||||||
faArray:AddChild(fzcards)
|
faArray:AddChild(fzcards)
|
||||||
else
|
else
|
||||||
|
|
@ -189,6 +167,7 @@ function M:PlayingOutCardAnima(card)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
||||||
|
|
||||||
if(isShow == nil) then
|
if(isShow == nil) then
|
||||||
isShow = false
|
isShow = false
|
||||||
end
|
end
|
||||||
|
|
@ -200,7 +179,7 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
||||||
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
|
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
|
||||||
|
|
||||||
if outcard==0 then
|
if outcard==0 then
|
||||||
outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
|
-- outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
|
||||||
else
|
else
|
||||||
outcards:GetChild("icon").icon =self:getCardItem("ui://Main_RunBeard/203_",outcard)
|
outcards:GetChild("icon").icon =self:getCardItem("ui://Main_RunBeard/203_",outcard)
|
||||||
-- self._bgview.selectedIndex=1
|
-- self._bgview.selectedIndex=1
|
||||||
|
|
|
||||||
|
|
@ -271,7 +271,7 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
||||||
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
|
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
|
||||||
|
|
||||||
if outcard==0 then
|
if outcard==0 then
|
||||||
outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
|
--outcards:GetChild("icon").icon ="ui://Main_RunBeard/202_1_300"
|
||||||
else
|
else
|
||||||
outcards:GetChild("icon").icon =self:getCardItem("ui://Main_RunBeard/203_",outcard)
|
outcards:GetChild("icon").icon =self:getCardItem("ui://Main_RunBeard/203_",outcard)
|
||||||
end
|
end
|
||||||
|
|
@ -301,7 +301,6 @@ function M:UpdateOutCardList(outcard,isShow,isMopai,seat)
|
||||||
show_di_bg.visible = false
|
show_di_bg.visible = false
|
||||||
end
|
end
|
||||||
self._area_outcard_list:AddChild(outcards)
|
self._area_outcard_list:AddChild(outcards)
|
||||||
--self._bgview.selectedIndex = 1
|
|
||||||
end
|
end
|
||||||
|
|
||||||
--弃牌
|
--弃牌
|
||||||
|
|
@ -339,7 +338,6 @@ function M:UpdateFzList( fz_list ,ispaly)
|
||||||
if(ispaly == false)then
|
if(ispaly == false)then
|
||||||
fzitem:RemoveChildren(0,-1,true)
|
fzitem:RemoveChildren(0,-1,true)
|
||||||
end
|
end
|
||||||
--printlog(fzitem.width)--printlog(fzitem.height)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if fz_list[i].type == RB_FZType.Chi or fz_list[i].type == RB_FZType.Bi then
|
if fz_list[i].type == RB_FZType.Chi or fz_list[i].type == RB_FZType.Bi then
|
||||||
|
|
@ -417,7 +415,6 @@ function M:playAnim( fzitem,fzcards, size,i,ispaly )
|
||||||
if(ispaly == nil)then
|
if(ispaly == nil)then
|
||||||
ispaly =false
|
ispaly =false
|
||||||
end
|
end
|
||||||
--printlog("jefe self playAnim 2=======")
|
|
||||||
if(ispaly and i == size)then
|
if(ispaly and i == size)then
|
||||||
local faArray= fzitem:GetChild("chiwei")
|
local faArray= fzitem:GetChild("chiwei")
|
||||||
if(faArray~=nil)then
|
if(faArray~=nil)then
|
||||||
|
|
@ -464,7 +461,6 @@ end
|
||||||
table.insert(player.handcard_list, card)
|
table.insert(player.handcard_list, card)
|
||||||
table.sort( player.handcard_list, ViewUtil.HandCardSort)
|
table.sort( player.handcard_list, ViewUtil.HandCardSort)
|
||||||
end
|
end
|
||||||
-- print("ChuPaiTiShi",#mark_ting,vardump(player))
|
|
||||||
if DataManager.CurrenRoom.curren_outcard_seat == DataManager.CurrenRoom.self_player.seat then
|
if DataManager.CurrenRoom.curren_outcard_seat == DataManager.CurrenRoom.self_player.seat then
|
||||||
self._view :GetController("chupai").selectedIndex =1
|
self._view :GetController("chupai").selectedIndex =1
|
||||||
if #mark_ting>0 then
|
if #mark_ting>0 then
|
||||||
|
|
|
||||||
|
|
@ -241,7 +241,7 @@ end
|
||||||
|
|
||||||
|
|
||||||
function M:UpdateOutCardList(outcard)
|
function M:UpdateOutCardList(outcard)
|
||||||
|
printlog("UpdateOutCardList2222")
|
||||||
self._area_outcard_list:RemoveChildren(0,-1,true)
|
self._area_outcard_list:RemoveChildren(0,-1,true)
|
||||||
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
|
local outcards =UIPackage.CreateObjectFromURL("ui://Main_RunBeard/Gcm_OutCard")
|
||||||
if outcard==0 then
|
if outcard==0 then
|
||||||
|
|
|
||||||
|
|
@ -368,10 +368,10 @@ function M:onTouchBegin(context)
|
||||||
self:ShowHuTip(card.card_item)
|
self:ShowHuTip(card.card_item)
|
||||||
end
|
end
|
||||||
card.btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/203_', card.card_item)
|
card.btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/203_', card.card_item)
|
||||||
card.btn_card.sortingOrder = 100
|
-- card.btn_card.sortingOrder = 100
|
||||||
|
|
||||||
local xy = self._area_handcard_list:GlobalToLocal(Vector2.New(context.inputEvent.x, context.inputEvent.y))
|
local xy = self._area_handcard_list:GlobalToLocal(Vector2.New(context.inputEvent.x, context.inputEvent.y))
|
||||||
card.btn_card.xy = Vector2.New(card.btn_card.x + 20, card.btn_card.y - 30)
|
card.btn_card.xy = Vector2.New(card.btn_card.x + 20, card.btn_card.y - 50)
|
||||||
card.touch_pos = xy - button.xy
|
card.touch_pos = xy - button.xy
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -461,7 +461,7 @@ function M:UpdateHandCardsPos()
|
||||||
card_view.btn_card:RemoveFromParent()
|
card_view.btn_card:RemoveFromParent()
|
||||||
self._area_handcard_list:AddChild(card_view.btn_card)
|
self._area_handcard_list:AddChild(card_view.btn_card)
|
||||||
card_view.old_postion = self:GetHandCardPos(card_view, #CountCards)
|
card_view.old_postion = self:GetHandCardPos(card_view, #CountCards)
|
||||||
card_view.btn_card:TweenMove(card_view.old_postion, 0.6)
|
card_view.btn_card:TweenMove(card_view.old_postion, 0.3)
|
||||||
end
|
end
|
||||||
self:ShowHuTip()
|
self:ShowHuTip()
|
||||||
end
|
end
|
||||||
|
|
@ -478,7 +478,7 @@ function M:UpdateCardDisplay()
|
||||||
card_view.btn_card:RemoveFromParent()
|
card_view.btn_card:RemoveFromParent()
|
||||||
card_view.btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/201_', card_view.card_item)
|
card_view.btn_card:GetChild('icon').icon = self:getCardItem('ui://Main_RunBeard/201_', card_view.card_item)
|
||||||
self._area_handcard_list:AddChild(card_view.btn_card)
|
self._area_handcard_list:AddChild(card_view.btn_card)
|
||||||
card_view.btn_card:TweenMove(self:GetHandCardPos(card_view, #CountCards), 0.5)
|
card_view.btn_card:TweenMove(self:GetHandCardPos(card_view, #CountCards), 0.3)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -858,6 +858,7 @@ end
|
||||||
|
|
||||||
--出牌
|
--出牌
|
||||||
function M:UpdateOutCardList(outcard)
|
function M:UpdateOutCardList(outcard)
|
||||||
|
printlog("UpdateOutCardListss"..outcard)
|
||||||
self._area_outcard_list:RemoveChildren(0, -1, true)
|
self._area_outcard_list:RemoveChildren(0, -1, true)
|
||||||
local outcards = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Gcm_OutCard')
|
local outcards = UIPackage.CreateObjectFromURL('ui://Main_RunBeard/Gcm_OutCard')
|
||||||
if outcard == 0 then
|
if outcard == 0 then
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,19 @@
|
||||||
{
|
{
|
||||||
"objectStatus": {
|
"objectStatus": {
|
||||||
"n112_rnez": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n123_thxk": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n86_q50p": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n13": {
|
"n13": {
|
||||||
"collapsed": true
|
"collapsed": true
|
||||||
},
|
},
|
||||||
|
"n112_rnez": {
|
||||||
|
"collapsed": true
|
||||||
|
},
|
||||||
"n102_t2e2": {
|
"n102_t2e2": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n35_k3io": {
|
"n35_k3io": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n93_eclw": {
|
"n121_thxk": {
|
||||||
"collapsed": true
|
"hidden": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"adaptiveTest": true,
|
"adaptiveTest": true,
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,6 @@
|
||||||
"n241_n6w8": {
|
"n241_n6w8": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n175_mn85": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n74_i7lq": {
|
"n74_i7lq": {
|
||||||
"locked": true
|
"locked": true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"objectStatus": {
|
||||||
|
"n53_n96g": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n55_vena": {
|
||||||
|
"hidden": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"objectStatus": {
|
||||||
|
"n57_ufim": {
|
||||||
|
"hidden": true
|
||||||
|
},
|
||||||
|
"n55_vena": {
|
||||||
|
"hidden": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1 +1,7 @@
|
||||||
{}
|
{
|
||||||
|
"objectStatus": {
|
||||||
|
"n53_n96g": {
|
||||||
|
"hidden": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -19,9 +19,6 @@
|
||||||
"n170_o49p": {
|
"n170_o49p": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
},
|
},
|
||||||
"n183_yfzf": {
|
|
||||||
"collapsed": true
|
|
||||||
},
|
|
||||||
"n35_k3io": {
|
"n35_k3io": {
|
||||||
"hidden": true
|
"hidden": true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -31,30 +31,19 @@
|
||||||
"test.device": "720p Phone",
|
"test.device": "720p Phone",
|
||||||
"canvasColor": 10066329,
|
"canvasColor": 10066329,
|
||||||
"auxline2": true,
|
"auxline2": true,
|
||||||
<<<<<<< HEAD
|
|
||||||
"doc.activeDoc": "ui://v6yvqp7wf55qw5",
|
|
||||||
=======
|
|
||||||
"doc.activeDoc": "ui://v0j9abjygq7m8f",
|
"doc.activeDoc": "ui://v0j9abjygq7m8f",
|
||||||
>>>>>>> b23014eefe67e06cde41b68d1c0f5ddd80843723
|
|
||||||
"libview.twoColumn": false,
|
"libview.twoColumn": false,
|
||||||
"libview.expandedNodes": [
|
"libview.expandedNodes": [
|
||||||
"v0j9abjy",
|
"v0j9abjy",
|
||||||
"/",
|
"/",
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
"v0j9abjy",
|
"v0j9abjy",
|
||||||
"/Main_style_2/",
|
"/Main_style_2/",
|
||||||
>>>>>>> b23014eefe67e06cde41b68d1c0f5ddd80843723
|
|
||||||
"v6yvqp7w",
|
"v6yvqp7w",
|
||||||
"/",
|
"/",
|
||||||
"v6yvqp7w",
|
"v6yvqp7w",
|
||||||
"/component/",
|
"/component/",
|
||||||
"v6yvqp7w",
|
"v6yvqp7w",
|
||||||
<<<<<<< HEAD
|
|
||||||
"/component/Main/"
|
|
||||||
=======
|
|
||||||
"/image/"
|
"/image/"
|
||||||
>>>>>>> b23014eefe67e06cde41b68d1c0f5ddd80843723
|
|
||||||
],
|
],
|
||||||
"auxline1": true,
|
"auxline1": true,
|
||||||
"snapToGrid": true,
|
"snapToGrid": true,
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<image id="n15_qpk6" name="n15" src="prgzeu" fileName="images/sd.png" xy="-8,0" size="674,110" visible="false"/>
|
<image id="n15_qpk6" name="n15" src="prgzeu" fileName="images/sd.png" xy="-8,0" size="674,110" visible="false"/>
|
||||||
<image id="n21_n6fs" name="n21" src="m9jah8" fileName="images/dks02.png" xy="470,0" size="396,36" visible="false"/>
|
<image id="n21_n6fs" name="n21" src="m9jah8" fileName="images/dks02.png" xy="470,0" size="396,36" visible="false"/>
|
||||||
<component id="n20_qpk6" name="btn_log" src="prgzdg" fileName="component/phone_info/Btn_log.xml" xy="556,14" visible="false" touchable="false"/>
|
<component id="n20_qpk6" name="btn_log" src="prgzdg" fileName="component/phone_info/Btn_log.xml" xy="556,14" visible="false" touchable="false"/>
|
||||||
<component id="n1" name="btn_setting" src="prgzdi" fileName="component/phone_info/Btn_setting.xml" xy="1187,2" size="55,74">
|
<component id="n1" name="btn_setting" src="prgzdi" fileName="component/phone_info/Btn_setting.xml" xy="1277,24" size="55,74">
|
||||||
<relation target="" sidePair="left-right%"/>
|
<relation target="" sidePair="left-right%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n5" name="pb_batteryLevel" src="prgzdk" fileName="component/phone_info/ProgressBar2.xml" xy="5,2" size="57,28" touchable="false">
|
<component id="n5" name="pb_batteryLevel" src="prgzdk" fileName="component/phone_info/ProgressBar2.xml" xy="5,2" size="57,28" touchable="false">
|
||||||
|
|
@ -19,6 +19,6 @@
|
||||||
<gearDisplay controller="xinhao" pages="1"/>
|
<gearDisplay controller="xinhao" pages="1"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n7" name="tex_data" xy="314,50" size="121,34" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="2017-07-09"/>
|
<text id="n7" name="tex_data" xy="314,50" size="121,34" visible="false" fontSize="22" color="#ffffff" align="center" vAlign="middle" autoSize="none" text="2017-07-09"/>
|
||||||
<text id="n12_yyhx" name="tex_time" xy="69,0" size="76,39" fontSize="28" color="#ffffff" vAlign="middle" text="13:00"/>
|
<text id="n12_yyhx" name="tex_time" xy="69,0" size="73,39" fontSize="28" color="#ffffff" vAlign="middle" text="13:00"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="1334,750" designImageAlpha="100" designImageLayer="1">
|
<component size="1334,750" designImageAlpha="100" designImageLayer="1">
|
||||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,,3,回放" selected="0"/>
|
<controller name="state" pages="0,准备状态,1,游戏状态,2,,3,回放" selected="1"/>
|
||||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||||
<controller name="action" pages="2,空,0,准备,1,开始,3,打鸟" selected="0"/>
|
<controller name="action" pages="2,空,0,准备,1,开始,3,打鸟" selected="3"/>
|
||||||
<controller name="time" pages="0,,1,,2,,3," selected="1"/>
|
<controller name="time" pages="0,,1,,2,,3," selected="0"/>
|
||||||
<controller name="card_eff" pages="0,,1," selected="0"/>
|
<controller name="card_eff" pages="0,,1," selected="0"/>
|
||||||
<controller name="zidongtishi" pages="0,,1," selected="0"/>
|
<controller name="zidongtishi" pages="0,,1," selected="0"/>
|
||||||
<controller name="showBtn" pages="0,,1," selected="0"/>
|
<controller name="showBtn" pages="0,,1," selected="0"/>
|
||||||
|
|
@ -33,11 +33,11 @@
|
||||||
<gearDisplay controller="state" pages="0,1,2"/>
|
<gearDisplay controller="state" pages="0,1,2"/>
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n18" name="player_info2" src="prgzam" fileName="component/head/PlayerHead_2.xml" xy="1168,106" size="120,151">
|
<component id="n18" name="player_info2" src="prgzam" fileName="component/head/PlayerHead_2.xml" xy="1147,146" size="120,151">
|
||||||
<gearXY controller="state" pages="0,1,2,3" values="1168,106|1161,111|1157,250|1174,84"/>
|
<gearXY controller="state" pages="0,1,2,3" values="1118,133|1147,146|1157,250|1174,84"/>
|
||||||
<relation target="" sidePair="right-right%,top-top%"/>
|
<relation target="" sidePair="right-right%,top-top%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n7" name="player_info1" src="prgzab" fileName="component/head/PlayerHead_1.xml" xy="1,295" size="150,154">
|
<component id="n7" name="player_info1" src="prgzab" fileName="component/head/PlayerHead_1.xml" xy="1,299" size="150,154">
|
||||||
<gearXY controller="state" pages="0,1,2,3" values="1,295|1,299|37,355|9,334"/>
|
<gearXY controller="state" pages="0,1,2,3" values="1,295|1,299|37,355|9,334"/>
|
||||||
<relation target="" sidePair="left-left,bottom-bottom"/>
|
<relation target="" sidePair="left-left,bottom-bottom"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -46,37 +46,38 @@
|
||||||
<gearLook controller="state" pages="3" values="1,0,0,1" default="1,0,0,1"/>
|
<gearLook controller="state" pages="3" values="1,0,0,1" default="1,0,0,1"/>
|
||||||
<relation target="" sidePair="center-center,bottom-bottom"/>
|
<relation target="" sidePair="center-center,bottom-bottom"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n71_sdax" name="player_card_info_2" src="prgz8d" fileName="component/card_info/Player_card_info_2.xml" xy="797,117" touchable="false">
|
<component id="n71_sdax" name="player_card_info_2" src="prgz8d" fileName="component/card_info/Player_card_info_2.xml" xy="776,157" touchable="false">
|
||||||
<gearDisplay controller="state" pages="1,3"/>
|
<gearDisplay controller="state" pages="1,3"/>
|
||||||
<relation target="n18" sidePair="right-left,middle-middle"/>
|
<relation target="n18" sidePair="right-left,middle-middle"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n67_qfrg" name="time" src="prgzer" fileName="component/Clock.xml" xy="171,315" size="82,88" scale="0.8,0.8" visible="false" touchable="false">
|
<component id="n67_qfrg" name="time" src="prgzer" fileName="component/Clock.xml" xy="625,198" size="82,88" scale="0.8,0.8" visible="false" touchable="false">
|
||||||
<gearDisplay controller="time" pages="1,2,3"/>
|
<gearDisplay controller="time" pages="1,2,3"/>
|
||||||
<gearXY controller="time" pages="1,2" values="171,315|1133,63" default="625,198"/>
|
<gearXY controller="time" pages="1,2" values="171,315|1133,63" default="625,198"/>
|
||||||
<relation target="" sidePair="left-left%,top-top%"/>
|
<relation target="" sidePair="left-left%,top-top%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n129_thxk" name="btn_daNiao" src="thxkcis" fileName="component/Result/btn_daNiao.xml" xy="281,328" size="270,96" group="n131_z1ae">
|
<component id="n129_thxk" name="btn_daNiao" src="thxkcis" fileName="component/Result/btn_daNiao.xml" xy="235,386" size="285,109" group="n131_z1ae">
|
||||||
<gearDisplay controller="action" pages="3"/>
|
<gearDisplay controller="action" pages="3"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n130_thxk" name="btn_buDaNiao" src="thxkcit" fileName="component/Result/btn_buDaNiao.xml" xy="818,328" size="270,96" group="n131_z1ae">
|
<component id="n130_thxk" name="btn_buDaNiao" src="thxkcit" fileName="component/Result/btn_buDaNiao.xml" xy="813,386" size="285,109" group="n131_z1ae">
|
||||||
<gearDisplay controller="action" pages="3"/>
|
<gearDisplay controller="action" pages="3"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n131_z1ae" name="startGameBtn" xy="281,328" size="807,96" advanced="true">
|
<group id="n131_z1ae" name="startGameBtn" xy="235,386" size="863,109" advanced="true">
|
||||||
<gearDisplay controller="state" pages="1"/>
|
<gearDisplay controller="state" pages="1"/>
|
||||||
|
<relation target="" sidePair="center-center"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n34_k3io" name="btn_ready" src="thxkciu" fileName="component/Result/btn_ready.xml" xy="294,335" size="270,96" group="n36_k3io">
|
<component id="n34_k3io" name="btn_ready" src="thxkciu" fileName="component/Result/btn_ready.xml" xy="241,388" size="270,96" group="n36_k3io">
|
||||||
<gearDisplay controller="action" pages="0,1"/>
|
<gearDisplay controller="action" pages="0,1"/>
|
||||||
<Button icon="ui://9n9stu2ehnkrcgt"/>
|
<Button icon="ui://9n9stu2ehnkrcgt"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n35_k3io" name="btn_start" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="491,-311" group="n36_k3io" visible="false">
|
<component id="n35_k3io" name="btn_start" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="482,-257" group="n36_k3io" visible="false">
|
||||||
<gearDisplay controller="action" pages="1"/>
|
<gearDisplay controller="action" pages="1"/>
|
||||||
<Button icon="ui://27vd145bk3io3t"/>
|
<Button icon="ui://27vd145bk3io3t"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n118_mncc" name="btn_xipai" src="thxkciv" fileName="component/Result/btn_xipai.xml" xy="832,335" size="270,96" group="n36_k3io">
|
<component id="n118_mncc" name="btn_xipai" src="thxkciv" fileName="component/Result/btn_xipai.xml" xy="823,388" size="270,96" group="n36_k3io">
|
||||||
<gearDisplay controller="action" pages="0,1"/>
|
<gearDisplay controller="action" pages="0,1"/>
|
||||||
<Button icon="ui://27vd145bf40a7i6a"/>
|
<Button icon="ui://27vd145bf40a7i6a"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n36_k3io" name="readyBtn" xy="294,-311" size="808,742" advanced="true">
|
<group id="n36_k3io" name="readyBtn" xy="241,-257" size="852,741" advanced="true">
|
||||||
<gearDisplay controller="state" pages="0"/>
|
<gearDisplay controller="state" pages="0"/>
|
||||||
<relation target="" sidePair="center-center%,bottom-bottom"/>
|
<relation target="" sidePair="center-center%,bottom-bottom"/>
|
||||||
</group>
|
</group>
|
||||||
|
|
@ -90,20 +91,20 @@
|
||||||
<component id="n77_ij2y" name="gcm_chat" src="h1uu2p" fileName="Gcm_chat.xml" pkg="l0ds4ys6" xy="1237,356">
|
<component id="n77_ij2y" name="gcm_chat" src="h1uu2p" fileName="Gcm_chat.xml" pkg="l0ds4ys6" xy="1237,356">
|
||||||
<relation target="" sidePair="right-right%"/>
|
<relation target="" sidePair="right-right%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n79_roef" name="btn_distance" src="kxwjhyc" fileName="component/gps/btn_distance_new.xml" pkg="27vd145b" xy="537,10" visible="false" touchable="false">
|
<component id="n79_roef" name="btn_distance" src="kxwjhyc" fileName="component/gps/btn_distance_new.xml" pkg="27vd145b" xy="531,10" visible="false" touchable="false">
|
||||||
<gearDisplay controller="state" pages="0,1,2"/>
|
<gearDisplay controller="state" pages="0,1,2"/>
|
||||||
<relation target="n86_q50p" sidePair="right-right"/>
|
<relation target="n86_q50p" sidePair="right-right"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n82_q50p" name="right_panel" src="prgzet" fileName="component/RightPanel.xml" xy="6,8" size="1334,108" group="n86_q50p">
|
<component id="n82_q50p" name="right_panel" src="prgzet" fileName="component/RightPanel.xml" xy="3,5" size="1331,108" group="n86_q50p">
|
||||||
<gearDisplay controller="state" pages="0,1,2,3"/>
|
<gearDisplay controller="state" pages="0,1,2,3"/>
|
||||||
<relation target="" sidePair="width-width%"/>
|
<relation target="" sidePair="width-width%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n83_q50p" name="roominfo_panel1" src="prgzev" fileName="component/RoomInfoPanel1.xml" xy="493,-1" size="274,41" group="n86_q50p" touchable="false">
|
<component id="n83_q50p" name="roominfo_panel1" src="prgzev" fileName="component/RoomInfoPanel1.xml" xy="498,-1" size="271,41" group="n86_q50p" touchable="false">
|
||||||
<relation target="" sidePair="right-right%"/>
|
<relation target="" sidePair="right-right%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n85_q50p" name="btn_rule" src="prgzdu" fileName="component/poker/Btn_log.xml" xy="140,12" group="n86_q50p"/>
|
<component id="n85_q50p" name="btn_rule" src="prgzdu" fileName="component/poker/Btn_log.xml" xy="142,12" size="89,77" group="n86_q50p"/>
|
||||||
<component id="n87_q50p" name="roominfo_panel" src="prgzev" fileName="component/RoomInfoPanel1.xml" xy="270,-122" size="150,77" group="n86_q50p" touchable="false"/>
|
<component id="n87_q50p" name="roominfo_panel" src="prgzev" fileName="component/RoomInfoPanel1.xml" xy="272,-122" size="147,77" group="n86_q50p" touchable="false"/>
|
||||||
<group id="n86_q50p" name="n86" xy="6,-122" size="1334,238" advanced="true">
|
<group id="n86_q50p" name="n86" xy="3,-122" size="1331,235" advanced="true">
|
||||||
<relation target="" sidePair="width-width%,center-center"/>
|
<relation target="" sidePair="width-width%,center-center"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n75_jmab" name="poker_eff" src="prgz9k" fileName="component/effect/poker/poker_eff.xml" xy="618,10" touchable="false">
|
<component id="n75_jmab" name="poker_eff" src="prgz9k" fileName="component/effect/poker/poker_eff.xml" xy="618,10" touchable="false">
|
||||||
|
|
@ -142,29 +143,33 @@
|
||||||
</text>
|
</text>
|
||||||
<graph id="n102_t2e2" name="n109" xy="-184,-46" size="1670,834" visible="false" type="rect" lineSize="0" fillColor="#80000000"/>
|
<graph id="n102_t2e2" name="n109" xy="-184,-46" size="1670,834" visible="false" type="rect" lineSize="0" fillColor="#80000000"/>
|
||||||
<component id="n101_t2e2" name="tuoguanzhong" src="prgzew" fileName="component/tuoguanzhong.xml" xy="304,564" visible="false"/>
|
<component id="n101_t2e2" name="tuoguanzhong" src="prgzew" fileName="component/tuoguanzhong.xml" xy="304,564" visible="false"/>
|
||||||
<component id="n121_thxk" name="btn_moreBtn" src="thxkcio" fileName="component/poker/btn_moreBtn.xml" xy="1255,18">
|
<component id="n121_thxk" name="btn_moreBtn" src="thxkcio" fileName="component/poker/btn_moreBtn.xml" xy="1255,18" visible="false">
|
||||||
<relation target="" sidePair="left-right%"/>
|
<relation target="" sidePair="left-right%"/>
|
||||||
<Button controller="showBtn" page="1"/>
|
<Button controller="showBtn" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<image id="n122_thxk" name="n122" src="thxkcim" fileName="images/Rectangle 397.png" xy="1239,63" size="80,163" group="n123_thxk">
|
<image id="n122_thxk" name="n122" src="thxkcim" fileName="images/Rectangle 397.png" xy="1239,63" size="80,78" group="n123_thxk">
|
||||||
<gearSize controller="state" pages="0,1" values="80,163,1,1|80,78,1,1" default="80,258,1,1"/>
|
<gearSize controller="state" pages="0,1" values="80,163,1,1|80,78,1,1" default="80,258,1,1"/>
|
||||||
</image>
|
</image>
|
||||||
<component id="n84_q50p" name="btn_back_lobby" src="prgzds" fileName="component/poker/Btn_back_lobby.xml" xy="1258,70" size="44,65" group="n123_thxk">
|
|
||||||
<gearDisplay controller="state" pages="0,3"/>
|
|
||||||
</component>
|
|
||||||
<component id="n120_r1z9" name="btn_leave_lobby" src="vijocih" fileName="component/poker/Btn_leave_lobby.xml" xy="1258,160" group="n123_thxk">
|
|
||||||
<gearDisplay controller="state" pages="0,3"/>
|
|
||||||
</component>
|
|
||||||
<image id="n125_thxk" name="n125" src="thxkcip" fileName="images/Line 23.png" xy="1250,146" group="n123_thxk">
|
<image id="n125_thxk" name="n125" src="thxkcip" fileName="images/Line 23.png" xy="1250,146" group="n123_thxk">
|
||||||
<gearDisplay controller="state" pages="0"/>
|
<gearDisplay controller="state" pages="0"/>
|
||||||
</image>
|
</image>
|
||||||
<component id="n100_n6fs" name="btn_back_jiesan" src="prgzdw" fileName="component/poker/Btn_back_jiesan.xml" xy="1258,69" group="n123_thxk">
|
<component id="n100_n6fs" name="btn_back_jiesan" src="prgzdw" fileName="component/poker/Btn_back_jiesan.xml" xy="1258,69" group="n123_thxk">
|
||||||
<gearDisplay controller="state" pages="1"/>
|
<gearDisplay controller="state" pages="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n123_thxk" name="ShowMore" xy="1239,63" size="80,163" advanced="true">
|
<group id="n123_thxk" name="ShowMore" xy="1239,63" size="80,84" advanced="true">
|
||||||
<gearDisplay controller="showBtn" pages="1"/>
|
<gearDisplay controller="showBtn" pages="1"/>
|
||||||
<relation target="" sidePair="left-right%"/>
|
<relation target="" sidePair="left-right%"/>
|
||||||
</group>
|
</group>
|
||||||
|
<component id="n120_r1z9" name="btn_leave_lobby" src="vijocih" fileName="component/poker/Btn_leave_lobby.xml" xy="1192,8" size="47,74" group="n132_kt8n">
|
||||||
|
<gearDisplay controller="state" pages="0,3"/>
|
||||||
|
</component>
|
||||||
|
<component id="n84_q50p" name="btn_back_lobby" src="prgzds" fileName="component/poker/Btn_back_lobby.xml" xy="1274,105" size="57,65" group="n132_kt8n">
|
||||||
|
<gearDisplay controller="state" pages="0,1,3"/>
|
||||||
|
</component>
|
||||||
|
<group id="n132_kt8n" name="n132" xy="1192,8" size="139,162" advanced="true">
|
||||||
|
<gearDisplay controller="state" pages="0,1,2"/>
|
||||||
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
|
</group>
|
||||||
</displayList>
|
</displayList>
|
||||||
<transition name="t1">
|
<transition name="t1">
|
||||||
<item time="0" type="Alpha" target="n75_jmab" tween="true" startValue="1" endValue="1" duration="18"/>
|
<item time="0" type="Alpha" target="n75_jmab" tween="true" startValue="1" endValue="1" duration="18"/>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="44,62" extention="Button" initName="btn_back_lobby">
|
<component size="50,74" extention="Button" initName="btn_back_lobby">
|
||||||
<controller name="button" pages="0,up,1,down" selected="0"/>
|
<controller name="button" pages="0,up,1,down" selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n3_hp0b" name="n3" src="prgzdt" fileName="images/lk.png" xy="0,0" pivot="0.5,0.5" aspect="true"/>
|
<image id="n3_hp0b" name="n3" src="prgzdt" fileName="images/lk.png" xy="0,0" pivot="0.5,0.5" aspect="true"/>
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 2.4 KiB |
|
|
@ -3,7 +3,7 @@
|
||||||
<controller name="state" pages="0,,1," selected="0"/>
|
<controller name="state" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n7_rtsl" name="n7" src="lwclq" fileName="denglu_bg_01.png" xy="-142,0">
|
<image id="n7_rtsl" name="n7" src="lwclq" fileName="denglu_bg_01.png" xy="-142,0">
|
||||||
<relation target="" sidePair="width-width%,height-height%"/>
|
<relation target="" sidePair="width-width%,height-height%,center-center"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n24_xn94" name="n24" src="xn9417" fileName="hall_girl_bg@2x.png" xy="355,106" visible="false">
|
<image id="n24_xn94" name="n24" src="xn9417" fileName="hall_girl_bg@2x.png" xy="355,106" visible="false">
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
<component id="n20_nld2" name="pb_progress" src="pcy012" fileName="commpoent/Slider1.xml" xy="629,487" size="95,95" group="n8_rtsl" aspect="true">
|
<component id="n20_nld2" name="pb_progress" src="pcy012" fileName="commpoent/Slider1.xml" xy="629,487" size="95,95" group="n8_rtsl" aspect="true">
|
||||||
<Slider value="100" max="100"/>
|
<Slider value="100" max="100"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n28_thxk" name="tex_value" xy="618,371" size="103,62" group="n8_rtsl" visible="false" font="Microsoft YaHei" fontSize="46" color="#ffffff" align="center" bold="true" text="80%">
|
<text id="n28_thxk" name="tex_value" xy="618,371" size="104,61" group="n8_rtsl" visible="false" font="Microsoft YaHei" fontSize="46" color="#ffffff" align="center" bold="true" text="80%">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</text>
|
</text>
|
||||||
<image id="n29_thxk" name="n29" src="thxk7i4y" fileName="images/Group 534.png" xy="365,96" group="n8_rtsl"/>
|
<image id="n29_thxk" name="n29" src="thxk7i4y" fileName="images/Group 534.png" xy="365,96" group="n8_rtsl"/>
|
||||||
|
|
|
||||||
|
|
@ -29,49 +29,49 @@
|
||||||
<relation target="" sidePair="top-top%"/>
|
<relation target="" sidePair="top-top%"/>
|
||||||
<relation target="n29" sidePair="left-right"/>
|
<relation target="n29" sidePair="left-right"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n84_mv8k" name="tex_id" xy="127,69" size="161,42" group="n28" font="Microsoft YaHei" fontSize="30" color="#ffffff" bold="true" text="ID:123456">
|
<text id="n84_mv8k" name="tex_id" xy="127,69" size="159,41" group="n28" font="Microsoft YaHei" fontSize="30" color="#ffffff" bold="true" text="ID:123456">
|
||||||
<relation target="" sidePair="top-top%"/>
|
<relation target="" sidePair="top-top%"/>
|
||||||
<relation target="n29" sidePair="left-right"/>
|
<relation target="n29" sidePair="left-right"/>
|
||||||
</text>
|
</text>
|
||||||
<group id="n28" name="player_info_panel" xy="12,11" size="348,114" advanced="true">
|
<group id="n28" name="player_info_panel" xy="12,11" size="348,114" advanced="true">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</group>
|
</group>
|
||||||
<image id="n82_m0ei" name="n82" src="thxk7dou" fileName="images/index/Rectangle 23.png" xy="42,645" size="1261,106" group="n7" visible="false">
|
<image id="n82_m0ei" name="n82" src="thxk7dou" fileName="images/index/Rectangle 23.png" xy="42,644" size="1261,106" group="n7" visible="false">
|
||||||
<relation target="" sidePair="width-width"/>
|
<relation target="" sidePair="width-width"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n138_csp4" name="n138" src="csp47cmz" fileName="component/index/images/icon_shuangcheng.png" xy="484,687" size="200,102" group="n104_xsk4" visible="false"/>
|
<image id="n138_csp4" name="n138" src="csp47cmz" fileName="component/index/images/icon_shuangcheng.png" xy="484,680" size="200,109" group="n104_xsk4" visible="false"/>
|
||||||
<component id="n51_lwcl" name="btn_share" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="939,723" size="162,80" group="n104_xsk4" visible="false" touchable="false">
|
<component id="n51_lwcl" name="btn_share" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="939,716" size="162,87" group="n104_xsk4" visible="false" touchable="false">
|
||||||
<Button icon="ui://2d9xdj6zlwcl5f" controller="share" page="1"/>
|
<Button icon="ui://2d9xdj6zlwcl5f" controller="share" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n52_lwcl" name="btn_record" src="m16m7dqy" fileName="images/index/btn_record.xml" xy="462,666" size="181,64" group="n104_xsk4">
|
<component id="n52_lwcl" name="btn_record" src="m16m7dqy" fileName="images/index/btn_record.xml" xy="462,659" size="181,71" group="n104_xsk4">
|
||||||
<relation target="" sidePair="left-left%"/>
|
<relation target="" sidePair="left-left%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n54_lwcl" name="btn_agent" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="575,723" size="162,80" group="n104_xsk4" visible="false" touchable="false">
|
<component id="n54_lwcl" name="btn_agent" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="575,716" size="162,87" group="n104_xsk4" visible="false" touchable="false">
|
||||||
<Button icon="ui://2d9xdj6zlwcl5g"/>
|
<Button icon="ui://2d9xdj6zlwcl5g"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n50_lwcl" name="btn_video" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="393,723" size="162,80" group="n104_xsk4" visible="false">
|
<component id="n50_lwcl" name="btn_video" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="393,716" size="162,87" group="n104_xsk4" visible="false">
|
||||||
<Button icon="ui://2d9xdj6zlwcl5e"/>
|
<Button icon="ui://2d9xdj6zlwcl5e"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n89_goju" name="btn_service" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="757,723" size="162,80" group="n104_xsk4" visible="false" touchable="false">
|
<component id="n89_goju" name="btn_service" src="lwcl5i" fileName="component/index/Btn_menu.xml" xy="757,716" size="162,87" group="n104_xsk4" visible="false" touchable="false">
|
||||||
<Button icon="ui://2d9xdj6zgojufp"/>
|
<Button icon="ui://2d9xdj6zgojufp"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n109_ker3" name="btn_setting" src="m16m7dqt" fileName="images/index/btn_setting.xml" xy="63,666" size="181,64" group="n104_xsk4">
|
<component id="n109_ker3" name="btn_setting" src="m16m7dqt" fileName="images/index/btn_setting.xml" xy="63,659" size="181,71" group="n104_xsk4">
|
||||||
<relation target="" sidePair="left-left%"/>
|
<relation target="" sidePair="left-left%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n139_csp4" name="btn_teamwork" src="m16m7dqu" fileName="images/index/btn_teamwork.xml" xy="1095,666" size="181,64" group="n104_xsk4">
|
<component id="n139_csp4" name="btn_teamwork" src="m16m7dqu" fileName="images/index/btn_teamwork.xml" xy="1095,659" size="181,71" group="n104_xsk4">
|
||||||
<relation target="" sidePair="left-left%"/>
|
<relation target="" sidePair="left-left%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n146_thxk" name="btn_temphuodon" src="m16m7dqv" fileName="images/index/btn_temphuodon.xml" xy="274,666" size="158,64" group="n104_xsk4" aspect="true">
|
<component id="n146_thxk" name="btn_temphuodon" src="m16m7dqv" fileName="images/index/btn_temphuodon.xml" xy="274,659" size="158,71" group="n104_xsk4" aspect="true">
|
||||||
<relation target="" sidePair="left-left%"/>
|
<relation target="" sidePair="left-left%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n147_thxk" name="btn_tempwanfa" src="m16m7dqw" fileName="images/index/btn_tempwanfa.xml" xy="673,666" size="181,64" group="n104_xsk4">
|
<component id="n147_thxk" name="btn_tempwanfa" src="m16m7dqw" fileName="images/index/btn_tempwanfa.xml" xy="673,659" size="181,71" group="n104_xsk4">
|
||||||
<relation target="" sidePair="left-left%"/>
|
<relation target="" sidePair="left-left%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n148_thxk" name="btn_tempxiaoxi" src="m16m7dqx" fileName="images/index/btn_tempxiaoxi.xml" xy="884,666" size="181,64" group="n104_xsk4">
|
<component id="n148_thxk" name="btn_tempxiaoxi" src="m16m7dqx" fileName="images/index/btn_tempxiaoxi.xml" xy="884,659" size="181,71" group="n104_xsk4">
|
||||||
<relation target="" sidePair="left-left%"/>
|
<relation target="" sidePair="left-left%"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n104_xsk4" name="n104" xy="63,666" size="1213,137" group="n7" advanced="true"/>
|
<group id="n104_xsk4" name="n104" xy="63,659" size="1213,144" group="n7" advanced="true"/>
|
||||||
<group id="n7" name="menu_panel" xy="42,645" size="1261,158" advanced="true">
|
<group id="n7" name="menu_panel" xy="42,644" size="1261,159" advanced="true">
|
||||||
<relation target="" sidePair="left-left,bottom-bottom"/>
|
<relation target="" sidePair="left-left,bottom-bottom"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n108_ker3" name="btn_exit" src="ker3j6" fileName="component/index/Btn_menu_top.xml" xy="508,13" group="n111_ker3" visible="false">
|
<component id="n108_ker3" name="btn_exit" src="ker3j6" fileName="component/index/Btn_menu_top.xml" xy="508,13" group="n111_ker3" visible="false">
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<component size="1334,750" designImage="ui://3vytbifonu0l2f" designImageOffsetX="-200" designImageOffsetY="-100">
|
<component size="1334,750" designImage="ui://3vytbifonu0l2f" designImageOffsetX="-200" designImageOffsetY="-100">
|
||||||
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="0"/>
|
<controller name="state" pages="0,准备状态,1,游戏状态,2,回合间状态,3,回放状态" selected="0"/>
|
||||||
<controller name="sdk" pages="0,,1," selected="0"/>
|
<controller name="sdk" pages="0,,1," selected="0"/>
|
||||||
<controller name="action" pages="2,空,0,准备,1,开始" selected="0"/>
|
<controller name="action" pages="2,空,0,准备,1,开始" selected="1"/>
|
||||||
<controller name="jushu" pages="0,,1," selected="0"/>
|
<controller name="jushu" pages="0,,1," selected="0"/>
|
||||||
<controller name="bg_state" pages="0,,1,,2," selected="0"/>
|
<controller name="bg_state" pages="0,,1,,2," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
|
|
@ -35,24 +35,24 @@
|
||||||
<gearDisplay controller="state" pages="0,1,2"/>
|
<gearDisplay controller="state" pages="0,1,2"/>
|
||||||
<relation target="" sidePair="right-right"/>
|
<relation target="" sidePair="right-right"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n34_k3io" name="btn_ready1" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="382,416" group="n36_k3io" visible="false">
|
<component id="n34_k3io" name="btn_ready1" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="382,437" group="n36_k3io" visible="false">
|
||||||
<gearDisplay controller="action" pages="0"/>
|
<gearDisplay controller="action" pages="0"/>
|
||||||
<Button icon="ui://27vd145bk3io3u"/>
|
<Button icon="ui://27vd145bk3io3u"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n35_k3io" name="btn_start1" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="382,416" group="n36_k3io" visible="false">
|
<component id="n35_k3io" name="btn_start1" src="ycze3m" fileName="buttons/Btn_Yellow.xml" pkg="27vd145b" xy="382,437" group="n36_k3io" visible="false">
|
||||||
<Button icon="ui://27vd145bk3io3t"/>
|
<Button icon="ui://27vd145bk3io3t"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n169_o49p" name="btn_ready" src="kzpehy5" fileName="component/game/btn_ready.xml" pkg="27vd145b" xy="257,393" group="n36_k3io">
|
<component id="n169_o49p" name="btn_ready" src="kzpehy5" fileName="component/game/btn_ready.xml" pkg="27vd145b" xy="257,414" group="n36_k3io">
|
||||||
<gearDisplay controller="action" pages="0,1"/>
|
<gearDisplay controller="action" pages="0,1"/>
|
||||||
<Button icon="ui://27vd145bf7zuchl"/>
|
<Button icon="ui://27vd145bf7zuchl"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n170_o49p" name="btn_start" src="rbz8chn" fileName="buttons/Btn_newYellow_long.xml" pkg="27vd145b" xy="365,396" group="n36_k3io" visible="false">
|
<component id="n170_o49p" name="btn_start" src="rbz8chn" fileName="buttons/Btn_newYellow_long.xml" pkg="27vd145b" xy="365,417" group="n36_k3io" visible="false">
|
||||||
<Button icon="ui://27vd145bf7zuchk"/>
|
<Button icon="ui://27vd145bf7zuchk"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n184_a81d" name="btn_xipai" src="a81d1hg" fileName="component/Main/component/btn_xipai.xml" xy="836,393" group="n36_k3io">
|
<component id="n184_a81d" name="btn_xipai" src="a81d1hg" fileName="component/Main/component/btn_xipai.xml" xy="836,414" group="n36_k3io">
|
||||||
<gearDisplay controller="action" pages="0,1"/>
|
<gearDisplay controller="action" pages="0,1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n36_k3io" name="n36" xy="257,393" size="819,127" advanced="true">
|
<group id="n36_k3io" name="n36" xy="257,414" size="819,127" advanced="true">
|
||||||
<gearDisplay controller="state" pages="0"/>
|
<gearDisplay controller="state" pages="0"/>
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</group>
|
</group>
|
||||||
|
|
@ -119,19 +119,19 @@
|
||||||
<gearDisplay controller="state" pages="1,3"/>
|
<gearDisplay controller="state" pages="1,3"/>
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</text>
|
</text>
|
||||||
<component id="n166_o49p" name="btn_back_lobby" src="f55qvp" fileName="component/Main/component/Folder/component/phone_info/Btn_back_lobby.xml" xy="1282,82" size="54,89" group="n183_yfzf">
|
<component id="n166_o49p" name="btn_back_lobby" src="f55qvp" fileName="component/Main/component/Folder/component/phone_info/Btn_back_lobby.xml" xy="1261,96" size="54,89" group="n183_yfzf">
|
||||||
<gearDisplay controller="state" pages="0,3"/>
|
<gearDisplay controller="state" pages="0,3"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n167_o49p" name="Btn_jiesan_lobby" src="oynr1ag" fileName="component/Main/component/Folder/component/phone_info/Btn_jiesan_lobby.xml" xy="1203,3" size="54,89" group="n183_yfzf">
|
<component id="n167_o49p" name="Btn_jiesan_lobby" src="oynr1ag" fileName="component/Main/component/Folder/component/phone_info/Btn_jiesan_lobby.xml" xy="1184,11" size="54,89" group="n183_yfzf">
|
||||||
<gearDisplay controller="state" pages="1,2"/>
|
<gearDisplay controller="state" pages="1,2"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n181_r1z9" name="btn_leave_lobby" src="r1z91gx" fileName="component/Main/component/Folder/component/phone_info/Btn_leave_lobby.xml" xy="1199,9" size="50,77" group="n183_yfzf">
|
<component id="n181_r1z9" name="btn_leave_lobby" src="r1z91gx" fileName="component/Main/component/Folder/component/phone_info/Btn_leave_lobby.xml" xy="1171,17" size="50,77" group="n183_yfzf">
|
||||||
<gearDisplay controller="state" pages="0,3"/>
|
<gearDisplay controller="state" pages="0,3"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n168_o49p" name="btn_setting" src="f55qva" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="1268,5" size="65,89" group="n183_yfzf">
|
<component id="n168_o49p" name="btn_setting" src="f55qva" fileName="component/Main/component/Folder/component/phone_info/Btn_setting.xml" xy="1246,13" size="73,89" group="n183_yfzf">
|
||||||
<gearDisplay controller="state" pages="0,1,2"/>
|
<gearDisplay controller="state" pages="0,1,2"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n183_yfzf" name="n183" xy="1199,3" size="137,168" advanced="true">
|
<group id="n183_yfzf" name="n183" xy="1171,11" size="148,174" advanced="true">
|
||||||
<relation target="" sidePair="right-right,top-top"/>
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
</group>
|
</group>
|
||||||
</displayList>
|
</displayList>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<list id="n36_lr5d" name="windcard_list" xy="1331,215" size="283,81" rotation="180" layout="flow_hz" lineGap="1" colGap="1" defaultItem="ui://v6yvqp7wlr5d31">
|
<list id="n36_lr5d" name="windcard_list" xy="1331,215" size="283,81" rotation="180" layout="flow_hz" lineGap="1" colGap="1" defaultItem="ui://v6yvqp7wlr5d31">
|
||||||
<relation target="" sidePair="right-right"/>
|
<relation target="" sidePair="right-right"/>
|
||||||
</list>
|
</list>
|
||||||
<list id="n35_lr5d" name="area_fz_list" xy="787,-169" size="242,135" rotation="180" layout="row" selectionMode="none" lineGap="3" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" align="right" vAlign="middle" renderOrder="descent">
|
<list id="n35_lr5d" name="area_fz_list" xy="787,-169" size="242,135" rotation="180" layout="row" selectionMode="none" lineGap="3" colGap="5" defaultItem="ui://v6yvqp7wlr5d30" vAlign="middle" renderOrder="descent">
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
<item url="ui://v6yvqp7wcyprwy"/>
|
<item url="ui://v6yvqp7wcyprwy"/>
|
||||||
<item url="ui://v6yvqp7wcyprww"/>
|
<item url="ui://v6yvqp7wcyprww"/>
|
||||||
|
|
@ -52,14 +52,14 @@
|
||||||
<Button icon="ui://v6yvqp7wj34t1go" selectedIcon="ui://v6yvqp7wj34t1go" controller="piaovalue" page="5"/>
|
<Button icon="ui://v6yvqp7wj34t1go" selectedIcon="ui://v6yvqp7wj34t1go" controller="piaovalue" page="5"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n45_j34t" name="piao" xy="226,-126" size="949,103"/>
|
<group id="n45_j34t" name="piao" xy="226,-126" size="949,103"/>
|
||||||
<component id="n46_cphv" name="daniao" src="99we1h1" fileName="component/niao/btn_niao.xml" xy="245,-205" group="n48_cphv">
|
<component id="n46_cphv" name="daniao" src="99we1h1" fileName="component/niao/btn_niao.xml" xy="248,-115" size="250,90" group="n48_cphv">
|
||||||
<gearDisplay controller="niao" pages="1"/>
|
<gearDisplay controller="niao" pages="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n47_cphv" name="budaniao" src="99we1h2" fileName="component/niao/btn_noniao.xml" xy="839,-209" group="n48_cphv">
|
<component id="n47_cphv" name="budaniao" src="99we1h2" fileName="component/niao/btn_noniao.xml" xy="862,-115" size="250,90" group="n48_cphv">
|
||||||
<gearDisplay controller="niao" pages="1"/>
|
<gearDisplay controller="niao" pages="1"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n48_cphv" name="niao" xy="245,-209" size="844,94" advanced="true">
|
<group id="n48_cphv" name="niao" xy="248,-115" size="864,90" advanced="true">
|
||||||
<relation target="" sidePair="center-center"/>
|
<relation target="" sidePair=""/>
|
||||||
</group>
|
</group>
|
||||||
</displayList>
|
</displayList>
|
||||||
<transition name="t0">
|
<transition name="t0">
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
</controller>
|
</controller>
|
||||||
<controller name="show_search" pages="0,,1," selected="0"/>
|
<controller name="show_search" pages="0,,1," selected="0"/>
|
||||||
<controller name="more" pages="0,,1," selected="0"/>
|
<controller name="more" pages="0,,1," selected="0"/>
|
||||||
<controller name="bgchange" pages="0,,1,,3,,4," selected="1"/>
|
<controller name="bgchange" pages="0,,1,,3,,4," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n269_kt8n" name="n269" src="kt8n7ij6" fileName="image 152.png" xy="0,0">
|
<image id="n269_kt8n" name="n269" src="kt8n7ij6" fileName="image 152.png" xy="0,0">
|
||||||
<gearDisplay controller="bgchange" pages="3"/>
|
<gearDisplay controller="bgchange" pages="3"/>
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
<gearDisplay controller="bgchange" pages="0"/>
|
<gearDisplay controller="bgchange" pages="0"/>
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n245_ilon" name="n245" src="n6w87i9h" fileName="images/Rectangle 9.png" xy="0,1" size="1334,120">
|
<image id="n245_ilon" name="n245" src="n6w87i9h" fileName="images/Rectangle 9.png" xy="0,1" size="1342,120">
|
||||||
<relation target="" sidePair="width-width%"/>
|
<relation target="" sidePair="width-width%"/>
|
||||||
</image>
|
</image>
|
||||||
<image id="n244_n6w8" name="n244" src="n6w87i9h" fileName="images/Rectangle 9.png" xy="0,662" size="1334,86">
|
<image id="n244_n6w8" name="n244" src="n6w87i9h" fileName="images/Rectangle 9.png" xy="0,662" size="1334,86">
|
||||||
|
|
@ -54,88 +54,84 @@
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
<Button icon="ui://m7iejg46iaes7icx"/>
|
<Button icon="ui://m7iejg46iaes7icx"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n139_cioe" name="btn_stat" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1097,22" size="65,77">
|
<component id="n139_cioe" name="btn_stat" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1039,20" size="68,91">
|
||||||
<gearXY controller="manager" pages="0,1,2,3" values="1097,22|1090,23|1090,23|1090,23"/>
|
<gearXY controller="manager" pages="0,1,2,3" values="1039,20|1039,20|1039,20|1039,20"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
<Button icon="ui://m7iejg46iaes7ict"/>
|
<Button icon="ui://m7iejg46iaes7ict"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n262_imp5" name="btn_more" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1262,23" size="64,76">
|
<component id="n262_imp5" name="btn_more" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1245,20" size="68,91">
|
||||||
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
<Button icon="ui://m7iejg46iaes7icv" controller="more" page="1"/>
|
<Button icon="ui://m7iejg46iaes7icv" controller="more" page="1"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n239_n6w8" name="btn_invite" src="n6w87i9b" fileName="component/Lst_info/Btn_Invite.xml" xy="948,22" size="67,74">
|
<component id="n239_n6w8" name="btn_invite" src="n6w87i9b" fileName="component/Lst_info/Btn_Invite.xml" xy="948,22" size="76,91">
|
||||||
<gearDisplay controller="manager" pages="1,2,3"/>
|
<gearDisplay controller="manager" pages="1,2,3"/>
|
||||||
<gearXY controller="manager" pages="1,2,3" values="873,22|878,22|878,22" default="948,22"/>
|
<gearXY controller="manager" pages="0,1,2,3" values="948,22|765,20|765,20|765,20"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n242_n6w8" name="btn_hp" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="919,20" size="85,81">
|
<component id="n242_n6w8" name="btn_hp" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="829,20" size="97,91">
|
||||||
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
||||||
<gearXY controller="manager" pages="0,1,2,3" values="919,20|781,21|787,22|789,22"/>
|
<gearXY controller="manager" pages="0,1,2,3" values="829,20|648,20|648,20|648,20"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
<Button icon="ui://m7iejg46iaes7icz"/>
|
<Button icon="ui://m7iejg46iaes7icz"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n138_cioe" name="btn_partner" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1169,22" size="65,76">
|
<component id="n138_cioe" name="btn_partner" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1169,22" size="65,91">
|
||||||
<gearDisplay controller="manager" pages="1,2,3"/>
|
<gearDisplay controller="manager" pages="1,2,3"/>
|
||||||
<gearXY controller="manager" pages="1,2,3" values="948,22|949,22|949,22" default="1169,22"/>
|
<gearXY controller="manager" pages="0,1,2,3" values="1169,22|861,20|861,20|861,20"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
<Button icon="ui://m7iejg46iaes7icr"/>
|
<Button icon="ui://m7iejg46iaes7icr"/>
|
||||||
</component>
|
</component>
|
||||||
<image id="n200_isix" name="member_tips" src="cioehom" fileName="images/info/right_panel/tips.png" xy="905,16" size="24,25" visible="false">
|
|
||||||
<gearDisplay controller="manager" pages="1,2,3"/>
|
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
|
||||||
</image>
|
|
||||||
<component id="n241_n6w8" name="btn_share" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1111,21" size="59,76" visible="false">
|
<component id="n241_n6w8" name="btn_share" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1111,21" size="59,76" visible="false">
|
||||||
<gearDisplay controller="manager" pages="0,1,2"/>
|
<gearDisplay controller="manager" pages="0,1,2"/>
|
||||||
<gearXY controller="manager" pages="0,1,2" values="1111,21|940,22|946,21" default="966,16"/>
|
<gearXY controller="manager" pages="0,1,2" values="1111,21|940,22|946,21" default="966,16"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
<Button icon="ui://m7iejg46iaes7icn"/>
|
<Button icon="ui://m7iejg46iaes7icn"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n256_iaes" name="btn_bxx" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1168,27" size="83,71">
|
<component id="n256_iaes" name="btn_bxx" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="1127,26" size="98,85">
|
||||||
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
||||||
<gearXY controller="manager" pages="0,1,2,3" values="1168,27|1160,28|1160,28|1160,28"/>
|
<gearXY controller="manager" pages="0,1,2,3" values="1127,26|1127,26|1127,26|1127,26"/>
|
||||||
<relation target="" sidePair="right-right,top-top"/>
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
<Button icon="ui://m7iejg46iaes7idn"/>
|
<Button icon="ui://m7iejg46iaes7idn"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n189_tqi8" name="btn_play" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="708,30" size="71,71">
|
<component id="n189_tqi8" name="btn_play" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="524,41" size="61,65">
|
||||||
<gearDisplay controller="manager" pages="1"/>
|
<gearDisplay controller="manager" pages="1"/>
|
||||||
<relation target="" sidePair="right-right,top-top"/>
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
<Button icon="ui://m7iejg46tqi8hw6"/>
|
<Button icon="ui://m7iejg46tqi8hw6"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n94_g8wf" name="btn_manager" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="631,25" size="64,71">
|
<component id="n94_g8wf" name="btn_manager" src="hsbhhj2" fileName="component/Lst_info/Btn_Icon.xml" xy="456,33" size="55,73">
|
||||||
<gearDisplay controller="manager" pages="1"/>
|
<gearDisplay controller="manager" pages="1"/>
|
||||||
<relation target="" sidePair="right-right,top-top"/>
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
<Button icon="ui://m7iejg46lf2qhjs"/>
|
<Button icon="ui://m7iejg46lf2qhjs"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n172_mpll" name="btn_mail" src="mgnhhqh" fileName="component/Lst_info/Button3.xml" xy="1018,22" size="65,76" controller="tip,0">
|
<component id="n172_mpll" name="btn_mail" src="mgnhhqh" fileName="component/Lst_info/Button3.xml" xy="946,20" size="73,91" controller="tip,0">
|
||||||
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
<gearDisplay controller="manager" pages="0,1,2,3"/>
|
||||||
<gearXY controller="manager" pages="0,1,2,3" values="1018,22|1017,23|1016,22|1016,22"/>
|
<gearXY controller="manager" pages="0,1,2,3" values="946,20|946,20|946,20|946,20"/>
|
||||||
<relation target="" sidePair="right-right,top-top%"/>
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
<Button icon="ui://m7iejg46iaes7icp"/>
|
<Button icon="ui://m7iejg46iaes7icp"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n203_jvvo" name="btn_close" src="t1hqhy9" fileName="component/nav/Btn_.xml" xy="17,35" size="129,114" aspect="true" scale="0.5,0.5">
|
<component id="n203_jvvo" name="btn_close" src="t1hqhy9" fileName="component/nav/Btn_.xml" xy="17,35" size="129,114" aspect="true" scale="0.5,0.5">
|
||||||
<relation target="" sidePair="left-left%,top-top%"/>
|
<relation target="" sidePair="left-left%,top-top%"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n252_ilon" name="tex_name" xy="90,11" size="157,42" group="n78_i7lq" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" autoSize="shrink" bold="true" text="老司机带带我">
|
<text id="n252_ilon" name="tex_name" xy="90,11" size="157,42" group="n78_i7lq" font="ui://27vd145bg2mo7ij0" fontSize="30" color="#fff5b8" vAlign="middle" autoSize="shrink" bold="true" strokeColor="#be4500" strokeSize="2" text="老司机带带我">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<group id="n206_jvvo" name="n206" xy="221,-77" size="252,192" group="n176_mn85"/>
|
<group id="n206_jvvo" name="n206" xy="221,-77" size="252,195" group="n176_mn85"/>
|
||||||
<image id="n248_ilon" name="n248" src="ilon7i9j" fileName="Rectangle 13.png" xy="261,46" size="212,69" group="n206_jvvo">
|
<image id="n248_ilon" name="n248" src="ilon7i9j" fileName="Rectangle 13.png" xy="261,46" size="212,69" group="n206_jvvo">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</image>
|
</image>
|
||||||
<text id="n251_ilon" name="tex_hp_title" xy="273,49" size="76,31" group="n206_jvvo" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" bold="true" text="疲劳值:">
|
<text id="n251_ilon" name="tex_hp_title" xy="264,46" size="89,37" group="n206_jvvo" font="Microsoft YaHei" fontSize="26" color="#fff5b8" align="center" vAlign="middle" bold="true" strokeColor="#be4500" strokeSize="2" text="疲劳值:">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n250_ilon" name="tex_fag" xy="355,49" size="113,32" group="n206_jvvo" font="Microsoft YaHei" fontSize="22" color="#ffffff" vAlign="middle" autoSize="none" bold="true" text="A79B17">
|
<text id="n250_ilon" name="tex_fag" xy="354,46" size="113,36" group="n206_jvvo" font="Microsoft YaHei" fontSize="26" color="#fff5b8" vAlign="middle" autoSize="none" bold="true" strokeColor="#be4500" strokeSize="2" text="A79B17">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n249_ilon" name="tex_fag_title" xy="262,80" size="80,32" group="n206_jvvo" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="right" vAlign="middle" letterSpacing="6" autoSize="none" bold="true" text="房卡:">
|
<text id="n249_ilon" name="tex_fag_title" xy="273,79" size="80,36" group="n206_jvvo" font="Microsoft YaHei" fontSize="26" color="#fff5b8" align="right" vAlign="middle" letterSpacing="6" autoSize="none" bold="true" strokeColor="#be4500" strokeSize="2" text="房卡:">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<loader id="n204_jvvo" name="icon" xy="398,-54" size="0,47" group="n206_jvvo" visible="false" url="ui://m7iejg46uybihvj" vAlign="middle">
|
<loader id="n204_jvvo" name="icon" xy="398,-54" size="0,47" group="n206_jvvo" visible="false" url="ui://m7iejg46uybihvj" vAlign="middle">
|
||||||
<relation target="" sidePair="left-left,middle-middle"/>
|
<relation target="" sidePair="left-left,middle-middle"/>
|
||||||
</loader>
|
</loader>
|
||||||
<text id="n205_jvvo" name="tex_hp" xy="344,80" size="113,32" group="n206_jvvo" font="Microsoft YaHei" fontSize="22" color="#ffffff" vAlign="middle" autoSize="none" bold="true" text="7">
|
<text id="n205_jvvo" name="tex_hp" xy="354,82" size="113,36" group="n206_jvvo" font="Microsoft YaHei" fontSize="26" color="#fff5b8" vAlign="middle" autoSize="none" bold="true" strokeColor="#be4500" strokeSize="2" text="7">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n216_ovii" name="n216" xy="221,-77" size="94,41" group="n206_jvvo" visible="false" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" text="积分:">
|
<text id="n216_ovii" name="n216" xy="221,-77" size="94,41" group="n206_jvvo" visible="false" font="Microsoft YaHei" fontSize="30" color="#ffffff" vAlign="middle" text="积分:">
|
||||||
|
|
@ -143,31 +139,31 @@
|
||||||
</text>
|
</text>
|
||||||
<image id="n229_csp4" name="n229" src="csp47i3u" fileName="images/room/jifen.png" xy="237,-61" group="n206_jvvo" visible="false"/>
|
<image id="n229_csp4" name="n229" src="csp47i3u" fileName="images/room/jifen.png" xy="237,-61" group="n206_jvvo" visible="false"/>
|
||||||
<image id="n228_csp4" name="n228" src="oviicm5" fileName="images/index/bg_07.png" pkg="2d9xdj6z" xy="252,-58" size="178,38" group="n206_jvvo" visible="false"/>
|
<image id="n228_csp4" name="n228" src="oviicm5" fileName="images/index/bg_07.png" pkg="2d9xdj6z" xy="252,-58" size="178,38" group="n206_jvvo" visible="false"/>
|
||||||
<text id="n253_ilon" name="tex_id" xy="90,53" size="158,39" group="n78_i7lq" font="Microsoft YaHei" fontSize="28" color="#ffffff" vAlign="middle" autoSize="shrink" bold="true" text="老司机带带我">
|
<text id="n253_ilon" name="tex_id" xy="90,49" size="158,42" group="n78_i7lq" font="Microsoft YaHei" fontSize="30" color="#fff5b8" vAlign="middle" autoSize="shrink" bold="true" strokeColor="#be4500" strokeSize="2" text="老司机带带我">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n254_ilon" name="tex_tableNum" xy="90,87" size="136,31" group="n78_i7lq" font="Microsoft YaHei" fontSize="22" color="#ffffff" vAlign="middle" bold="true" text="老司机带带我">
|
<text id="n254_ilon" name="tex_tableNum" xy="90,87" size="146,32" group="n78_i7lq" font="Microsoft YaHei" fontSize="22" color="#fff5b8" vAlign="middle" autoSize="none" bold="true" strokeColor="#be4500" strokeSize="2" text="老司机带带我">
|
||||||
<relation target="" sidePair="left-left,top-top"/>
|
<relation target="" sidePair="left-left,top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<group id="n78_i7lq" name="title" xy="90,11" size="158,108" group="n176_mn85" advanced="true"/>
|
<group id="n78_i7lq" name="title" xy="90,11" size="158,108" group="n176_mn85" advanced="true"/>
|
||||||
<group id="n176_mn85" name="top" xy="90,-77" size="383,196" advanced="true"/>
|
<group id="n176_mn85" name="top" xy="90,-77" size="383,196" advanced="true"/>
|
||||||
<component id="n153_cioe" name="btn_invite--" src="mgnhhqh" fileName="component/Lst_info/Button3.xml" xy="1293,7" size="123,0" group="n191_xsk4" visible="false" controller="tip,0">
|
<component id="n153_cioe" name="btn_invite--" src="mgnhhqh" fileName="component/Lst_info/Button3.xml" xy="1177,-62" size="123,0" group="n191_xsk4" visible="false" controller="tip,0">
|
||||||
<gearDisplay controller="manager" pages="1,2,3"/>
|
<gearDisplay controller="manager" pages="1,2,3"/>
|
||||||
<Button icon="ui://m7iejg46cioehok"/>
|
<Button icon="ui://m7iejg46cioehok"/>
|
||||||
</component>
|
</component>
|
||||||
<component id="n154_cioe" name="btn_refresh" src="lpkmhdf" fileName="component/Btn/Btn_refresh.xml" xy="921,-1" size="169,0" group="n191_xsk4" visible="false">
|
<component id="n154_cioe" name="btn_refresh" src="lpkmhdf" fileName="component/Btn/Btn_refresh.xml" xy="805,-70" size="169,0" group="n191_xsk4" visible="false">
|
||||||
<relation target="" sidePair="right-right"/>
|
<relation target="" sidePair="right-right"/>
|
||||||
<Button icon="ui://m7iejg46cioehoi"/>
|
<Button icon="ui://m7iejg46cioehoi"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n191_xsk4" name="n191" xy="921,-1" size="495,8" advanced="true">
|
<group id="n191_xsk4" name="n191" xy="805,-70" size="495,8" advanced="true">
|
||||||
<relation target="" sidePair="right-right,top-top"/>
|
<relation target="" sidePair="right-right,top-top"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n152_cioe" name="btn_msg" src="mgnhhqh" fileName="component/Lst_info/Button3.xml" xy="858,4" size="54,55" group="n175_mn85" visible="false" controller="tip,0">
|
<component id="n152_cioe" name="btn_msg" src="mgnhhqh" fileName="component/Lst_info/Button3.xml" xy="740,-2" size="54,55" group="n175_mn85" visible="false" controller="tip,0">
|
||||||
<gearDisplay controller="msg" pages="1"/>
|
<gearDisplay controller="msg" pages="1"/>
|
||||||
<Button icon="ui://m7iejg46cioehoj"/>
|
<Button icon="ui://m7iejg46cioehoj"/>
|
||||||
</component>
|
</component>
|
||||||
<group id="n175_mn85" name="n175" xy="858,4" size="54,55"/>
|
<group id="n175_mn85" name="n175" xy="740,-2" size="54,55"/>
|
||||||
<list id="n45_l0s4" name="lst_room" xy="56,145" size="1221,503" layout="flow_hz" selectionMode="none" overflow="scroll" scrollBarFlags="2" lineGap="5" colGap="60" defaultItem="ui://m7iejg46ilon7i9l" align="center" autoClearItems="true">
|
<list id="n45_l0s4" name="lst_room" xy="0,150" size="1339,505" layout="flow_hz" selectionMode="none" overflow="scroll" scrollBarFlags="2" lineGap="-25" colGap="-34" defaultItem="ui://m7iejg46ilon7i9l" align="center" autoClearItems="true">
|
||||||
<gearDisplay controller="null" pages="0"/>
|
<gearDisplay controller="null" pages="0"/>
|
||||||
<relation target="" sidePair="width-width%,center-center,middle-middle"/>
|
<relation target="" sidePair="width-width%,center-center,middle-middle"/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -191,7 +187,7 @@
|
||||||
<item/>
|
<item/>
|
||||||
<item/>
|
<item/>
|
||||||
</list>
|
</list>
|
||||||
<list id="n122_gg9f" name="lst_layer" xy="17,665" size="1090,80" layout="row" overflow="scroll" scroll="horizontal" lineGap="1" colGap="13" defaultItem="ui://m7iejg46jiu8hef" vAlign="middle" autoClearItems="true">
|
<list id="n122_gg9f" name="lst_layer" xy="17,665" size="1124,80" layout="row" overflow="scroll" scroll="horizontal" lineGap="1" colGap="13" defaultItem="ui://m7iejg46jiu8hef" vAlign="middle" autoClearItems="true">
|
||||||
<gearDisplay controller="search" pages="0"/>
|
<gearDisplay controller="search" pages="0"/>
|
||||||
<relation target="" sidePair="width-width%,height-height%,bottom-bottom"/>
|
<relation target="" sidePair="width-width%,height-height%,bottom-bottom"/>
|
||||||
<item/>
|
<item/>
|
||||||
|
|
@ -262,5 +258,9 @@
|
||||||
<gearDisplay controller="more" pages="1"/>
|
<gearDisplay controller="more" pages="1"/>
|
||||||
</group>
|
</group>
|
||||||
<component id="n267_nunk" name="btn_refreshbg" src="nunk7iiz" fileName="component/Btn/resetbg.xml" xy="27,132"/>
|
<component id="n267_nunk" name="btn_refreshbg" src="nunk7iiz" fileName="component/Btn/resetbg.xml" xy="27,132"/>
|
||||||
|
<image id="n200_isix" name="member_tips" src="cioehom" fileName="images/info/right_panel/tips.png" xy="942,19" size="24,25" visible="false">
|
||||||
|
<gearDisplay controller="manager" pages="1,2,3"/>
|
||||||
|
<relation target="" sidePair="right-right,top-top%"/>
|
||||||
|
</image>
|
||||||
</displayList>
|
</displayList>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="63,66" extention="Button">
|
<component size="73,93" extention="Button">
|
||||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n3_n6w8" name="n3" src="iaes7icl" fileName="images/info/Group 593.png" xy="0,0"/>
|
<image id="n3_n6w8" name="n3" src="iaes7icl" fileName="images/info/Group 593.png" xy="0,0"/>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<controller name="all" pages="0,,1," selected="0"/>
|
<controller name="all" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n18_pw15" name="pipeijoin" src="pw157i8w" fileName="component/Lst_info/pipeijoin2.xml" xy="3,-79" size="208,50" visible="false" touchable="false"/>
|
<component id="n18_pw15" name="pipeijoin" src="pw157i8w" fileName="component/Lst_info/pipeijoin2.xml" xy="3,-79" size="208,50" visible="false" touchable="false"/>
|
||||||
<image id="n12_oryt" name="n12" src="oryt7i3a" fileName="images/info/button_01.png" xy="0,6" size="181,67" alpha="0.986">
|
<image id="n12_oryt" name="n12" src="oryt7i3a" fileName="images/info/button_01.png" xy="0,0" size="181,80" alpha="0.986">
|
||||||
<gearDisplay controller="button" pages="0"/>
|
<gearDisplay controller="button" pages="0"/>
|
||||||
<relation target="" sidePair="width-width,height-height"/>
|
<relation target="" sidePair="width-width,height-height"/>
|
||||||
</image>
|
</image>
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,12 @@
|
||||||
<component size="270,240" extention="Button">
|
<component size="270,240" extention="Button">
|
||||||
<controller name="color" pages="0,,1,,2,,3,,4,,5,,6,,7," selected="0"/>
|
<controller name="color" pages="0,,1,,2,,3,,4,,5,,6,,7," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n15_iaes" name="n15" src="iaes7idd" fileName="images/room/zuoziMajiang.png" xy="14,19" size="236,230"/>
|
<image id="n15_iaes" name="n15" src="iaes7idd" fileName="images/room/zuoziMajiang.png" xy="-19,1" size="324,266"/>
|
||||||
<loader id="n12_n96g" name="ldr_table" xy="22,9" size="52,52" visible="false" url="ui://m7iejg46vyn37i5d">
|
<loader id="n12_n96g" name="ldr_table" xy="22,9" size="52,52" visible="false" url="ui://m7iejg46vyn37i5d">
|
||||||
<gearIcon controller="color" pages="0,1,2,3,4,5,6,7" values="ui://m7iejg46vyn37i5d|ui://m7iejg46vyn37i5e|ui://m7iejg46vyn37i5f|ui://m7iejg46irlqhze|ui://m7iejg46irlqhzd|ui://m7iejg46irlqhzc|ui://m7iejg46irlqhzb|ui://m7iejg46irlqhza"/>
|
<gearIcon controller="color" pages="0,1,2,3,4,5,6,7" values="ui://m7iejg46vyn37i5d|ui://m7iejg46vyn37i5e|ui://m7iejg46vyn37i5f|ui://m7iejg46irlqhze|ui://m7iejg46irlqhzd|ui://m7iejg46irlqhzc|ui://m7iejg46irlqhzb|ui://m7iejg46irlqhza"/>
|
||||||
</loader>
|
</loader>
|
||||||
<component id="n10_10snh" name="head1" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="20,36" touchable="false"/>
|
<component id="n10_10snh" name="head1" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="-15,4" touchable="false"/>
|
||||||
<component id="n7_10snh" name="head2" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="179,127" aspect="true" touchable="false"/>
|
<component id="n7_10snh" name="head2" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="246,124" aspect="true" touchable="false"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue=".8"/>
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -2,12 +2,12 @@
|
||||||
<component size="270,240" extention="Button">
|
<component size="270,240" extention="Button">
|
||||||
<controller name="color" pages="0,,1,,2,,3,,4,,5,,6,,7," selected="0"/>
|
<controller name="color" pages="0,,1,,2,,3,,4,,5,,6,,7," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n15_iaes" name="n15" src="iaes7idf" fileName="images/room/zuoziPuke.png" xy="17,19" size="236,230"/>
|
<image id="n15_iaes" name="n15" src="iaes7idf" fileName="images/room/zuoziPuke.png" xy="-13,1" size="320,251"/>
|
||||||
<loader id="n12_n96g" name="ldr_table" xy="22,9" size="52,52" visible="false" url="ui://m7iejg46vyn37i5d">
|
<loader id="n12_n96g" name="ldr_table" xy="22,9" size="52,52" visible="false" url="ui://m7iejg46vyn37i5d">
|
||||||
<gearIcon controller="color" pages="0,1,2,3,4,5,6,7" values="ui://m7iejg46vyn37i5d|ui://m7iejg46vyn37i5e|ui://m7iejg46vyn37i5f|ui://m7iejg46irlqhze|ui://m7iejg46irlqhzd|ui://m7iejg46irlqhzc|ui://m7iejg46irlqhzb|ui://m7iejg46irlqhza"/>
|
<gearIcon controller="color" pages="0,1,2,3,4,5,6,7" values="ui://m7iejg46vyn37i5d|ui://m7iejg46vyn37i5e|ui://m7iejg46vyn37i5f|ui://m7iejg46irlqhze|ui://m7iejg46irlqhzd|ui://m7iejg46irlqhzc|ui://m7iejg46irlqhzb|ui://m7iejg46irlqhza"/>
|
||||||
</loader>
|
</loader>
|
||||||
<component id="n10_10snh" name="head1" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="17,22" touchable="false"/>
|
<component id="n10_10snh" name="head1" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="-15,1" touchable="false"/>
|
||||||
<component id="n7_10snh" name="head2" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="189,132" aspect="true" touchable="false"/>
|
<component id="n7_10snh" name="head2" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="246,124" aspect="true" touchable="false"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue=".8"/>
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -2,12 +2,12 @@
|
||||||
<component size="270,240" extention="Button">
|
<component size="270,240" extention="Button">
|
||||||
<controller name="color" pages="0,,1,,2,,3,,4,,5,,6,,7," selected="0"/>
|
<controller name="color" pages="0,,1,,2,,3,,4,,5,,6,,7," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<image id="n15_iaes" name="n15" src="iaes7idh" fileName="images/room/zuoziZipai.png" xy="17,19" size="236,230"/>
|
<image id="n15_iaes" name="n15" src="iaes7idh" fileName="images/room/zuoziZipai.png" xy="-3,9" size="305,253"/>
|
||||||
<loader id="n12_n96g" name="ldr_table" xy="22,9" size="52,52" visible="false" url="ui://m7iejg46vyn37i5d">
|
<loader id="n12_n96g" name="ldr_table" xy="22,9" size="52,52" visible="false" url="ui://m7iejg46vyn37i5d">
|
||||||
<gearIcon controller="color" pages="0,1,2,3,4,5,6,7" values="ui://m7iejg46vyn37i5d|ui://m7iejg46vyn37i5e|ui://m7iejg46vyn37i5f|ui://m7iejg46irlqhze|ui://m7iejg46irlqhzd|ui://m7iejg46irlqhzc|ui://m7iejg46irlqhzb|ui://m7iejg46irlqhza"/>
|
<gearIcon controller="color" pages="0,1,2,3,4,5,6,7" values="ui://m7iejg46vyn37i5d|ui://m7iejg46vyn37i5e|ui://m7iejg46vyn37i5f|ui://m7iejg46irlqhze|ui://m7iejg46irlqhzd|ui://m7iejg46irlqhzc|ui://m7iejg46irlqhzb|ui://m7iejg46irlqhza"/>
|
||||||
</loader>
|
</loader>
|
||||||
<component id="n10_10snh" name="head1" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="18,29" touchable="false"/>
|
<component id="n10_10snh" name="head1" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="-15,4" touchable="false"/>
|
||||||
<component id="n7_10snh" name="head2" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="176,129" aspect="true" touchable="false"/>
|
<component id="n7_10snh" name="head2" src="hwww2f" fileName="component/Lst_room/Gcm_head.xml" xy="246,124" aspect="true" touchable="false"/>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue=".8"/>
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
</component>
|
</component>
|
||||||
|
|
@ -14,10 +14,10 @@
|
||||||
<text id="n11_rfcn" name="tex_id" xy="-13,132" size="104,27" group="n10_m1dc" visible="false" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" autoSize="height" text="玩家名字的"/>
|
<text id="n11_rfcn" name="tex_id" xy="-13,132" size="104,27" group="n10_m1dc" visible="false" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" autoSize="height" text="玩家名字的"/>
|
||||||
<text id="n12_quwh" name="tex_score" xy="-13,111" size="104,23" group="n10_m1dc" visible="false" font="Microsoft YaHei" fontSize="15" color="#ffffff" align="center" autoSize="shrink" text=""/>
|
<text id="n12_quwh" name="tex_score" xy="-13,111" size="104,23" group="n10_m1dc" visible="false" font="Microsoft YaHei" fontSize="15" color="#ffffff" align="center" autoSize="shrink" text=""/>
|
||||||
<image id="n15_kt8n" name="n15" src="kt8n7ij7" fileName="component/Lst_room/Rectangle 432.png" xy="-13,68" size="92,26" group="n10_m1dc" alpha="0.5"/>
|
<image id="n15_kt8n" name="n15" src="kt8n7ij7" fileName="component/Lst_room/Rectangle 432.png" xy="-13,68" size="92,26" group="n10_m1dc" alpha="0.5"/>
|
||||||
<text id="n2_yh61" name="tex_name" xy="-21,67" size="102,26" group="n10_m1dc" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" autoSize="none" bold="true" strokeColor="#764900" text="玩家名字的">
|
<text id="n2_yh61" name="tex_name" xy="-51,64" size="168,35" group="n10_m1dc" font="Microsoft YaHei" fontSize="22" color="#ccffff" align="center" autoSize="none" bold="true" strokeColor="#253d64" strokeSize="0.5" text="玩家名字的">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</text>
|
</text>
|
||||||
<group id="n10_m1dc" name="n10" xy="-21,67" size="117,91"/>
|
<group id="n10_m1dc" name="n10" xy="-51,64" size="168,94"/>
|
||||||
<graph id="n4_nyna" name="n4" xy="7,6" size="47,47" group="n7_nyna" alpha="0.7" type="eclipse" fillColor="#ff000000" corner="7"/>
|
<graph id="n4_nyna" name="n4" xy="7,6" size="47,47" group="n7_nyna" alpha="0.7" type="eclipse" fillColor="#ff000000" corner="7"/>
|
||||||
<text id="n5_nyna" name="n5" xy="12,9" size="40,27" group="n7_nyna" fontSize="18" color="#ffffff" text="离线"/>
|
<text id="n5_nyna" name="n5" xy="12,9" size="40,27" group="n7_nyna" fontSize="18" color="#ffffff" text="离线"/>
|
||||||
<text id="n6_nyna" name="tex_time" xy="5,29" pivot="0.5,0.5" size="46,24" group="n7_nyna" fontSize="16" color="#ffffff" autoClearText="true" text="100秒"/>
|
<text id="n6_nyna" name="tex_time" xy="5,29" pivot="0.5,0.5" size="46,24" group="n7_nyna" fontSize="16" color="#ffffff" autoClearText="true" text="100秒"/>
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,22 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="270,240" extention="Button">
|
<component size="380,270" extention="Button">
|
||||||
<controller name="state" pages="0,,1," selected="0"/>
|
<controller name="state" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n42_10snh" name="desk" src="ilon7i9m" fileName="component/Lst_room/Gcm_Play_desk1.xml" xy="3,-1"/>
|
<component id="n42_10snh" name="desk" src="ilon7i9m" fileName="component/Lst_room/Gcm_Play_desk1.xml" xy="41,1" size="300,279"/>
|
||||||
<component id="n55_vena" name="btn_detail" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="101,179" size="104,98" scale="0.7,0.7" visible="false">
|
<component id="n55_vena" name="btn_detail" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="147,193" size="104,98" scale="0.7,0.7" visible="false">
|
||||||
<relation target="" sidePair="center-center%"/>
|
<relation target="" sidePair="center-center%"/>
|
||||||
<Button title=" " icon="ui://m7iejg46h60mhyq"/>
|
<Button title=" " icon="ui://m7iejg46h60mhyq"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n53_n96g" name="tex_round" xy="69,107" size="135,32" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" autoClearText="true" text="8/1">
|
<text id="n53_n96g" name="tex_round" xy="124,122" size="135,32" visible="false" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" autoClearText="true" text="8/1">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n52_n96g" name="tex_gamename" xy="23,75" size="215,35" font="Microsoft YaHei" fontSize="24" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="shrink" bold="true" strokeColor="#053691" autoClearText="true" text="红中麻将">
|
<text id="n52_n96g" name="tex_gamename" xy="77,86" size="215,47" font="Microsoft YaHei" fontSize="30" color="#ddffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="shrink" bold="true" strokeColor="#053691" strokeSize="2" autoClearText="true" text="红中麻将">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n54_hugj" name="tex_limit" xy="123,141" size="28,27" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" bold="true" autoClearText="true" text="33">
|
<text id="n54_hugj" name="tex_limit" xy="170,169" size="28,27" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" bold="true" autoClearText="true" text="33">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</text>
|
</text>
|
||||||
<image id="n56_ilon" name="n56" src="ilon7i9w" fileName="images/room/Ellipse 13.png" xy="119,138">
|
<image id="n56_ilon" name="n56" src="ilon7i9w" fileName="images/room/Ellipse 13.png" xy="166,165">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
</image>
|
</image>
|
||||||
</displayList>
|
</displayList>
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,24 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="270,240" extention="Button">
|
<component size="380,270" extention="Button">
|
||||||
<controller name="state" pages="0,,1," selected="0"/>
|
<controller name="state" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n42_10snh" name="desk" src="iaes7idj" fileName="component/Lst_room/Gcm_Play_desk2.xml" xy="0,0" size="270,240"/>
|
<component id="n42_10snh" name="desk" src="iaes7idj" fileName="component/Lst_room/Gcm_Play_desk2.xml" xy="44,12" size="302,251"/>
|
||||||
<component id="n55_vena" name="btn_detail" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="98,144" size="104,126" scale="0.7,0.7" visible="false">
|
<component id="n55_vena" name="btn_detail" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="159,153" size="104,126" scale="0.7,0.7" visible="false">
|
||||||
<relation target="" sidePair="center-center%"/>
|
<relation target="" sidePair="center-center%"/>
|
||||||
<Button title=" " icon="ui://m7iejg46h60mhyq"/>
|
<Button title=" " icon="ui://m7iejg46h60mhyq"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n53_n96g" name="tex_round" xy="76,102" size="116,32" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" autoClearText="true" text="8/1">
|
<text id="n53_n96g" name="tex_round" xy="131,140" size="116,32" visible="false" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" autoClearText="true" text="8/1">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
<relation target="n58_ufim" sidePair="top-bottom"/>
|
<relation target="n58_ufim" sidePair="top-bottom"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n58_ufim" name="tex_gamename" xy="31,69" size="207,34" font="Microsoft YaHei" fontSize="24" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" strokeColor="#053691" autoClearText="true" text="红中麻将">
|
<text id="n58_ufim" name="tex_gamename" xy="61,84" size="250,42" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" strokeColor="#053691" strokeSize="2" autoClearText="true" text="红中麻将">
|
||||||
<relation target="" sidePair="center-center,top-top%"/>
|
<relation target="" sidePair="center-center,top-top%"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n54_hugj" name="tex_limit" xy="117,138" size="28,27" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" bold="true" autoClearText="true" text="33">
|
<text id="n54_hugj" name="tex_limit" xy="172,161" size="28,27" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" bold="true" autoClearText="true" text="33">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
<relation target="n60_ufim" sidePair="center-center,middle-middle"/>
|
|
||||||
</text>
|
</text>
|
||||||
<image id="n60_ufim" name="n60" src="ilon7i9w" fileName="images/room/Ellipse 13.png" xy="116,133">
|
<image id="n60_ufim" name="n60" src="ilon7i9w" fileName="images/room/Ellipse 13.png" xy="169,156">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center"/>
|
||||||
</image>
|
</image>
|
||||||
</displayList>
|
</displayList>
|
||||||
<Button downEffect="dark" downEffectValue=".8"/>
|
<Button downEffect="dark" downEffectValue=".8"/>
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,24 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<component size="270,240" extention="Button">
|
<component size="380,270" extention="Button">
|
||||||
<controller name="state" pages="0,,1," selected="0"/>
|
<controller name="state" pages="0,,1," selected="0"/>
|
||||||
<displayList>
|
<displayList>
|
||||||
<component id="n42_10snh" name="desk" src="iaes7idk" fileName="component/Lst_room/Gcm_Play_desk3.xml" xy="3,2" size="264,242"/>
|
<component id="n42_10snh" name="desk" src="iaes7idk" fileName="component/Lst_room/Gcm_Play_desk3.xml" xy="40,4" size="300,279"/>
|
||||||
<component id="n55_vena" name="btn_detail" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="90,144" size="104,126" scale="0.7,0.7" visible="false">
|
<component id="n55_vena" name="btn_detail" src="eeqmcgp" fileName="buttons/Btn_Common.xml" pkg="27vd145b" xy="147,144" size="104,126" scale="0.7,0.7" visible="false">
|
||||||
<relation target="" sidePair="center-center%"/>
|
<relation target="" sidePair="center-center%"/>
|
||||||
<Button title=" " icon="ui://m7iejg46h60mhyq"/>
|
<Button title=" " icon="ui://m7iejg46h60mhyq"/>
|
||||||
</component>
|
</component>
|
||||||
<text id="n57_ufim" name="tex_round" xy="58,112" size="149,32" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" autoClearText="true" text="8/1">
|
<text id="n57_ufim" name="tex_round" xy="113,147" size="149,32" visible="false" font="Microsoft YaHei" fontSize="22" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" autoClearText="true" text="8/1">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
<relation target="n58_ufim" sidePair="top-bottom"/>
|
<relation target="n58_ufim" sidePair="top-bottom"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n58_ufim" name="tex_gamename" xy="28,73" size="204,35" font="Microsoft YaHei" fontSize="24" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" strokeColor="#053691" autoClearText="true" text="红中麻将">
|
<text id="n58_ufim" name="tex_gamename" xy="80,86" size="204,42" font="Microsoft YaHei" fontSize="30" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" autoSize="none" bold="true" strokeColor="#053691" autoClearText="true" text="红中麻将">
|
||||||
<relation target="" sidePair="center-center,top-top%"/>
|
<relation target="" sidePair="center-center,top-top%"/>
|
||||||
</text>
|
</text>
|
||||||
<text id="n59_ufim" name="tex_limit" xy="127,155" size="15,27" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" bold="true" autoClearText="true" text="0">
|
<text id="n59_ufim" name="tex_limit" xy="177,175" size="15,27" font="Microsoft YaHei" fontSize="18" color="#ffffff" align="center" vAlign="middle" leading="0" letterSpacing="1" bold="true" autoClearText="true" text="0">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
<relation target="n60_ufim" sidePair="top-top"/>
|
<relation target="n60_ufim" sidePair="top-top"/>
|
||||||
</text>
|
</text>
|
||||||
<image id="n60_ufim" name="n60" src="ilon7i9w" fileName="images/room/Ellipse 13.png" xy="117,149">
|
<image id="n60_ufim" name="n60" src="ilon7i9w" fileName="images/room/Ellipse 13.png" xy="167,170">
|
||||||
<relation target="" sidePair="center-center,middle-middle"/>
|
<relation target="" sidePair="center-center,middle-middle"/>
|
||||||
<relation target="n57_ufim" sidePair="top-bottom"/>
|
<relation target="n57_ufim" sidePair="top-bottom"/>
|
||||||
</image>
|
</image>
|
||||||
|
|
|
||||||
|
After Width: | Height: | Size: 211 KiB |
|
Before Width: | Height: | Size: 963 KiB After Width: | Height: | Size: 885 KiB |
|
Before Width: | Height: | Size: 796 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 11 KiB |
|
|
@ -1130,6 +1130,7 @@
|
||||||
<image id="kt8n7ij6" name="image 152.png" path="/"/>
|
<image id="kt8n7ij6" name="image 152.png" path="/"/>
|
||||||
<image id="kt8n7ij7" name="Rectangle 432.png" path="/component/Lst_room/"/>
|
<image id="kt8n7ij7" name="Rectangle 432.png" path="/component/Lst_room/"/>
|
||||||
<image id="kt8n7ij8" name="Rectangle 441.png" path="/images/room/"/>
|
<image id="kt8n7ij8" name="Rectangle 441.png" path="/images/room/"/>
|
||||||
|
<image id="kt8n7ij9" name="微信图片_20250625045736.jpg" path="/component/Lst_room/"/>
|
||||||
</resources>
|
</resources>
|
||||||
<publish name="NewGroup" path="..\wb_unity_pro\Assets\ART\base\newgroup\ui" packageCount="2"/>
|
<publish name="NewGroup" path="..\wb_unity_pro\Assets\ART\base\newgroup\ui" packageCount="2"/>
|
||||||
</packageDescription>
|
</packageDescription>
|
||||||
|
|
@ -445,7 +445,6 @@ IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il
|
||||||
IL2CPP_EXTERN_C RuntimeClass* LuaCSFunction_t8A7FA654F7621890FD62690229D1AB40DF3122FE_il2cpp_TypeInfo_var;
|
IL2CPP_EXTERN_C RuntimeClass* LuaCSFunction_t8A7FA654F7621890FD62690229D1AB40DF3122FE_il2cpp_TypeInfo_var;
|
||||||
IL2CPP_EXTERN_C RuntimeClass* LuaDLL_t1D8ACD8EC3BB01310693ACE3177379EA2F3419B6_il2cpp_TypeInfo_var;
|
IL2CPP_EXTERN_C RuntimeClass* LuaDLL_t1D8ACD8EC3BB01310693ACE3177379EA2F3419B6_il2cpp_TypeInfo_var;
|
||||||
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
|
||||||
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
|
|
||||||
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
|
IL2CPP_EXTERN_C RuntimeClass* Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_il2cpp_TypeInfo_var;
|
||||||
IL2CPP_EXTERN_C RuntimeClass* ResourcesManager_tEE5F1EC80BB71A4B6188E4F9FC4A3F06CC646ACB_il2cpp_TypeInfo_var;
|
IL2CPP_EXTERN_C RuntimeClass* ResourcesManager_tEE5F1EC80BB71A4B6188E4F9FC4A3F06CC646ACB_il2cpp_TypeInfo_var;
|
||||||
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
||||||
|
|
@ -503,6 +502,7 @@ IL2CPP_EXTERN_C String_t* _stringLiteral15769E9845DDC94787F9C43F5D2A2DBAB4CD89B5
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral16A7C1DB3210EC40605D31A60E73CB056BA75E22;
|
IL2CPP_EXTERN_C String_t* _stringLiteral16A7C1DB3210EC40605D31A60E73CB056BA75E22;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral1729647A70DDA65324175530A2D0D474E2538988;
|
IL2CPP_EXTERN_C String_t* _stringLiteral1729647A70DDA65324175530A2D0D474E2538988;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral17A9331281F52ADFD64E79D3B3761185CF461D8E;
|
IL2CPP_EXTERN_C String_t* _stringLiteral17A9331281F52ADFD64E79D3B3761185CF461D8E;
|
||||||
|
IL2CPP_EXTERN_C String_t* _stringLiteral187E224D576140EF5E480DB3B944BF07E2E3DB4C;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral191EC2BF526CB8B2FC97226FA7FFE47364E94B83;
|
IL2CPP_EXTERN_C String_t* _stringLiteral191EC2BF526CB8B2FC97226FA7FFE47364E94B83;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral1AE37565313C80CFBE690B0AAF7A22B186B12228;
|
IL2CPP_EXTERN_C String_t* _stringLiteral1AE37565313C80CFBE690B0AAF7A22B186B12228;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral1C8F769275A2E86BF511F50CADF20A0710F020A6;
|
IL2CPP_EXTERN_C String_t* _stringLiteral1C8F769275A2E86BF511F50CADF20A0710F020A6;
|
||||||
|
|
@ -541,7 +541,6 @@ IL2CPP_EXTERN_C String_t* _stringLiteral4237FF8A5B0BC56247417D1A8336071E354C864C
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral430F15613C55752568BEDB8971DFF0827C16ABE0;
|
IL2CPP_EXTERN_C String_t* _stringLiteral430F15613C55752568BEDB8971DFF0827C16ABE0;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral43424F798F5B7B4D2C976C149F66CE104E794E4A;
|
IL2CPP_EXTERN_C String_t* _stringLiteral43424F798F5B7B4D2C976C149F66CE104E794E4A;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral435EE53A5FF0AC3EA0178F95D9A641E16B466419;
|
IL2CPP_EXTERN_C String_t* _stringLiteral435EE53A5FF0AC3EA0178F95D9A641E16B466419;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral43A9519ED4B5E9C75EB7D683E3D1E09708F9B34A;
|
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral44BC814A64016D75E9AF6998210ECDD64FB67FFD;
|
IL2CPP_EXTERN_C String_t* _stringLiteral44BC814A64016D75E9AF6998210ECDD64FB67FFD;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral44EAA2B2DBC0709F212C2E20EABCC83B43A2D9B6;
|
IL2CPP_EXTERN_C String_t* _stringLiteral44EAA2B2DBC0709F212C2E20EABCC83B43A2D9B6;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral4613222C7CDA219CA41714128B1077ED4C0D154A;
|
IL2CPP_EXTERN_C String_t* _stringLiteral4613222C7CDA219CA41714128B1077ED4C0D154A;
|
||||||
|
|
@ -596,7 +595,6 @@ IL2CPP_EXTERN_C String_t* _stringLiteral6A664DFBF7E6D087468510B0EA43FCC78BC8AF94
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C;
|
IL2CPP_EXTERN_C String_t* _stringLiteral6AE999552A0D2DCA14D62E2BC8B764D377B1DD6C;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6C584316A4AE890C93B0B08B846EBF984F16D91B;
|
IL2CPP_EXTERN_C String_t* _stringLiteral6C584316A4AE890C93B0B08B846EBF984F16D91B;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6C82E6DD86807EE3DB07E3C82BEC1AE1CE00B08B;
|
IL2CPP_EXTERN_C String_t* _stringLiteral6C82E6DD86807EE3DB07E3C82BEC1AE1CE00B08B;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6D2E63578E01801E17047E32B1EC2E130836358A;
|
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6E06736D1DC49ACC3CD22C9BC95ACE1D2214DD9A;
|
IL2CPP_EXTERN_C String_t* _stringLiteral6E06736D1DC49ACC3CD22C9BC95ACE1D2214DD9A;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6E31A24E35B78A251C1CD4A6AA62ECA63AB7B68E;
|
IL2CPP_EXTERN_C String_t* _stringLiteral6E31A24E35B78A251C1CD4A6AA62ECA63AB7B68E;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteral6F473FAAD9B78622EDBC41B21E1C2CF7170B568D;
|
IL2CPP_EXTERN_C String_t* _stringLiteral6F473FAAD9B78622EDBC41B21E1C2CF7170B568D;
|
||||||
|
|
@ -735,7 +733,6 @@ IL2CPP_EXTERN_C String_t* _stringLiteralE8E1FF87F1FE004B588D5D019A0E78940EFF8764
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralEF74E8F0EAB8554ADA885E6F7A043F6320B0DCE8;
|
IL2CPP_EXTERN_C String_t* _stringLiteralEF74E8F0EAB8554ADA885E6F7A043F6320B0DCE8;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralF4603641FFE3428CD35EB10F0F5A67098F472DD3;
|
IL2CPP_EXTERN_C String_t* _stringLiteralF4603641FFE3428CD35EB10F0F5A67098F472DD3;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215;
|
IL2CPP_EXTERN_C String_t* _stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralF6D59E9F794B6EE1A09486881654D0FB3D7FC532;
|
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralF79DB9DE143662D59A461AF6B8A637AFE75ED66F;
|
IL2CPP_EXTERN_C String_t* _stringLiteralF79DB9DE143662D59A461AF6B8A637AFE75ED66F;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralF8109AEDC7144BADD14AC6D37FE14D5BC0740198;
|
IL2CPP_EXTERN_C String_t* _stringLiteralF8109AEDC7144BADD14AC6D37FE14D5BC0740198;
|
||||||
IL2CPP_EXTERN_C String_t* _stringLiteralF8A6A746013462708F9321145484C18BEA9F7325;
|
IL2CPP_EXTERN_C String_t* _stringLiteralF8A6A746013462708F9321145484C18BEA9F7325;
|
||||||
|
|
@ -1260,7 +1257,6 @@ struct Exception_t_marshaled_pinvoke;
|
||||||
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
|
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
|
||||||
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
|
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
|
||||||
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
|
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
|
||||||
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
|
|
||||||
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
|
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
|
||||||
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
|
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
|
||||||
|
|
||||||
|
|
@ -8270,43 +8266,6 @@ public:
|
||||||
m_Items[index] = value;
|
m_Items[index] = value;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
// System.Object[]
|
|
||||||
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
|
|
||||||
|
|
||||||
public:
|
|
||||||
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
|
|
||||||
{
|
|
||||||
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
||||||
return m_Items[index];
|
|
||||||
}
|
|
||||||
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
|
|
||||||
{
|
|
||||||
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
||||||
return m_Items + index;
|
|
||||||
}
|
|
||||||
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
|
|
||||||
{
|
|
||||||
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
||||||
m_Items[index] = value;
|
|
||||||
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
||||||
}
|
|
||||||
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
|
|
||||||
{
|
|
||||||
return m_Items[index];
|
|
||||||
}
|
|
||||||
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
||||||
{
|
|
||||||
return m_Items + index;
|
|
||||||
}
|
|
||||||
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
|
|
||||||
{
|
|
||||||
m_Items[index] = value;
|
|
||||||
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
// System.Int32[]
|
// System.Int32[]
|
||||||
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
|
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
|
||||||
{
|
{
|
||||||
|
|
@ -9560,8 +9519,6 @@ IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppVest_init_m141C4CC7DBC7463097F1C72
|
||||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppVest_getServerIPAndPort_m08AFA107D519ED3BEFEA9A973C48DD3866F3D375 (securityConnection_t2548EEEE9F234CCA4ACD0F083024F35C2CB5683B * ___conn0, String_t* ___host1, int32_t ___port2, const RuntimeMethod* method);
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AppVest_getServerIPAndPort_m08AFA107D519ED3BEFEA9A973C48DD3866F3D375 (securityConnection_t2548EEEE9F234CCA4ACD0F083024F35C2CB5683B * ___conn0, String_t* ___host1, int32_t ___port2, const RuntimeMethod* method);
|
||||||
// System.Int32 DxyVest::Start(System.String)
|
// System.Int32 DxyVest::Start(System.String)
|
||||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DxyVest_Start_mFC8EA412F47B9519FE93B11C9F84CA402D34633B (String_t* ___key0, const RuntimeMethod* method);
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DxyVest_Start_mFC8EA412F47B9519FE93B11C9F84CA402D34633B (String_t* ___key0, const RuntimeMethod* method);
|
||||||
// System.String System.String::Concat(System.Object[])
|
|
||||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
|
|
||||||
// System.Void VerCheck/<>c__DisplayClass14_0::.ctor()
|
// System.Void VerCheck/<>c__DisplayClass14_0::.ctor()
|
||||||
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_0__ctor_mBFB2E88C48B14B6EA44190936E5246C8C1697255 (U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * __this, const RuntimeMethod* method);
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_0__ctor_mBFB2E88C48B14B6EA44190936E5246C8C1697255 (U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * __this, const RuntimeMethod* method);
|
||||||
// System.Void GameApplication::set_GameInfo(System.String)
|
// System.Void GameApplication::set_GameInfo(System.String)
|
||||||
|
|
@ -27470,11 +27427,11 @@ IL_0000:
|
||||||
}
|
}
|
||||||
case 1:
|
case 1:
|
||||||
{
|
{
|
||||||
goto IL_023a;
|
goto IL_01ea;
|
||||||
}
|
}
|
||||||
case 2:
|
case 2:
|
||||||
{
|
{
|
||||||
goto IL_0274;
|
goto IL_0224;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -27482,7 +27439,7 @@ IL_0000:
|
||||||
IL_0020:
|
IL_0020:
|
||||||
{
|
{
|
||||||
V_0 = (bool)0;
|
V_0 = (bool)0;
|
||||||
goto IL_0453;
|
goto IL_0403;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0027:
|
IL_0027:
|
||||||
|
|
@ -27518,7 +27475,7 @@ IL_0051:
|
||||||
bool L_9 = L_8->get_isDXYGFF_8();
|
bool L_9 = L_8->get_isDXYGFF_8();
|
||||||
if (!L_9)
|
if (!L_9)
|
||||||
{
|
{
|
||||||
goto IL_0186;
|
goto IL_0136;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -27597,7 +27554,7 @@ IL_00bf:
|
||||||
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_23, _stringLiteralBD287A4CFC97EF72067C1302F981806FB9D42E9F, L_25, /*hidden argument*/NULL);
|
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_23, _stringLiteralBD287A4CFC97EF72067C1302F981806FB9D42E9F, L_25, /*hidden argument*/NULL);
|
||||||
// yield break;
|
// yield break;
|
||||||
V_0 = (bool)0;
|
V_0 = (bool)0;
|
||||||
goto IL_0453;
|
goto IL_0403;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_00dd:
|
IL_00dd:
|
||||||
|
|
@ -27645,324 +27602,287 @@ IL_010f:
|
||||||
|
|
||||||
IL_012f:
|
IL_012f:
|
||||||
{
|
{
|
||||||
// init_url = "http://" + conn.ip + ":" + conn.port + "/NewFK/config/init2_1.json";
|
// init_url = "https://yunque911.oss-cn-hangzhou.aliyuncs.com/NewFK/config/init2_1.json";
|
||||||
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)5);
|
V_4 = _stringLiteral187E224D576140EF5E480DB3B944BF07E2E3DB4C;
|
||||||
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_34;
|
|
||||||
NullCheck(L_35);
|
|
||||||
ArrayElementTypeCheck (L_35, _stringLiteral43A9519ED4B5E9C75EB7D683E3D1E09708F9B34A);
|
|
||||||
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral43A9519ED4B5E9C75EB7D683E3D1E09708F9B34A);
|
|
||||||
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = L_35;
|
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_37 = V_2;
|
|
||||||
NullCheck(L_37);
|
|
||||||
securityConnection_t2548EEEE9F234CCA4ACD0F083024F35C2CB5683B * L_38 = L_37->get_address_of_conn_6();
|
|
||||||
String_t* L_39 = L_38->get_ip_0();
|
|
||||||
NullCheck(L_36);
|
|
||||||
ArrayElementTypeCheck (L_36, L_39);
|
|
||||||
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_39);
|
|
||||||
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = L_36;
|
|
||||||
NullCheck(L_40);
|
|
||||||
ArrayElementTypeCheck (L_40, _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9);
|
|
||||||
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9);
|
|
||||||
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_41 = L_40;
|
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_42 = V_2;
|
|
||||||
NullCheck(L_42);
|
|
||||||
securityConnection_t2548EEEE9F234CCA4ACD0F083024F35C2CB5683B * L_43 = L_42->get_address_of_conn_6();
|
|
||||||
int32_t L_44 = L_43->get_port_1();
|
|
||||||
int32_t L_45 = L_44;
|
|
||||||
RuntimeObject * L_46 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_45);
|
|
||||||
NullCheck(L_41);
|
|
||||||
ArrayElementTypeCheck (L_41, L_46);
|
|
||||||
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_46);
|
|
||||||
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = L_41;
|
|
||||||
NullCheck(L_47);
|
|
||||||
ArrayElementTypeCheck (L_47, _stringLiteral6D2E63578E01801E17047E32B1EC2E130836358A);
|
|
||||||
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral6D2E63578E01801E17047E32B1EC2E130836358A);
|
|
||||||
String_t* L_48 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_47, /*hidden argument*/NULL);
|
|
||||||
V_4 = L_48;
|
|
||||||
// Debug.LogError("init_url : " + init_url);
|
|
||||||
String_t* L_49 = V_4;
|
|
||||||
String_t* L_50 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralF6D59E9F794B6EE1A09486881654D0FB3D7FC532, L_49, /*hidden argument*/NULL);
|
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
|
|
||||||
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29(L_50, /*hidden argument*/NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0186:
|
IL_0136:
|
||||||
{
|
{
|
||||||
// float downTimeOut = 5;
|
// float downTimeOut = 5;
|
||||||
__this->set_U3CdownTimeOutU3E5__2_3((5.0f));
|
__this->set_U3CdownTimeOutU3E5__2_3((5.0f));
|
||||||
// using (WWW request1 = new WWW(init_url))
|
// using (WWW request1 = new WWW(init_url))
|
||||||
String_t* L_51 = V_4;
|
String_t* L_34 = V_4;
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_52 = (WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 *)il2cpp_codegen_object_new(WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664_il2cpp_TypeInfo_var);
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_35 = (WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 *)il2cpp_codegen_object_new(WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664_il2cpp_TypeInfo_var);
|
||||||
WWW__ctor_m855BBB40089401B7BE6DE7A19FAD81EB070A2196(L_52, L_51, /*hidden argument*/NULL);
|
WWW__ctor_m855BBB40089401B7BE6DE7A19FAD81EB070A2196(L_35, L_34, /*hidden argument*/NULL);
|
||||||
__this->set_U3Crequest1U3E5__3_4(L_52);
|
__this->set_U3Crequest1U3E5__3_4(L_35);
|
||||||
__this->set_U3CU3E1__state_0(((int32_t)-3));
|
__this->set_U3CU3E1__state_0(((int32_t)-3));
|
||||||
// float timeOut = Time.time;
|
// float timeOut = Time.time;
|
||||||
float L_53 = Time_get_time_m7863349C8845BBA36629A2B3F8EF1C3BEA350FD8(/*hidden argument*/NULL);
|
float L_36 = Time_get_time_m7863349C8845BBA36629A2B3F8EF1C3BEA350FD8(/*hidden argument*/NULL);
|
||||||
__this->set_U3CtimeOutU3E5__4_5(L_53);
|
__this->set_U3CtimeOutU3E5__4_5(L_36);
|
||||||
// float process = request1.progress;
|
// float process = request1.progress;
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_54 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_37 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
NullCheck(L_54);
|
NullCheck(L_37);
|
||||||
float L_55 = WWW_get_progress_m0C27444D041C224A9958FED51723BCA9F9FCDABF(L_54, /*hidden argument*/NULL);
|
float L_38 = WWW_get_progress_m0C27444D041C224A9958FED51723BCA9F9FCDABF(L_37, /*hidden argument*/NULL);
|
||||||
__this->set_U3CprocessU3E5__5_6(L_55);
|
__this->set_U3CprocessU3E5__5_6(L_38);
|
||||||
goto IL_0242;
|
goto IL_01f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_01c4:
|
IL_0174:
|
||||||
{
|
{
|
||||||
// if(process<request1.progress)
|
// if(process<request1.progress)
|
||||||
float L_56 = __this->get_U3CprocessU3E5__5_6();
|
float L_39 = __this->get_U3CprocessU3E5__5_6();
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_57 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_40 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
NullCheck(L_57);
|
NullCheck(L_40);
|
||||||
float L_58 = WWW_get_progress_m0C27444D041C224A9958FED51723BCA9F9FCDABF(L_57, /*hidden argument*/NULL);
|
float L_41 = WWW_get_progress_m0C27444D041C224A9958FED51723BCA9F9FCDABF(L_40, /*hidden argument*/NULL);
|
||||||
if ((!(((float)L_56) < ((float)L_58))))
|
if ((!(((float)L_39) < ((float)L_41))))
|
||||||
{
|
{
|
||||||
goto IL_01f3;
|
goto IL_01a3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_01d7:
|
IL_0187:
|
||||||
{
|
{
|
||||||
// timeOut = Time.time;
|
// timeOut = Time.time;
|
||||||
float L_59 = Time_get_time_m7863349C8845BBA36629A2B3F8EF1C3BEA350FD8(/*hidden argument*/NULL);
|
float L_42 = Time_get_time_m7863349C8845BBA36629A2B3F8EF1C3BEA350FD8(/*hidden argument*/NULL);
|
||||||
__this->set_U3CtimeOutU3E5__4_5(L_59);
|
__this->set_U3CtimeOutU3E5__4_5(L_42);
|
||||||
// process = request1.progress;
|
// process = request1.progress;
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_60 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_43 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
NullCheck(L_60);
|
NullCheck(L_43);
|
||||||
float L_61 = WWW_get_progress_m0C27444D041C224A9958FED51723BCA9F9FCDABF(L_60, /*hidden argument*/NULL);
|
float L_44 = WWW_get_progress_m0C27444D041C224A9958FED51723BCA9F9FCDABF(L_43, /*hidden argument*/NULL);
|
||||||
__this->set_U3CprocessU3E5__5_6(L_61);
|
__this->set_U3CprocessU3E5__5_6(L_44);
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_01f3:
|
IL_01a3:
|
||||||
{
|
{
|
||||||
// if(Time.time-timeOut>downTimeOut)
|
// if(Time.time-timeOut>downTimeOut)
|
||||||
float L_62 = Time_get_time_m7863349C8845BBA36629A2B3F8EF1C3BEA350FD8(/*hidden argument*/NULL);
|
float L_45 = Time_get_time_m7863349C8845BBA36629A2B3F8EF1C3BEA350FD8(/*hidden argument*/NULL);
|
||||||
float L_63 = __this->get_U3CtimeOutU3E5__4_5();
|
float L_46 = __this->get_U3CtimeOutU3E5__4_5();
|
||||||
float L_64 = __this->get_U3CdownTimeOutU3E5__2_3();
|
float L_47 = __this->get_U3CdownTimeOutU3E5__2_3();
|
||||||
if ((!(((float)((float)il2cpp_codegen_subtract((float)L_62, (float)L_63))) > ((float)L_64))))
|
if ((!(((float)((float)il2cpp_codegen_subtract((float)L_45, (float)L_46))) > ((float)L_47))))
|
||||||
{
|
{
|
||||||
goto IL_0225;
|
goto IL_01d5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0207:
|
IL_01b7:
|
||||||
{
|
{
|
||||||
// ShowTip("??????????????????!", () =>
|
// ShowTip("??????????????????!", () =>
|
||||||
// {
|
// {
|
||||||
// StartCoroutine(CheckNet());
|
// StartCoroutine(CheckNet());
|
||||||
// });
|
// });
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_65 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_48 = V_2;
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_66 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_49 = V_2;
|
||||||
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_67 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
|
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_50 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
|
||||||
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_67, L_66, (intptr_t)((intptr_t)VerCheck_U3CCheckNetU3Eb__14_3_mF762F7F9FF4C351F0C59EC3D7293F154AAEE6935_RuntimeMethod_var), /*hidden argument*/NULL);
|
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_50, L_49, (intptr_t)((intptr_t)VerCheck_U3CCheckNetU3Eb__14_3_mF762F7F9FF4C351F0C59EC3D7293F154AAEE6935_RuntimeMethod_var), /*hidden argument*/NULL);
|
||||||
NullCheck(L_65);
|
NullCheck(L_48);
|
||||||
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_65, _stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033, L_67, /*hidden argument*/NULL);
|
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_48, _stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033, L_50, /*hidden argument*/NULL);
|
||||||
// yield break;
|
// yield break;
|
||||||
V_0 = (bool)0;
|
V_0 = (bool)0;
|
||||||
goto IL_0439;
|
goto IL_03e9;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0225:
|
IL_01d5:
|
||||||
{
|
{
|
||||||
// yield return null;
|
// yield return null;
|
||||||
__this->set_U3CU3E2__current_1(NULL);
|
__this->set_U3CU3E2__current_1(NULL);
|
||||||
__this->set_U3CU3E1__state_0(1);
|
__this->set_U3CU3E1__state_0(1);
|
||||||
V_0 = (bool)1;
|
V_0 = (bool)1;
|
||||||
goto IL_0453;
|
goto IL_0403;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_023a:
|
IL_01ea:
|
||||||
{
|
{
|
||||||
__this->set_U3CU3E1__state_0(((int32_t)-3));
|
__this->set_U3CU3E1__state_0(((int32_t)-3));
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0242:
|
IL_01f2:
|
||||||
{
|
{
|
||||||
// while (request1!=null && request1.isDone==false)
|
// while (request1!=null && request1.isDone==false)
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_68 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_51 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
if (!L_68)
|
if (!L_51)
|
||||||
{
|
{
|
||||||
goto IL_025a;
|
goto IL_020a;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_024a:
|
IL_01fa:
|
||||||
{
|
{
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_69 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_52 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
NullCheck(L_69);
|
NullCheck(L_52);
|
||||||
bool L_70 = WWW_get_isDone_m7D3800B83136885374E82BFC6ACB63BA3F6AB5DF(L_69, /*hidden argument*/NULL);
|
bool L_53 = WWW_get_isDone_m7D3800B83136885374E82BFC6ACB63BA3F6AB5DF(L_52, /*hidden argument*/NULL);
|
||||||
if (!L_70)
|
if (!L_53)
|
||||||
{
|
{
|
||||||
goto IL_01c4;
|
goto IL_0174;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_025a:
|
IL_020a:
|
||||||
{
|
{
|
||||||
// yield return request1;
|
// yield return request1;
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_71 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_54 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
__this->set_U3CU3E2__current_1(L_71);
|
__this->set_U3CU3E2__current_1(L_54);
|
||||||
__this->set_U3CU3E1__state_0(2);
|
__this->set_U3CU3E1__state_0(2);
|
||||||
V_0 = (bool)1;
|
V_0 = (bool)1;
|
||||||
goto IL_0453;
|
goto IL_0403;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0274:
|
IL_0224:
|
||||||
{
|
{
|
||||||
__this->set_U3CU3E1__state_0(((int32_t)-3));
|
__this->set_U3CU3E1__state_0(((int32_t)-3));
|
||||||
// if (string.IsNullOrEmpty(request1.error))
|
// if (string.IsNullOrEmpty(request1.error))
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_72 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_55 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
NullCheck(L_72);
|
NullCheck(L_55);
|
||||||
String_t* L_73 = WWW_get_error_mED42EEAAE7847167CCEEFF2098563F78A79F8C2A(L_72, /*hidden argument*/NULL);
|
String_t* L_56 = WWW_get_error_mED42EEAAE7847167CCEEFF2098563F78A79F8C2A(L_55, /*hidden argument*/NULL);
|
||||||
bool L_74 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_73, /*hidden argument*/NULL);
|
bool L_57 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_56, /*hidden argument*/NULL);
|
||||||
if (!L_74)
|
if (!L_57)
|
||||||
{
|
{
|
||||||
goto IL_041a;
|
goto IL_03ca;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0291:
|
IL_0241:
|
||||||
{
|
{
|
||||||
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_75 = (U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30_il2cpp_TypeInfo_var);
|
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_58 = (U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30_il2cpp_TypeInfo_var);
|
||||||
U3CU3Ec__DisplayClass14_0__ctor_mBFB2E88C48B14B6EA44190936E5246C8C1697255(L_75, /*hidden argument*/NULL);
|
U3CU3Ec__DisplayClass14_0__ctor_mBFB2E88C48B14B6EA44190936E5246C8C1697255(L_58, /*hidden argument*/NULL);
|
||||||
V_5 = L_75;
|
V_5 = L_58;
|
||||||
// json_data = request1.text;
|
// json_data = request1.text;
|
||||||
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_76 = __this->get_U3Crequest1U3E5__3_4();
|
WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 * L_59 = __this->get_U3Crequest1U3E5__3_4();
|
||||||
NullCheck(L_76);
|
NullCheck(L_59);
|
||||||
String_t* L_77 = WWW_get_text_mC889F75AD1B47FD117196F98F3DDDC83985BD0E1(L_76, /*hidden argument*/NULL);
|
String_t* L_60 = WWW_get_text_mC889F75AD1B47FD117196F98F3DDDC83985BD0E1(L_59, /*hidden argument*/NULL);
|
||||||
V_3 = L_77;
|
V_3 = L_60;
|
||||||
// GameApplication.Instance.GameInfo = json_data;
|
// GameApplication.Instance.GameInfo = json_data;
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_78 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_61 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
||||||
String_t* L_79 = V_3;
|
String_t* L_62 = V_3;
|
||||||
NullCheck(L_78);
|
NullCheck(L_61);
|
||||||
GameApplication_set_GameInfo_m1BD01E21E1AA618F51CC2233189260A80C212EDD_inline(L_78, L_79, /*hidden argument*/NULL);
|
GameApplication_set_GameInfo_m1BD01E21E1AA618F51CC2233189260A80C212EDD_inline(L_61, L_62, /*hidden argument*/NULL);
|
||||||
// Hashtable json = Json.Deserialize(json_data) as Hashtable;
|
// Hashtable json = Json.Deserialize(json_data) as Hashtable;
|
||||||
String_t* L_80 = V_3;
|
String_t* L_63 = V_3;
|
||||||
RuntimeObject * L_81 = Json_Deserialize_m049789DF799472E3BCA2E853378682D503042DA5(L_80, /*hidden argument*/NULL);
|
RuntimeObject * L_64 = Json_Deserialize_m049789DF799472E3BCA2E853378682D503042DA5(L_63, /*hidden argument*/NULL);
|
||||||
V_6 = ((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)IsInstClass((RuntimeObject*)L_81, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var));
|
V_6 = ((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)IsInstClass((RuntimeObject*)L_64, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var));
|
||||||
// Hotupdate.PackUrl = (string)json["pack_url"];
|
// Hotupdate.PackUrl = (string)json["pack_url"];
|
||||||
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_82 = V_6;
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_65 = V_6;
|
||||||
NullCheck(L_82);
|
NullCheck(L_65);
|
||||||
RuntimeObject * L_83 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_82, _stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215);
|
RuntimeObject * L_66 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_65, _stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215);
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(Hotupdate_t30B6F0AE4E68CBAC07F73D87FA1E159E911762FB_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(Hotupdate_t30B6F0AE4E68CBAC07F73D87FA1E159E911762FB_il2cpp_TypeInfo_var);
|
||||||
((Hotupdate_t30B6F0AE4E68CBAC07F73D87FA1E159E911762FB_StaticFields*)il2cpp_codegen_static_fields_for(Hotupdate_t30B6F0AE4E68CBAC07F73D87FA1E159E911762FB_il2cpp_TypeInfo_var))->set_PackUrl_2(((String_t*)CastclassSealed((RuntimeObject*)L_83, String_t_il2cpp_TypeInfo_var)));
|
((Hotupdate_t30B6F0AE4E68CBAC07F73D87FA1E159E911762FB_StaticFields*)il2cpp_codegen_static_fields_for(Hotupdate_t30B6F0AE4E68CBAC07F73D87FA1E159E911762FB_il2cpp_TypeInfo_var))->set_PackUrl_2(((String_t*)CastclassSealed((RuntimeObject*)L_66, String_t_il2cpp_TypeInfo_var)));
|
||||||
// Hashtable _plat_data = null;
|
// Hashtable _plat_data = null;
|
||||||
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_84 = V_5;
|
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_67 = V_5;
|
||||||
NullCheck(L_84);
|
NullCheck(L_67);
|
||||||
L_84->set__plat_data_0((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)NULL);
|
L_67->set__plat_data_0((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)NULL);
|
||||||
// _plat_data = json["iOS"] as Hashtable;
|
// _plat_data = json["iOS"] as Hashtable;
|
||||||
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_85 = V_5;
|
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_68 = V_5;
|
||||||
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_86 = V_6;
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_69 = V_6;
|
||||||
NullCheck(L_86);
|
NullCheck(L_69);
|
||||||
RuntimeObject * L_87 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_86, _stringLiteral6413E837D316AAFCF260786CD21A849F88AE3069);
|
RuntimeObject * L_70 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_69, _stringLiteral6413E837D316AAFCF260786CD21A849F88AE3069);
|
||||||
NullCheck(L_85);
|
NullCheck(L_68);
|
||||||
L_85->set__plat_data_0(((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)IsInstClass((RuntimeObject*)L_87, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var)));
|
L_68->set__plat_data_0(((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)IsInstClass((RuntimeObject*)L_70, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var)));
|
||||||
// var check = _plat_data[string.Format("check{0}", GameApplication.AppVersion.ToString())];
|
// var check = _plat_data[string.Format("check{0}", GameApplication.AppVersion.ToString())];
|
||||||
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_88 = V_5;
|
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_71 = V_5;
|
||||||
NullCheck(L_88);
|
NullCheck(L_71);
|
||||||
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_89 = L_88->get__plat_data_0();
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_72 = L_71->get__plat_data_0();
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_90 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_73 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
||||||
NullCheck(L_90);
|
NullCheck(L_73);
|
||||||
String_t* L_91 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_90);
|
String_t* L_74 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_73);
|
||||||
String_t* L_92 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral4647DFC7915FE9BC9A2C017B0C239EFA439EBB62, L_91, /*hidden argument*/NULL);
|
String_t* L_75 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral4647DFC7915FE9BC9A2C017B0C239EFA439EBB62, L_74, /*hidden argument*/NULL);
|
||||||
NullCheck(L_89);
|
NullCheck(L_72);
|
||||||
RuntimeObject * L_93 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_89, L_92);
|
RuntimeObject * L_76 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_72, L_75);
|
||||||
V_7 = L_93;
|
V_7 = L_76;
|
||||||
// if (check != null && (bool)check)
|
// if (check != null && (bool)check)
|
||||||
RuntimeObject * L_94 = V_7;
|
RuntimeObject * L_77 = V_7;
|
||||||
if (!L_94)
|
if (!L_77)
|
||||||
{
|
{
|
||||||
goto IL_0332;
|
goto IL_02e2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0318:
|
IL_02c8:
|
||||||
{
|
{
|
||||||
RuntimeObject * L_95 = V_7;
|
RuntimeObject * L_78 = V_7;
|
||||||
if (!((*(bool*)((bool*)UnBox(L_95, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))))
|
if (!((*(bool*)((bool*)UnBox(L_78, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))))
|
||||||
{
|
{
|
||||||
goto IL_0332;
|
goto IL_02e2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0321:
|
IL_02d1:
|
||||||
{
|
{
|
||||||
// GameApplication.HideSdk = true;
|
// GameApplication.HideSdk = true;
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->set_HideSdk_21((bool)1);
|
((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->set_HideSdk_21((bool)1);
|
||||||
// GameApplication.Instance.accountTest = false;
|
// GameApplication.Instance.accountTest = false;
|
||||||
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_96 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_79 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
||||||
NullCheck(L_96);
|
NullCheck(L_79);
|
||||||
L_96->set_accountTest_7((bool)0);
|
L_79->set_accountTest_7((bool)0);
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0332:
|
IL_02e2:
|
||||||
{
|
{
|
||||||
// Version server_version = new Version((string)_plat_data["version"]);
|
// Version server_version = new Version((string)_plat_data["version"]);
|
||||||
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_97 = V_5;
|
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_80 = V_5;
|
||||||
NullCheck(L_97);
|
NullCheck(L_80);
|
||||||
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_98 = L_97->get__plat_data_0();
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_81 = L_80->get__plat_data_0();
|
||||||
NullCheck(L_98);
|
NullCheck(L_81);
|
||||||
RuntimeObject * L_99 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_98, _stringLiteralC692273DEB2772DA307FFE37041FEF77BF4BAA97);
|
RuntimeObject * L_82 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_81, _stringLiteralC692273DEB2772DA307FFE37041FEF77BF4BAA97);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_100 = (Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE *)il2cpp_codegen_object_new(Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE_il2cpp_TypeInfo_var);
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_83 = (Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE *)il2cpp_codegen_object_new(Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE_il2cpp_TypeInfo_var);
|
||||||
Version__ctor_m9500BF45B794A84E8CD617BA4946F123DA24F265(L_100, ((String_t*)CastclassSealed((RuntimeObject*)L_99, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
Version__ctor_m9500BF45B794A84E8CD617BA4946F123DA24F265(L_83, ((String_t*)CastclassSealed((RuntimeObject*)L_82, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
|
||||||
V_8 = L_100;
|
V_8 = L_83;
|
||||||
// if (!GameApplication.HideSdk)
|
// if (!GameApplication.HideSdk)
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
bool L_101 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_HideSdk_21();
|
bool L_84 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_HideSdk_21();
|
||||||
if (L_101)
|
if (L_84)
|
||||||
{
|
{
|
||||||
goto IL_03ae;
|
goto IL_035e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0356:
|
IL_0306:
|
||||||
{
|
{
|
||||||
// if (GameApplication.AppVersion.max_version < server_version.max_version || (GameApplication.AppVersion.max_version == server_version.max_version && GameApplication.AppVersion.min_version < server_version.min_version))
|
// if (GameApplication.AppVersion.max_version < server_version.max_version || (GameApplication.AppVersion.max_version == server_version.max_version && GameApplication.AppVersion.min_version < server_version.min_version))
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_102 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_85 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
||||||
NullCheck(L_102);
|
NullCheck(L_85);
|
||||||
int32_t L_103 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_102, /*hidden argument*/NULL);
|
int32_t L_86 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_85, /*hidden argument*/NULL);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_104 = V_8;
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_87 = V_8;
|
||||||
NullCheck(L_104);
|
NullCheck(L_87);
|
||||||
int32_t L_105 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_104, /*hidden argument*/NULL);
|
int32_t L_88 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_87, /*hidden argument*/NULL);
|
||||||
if ((((int32_t)L_103) < ((int32_t)L_105)))
|
if ((((int32_t)L_86) < ((int32_t)L_88)))
|
||||||
{
|
{
|
||||||
goto IL_038f;
|
goto IL_033f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0369:
|
IL_0319:
|
||||||
{
|
{
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_106 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_89 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
||||||
NullCheck(L_106);
|
NullCheck(L_89);
|
||||||
int32_t L_107 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_106, /*hidden argument*/NULL);
|
int32_t L_90 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_89, /*hidden argument*/NULL);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_108 = V_8;
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_91 = V_8;
|
||||||
NullCheck(L_108);
|
NullCheck(L_91);
|
||||||
int32_t L_109 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_108, /*hidden argument*/NULL);
|
int32_t L_92 = Version_get_max_version_mC7A6330690467271F2D0137BC97E6FFB9784F7F8_inline(L_91, /*hidden argument*/NULL);
|
||||||
if ((!(((uint32_t)L_107) == ((uint32_t)L_109))))
|
if ((!(((uint32_t)L_90) == ((uint32_t)L_92))))
|
||||||
{
|
{
|
||||||
goto IL_03ae;
|
goto IL_035e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_037c:
|
IL_032c:
|
||||||
{
|
{
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_110 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_93 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
||||||
NullCheck(L_110);
|
NullCheck(L_93);
|
||||||
int32_t L_111 = Version_get_min_version_mE780726012461A5BB24C8A47A01558E945D750ED_inline(L_110, /*hidden argument*/NULL);
|
int32_t L_94 = Version_get_min_version_mE780726012461A5BB24C8A47A01558E945D750ED_inline(L_93, /*hidden argument*/NULL);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_112 = V_8;
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_95 = V_8;
|
||||||
NullCheck(L_112);
|
NullCheck(L_95);
|
||||||
int32_t L_113 = Version_get_min_version_mE780726012461A5BB24C8A47A01558E945D750ED_inline(L_112, /*hidden argument*/NULL);
|
int32_t L_96 = Version_get_min_version_mE780726012461A5BB24C8A47A01558E945D750ED_inline(L_95, /*hidden argument*/NULL);
|
||||||
if ((((int32_t)L_111) >= ((int32_t)L_113)))
|
if ((((int32_t)L_94) >= ((int32_t)L_96)))
|
||||||
{
|
{
|
||||||
goto IL_03ae;
|
goto IL_035e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_038f:
|
IL_033f:
|
||||||
{
|
{
|
||||||
// ShowTip("???????!", () =>
|
// ShowTip("???????!", () =>
|
||||||
// {
|
// {
|
||||||
|
|
@ -27974,132 +27894,132 @@ IL_038f:
|
||||||
// Application.Quit();
|
// Application.Quit();
|
||||||
// #endif
|
// #endif
|
||||||
// });
|
// });
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_114 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_97 = V_2;
|
||||||
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_115 = V_5;
|
U3CU3Ec__DisplayClass14_0_tC873F27A39DDCF39A3C977BBFB0657C4D6383F30 * L_98 = V_5;
|
||||||
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_116 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
|
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_99 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
|
||||||
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_116, L_115, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass14_0_U3CCheckNetU3Eb__5_m2BD6F1D55B81C29AA1821502DC53A6171117C4BB_RuntimeMethod_var), /*hidden argument*/NULL);
|
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_99, L_98, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass14_0_U3CCheckNetU3Eb__5_m2BD6F1D55B81C29AA1821502DC53A6171117C4BB_RuntimeMethod_var), /*hidden argument*/NULL);
|
||||||
NullCheck(L_114);
|
NullCheck(L_97);
|
||||||
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_114, _stringLiteralBD05E2171069A3148A9117717B9AA5D2254A05D1, L_116, /*hidden argument*/NULL);
|
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_97, _stringLiteralBD05E2171069A3148A9117717B9AA5D2254A05D1, L_99, /*hidden argument*/NULL);
|
||||||
// yield break;
|
// yield break;
|
||||||
V_0 = (bool)0;
|
V_0 = (bool)0;
|
||||||
goto IL_0439;
|
goto IL_03e9;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_03ae:
|
IL_035e:
|
||||||
{
|
{
|
||||||
// Voice.VoiceUpload = json["voice_upload_url"] as string;
|
// Voice.VoiceUpload = json["voice_upload_url"] as string;
|
||||||
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_117 = V_6;
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_100 = V_6;
|
||||||
NullCheck(L_117);
|
NullCheck(L_100);
|
||||||
RuntimeObject * L_118 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_117, _stringLiteral67A7532BC52C80FD3371212C73619F02CF3D275F);
|
RuntimeObject * L_101 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_100, _stringLiteral67A7532BC52C80FD3371212C73619F02CF3D275F);
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_il2cpp_TypeInfo_var);
|
||||||
((Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_StaticFields*)il2cpp_codegen_static_fields_for(Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_il2cpp_TypeInfo_var))->set_VoiceUpload_1(((String_t*)IsInstSealed((RuntimeObject*)L_118, String_t_il2cpp_TypeInfo_var)));
|
((Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_StaticFields*)il2cpp_codegen_static_fields_for(Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_il2cpp_TypeInfo_var))->set_VoiceUpload_1(((String_t*)IsInstSealed((RuntimeObject*)L_101, String_t_il2cpp_TypeInfo_var)));
|
||||||
// Voice.VoiceDownload = json["voice_download_url"] as string;
|
// Voice.VoiceDownload = json["voice_download_url"] as string;
|
||||||
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_119 = V_6;
|
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_102 = V_6;
|
||||||
NullCheck(L_119);
|
NullCheck(L_102);
|
||||||
RuntimeObject * L_120 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_119, _stringLiteral191EC2BF526CB8B2FC97226FA7FFE47364E94B83);
|
RuntimeObject * L_103 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_102, _stringLiteral191EC2BF526CB8B2FC97226FA7FFE47364E94B83);
|
||||||
((Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_StaticFields*)il2cpp_codegen_static_fields_for(Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_il2cpp_TypeInfo_var))->set_VoiceDownload_2(((String_t*)IsInstSealed((RuntimeObject*)L_120, String_t_il2cpp_TypeInfo_var)));
|
((Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_StaticFields*)il2cpp_codegen_static_fields_for(Voice_t4921943354AE75D4FB19411B3D8D14D84355BBDB_il2cpp_TypeInfo_var))->set_VoiceDownload_2(((String_t*)IsInstSealed((RuntimeObject*)L_103, String_t_il2cpp_TypeInfo_var)));
|
||||||
// if (!GameApplication.Instance.buildApp)
|
// if (!GameApplication.Instance.buildApp)
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_121 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_104 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
||||||
NullCheck(L_121);
|
NullCheck(L_104);
|
||||||
bool L_122 = L_121->get_buildApp_5();
|
bool L_105 = L_104->get_buildApp_5();
|
||||||
if (L_122)
|
if (L_105)
|
||||||
{
|
{
|
||||||
goto IL_0409;
|
goto IL_03b9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_03e6:
|
IL_0396:
|
||||||
{
|
{
|
||||||
// GameApplication.AppVersion.FillData(server_version);
|
// GameApplication.AppVersion.FillData(server_version);
|
||||||
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
IL2CPP_RUNTIME_CLASS_INIT(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var);
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_123 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_106 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_AppVersion_20();
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_124 = V_8;
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_107 = V_8;
|
||||||
NullCheck(L_123);
|
NullCheck(L_106);
|
||||||
Version_FillData_m318C56F2AA241120D19657754EDE02909E1236B0(L_123, L_124, /*hidden argument*/NULL);
|
Version_FillData_m318C56F2AA241120D19657754EDE02909E1236B0(L_106, L_107, /*hidden argument*/NULL);
|
||||||
// _version_view.Dispose();
|
// _version_view.Dispose();
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_125 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_108 = V_2;
|
||||||
NullCheck(L_125);
|
NullCheck(L_108);
|
||||||
GComponent_tF76B0991F3895F7A43EDF2678966F2CCCED1A9CC * L_126 = L_125->get__version_view_4();
|
GComponent_tF76B0991F3895F7A43EDF2678966F2CCCED1A9CC * L_109 = L_108->get__version_view_4();
|
||||||
NullCheck(L_126);
|
NullCheck(L_109);
|
||||||
VirtActionInvoker0::Invoke(18 /* System.Void FairyGUI.GObject::Dispose() */, L_126);
|
VirtActionInvoker0::Invoke(18 /* System.Void FairyGUI.GObject::Dispose() */, L_109);
|
||||||
// GameApplication.Instance.StartGame();
|
// GameApplication.Instance.StartGame();
|
||||||
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_127 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712 * L_110 = ((GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_StaticFields*)il2cpp_codegen_static_fields_for(GameApplication_t4010ABEC254B4A9AF08299087C8AEF821F3DC712_il2cpp_TypeInfo_var))->get_Instance_4();
|
||||||
NullCheck(L_127);
|
NullCheck(L_110);
|
||||||
GameApplication_StartGame_m8AFB751707E4E744D4D8FE840DF0F3AB0B714B98(L_127, /*hidden argument*/NULL);
|
GameApplication_StartGame_m8AFB751707E4E744D4D8FE840DF0F3AB0B714B98(L_110, /*hidden argument*/NULL);
|
||||||
// }
|
// }
|
||||||
goto IL_0431;
|
goto IL_03e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0409:
|
IL_03b9:
|
||||||
{
|
{
|
||||||
// StartCoroutine(CheckAssetConfig(server_version));
|
// StartCoroutine(CheckAssetConfig(server_version));
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_128 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_111 = V_2;
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_129 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_112 = V_2;
|
||||||
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_130 = V_8;
|
Version_t59FF964E54F90842CCAC62E4E5829813C2ABC2AE * L_113 = V_8;
|
||||||
NullCheck(L_129);
|
NullCheck(L_112);
|
||||||
RuntimeObject* L_131 = VerCheck_CheckAssetConfig_m39B0D9A601008B11DCD33C1695FC6375843FEAEC(L_129, L_130, /*hidden argument*/NULL);
|
RuntimeObject* L_114 = VerCheck_CheckAssetConfig_m39B0D9A601008B11DCD33C1695FC6375843FEAEC(L_112, L_113, /*hidden argument*/NULL);
|
||||||
NullCheck(L_128);
|
NullCheck(L_111);
|
||||||
MonoBehaviour_StartCoroutine_mBF8044CE06A35D76A69669ADD8977D05956616B7(L_128, L_131, /*hidden argument*/NULL);
|
MonoBehaviour_StartCoroutine_mBF8044CE06A35D76A69669ADD8977D05956616B7(L_111, L_114, /*hidden argument*/NULL);
|
||||||
// }
|
// }
|
||||||
goto IL_0431;
|
goto IL_03e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_041a:
|
IL_03ca:
|
||||||
{
|
{
|
||||||
// ShowTip("??????????????????!", () =>
|
// ShowTip("??????????????????!", () =>
|
||||||
// {
|
// {
|
||||||
// StartCoroutine(CheckNet());
|
// StartCoroutine(CheckNet());
|
||||||
// });
|
// });
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_132 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_115 = V_2;
|
||||||
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_133 = V_2;
|
VerCheck_t5A404F6D6DA95CA9DF06B8B98703751702CF83C7 * L_116 = V_2;
|
||||||
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_134 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
|
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_117 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
|
||||||
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_134, L_133, (intptr_t)((intptr_t)VerCheck_U3CCheckNetU3Eb__14_4_m7526E2E5ACEBD0C980DEC55496F72802902D5E72_RuntimeMethod_var), /*hidden argument*/NULL);
|
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_117, L_116, (intptr_t)((intptr_t)VerCheck_U3CCheckNetU3Eb__14_4_m7526E2E5ACEBD0C980DEC55496F72802902D5E72_RuntimeMethod_var), /*hidden argument*/NULL);
|
||||||
NullCheck(L_132);
|
NullCheck(L_115);
|
||||||
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_132, _stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033, L_134, /*hidden argument*/NULL);
|
VerCheck_ShowTip_mFA595E239FB3334EB1B3B0DCABBE9B558B256D66(L_115, _stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033, L_117, /*hidden argument*/NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0431:
|
IL_03e1:
|
||||||
{
|
{
|
||||||
// }
|
// }
|
||||||
U3CCheckNetU3Ed__14_U3CU3Em__Finally1_m1B632F7D53E69867C2FB85EB14583834837FC50A(__this, /*hidden argument*/NULL);
|
U3CCheckNetU3Ed__14_U3CU3Em__Finally1_m1B632F7D53E69867C2FB85EB14583834837FC50A(__this, /*hidden argument*/NULL);
|
||||||
goto IL_0441;
|
goto IL_03f1;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0439:
|
IL_03e9:
|
||||||
{
|
{
|
||||||
U3CCheckNetU3Ed__14_U3CU3Em__Finally1_m1B632F7D53E69867C2FB85EB14583834837FC50A(__this, /*hidden argument*/NULL);
|
U3CCheckNetU3Ed__14_U3CU3Em__Finally1_m1B632F7D53E69867C2FB85EB14583834837FC50A(__this, /*hidden argument*/NULL);
|
||||||
goto IL_0453;
|
goto IL_0403;
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0441:
|
IL_03f1:
|
||||||
{
|
{
|
||||||
__this->set_U3Crequest1U3E5__3_4((WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 *)NULL);
|
__this->set_U3Crequest1U3E5__3_4((WWW_tA50AFB5DE276783409B4CE88FE9B772322EE5664 *)NULL);
|
||||||
// }
|
// }
|
||||||
V_0 = (bool)0;
|
V_0 = (bool)0;
|
||||||
goto IL_0453;
|
goto IL_0403;
|
||||||
}
|
}
|
||||||
} // end try (depth: 1)
|
} // end try (depth: 1)
|
||||||
catch(Il2CppExceptionWrapper& e)
|
catch(Il2CppExceptionWrapper& e)
|
||||||
{
|
{
|
||||||
__last_unhandled_exception = (Exception_t *)e.ex;
|
__last_unhandled_exception = (Exception_t *)e.ex;
|
||||||
goto FAULT_044c;
|
goto FAULT_03fc;
|
||||||
}
|
}
|
||||||
|
|
||||||
FAULT_044c:
|
FAULT_03fc:
|
||||||
{ // begin fault (depth: 1)
|
{ // begin fault (depth: 1)
|
||||||
U3CCheckNetU3Ed__14_System_IDisposable_Dispose_m1D523235A041CC43027BD33AF3A5EDD004FB4FB3(__this, /*hidden argument*/NULL);
|
U3CCheckNetU3Ed__14_System_IDisposable_Dispose_m1D523235A041CC43027BD33AF3A5EDD004FB4FB3(__this, /*hidden argument*/NULL);
|
||||||
IL2CPP_END_FINALLY(1100)
|
IL2CPP_END_FINALLY(1020)
|
||||||
} // end fault
|
} // end fault
|
||||||
IL2CPP_CLEANUP(1100)
|
IL2CPP_CLEANUP(1020)
|
||||||
{
|
{
|
||||||
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
|
||||||
}
|
}
|
||||||
|
|
||||||
IL_0453:
|
IL_0403:
|
||||||
{
|
{
|
||||||
bool L_135 = V_0;
|
bool L_118 = V_0;
|
||||||
return L_135;
|
return L_118;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// System.Void VerCheck_<CheckNet>d__14::<>m__Finally1()
|
// System.Void VerCheck_<CheckNet>d__14::<>m__Finally1()
|
||||||
|
|
|
||||||
|
|
@ -31392,8 +31392,7 @@ String_t* _stringLiteralD21674C22B211A87778E61E529E82516B3C0921D;
|
||||||
String_t* _stringLiteralBD287A4CFC97EF72067C1302F981806FB9D42E9F;
|
String_t* _stringLiteralBD287A4CFC97EF72067C1302F981806FB9D42E9F;
|
||||||
String_t* _stringLiteralE75D5B22A39BDCA0731C6676612C69551A6DC3DA;
|
String_t* _stringLiteralE75D5B22A39BDCA0731C6676612C69551A6DC3DA;
|
||||||
String_t* _stringLiteral2417C053A1E0CA6E55171D6D6EAEAA4DF0A5C84C;
|
String_t* _stringLiteral2417C053A1E0CA6E55171D6D6EAEAA4DF0A5C84C;
|
||||||
String_t* _stringLiteral6D2E63578E01801E17047E32B1EC2E130836358A;
|
String_t* _stringLiteral187E224D576140EF5E480DB3B944BF07E2E3DB4C;
|
||||||
String_t* _stringLiteralF6D59E9F794B6EE1A09486881654D0FB3D7FC532;
|
|
||||||
String_t* _stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033;
|
String_t* _stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033;
|
||||||
String_t* _stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215;
|
String_t* _stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215;
|
||||||
String_t* _stringLiteral4647DFC7915FE9BC9A2C017B0C239EFA439EBB62;
|
String_t* _stringLiteral4647DFC7915FE9BC9A2C017B0C239EFA439EBB62;
|
||||||
|
|
@ -31527,7 +31526,7 @@ String_t* _stringLiteral04231B44477132B3DBEFE7768A921AE5A13A00FC;
|
||||||
String_t* _stringLiteralF950D9CCC7081471921E58DAA686F27E792540D3;
|
String_t* _stringLiteralF950D9CCC7081471921E58DAA686F27E792540D3;
|
||||||
String_t* _stringLiteralD8BACD8AF4239E549C940D0B918F010410742C42;
|
String_t* _stringLiteralD8BACD8AF4239E549C940D0B918F010410742C42;
|
||||||
extern void** const g_MetadataUsages[];
|
extern void** const g_MetadataUsages[];
|
||||||
void** const g_MetadataUsages[31506] =
|
void** const g_MetadataUsages[31505] =
|
||||||
{
|
{
|
||||||
(void**)(&KeyHandler_t06746F66752C259DBB1F52062DC738C02C9AF0E9_0_0_0_var),
|
(void**)(&KeyHandler_t06746F66752C259DBB1F52062DC738C02C9AF0E9_0_0_0_var),
|
||||||
(void**)(&ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_0_0_0_var),
|
(void**)(&ExceptionU5BU5D_t09C3EFFA7CF3F84DA802016E2017E1608442F209_0_0_0_var),
|
||||||
|
|
@ -62901,8 +62900,7 @@ void** const g_MetadataUsages[31506] =
|
||||||
(void**)(&_stringLiteralBD287A4CFC97EF72067C1302F981806FB9D42E9F),
|
(void**)(&_stringLiteralBD287A4CFC97EF72067C1302F981806FB9D42E9F),
|
||||||
(void**)(&_stringLiteralE75D5B22A39BDCA0731C6676612C69551A6DC3DA),
|
(void**)(&_stringLiteralE75D5B22A39BDCA0731C6676612C69551A6DC3DA),
|
||||||
(void**)(&_stringLiteral2417C053A1E0CA6E55171D6D6EAEAA4DF0A5C84C),
|
(void**)(&_stringLiteral2417C053A1E0CA6E55171D6D6EAEAA4DF0A5C84C),
|
||||||
(void**)(&_stringLiteral6D2E63578E01801E17047E32B1EC2E130836358A),
|
(void**)(&_stringLiteral187E224D576140EF5E480DB3B944BF07E2E3DB4C),
|
||||||
(void**)(&_stringLiteralF6D59E9F794B6EE1A09486881654D0FB3D7FC532),
|
|
||||||
(void**)(&_stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033),
|
(void**)(&_stringLiteral5F94FE784D5475E0384E4803CB9647C086E55033),
|
||||||
(void**)(&_stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215),
|
(void**)(&_stringLiteralF554397B5D9E3B9DC881ABA798EC38C4E1A2A215),
|
||||||
(void**)(&_stringLiteral4647DFC7915FE9BC9A2C017B0C239EFA439EBB62),
|
(void**)(&_stringLiteral4647DFC7915FE9BC9A2C017B0C239EFA439EBB62),
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
[
|
[
|
||||||
|
|
||||||
{
|
{
|
||||||
"ver":"1.0.24",
|
"ver":"1.0.27",
|
||||||
"name":"跑得快",
|
"name":"跑得快",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.24",
|
"version":"1.0.27",
|
||||||
"game_id":"66",
|
"game_id":"66",
|
||||||
"bundle":"extend/poker/runfast"
|
"bundle":"extend/poker/runfast"
|
||||||
},
|
},
|
||||||
|
|
@ -17,10 +17,10 @@
|
||||||
"bundle":"extend/zipai/changdepaohuzi"
|
"bundle":"extend/zipai/changdepaohuzi"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.12",
|
"ver":"1.0.13",
|
||||||
"name":"红中麻将",
|
"name":"红中麻将",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.12",
|
"version":"1.0.13",
|
||||||
"game_id":"22",
|
"game_id":"22",
|
||||||
"bundle":"extend/majiang/hongzhong"
|
"bundle":"extend/majiang/hongzhong"
|
||||||
},
|
},
|
||||||
|
|
@ -49,10 +49,10 @@
|
||||||
"bundle":"extend/zipai/yueyangwaihuzi"
|
"bundle":"extend/zipai/yueyangwaihuzi"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.24",
|
"ver":"1.0.34",
|
||||||
"name":"娄底放炮罚",
|
"name":"娄底放炮罚",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.24",
|
"version":"1.0.34",
|
||||||
"game_id":"17",
|
"game_id":"17",
|
||||||
"bundle":"extend/zipai/fanpaofa"
|
"bundle":"extend/zipai/fanpaofa"
|
||||||
}
|
}
|
||||||
|
|
@ -65,10 +65,10 @@
|
||||||
"bundle":"extend/zipai/runbeard"
|
"bundle":"extend/zipai/runbeard"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.8",
|
"ver":"1.0.9",
|
||||||
"name":"转转麻将",
|
"name":"转转麻将",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.8",
|
"version":"1.0.9",
|
||||||
"game_id":"108",
|
"game_id":"108",
|
||||||
"bundle":"extend/majiang/zhuanzhuan"
|
"bundle":"extend/majiang/zhuanzhuan"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,102 +1,102 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"lua_path":"/tolua_project,/base_project,/main_project",
|
"lua_path":"/tolua_project,/base_project,/main_project",
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"base_script",
|
"name":"base_script",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/base_script",
|
"bundle":"base/base_script",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"common",
|
"name":"common",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/common",
|
"bundle":"base/common",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"login",
|
"name":"login",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/login",
|
"bundle":"base/login",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"lobby",
|
"name":"lobby",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/lobby",
|
"bundle":"base/lobby",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"chat",
|
"name":"chat",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/chat",
|
"bundle":"base/chat",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"newgroup",
|
"name":"newgroup",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/newgroup",
|
"bundle":"base/newgroup",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"rank",
|
"name":"rank",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.7",
|
"version":"1.0.9",
|
||||||
"bundle":"base/rank"
|
"bundle":"base/rank"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"main_majiang",
|
"name":"main_majiang",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.7",
|
"version":"1.0.9",
|
||||||
"bundle":"base/main_majiang"
|
"bundle":"base/main_majiang"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"main_poker",
|
"name":"main_poker",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.7",
|
"version":"1.0.9",
|
||||||
"bundle":"base/main_poker"
|
"bundle":"base/main_poker"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"main_zipai",
|
"name":"main_zipai",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.7",
|
"version":"1.0.9",
|
||||||
"bundle":"base/main_zipai"
|
"bundle":"base/main_zipai"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"static",
|
"name":"static",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/static",
|
"bundle":"base/static",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"is_res":true,
|
"is_res":true,
|
||||||
"name":"embed",
|
"name":"embed",
|
||||||
"check":true,
|
"check":true,
|
||||||
"bundle":"base/embed",
|
"bundle":"base/embed",
|
||||||
"version":"1.0.7"
|
"version":"1.0.9"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"main_pokemajiang",
|
"name":"main_pokemajiang",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.7",
|
"version":"1.0.9",
|
||||||
"bundle":"base/main_pokemajiang"
|
"bundle":"base/main_pokemajiang"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ver":"1.0.7",
|
"ver":"1.0.9",
|
||||||
"name":"main_zipaimajiang",
|
"name":"main_zipaimajiang",
|
||||||
"check":true,
|
"check":true,
|
||||||
"version":"1.0.7",
|
"version":"1.0.9",
|
||||||
"bundle":"base/main_zipaimajiang"
|
"bundle":"base/main_zipaimajiang"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||