上传临时同步
|
|
@ -198,6 +198,9 @@ end
|
|||
function M:OnEventExitRoomDismiss(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
ControllerManager.ChangeController(LoddyController)
|
||||
DispatchEvent(self._dispatcher, GameEvent.DeskBreak, 1)
|
||||
end
|
||||
|
|
@ -208,6 +211,9 @@ end
|
|||
function M:OnEventDismissRoom(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local room = DataManager.CurrenRoom
|
||||
local req_aid = evt_data['req_aid']
|
||||
evt_data.req_p = room:GetPlayerById(req_aid)
|
||||
|
|
@ -251,6 +257,9 @@ end
|
|||
function M:OnEventDismissRoomFail(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, GameEvent.DeskBreak, 3)
|
||||
end
|
||||
)
|
||||
|
|
@ -263,6 +272,9 @@ function M:OnEventPlayerEnter(evt_data)
|
|||
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
printlog("PlayerEnter:2222")
|
||||
local p = self._room:NewPlayer()
|
||||
local _user
|
||||
|
|
@ -296,6 +308,9 @@ end
|
|||
function M:OnEventPlayerLeave(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local playerid = evt_data['aid']
|
||||
local p = DataManager.CurrenRoom:GetPlayerById(playerid)
|
||||
self._room:RemovePlayer(p)
|
||||
|
|
@ -308,6 +323,9 @@ end
|
|||
function M:OnEventOnlineState(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local playerid = evt_data['aid']
|
||||
local online = evt_data['online']
|
||||
local player = DataManager.CurrenRoom:GetPlayerById(playerid)
|
||||
|
|
@ -323,6 +341,9 @@ end
|
|||
function M:OnEventPlayerReady(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local pid = evt_data['aid']
|
||||
local p = self._room:GetPlayerById(pid)
|
||||
p.ready = true
|
||||
|
|
@ -344,6 +365,9 @@ end
|
|||
function M:OnEventPlayerXiPaiReady(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local pid = evt_data['aid']
|
||||
local p = self._room:GetPlayerById(pid)
|
||||
p.ready = true
|
||||
|
|
@ -367,6 +391,9 @@ function M:OnEventInteraction(evt_data)
|
|||
if self._room.ban_chat1 == false or self._room.ban_chat2 == false then
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local playerid = evt_data['playerid']
|
||||
local p = self._room:GetPlayerById(playerid)
|
||||
local type1 = evt_data['type']
|
||||
|
|
@ -403,6 +430,9 @@ function M:OnEventKicked()
|
|||
end
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DataManager.CurrenRoom = nil
|
||||
ControllerManager.SetGameNetClient(nil, true)
|
||||
ControllerManager.ChangeController(LoddyController)
|
||||
|
|
@ -443,6 +473,9 @@ end
|
|||
function M:OnEvtUpdateInfo(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local pid = evt_data['aid']
|
||||
local p = self._room:GetPlayerById(pid)
|
||||
local t = evt_data['type']
|
||||
|
|
@ -615,3 +648,7 @@ function M:OnEvtOpenGameHuTuoGtips(isAuto)
|
|||
data.autoCard = isAuto
|
||||
_client:send(Protocol.GAME_AUTO_CARD, data)
|
||||
end
|
||||
|
||||
function M:SetPopCallback(callback)
|
||||
self._callback_popEvent = callback
|
||||
end
|
||||
|
|
|
|||
|
|
@ -31,6 +31,10 @@ function M:init()
|
|||
UIPackage.AddPackage('base/chat/ui/Chat')
|
||||
self.Fix_Msg_Chat = ViewUtil.Fix_Msg_Chat -- 自动回复消息列表
|
||||
self.Fix_Msg_Chat2 = nil -- 自动回复列表2
|
||||
self._gamectr:SetPopCallback(function(falg)
|
||||
print("lingmeng self._popEvent", falg)
|
||||
self._popEvent = falg
|
||||
end)
|
||||
self:InitView()
|
||||
self:SetTuoGuanState()
|
||||
end
|
||||
|
|
@ -571,7 +575,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.PlayerState,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
local info = _player_info[self:GetPos(p.seat)]
|
||||
|
|
@ -588,7 +592,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.DeskBreak,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local code = arg[1]
|
||||
if code == 0 then
|
||||
|
|
@ -618,7 +622,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.Interaction,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
if not p or not p.seat or p.seat == 0 then
|
||||
|
|
@ -664,7 +668,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.OnKicked,
|
||||
function()
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
printlog("GameEvent.OnKicked====》》》》》")
|
||||
self:UnmarkSelfTuoguan()
|
||||
local _curren_msg = MsgWindow.new(self._root_view, '由于长时间未准备,你已被踢出房间!', MsgWindow.MsgMode.OnlyOk)
|
||||
|
|
@ -680,7 +684,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.TupGuanOpen,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
--print("刷新托管数据=====")
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
|
|
@ -779,7 +783,7 @@ function M:GetReadyNum()
|
|||
end
|
||||
|
||||
function M:OnPlayerEnter(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
printlog("进入房间222222222222222222++++++++++++++++++++++++++++")
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
|
|
@ -810,7 +814,7 @@ function M:OnPlayerEnter(...)
|
|||
end
|
||||
|
||||
function M:OnPlayerReady(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
|
||||
|
|
@ -846,7 +850,7 @@ function M:OnPlayerReady(...)
|
|||
end
|
||||
|
||||
function M:OnUpdateInfo(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
local t = arg[2]
|
||||
|
|
@ -933,7 +937,7 @@ function M:UnmarkSelfTuoguan()
|
|||
end
|
||||
|
||||
function M:OnPlayerLeave(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local p = arg[1]
|
||||
local info = self._player_info[self:GetPos(p.seat)]
|
||||
|
|
@ -1010,6 +1014,7 @@ function M:OnUpdate()
|
|||
self._gamectr:ResetConnect()
|
||||
end
|
||||
end
|
||||
print("lingmeng self._popEvent3", self._popEvent)
|
||||
--func()
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ function M:InitInfo()
|
|||
self._viewList_partner:RemoveChildren()
|
||||
|
||||
local obj = self._viewList_partner:AddItemFromPool()
|
||||
self._ctr_tongji.selectedIndex = 1
|
||||
self:PartnerRender(
|
||||
{ uid = DataManager.SelfUser.account_id, nick = DataManager.SelfUser.nick_name }, obj)
|
||||
-- obj:GetController('show').selectedIndex = 1
|
||||
|
|
@ -33,6 +34,8 @@ function M:InitInfo()
|
|||
self:RecursionGetNumber1(0, DataManager.SelfUser.account_id, {})
|
||||
--将外面设置为最外圈页面
|
||||
self.ctr_index.selectedIndex = #self.page_config
|
||||
obj:GetController('arrow').selectedIndex = 1
|
||||
self._data_selectedData = obj
|
||||
end
|
||||
|
||||
function M:SetRecursionGetNumber1Info(id, tempTable)
|
||||
|
|
@ -58,6 +61,9 @@ function M:PartnerRender(data, obj)
|
|||
self._map_members[data.uid] = obj
|
||||
obj:GetChild('area').onClick:Set(function()
|
||||
self.lastY = self._viewList_partner.scrollPane.posY
|
||||
self._data_selectedData:GetController('arrow').selectedIndex = 0
|
||||
obj:GetController('arrow').selectedIndex = 1
|
||||
self._data_selectedData = obj
|
||||
if obj.data.info.parentId then
|
||||
self:SetListShow(self._map_members[obj.data.info.parentId].data.listInfo, 0, data.uid)
|
||||
end
|
||||
|
|
@ -81,6 +87,7 @@ function M:PartnerRender(data, obj)
|
|||
else
|
||||
self.ctr_index.selectedIndex = #self.page_config
|
||||
end
|
||||
self._ctr_tongji.selectedIndex = 1
|
||||
end)
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ function M:init(btn_type)
|
|||
end
|
||||
|
||||
self.ctr_index = self._view:GetController("index")
|
||||
self._ctr_tongji = self._view:GetController('tongji')
|
||||
self.page_config = MngPageConfig.Config[btn_type][lev]
|
||||
|
||||
local gmsv
|
||||
|
|
@ -152,6 +153,7 @@ function M:init(btn_type)
|
|||
|
||||
-- 切换界面
|
||||
self.ctr_index.onChanged:Set(function(pas)
|
||||
self._ctr_tongji.selectedIndex = 0
|
||||
local anchor = self._view:GetChild("anchor")
|
||||
anchor:RemoveChildren()
|
||||
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ function M:InitView()
|
|||
self.btn_total:GetController("type").selectedIndex = 0
|
||||
self.btn_reward:GetController("type").selectedIndex = 0
|
||||
local type = self.btn_totalWin:GetController("type")
|
||||
type.selectedIndex = (type.selectedIndex + 1) % 3
|
||||
type.selectedIndex = type.selectedIndex == 0 and 1 or 3 - type.selectedIndex
|
||||
|
||||
if type.selectedIndex == 1 then
|
||||
table.sort(self.record_data, function(a, b)
|
||||
|
|
@ -174,10 +174,6 @@ function M:InitView()
|
|||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_win < b.total_win
|
||||
end)
|
||||
else
|
||||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round > b.total_round
|
||||
end)
|
||||
end
|
||||
self.lst_record:RefreshVirtualList()
|
||||
end
|
||||
|
|
@ -190,8 +186,7 @@ function M:InitView()
|
|||
self.btn_total:GetController("type").selectedIndex = 0
|
||||
self.btn_reward:GetController("type").selectedIndex = 0
|
||||
local type = self.btn_totalRound:GetController("type")
|
||||
type.selectedIndex = (type.selectedIndex + 1) % 3
|
||||
|
||||
type.selectedIndex = type.selectedIndex == 0 and 1 or 3 - type.selectedIndex
|
||||
if type.selectedIndex == 1 then
|
||||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round > b.total_round
|
||||
|
|
@ -200,10 +195,6 @@ function M:InitView()
|
|||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round < b.total_round
|
||||
end)
|
||||
else
|
||||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round > b.total_round
|
||||
end)
|
||||
end
|
||||
self.lst_record:RefreshVirtualList()
|
||||
end
|
||||
|
|
@ -216,7 +207,7 @@ function M:InitView()
|
|||
self.btn_totalRound:GetController("type").selectedIndex = 0
|
||||
self.btn_reward:GetController("type").selectedIndex = 0
|
||||
local type = self.btn_total:GetController("type")
|
||||
type.selectedIndex = (type.selectedIndex + 1) % 3
|
||||
type.selectedIndex = type.selectedIndex == 0 and 1 or 3 - type.selectedIndex
|
||||
|
||||
if type.selectedIndex == 1 then
|
||||
table.sort(self.record_data, function(a, b)
|
||||
|
|
@ -226,10 +217,6 @@ function M:InitView()
|
|||
table.sort(self.record_data, function(a, b)
|
||||
return a.win_round < b.win_round
|
||||
end)
|
||||
else
|
||||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round > b.total_round
|
||||
end)
|
||||
end
|
||||
self.lst_record:RefreshVirtualList()
|
||||
end
|
||||
|
|
@ -242,7 +229,7 @@ function M:InitView()
|
|||
self.btn_totalRound:GetController("type").selectedIndex = 0
|
||||
self.btn_total:GetController("type").selectedIndex = 0
|
||||
local type = self.btn_reward:GetController("type")
|
||||
type.selectedIndex = (type.selectedIndex + 1) % 3
|
||||
type.selectedIndex = type.selectedIndex == 0 and 1 or 3 - type.selectedIndex
|
||||
|
||||
if type.selectedIndex == 1 then
|
||||
table.sort(self.record_data, function(a, b)
|
||||
|
|
@ -252,10 +239,6 @@ function M:InitView()
|
|||
table.sort(self.record_data, function(a, b)
|
||||
return a.reward_hp < b.reward_hp
|
||||
end)
|
||||
else
|
||||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round > b.total_round
|
||||
end)
|
||||
end
|
||||
self.lst_record:RefreshVirtualList()
|
||||
end
|
||||
|
|
@ -286,6 +269,12 @@ end
|
|||
function M:RecursionGetRecoedData(index)
|
||||
ViewUtil.ShowModalWait("正在获取数据中")
|
||||
local fgCtr = ControllerManager.GetController(NewGroupController)
|
||||
fgCtr:FG_GetMemberStat(self.group_id, 0,
|
||||
self._data_choosePlayyer.parentId or self._data_choosePlayyer.uid,
|
||||
index * 67, 67, 0, self.begin_time, self.end_time,
|
||||
function(res)
|
||||
|
||||
end)
|
||||
fgCtr:FG_GetPartnerStatMember(self.group_id, self._data_choosePlayyer.uid,
|
||||
self._data_choosePlayyer.parentId or self._data_choosePlayyer.uid,
|
||||
index * 67, 67, 0, self.begin_time, self.end_time, function(res)
|
||||
|
|
@ -298,6 +287,10 @@ function M:RecursionGetRecoedData(index)
|
|||
self:RecursionGetRecoedData(index + 1)
|
||||
else
|
||||
ViewUtil.CloseModalWait()
|
||||
self.btn_totalRound:GetController("type").selectedIndex = 1
|
||||
self.btn_totalWin:GetController("type").selectedIndex = 0
|
||||
self.btn_total:GetController("type").selectedIndex = 0
|
||||
self.btn_reward:GetController("type").selectedIndex = 0
|
||||
table.sort(self.record_data, function(a, b)
|
||||
return a.total_round > b.total_round
|
||||
end)
|
||||
|
|
|
|||
|
|
@ -339,7 +339,7 @@ function M:FillRecordItem(data, obj)
|
|||
obj:GetChild("tex_round_total").text = data.total_round
|
||||
obj:GetChild("tex_total").text = d2ad(data.total_win)
|
||||
obj:GetChild("tex_round_youxiao").text = data.valid_round / 100
|
||||
|
||||
obj:GetChild('tex_reward').text = d2ad(data.reward_hp)
|
||||
|
||||
local btn_check_members = obj:GetChild("btn_check_members")
|
||||
btn_check_members.onClick:Set(function()
|
||||
|
|
@ -444,6 +444,7 @@ function M:OnRenderRecordItemNew(obj, mainRecord, root_id)
|
|||
obj:GetChild("tex_round_total").text = mainRecord.total_round
|
||||
obj:GetChild("tex_total").text = d2ad(mainRecord.total_win)
|
||||
obj:GetChild("tex_round_youxiao").text = mainRecord.valid_round / 100
|
||||
obj:GetChild('tex_reward').text = d2ad(mainRecord.reward_hp)
|
||||
obj:GetChild("btn_more").visible = not mainRecord.partnerLev or mainRecord.partnerLev > 0
|
||||
obj:GetController("more").onChanged:Set(function() end)
|
||||
obj:GetController("more").selectedIndex = 0
|
||||
|
|
|
|||
|
|
@ -56,11 +56,13 @@ function M:OnEventDaNiaoTip(evt_data)
|
|||
return
|
||||
end
|
||||
|
||||
local niao = evt_data["niao"]
|
||||
local reload = evt_data["reload"]
|
||||
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local niao = evt_data["niao"]
|
||||
local reload = evt_data["reload"]
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.OnDaNiaoTips, niao, reload)
|
||||
ControllerManager.IsSendCard = true
|
||||
end
|
||||
|
|
@ -76,6 +78,11 @@ function M:SendNiao(niao, callBack)
|
|||
end
|
||||
|
||||
function M:OnEventDaNiao(evt_data)
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local seat = evt_data["seat"]
|
||||
local niao = evt_data["niao"]
|
||||
if seat == DataManager.CurrenRoom.self_player.seat then
|
||||
|
|
@ -84,8 +91,6 @@ function M:OnEventDaNiao(evt_data)
|
|||
self.NiaoTipsCallBack = nil
|
||||
end
|
||||
end
|
||||
self._cacheEvent:Enqueue(
|
||||
function()
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.OnEventDaNiao, seat, niao)
|
||||
end
|
||||
)
|
||||
|
|
@ -102,6 +107,7 @@ function M:OnEventXiPai(evt_data)
|
|||
end
|
||||
|
||||
function M:OnEventXiPaiAnim(evt_data)
|
||||
self._cacheEvent:Enqueue(function()
|
||||
local playeridList = evt_data["list"]
|
||||
local isXiPai = false
|
||||
local otherisXiPai = false
|
||||
|
|
@ -115,8 +121,6 @@ function M:OnEventXiPaiAnim(evt_data)
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
self._cacheEvent:Enqueue(function()
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.EventXiPai, isXiPai, otherisXiPai)
|
||||
end)
|
||||
end
|
||||
|
|
@ -196,6 +200,11 @@ function M:OnEventSendCards(evt_data)
|
|||
return
|
||||
end
|
||||
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
|
||||
local _room = self._room
|
||||
_room.curren_round = _room.curren_round + 1
|
||||
if _room.curren_round > 0 then _room.playing = true end
|
||||
|
|
@ -223,7 +232,6 @@ function M:OnEventSendCards(evt_data)
|
|||
_room.player_list[i].outcard_list = {}
|
||||
_room.player_list[i].hu_xi = 0
|
||||
end
|
||||
self._cacheEvent:Enqueue(function()
|
||||
_room.self_player.handcard_list = handcards
|
||||
self._room.self_player.hand_left_count = #handcards
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.SendCards, p)
|
||||
|
|
@ -239,6 +247,9 @@ function M:OnEventOutCard(evt_data)
|
|||
|
||||
local p = self._room:GetPlayerBySeat(seat)
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local _room = self._room
|
||||
if (seat == _room.self_player.seat) then
|
||||
list_remove(_room.self_player.handcard_list, card)
|
||||
|
|
@ -254,6 +265,9 @@ function M:OnEventQIPAI(evt_data)
|
|||
local card = evt_data["card"]
|
||||
local p = self._room:GetPlayerBySeat(seat)
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local _room = self._room
|
||||
if (not p.outcard_list) then p.outcard_list = {} end
|
||||
p.outcard_list[#p.outcard_list + 1] = card
|
||||
|
|
@ -268,6 +282,9 @@ function M:OnEventTakeCard(evt_data)
|
|||
local left_count = evt_data["left_count"]
|
||||
local p = _room:GetPlayerBySeat(seat)
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
if card ~= 0 then
|
||||
p.DiceCard = card
|
||||
end
|
||||
|
|
@ -293,6 +310,9 @@ end
|
|||
|
||||
function M:OnEventOutHint(evt_data)
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.OutHint)
|
||||
end)
|
||||
end
|
||||
|
|
@ -300,12 +320,18 @@ end
|
|||
function M:OnEventTurn(evt_data)
|
||||
local seat = evt_data["seat"]
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.EventTurn, seat)
|
||||
end)
|
||||
end
|
||||
|
||||
function M:OnEventFzTips(evt_data)
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
local tiplist = FZTipList.new()
|
||||
local list = evt_data["tip_list"]
|
||||
local uid = evt_data["uid"]
|
||||
|
|
@ -338,6 +364,9 @@ function M:OnEventFangWei(evt_data)
|
|||
local seat = evt_data["seat"]
|
||||
local card = evt_data["card"]
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.FangWei, seat, card)
|
||||
end)
|
||||
end
|
||||
|
|
@ -347,6 +376,9 @@ function M:OnEventFangPaoOk(evt_data)
|
|||
local seat = evt_data["seat"]
|
||||
local card = evt_data["card"]
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.FangPaoOk, seat, card)
|
||||
end)
|
||||
end
|
||||
|
|
@ -446,13 +478,14 @@ function M:OnEventFzAction(evt_data)
|
|||
if p.fz_list[i].card == card then
|
||||
p.fz_list[i].type = RB_FZType.Pao
|
||||
isAddTi = true
|
||||
flag_pengPao = true
|
||||
remove_num = 0
|
||||
end
|
||||
end
|
||||
if isAddTi == false then
|
||||
p.fz_list[#p.fz_list + 1] = fz
|
||||
end
|
||||
else
|
||||
flag_pengPao = true
|
||||
end
|
||||
else
|
||||
local num = 0
|
||||
|
|
@ -523,14 +556,14 @@ function M:OnEventFzAction(evt_data)
|
|||
|
||||
|
||||
p.hand_left_count = p.hand_left_count - remove_num
|
||||
if fz.type == RB_FZType.Pao or fz.type == RB_FZType.Ti then
|
||||
coroutine.start(function()
|
||||
coroutine.wait(0.5)
|
||||
-- if fz.type == RB_FZType.Pao or fz.type == RB_FZType.Ti or fz.type == RB_FZType.Wei or fz.type == RB_FZType.ChouWei then
|
||||
-- coroutine.start(function()
|
||||
-- -- coroutine.wait(0.88)
|
||||
-- DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.FangziAction, fz, p, isNeedDelHandCard, flag_pengPao)
|
||||
-- end)
|
||||
-- else
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.FangziAction, fz, p, isNeedDelHandCard, flag_pengPao)
|
||||
end)
|
||||
else
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.FangziAction, fz, p, isNeedDelHandCard, flag_pengPao)
|
||||
end
|
||||
-- end
|
||||
end)
|
||||
end
|
||||
|
||||
|
|
@ -541,6 +574,9 @@ function M:OnEventHu(evt_data)
|
|||
-- print(win_p.hand_left_count)
|
||||
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
win_p.card_list = cards
|
||||
table.sort(win_p.card_list, ViewUtil.HandCardSort)
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.ZPHuCard, evt_data["seat"], evt_data["from_seat"], cards)
|
||||
|
|
@ -561,6 +597,9 @@ function M:OneventResult1(evt_data)
|
|||
end
|
||||
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.ZPResult1, result);
|
||||
end)
|
||||
elseif 1 == over or 2 == over then
|
||||
|
|
@ -570,6 +609,9 @@ function M:OneventResult1(evt_data)
|
|||
|
||||
local result = evt_data.result
|
||||
self._cacheEvent:Enqueue(function()
|
||||
if self._callback_popEvent then
|
||||
self._callback_popEvent(true)
|
||||
end
|
||||
DispatchEvent(self._dispatcher, FanPaoFa_GameEvent.ZPResult2, result, total_result, over);
|
||||
end)
|
||||
end
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ function M:EventInit()
|
|||
local _player_info = self._player_info
|
||||
local _gamectr = self._gamectr
|
||||
_gamectr:AddEventListener(GameEvent.EventXiPai, function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local currentPlayer1 = arg[1]
|
||||
local currentPlayer2 = arg[2]
|
||||
|
|
@ -185,11 +185,17 @@ function M:EventInit()
|
|||
end
|
||||
self:PlayXiPai1(xipaiCB2)
|
||||
end
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(3.68)
|
||||
self._popEvent = true
|
||||
end
|
||||
)
|
||||
end)
|
||||
|
||||
|
||||
_gamectr:AddEventListener(GameEvent.OnDaNiaoTips, function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local niao = arg[1]
|
||||
local reload = arg[2]
|
||||
|
|
@ -224,7 +230,7 @@ function M:EventInit()
|
|||
|
||||
|
||||
_gamectr:AddEventListener(GameEvent.OnEventDaNiao, function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local seat = arg[1]
|
||||
local niao = arg[2]
|
||||
|
|
@ -240,7 +246,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.SendCards,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
self._leftcard = 1
|
||||
self._leftcard = 1
|
||||
local rightpanel = self._view:GetChild('right_panel')
|
||||
|
|
@ -308,8 +314,7 @@ function M:EventInit()
|
|||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.5)
|
||||
print("lingmeng GetCard2-1", os.time())
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
end
|
||||
)
|
||||
else
|
||||
|
|
@ -318,8 +323,8 @@ function M:EventInit()
|
|||
function()
|
||||
coroutine.wait(0.5)
|
||||
print("lingmeng GetCard3-1", os.time())
|
||||
self._popEvent = true
|
||||
info:ClearOutCard()
|
||||
-- self._popEvent = true
|
||||
-- info:ClearOutCard()
|
||||
end
|
||||
)
|
||||
end
|
||||
|
|
@ -328,6 +333,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.AddCard,
|
||||
function(...)
|
||||
print("lingmeng AddCard", self._popEvent)
|
||||
local arg = { ... }
|
||||
local seat = arg[1]
|
||||
local card = arg[2]
|
||||
|
|
@ -335,19 +341,18 @@ function M:EventInit()
|
|||
local info = self._player_card_info[self:GetPos(seat)]
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.2)
|
||||
coroutine.wait(0.6)
|
||||
if info._area_outcard_list.numChildren > 0 then
|
||||
local outCard = info._area_outcard_list:GetChildAt(0)
|
||||
outCard:TweenMove(outCard:GlobalToLocal(info:GetFzMove()), 0.35)
|
||||
outCard:TweenScale(Vector2.New(0, 0), 0.35)
|
||||
outCard:TweenMove(outCard:GlobalToLocal(info:GetFzMove()), 0.25)
|
||||
outCard:TweenScale(Vector2.New(0, 0), 0.25)
|
||||
end
|
||||
end
|
||||
)
|
||||
|
||||
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.5)
|
||||
coroutine.wait(0.7)
|
||||
if seat == self._room.self_player.seat then
|
||||
info:InitHandCard(false)
|
||||
end
|
||||
|
|
@ -361,7 +366,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.EventTurn,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local seat = arg[1]
|
||||
local list = _room.player_list
|
||||
|
|
@ -379,7 +384,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.OutHint,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
_room.curren_outcard_seat = _room.self_player.seat
|
||||
--printlog("jefe OutHint view>>>>",card)
|
||||
|
||||
|
|
@ -396,7 +401,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.FangWei,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local seat = arg[1]
|
||||
local card = arg[2]
|
||||
|
|
@ -442,7 +447,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.OutCard,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
self:__CloseTip()
|
||||
self._left_time = 0
|
||||
local arg = { ... }
|
||||
|
|
@ -496,8 +501,8 @@ function M:EventInit()
|
|||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.2)
|
||||
self._popEvent = true
|
||||
info:ClearOutCard()
|
||||
-- self._popEvent = true
|
||||
-- info:ClearOutCard()
|
||||
p.DiceCard = 0
|
||||
info:UpdateQiPai(p.outcard_list, false, seat)
|
||||
end
|
||||
|
|
@ -507,7 +512,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.FZTips,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
local arg = { ... }
|
||||
local _tip = arg[1]
|
||||
local _uid = arg[2]
|
||||
|
|
@ -522,7 +527,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.ZPHuCard,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
self._left_time = 0
|
||||
self:__CloseTip()
|
||||
|
||||
|
|
@ -559,7 +564,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.ZPResult1,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
--printlog("ZPResult111ssssssttteessssssttt")
|
||||
|
||||
self._left_time = 0
|
||||
|
|
@ -638,7 +643,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.ZPResult2,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
self._left_time = 0
|
||||
local arg = { ... }
|
||||
local total_result = arg[2]
|
||||
|
|
@ -667,7 +672,7 @@ function M:EventInit()
|
|||
_gamectr:AddEventListener(
|
||||
GameEvent.FangPaoOk,
|
||||
function(...)
|
||||
self._popEvent = true
|
||||
-- self._popEvent = true
|
||||
self._left_time = 0
|
||||
local arg = { ... }
|
||||
local seat = arg[1]
|
||||
|
|
@ -1109,18 +1114,18 @@ function M:OnFangziAction(...)
|
|||
-- info:PlayingOutCardAnima()
|
||||
self:PlaySound(player.self_user.sex, 'F_GuoSao')
|
||||
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)
|
||||
-- effect.touchable = false
|
||||
-- effect.x, effect.y = -250, -200
|
||||
-- effect:GetTransition('t0'):Play()
|
||||
-- pNode:AddChild(effect)
|
||||
-- -- end)
|
||||
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.7)
|
||||
effect:Dispose()
|
||||
end
|
||||
)
|
||||
-- coroutine.start(
|
||||
-- function()
|
||||
-- coroutine.wait(0.7)
|
||||
-- effect:Dispose()
|
||||
-- end
|
||||
-- )
|
||||
elseif fz.type == RB_FZType.ChouWei then
|
||||
-- self:PlaySound(player.self_user.sex, 'F_' .. fz.card)
|
||||
-- info:UpdateOutCardList(fz.card, true, true, fz.from_seat)
|
||||
|
|
@ -1131,18 +1136,18 @@ function M:OnFangziAction(...)
|
|||
-- info:PlayingOutCardAnima()
|
||||
self:PlaySound(player.self_user.sex, 'F_GuoSao')
|
||||
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)
|
||||
-- effect.touchable = false
|
||||
-- effect.x, effect.y = -250, -200
|
||||
-- effect:GetTransition('t0'):Play()
|
||||
-- pNode:AddChild(effect)
|
||||
-- -- end)
|
||||
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.7)
|
||||
effect:Dispose()
|
||||
end
|
||||
)
|
||||
-- coroutine.start(
|
||||
-- function()
|
||||
-- coroutine.wait(0.7)
|
||||
-- effect:Dispose()
|
||||
-- end
|
||||
-- )
|
||||
elseif fz.type == RB_FZType.Pao then
|
||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "pao")
|
||||
self:PlaySound(player.self_user.sex, 'F_KaiDuo')
|
||||
|
|
@ -1151,39 +1156,39 @@ function M:OnFangziAction(...)
|
|||
-- 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.touchable = false
|
||||
effect.x, effect.y = -250, -200
|
||||
effect:GetTransition('t0'):Play()
|
||||
pNode:AddChild(effect)
|
||||
-- effect.touchable = false
|
||||
-- effect.x, effect.y = -250, -200
|
||||
-- effect:GetTransition('t0'):Play()
|
||||
-- pNode:AddChild(effect)
|
||||
-- -- coroutine.start(
|
||||
-- -- function()
|
||||
-- -- coroutine.wait(1.2)
|
||||
-- print("lingmeng tiqi")
|
||||
-- self:PlaySound(player.self_user.sex, 'F_SaoChuan')
|
||||
-- -- info:PlayingOutCardAnima()
|
||||
-- -- end)
|
||||
|
||||
-- coroutine.start(
|
||||
-- function()
|
||||
-- coroutine.wait(1.2)
|
||||
print("lingmeng tiqi")
|
||||
self:PlaySound(player.self_user.sex, 'F_SaoChuan')
|
||||
-- info:PlayingOutCardAnima()
|
||||
-- end)
|
||||
|
||||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(2)
|
||||
effect:Dispose()
|
||||
end
|
||||
)
|
||||
-- coroutine.wait(2)
|
||||
-- effect:Dispose()
|
||||
-- end
|
||||
-- )
|
||||
-- effect:GetChild("icon2").icon = UIPackage.GetItemURL("Main_RunBeard", "ti")
|
||||
end
|
||||
|
||||
if fz.type ~= RB_FZType.Wei and fz.type ~= RB_FZType.ChouWei then
|
||||
-- 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)
|
||||
coroutine.wait(0.5)
|
||||
effect:Dispose()
|
||||
end
|
||||
)
|
||||
end
|
||||
-- end
|
||||
end
|
||||
if (player == self._room.self_player) then
|
||||
coroutine.start(
|
||||
|
|
@ -1197,8 +1202,8 @@ function M:OnFangziAction(...)
|
|||
|
||||
if fz.type ~= RB_FZType.Kan then
|
||||
local time = 0.01
|
||||
if fz.type == RB_FZType.Wei or fz.type == RB_FZType.ChouWei then
|
||||
time = 0.3
|
||||
if fz.type == RB_FZType.Pao or fz.type == RB_FZType.Ti or fz.type == RB_FZType.Wei or fz.type == RB_FZType.ChouWei then
|
||||
time = 0.5
|
||||
end
|
||||
local removeOutcard = _player_card_info[self:GetPos(fz.from_seat)]
|
||||
coroutine.start(
|
||||
|
|
@ -1216,7 +1221,7 @@ function M:OnFangziAction(...)
|
|||
else
|
||||
outCard = removeOutcard._area_outcard_list:GetChildAt(0)
|
||||
end
|
||||
if (player ~= self._room.self_player) then
|
||||
if player ~= self._room.self_player then
|
||||
if flag_pengPao then
|
||||
outCard:TweenMove(outCard:GlobalToLocal(info:GetFzMove()) - Vector2.New(outCard.width, 0),
|
||||
0.25)
|
||||
|
|
@ -1226,6 +1231,8 @@ function M:OnFangziAction(...)
|
|||
0.25)
|
||||
outCard:TweenScale(Vector2.New(0, 0), 0.25)
|
||||
end
|
||||
else
|
||||
removeOutcard:ClearOutCard()
|
||||
end
|
||||
|
||||
p.DiceCard = nil
|
||||
|
|
@ -1236,7 +1243,7 @@ function M:OnFangziAction(...)
|
|||
coroutine.start(
|
||||
function()
|
||||
coroutine.wait(0.2 + time)
|
||||
removeOutcard:ClearOutCard()
|
||||
-- removeOutcard:ClearOutCard()
|
||||
info:UpdateFzList(player.fz_list, true, player.seat, flag_pengPao) --更新放子数组
|
||||
end
|
||||
)
|
||||
|
|
@ -1251,9 +1258,8 @@ function M:OnFangziAction(...)
|
|||
|
||||
local time = 0.01
|
||||
if fz.type ~= RB_FZType.Kan then
|
||||
time = flag_pengPao and 0.3 or 0.7
|
||||
if fz.type == RB_FZType.Wei or fz.type == RB_FZType.ChouWei then
|
||||
time = time + 0.3
|
||||
if fz.type == RB_FZType.Pao or fz.type == RB_FZType.Ti or fz.type == RB_FZType.Wei or fz.type == RB_FZType.ChouWei then
|
||||
time = time + 0.5
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -104,17 +104,17 @@ function M:playAnim(fzitem, fzcards, size, i, ispaly, seat, flag_pengPao)
|
|||
end
|
||||
|
||||
local isaddLast = false
|
||||
if (ispaly and i == size and not flag_pengPao) then --匹配最后一个牌
|
||||
local faArray = fzitem:GetChild("chiwei")
|
||||
-- if (ispaly and i == size and not flag_pengPao) then --匹配最后一个牌
|
||||
-- local faArray = fzitem:GetChild("chiwei")
|
||||
|
||||
if (faArray ~= nil) then
|
||||
faArray:AddChild(fzcards)
|
||||
else
|
||||
-- if (faArray ~= nil) then
|
||||
-- faArray:AddChild(fzcards)
|
||||
-- else
|
||||
-- fzitem:AddChild(fzcards)
|
||||
-- end
|
||||
-- else
|
||||
fzitem:AddChild(fzcards)
|
||||
end
|
||||
else
|
||||
fzitem:AddChild(fzcards)
|
||||
end
|
||||
-- end
|
||||
if (seat ~= nil) then
|
||||
isaddLast = self:isAddFirst(seat)
|
||||
end
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 969 KiB After Width: | Height: | Size: 1.1 MiB |
|
|
@ -5,9 +5,6 @@
|
|||
},
|
||||
"n79_ovii": {
|
||||
"hidden": true
|
||||
},
|
||||
"n113_yvb2": {
|
||||
"collapsed": true
|
||||
}
|
||||
},
|
||||
"adaptiveTest": true,
|
||||
|
|
|
|||
|
|
@ -3,6 +3,12 @@
|
|||
"n86_kwi0": {
|
||||
"hidden": true
|
||||
},
|
||||
"n197_imp5": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n83_kwi0": {
|
||||
"collapsed": true
|
||||
},
|
||||
"n157_sbng": {
|
||||
"hidden": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
<item time="3" type="XY" target="n0_ddb9" tween="true" startValue="109,0" endValue="0.51,0.36" duration="3"/>
|
||||
</transition>
|
||||
<transition name="t1">
|
||||
<item time="0" type="XY" target="n2_ddb9" tween="true" startValue="-158,2" endValue="-95,0" duration="3" ease="Back.In"/>
|
||||
<item time="3" type="XY" target="n2_ddb9" tween="true" startValue="-95,0" endValue="0,0" duration="3"/>
|
||||
<item time="0" type="XY" target="n2_ddb9" tween="true" startValue="96,2" endValue="0,0" duration="6" ease="Back.In"/>
|
||||
</transition>
|
||||
</component>
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="1396,690">
|
||||
<controller name="index" pages="0,,1,,2,,3,,4,,5,,6,,7,,8,,9,,10,,11,,12,,13,,14,,15," selected="4"/>
|
||||
<controller name="index" pages="0,,1,,2,,3,,4,,5,,6,,7,,8,,9,,10,,11,,12,,13,,14,,15," selected="0"/>
|
||||
<controller name="mng" pages="0,,1," selected="0"/>
|
||||
<controller name="single" pages="0,,1," selected="0"/>
|
||||
<controller name="tongji" homePageType="specific" homePage="1" pages="0,,1," selected="0"/>
|
||||
|
|
@ -29,17 +29,10 @@
|
|||
<text id="n79_ovii" name="n79" xy="170,70" size="178,42" visible="false" font="Microsoft YaHei" fontSize="30" color="#fffff6" vAlign="middle" autoSize="none" text="统计">
|
||||
<relation target="" sidePair="center-center,top-top"/>
|
||||
</text>
|
||||
<list id="n90_yvb2" name="lst_partner" xy="25,104" size="208,559" selectionMode="multipleSingleClick" overflow="scroll" lineGap="-6" defaultItem="ui://m7iejg46t1hqhxw" autoClearItems="true">
|
||||
<list id="n90_yvb2" name="lst_partner" xy="25,104" size="208,559" grayed="true" selectionMode="multipleSingleClick" overflow="scroll" lineGap="-6" defaultItem="ui://m7iejg46t1hqhxw" autoClearItems="true">
|
||||
<gearLook controller="tongji" pages="0,1" values="1,0,1,1|1,0,0,1"/>
|
||||
<item/>
|
||||
<item/>
|
||||
</list>
|
||||
<image id="n109_yvb2" name="n109" src="yscl7iby" fileName="images/allNumber/Group 583.png" xy="972,10" size="220,71" group="n111_yvb2"/>
|
||||
<text id="n110_yvb2" name="tex_id" xy="974,9" size="215,71" group="n111_yvb2" font="Microsoft YaHei" fontSize="40" color="#2b2b2b" vAlign="middle" autoSize="shrink" bold="true" autoClearText="true" text="" input="true" prompt="请输入玩家id" maxLength="8"/>
|
||||
<group id="n111_yvb2" name="n111" xy="972,9" size="220,72" group="n113_yvb2" advanced="true"/>
|
||||
<component id="n112_yvb2" name="btn_search" src="dzx8hbb" fileName="component/Btn/btn_req.xml" xy="1193,11" group="n113_yvb2"/>
|
||||
<group id="n113_yvb2" name="group_search" xy="972,9" size="359,76" advanced="true">
|
||||
<gearDisplay controller="tongji" pages="1"/>
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</group>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -3,7 +3,8 @@
|
|||
<controller name="button" pages="0,up,1,down" selected="0">
|
||||
<action type="change_page" fromPage="0,1" toPage="0,1" controller="show" targetPage="~1"/>
|
||||
</controller>
|
||||
<controller name="show" homePageType="specific" homePage="1" pages="0,,1," selected="0"/>
|
||||
<controller name="show" homePageType="specific" homePage="1" pages="0,,1," selected="1"/>
|
||||
<controller name="arrow" pages="0,,1," selected="0"/>
|
||||
<displayList>
|
||||
<image id="n3_ovii" name="n3" src="oviii11" fileName="component/nav/button_08.png" xy="5,3">
|
||||
<gearDisplay controller="show" pages="1"/>
|
||||
|
|
@ -11,14 +12,17 @@
|
|||
<image id="n1_eeqm" name="n1" src="t1hqhxz" fileName="component/nav/match_left_btn_selected.png" xy="0,0">
|
||||
<gearDisplay controller="show" pages="0"/>
|
||||
</image>
|
||||
<text id="n2_eeqm" name="text_name" xy="21,43" size="147,39" font="Microsoft YaHei" fontSize="28" color="#ffffff" align="center" vAlign="middle" bold="true" singleLine="true" autoClearText="true" text="ID:123456">
|
||||
<text id="n2_eeqm" name="text_name" xy="21,43" size="145,39" font="Microsoft YaHei" fontSize="28" color="#c84600" align="center" vAlign="middle" bold="true" singleLine="true" autoClearText="true" text="ID:123456">
|
||||
<gearColor controller="show" pages="0,1" values="#ffffff,#c84600|#c84600,#c84600"/>
|
||||
</text>
|
||||
<text id="n4_eany" name="text_id" xy="8,3" size="196,42" font="Microsoft YaHei" fontSize="28" color="#ffffff" vAlign="middle" leading="0" autoSize="none" bold="true" autoClearText="true" text="成员列表人一二三">
|
||||
<text id="n4_eany" name="text_id" xy="8,3" size="196,42" font="Microsoft YaHei" fontSize="28" color="#c84600" vAlign="middle" leading="0" autoSize="none" bold="true" autoClearText="true" text="成员列表人一二三">
|
||||
<gearColor controller="show" pages="0,1" values="#ffffff,#c84600|#c84600,#c84600"/>
|
||||
</text>
|
||||
<list id="n6_yvb2" name="list" xy="1,87" size="231,0" overflow="hidden" lineGap="-6" defaultItem="ui://m7iejg46t1hqhxw"/>
|
||||
<graph id="n8_yvb2" name="area" xy="0,0" size="232,81" type="rect" lineSize="0" fillColor="#00ffffff"/>
|
||||
<image id="n9_gdye" name="n9" src="gdye7ik7" fileName="component/nav/Polygon 7.png" xy="170,30" pivot="0.5,0.5" rotation="180" color="#ff0000">
|
||||
<gearDisplay controller="arrow" pages="1"/>
|
||||
</image>
|
||||
</displayList>
|
||||
<Button mode="Check"/>
|
||||
<relation target="n6_yvb2" sidePair="bottomext-bottom"/>
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 1.4 KiB |
|
|
@ -64,19 +64,30 @@
|
|||
<text id="n214_yvb2" name="n214" xy="844,4" size="268,51" group="n215_yvb2" visible="false" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="赠送分 ">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<component id="n231_yvb2" name="btn_totalWin" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="311,4" group="n215_yvb2"/>
|
||||
<component id="n232_yvb2" name="btn_totalRound" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="501,4" group="n215_yvb2">
|
||||
<component id="n231_yvb2" name="btn_totalWin" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="314,2" group="n215_yvb2"/>
|
||||
<component id="n232_yvb2" name="btn_totalRound" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="540,2" size="106,55" group="n215_yvb2">
|
||||
<Button title="场次"/>
|
||||
</component>
|
||||
<component id="n233_yvb2" name="btn_total" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="692,4" group="n215_yvb2">
|
||||
<component id="n233_yvb2" name="btn_total" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="722,2" size="132,55" group="n215_yvb2">
|
||||
<Button title="大赢家"/>
|
||||
</component>
|
||||
<component id="n234_yvb2" name="btn_reward" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="906,4" group="n215_yvb2">
|
||||
<component id="n234_yvb2" name="btn_reward" src="yvb27ijz" fileName="mgr/component/member/partner/btn_sort_3.xml" xy="936,2" size="132,55" group="n215_yvb2">
|
||||
<Button title="赠送分"/>
|
||||
</component>
|
||||
<group id="n215_yvb2" name="n215" xy="-37,4" size="1149,51" group="n216_yvb2" advanced="true">
|
||||
<component id="n235_gdye" name="btn_back" src="efnuhdk" fileName="component/Btn/Btn_back1.xml" xy="659,-81" size="71,54" group="n215_yvb2">
|
||||
<gearDisplay controller="search" pages="1"/>
|
||||
<Button controller="search" page="0"/>
|
||||
</component>
|
||||
<image id="n236_gdye" name="n236" src="yscl7iby" fileName="images/allNumber/Group 583.png" xy="748,-91" size="220,71" group="n238_gdye"/>
|
||||
<text id="n237_gdye" name="tex_id" xy="750,-92" size="215,71" group="n238_gdye" font="Microsoft YaHei" fontSize="40" color="#2b2b2b" vAlign="middle" autoSize="shrink" bold="true" autoClearText="true" text="" input="true" prompt="请输入玩家id" maxLength="8"/>
|
||||
<group id="n238_gdye" name="n238" xy="748,-92" size="220,72" group="n240_gdye" advanced="true"/>
|
||||
<component id="n239_gdye" name="btn_search" src="dzx8hbb" fileName="component/Btn/btn_req.xml" xy="969,-90" group="n240_gdye"/>
|
||||
<group id="n240_gdye" name="group_search" xy="748,-92" size="359,76" group="n215_yvb2" advanced="true">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</group>
|
||||
<group id="n215_yvb2" name="n215" xy="-37,-92" size="1149,149" group="n216_yvb2" advanced="true">
|
||||
<gearDisplay controller="mng" pages="0"/>
|
||||
</group>
|
||||
<group id="n216_yvb2" name="col" xy="-37,0" size="1160,60"/>
|
||||
<group id="n216_yvb2" name="col" xy="-37,-92" size="1160,152"/>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -24,25 +24,28 @@
|
|||
<text id="n146_sbng" name="n146" xy="155,202" size="176,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="合伙人/人数">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n148_sbng" name="n148" xy="440,202" size="156,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="整线积分">
|
||||
<text id="n148_sbng" name="n148" xy="400,202" size="156,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="整线积分">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n152_sbng" name="n152" xy="612,202" size="128,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="总场次">
|
||||
<text id="n152_sbng" name="n152" xy="569,202" size="128,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="总场次">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n183_omkm" name="n183" xy="737,202" size="127,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="大赢家">
|
||||
<text id="n183_omkm" name="n183" xy="701,202" size="127,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="大赢家">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n154_sbng" name="n154" xy="905,202" size="122,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="总赢分">
|
||||
<text id="n154_sbng" name="n154" xy="845,202" size="122,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="总赢分">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n157_sbng" name="n157" xy="1086,202" size="126,51" group="n155_sbng" visible="false" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="统计">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n159_sbng" name="n159" xy="1084,202" size="133,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="总输赢">
|
||||
<text id="n159_sbng" name="n159" xy="1107,202" size="133,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="总输赢">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<group id="n155_sbng" name="n155" xy="155,202" size="1062,51" group="n134_lcv1" advanced="true">
|
||||
<text id="n199_gdye" name="n199" xy="982,202" size="122,51" group="n155_sbng" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" autoSize="shrink" bold="true" text="获得赠送">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<group id="n155_sbng" name="n155" xy="155,202" size="1085,51" group="n134_lcv1" advanced="true">
|
||||
<gearDisplay controller="mng" pages="0"/>
|
||||
</group>
|
||||
<text id="n164_o82t" name="n164" xy="150,209" size="0,51" group="n177_o82t" font="Microsoft YaHei" fontSize="24" color="#367256" autoSize="none" text="合伙人/人数">
|
||||
|
|
|
|||
|
|
@ -1,12 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<component size="142,51" extention="Button">
|
||||
<component size="184,55" extention="Button">
|
||||
<controller name="button" pages="0,up,1,down,2,over,3,selectedOver" selected="0"/>
|
||||
<controller name="type" pages="0,不排序,1,降序,2,升序" selected="2"/>
|
||||
<controller name="type" pages="0,不排序,1,降序,2,升序" selected="0"/>
|
||||
<displayList>
|
||||
<text id="n3_yvb2" name="title" xy="-60,0" size="263,51" font="Microsoft YaHei" fontSize="26" color="#333333" align="center" vAlign="middle" autoSize="shrink" bold="true" text="输赢比赛分">
|
||||
<gearColor controller="type" pages="1,2" values="#990000,#000000|#333333,#000000" default="#aa3300,#000000"/>
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
<text id="n3_yvb2" name="title" xy="0,9" size="134,36" font="Microsoft YaHei" fontSize="26" color="#aa3300" align="center" vAlign="middle" bold="true" text="输赢比赛分">
|
||||
<relation target="" sidePair="middle-middle,left-left"/>
|
||||
</text>
|
||||
<image id="n4_gdye" name="n4" src="gdye7ik4" fileName="mgr/component/member/partner/images/Arrow 1 (Stroke).png" xy="134,3">
|
||||
<gearDisplay controller="type" pages="1"/>
|
||||
<relation target="n3_yvb2" sidePair="left-right"/>
|
||||
</image>
|
||||
<image id="n5_gdye" name="n5" src="gdye7ik5" fileName="mgr/component/member/partner/images/Arrow 2 (Stroke).png" xy="134,3">
|
||||
<gearDisplay controller="type" pages="2"/>
|
||||
<relation target="n3_yvb2" sidePair="left-right"/>
|
||||
</image>
|
||||
<image id="n6_gdye" name="n6" src="gdye7ik6" fileName="mgr/component/member/partner/images/Arrow 3 (Stroke).png" xy="134,3">
|
||||
<gearDisplay controller="type" pages="0"/>
|
||||
<relation target="n3_yvb2" sidePair="middle-middle,left-right"/>
|
||||
</image>
|
||||
</displayList>
|
||||
<Button mode="Check"/>
|
||||
<relation target="n3_yvb2" sidePair="width-width,height-height%"/>
|
||||
</component>
|
||||
|
After Width: | Height: | Size: 641 B |
|
After Width: | Height: | Size: 601 B |
|
After Width: | Height: | Size: 589 B |
|
|
@ -26,41 +26,41 @@
|
|||
<gearDisplay controller="menkan" pages="1"/>
|
||||
</text>
|
||||
<group id="n20_oj7k" name="n20" xy="108,16" size="204,82" advanced="true"/>
|
||||
<text id="n35_oj7k" name="tex_total_score" xy="303,32" size="151,46" group="n36_oj7k" font="Microsoft YaHei" fontSize="24" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="3002237.06">
|
||||
<text id="n35_oj7k" name="tex_total_score" xy="273,34" size="151,44" group="n36_oj7k" font="Microsoft YaHei" fontSize="24" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="3002237.06">
|
||||
<gearDisplay controller="show_total" pages="1"/>
|
||||
<relation target="" sidePair="width-width%,right-right%"/>
|
||||
</text>
|
||||
<component id="n52_j120" name="btn_check_members" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="308,33" size="116,50" group="n36_oj7k">
|
||||
<component id="n52_j120" name="btn_check_members" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="278,35" size="116,48" group="n36_oj7k">
|
||||
<gearDisplay controller="show_total" pages="0"/>
|
||||
<relation target="" sidePair="right-right%"/>
|
||||
<Button icon="ui://m7iejg46hp037i7u"/>
|
||||
</component>
|
||||
<group id="n36_oj7k" name="n36" xy="303,32" size="151,51" advanced="true"/>
|
||||
<group id="n36_oj7k" name="n36" xy="273,34" size="151,49" advanced="true"/>
|
||||
<text id="n41_f6br" name="tex_diamond_comsume" xy="303,38" size="85,35" font="Microsoft YaHei" fontSize="20" color="#495f55" align="center" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="0">
|
||||
<gearDisplay controller="mng" pages="1"/>
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n42_f6br" name="tex_round_total" xy="451,38" size="96,39" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="451,38|398,22"/>
|
||||
<text id="n42_f6br" name="tex_round_total" xy="421,38" size="96,39" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="421,38|398,22"/>
|
||||
<relation target="" sidePair="width-width%,right-right%"/>
|
||||
</text>
|
||||
<text id="n43_f6br" name="tex_round_valid" xy="807,38" size="118,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="807,38|506,24"/>
|
||||
<text id="n43_f6br" name="tex_round_valid" xy="827,38" size="118,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="827,38|506,24"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
<component id="n56_j120" name="btn_award" src="j1207i2r" fileName="images/Button10.xml" xy="722,38" size="91,36" visible="false">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
<Button title="0"/>
|
||||
</component>
|
||||
<text id="n44_f6br" name="tex_total" xy="660,38" size="138,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="660,38|639,25"/>
|
||||
<text id="n44_f6br" name="tex_total" xy="610,38" size="138,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="610,38|639,25"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
<component id="n54_j120" name="btn_detail" src="j1207i2o" fileName="images/Button9.xml" xy="896,33" size="111,48" visible="false">
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</component>
|
||||
<text id="n63_omkm" name="tex_round_youxiao" xy="550,38" size="103,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="550,38|509,24"/>
|
||||
<text id="n63_omkm" name="tex_round_youxiao" xy="520,38" size="103,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="520,38|509,24"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
<component id="n65_xt5s" name="btn_more" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="43,21" size="68,68">
|
||||
|
|
@ -68,12 +68,16 @@
|
|||
<relation target="" sidePair="right-right%"/>
|
||||
<Button icon="ui://m7iejg46xt5s7iic" selectedIcon="ui://m7iejg46xt5s7iib" controller="more" page="1"/>
|
||||
</component>
|
||||
<list id="n66_xt5s" name="lst_record" xy="0,114" size="1035,0" overflow="hidden" defaultItem="ui://m7iejg46xt5s7iih">
|
||||
<list id="n66_xt5s" name="lst_record" xy="0,114" size="1035,0" overflow="hidden" defaultItem="ui://m7iejg46gdye7ik8">
|
||||
<relation target="" sidePair="width-width,height-height,right-right"/>
|
||||
</list>
|
||||
<component id="n68_xt5s" name="btn_super" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="918,30" size="116,53">
|
||||
<relation target="" sidePair="right-right%"/>
|
||||
<Button checked="true" icon="ui://m7iejg46ilon7iat"/>
|
||||
</component>
|
||||
<text id="n69_gdye" name="tex_reward" xy="728,38" size="118,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="728,38|506,24"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -26,41 +26,41 @@
|
|||
<gearDisplay controller="menkan" pages="1"/>
|
||||
</text>
|
||||
<group id="n20_oj7k" name="n20" xy="108,16" size="204,82" advanced="true"/>
|
||||
<text id="n35_oj7k" name="tex_total_score" xy="303,32" size="151,46" group="n36_oj7k" font="Microsoft YaHei" fontSize="24" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="3002237.06">
|
||||
<text id="n35_oj7k" name="tex_total_score" xy="273,34" size="151,44" group="n36_oj7k" font="Microsoft YaHei" fontSize="24" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="3002237.06">
|
||||
<gearDisplay controller="show_total" pages="1"/>
|
||||
<relation target="" sidePair="width-width%,right-right%"/>
|
||||
</text>
|
||||
<component id="n52_j120" name="btn_check_members" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="308,33" size="116,50" group="n36_oj7k">
|
||||
<component id="n52_j120" name="btn_check_members" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="278,35" size="116,48" group="n36_oj7k">
|
||||
<gearDisplay controller="show_total" pages="0"/>
|
||||
<relation target="" sidePair="right-right%"/>
|
||||
<Button icon="ui://m7iejg46hp037i7u"/>
|
||||
</component>
|
||||
<group id="n36_oj7k" name="n36" xy="303,32" size="151,51" advanced="true"/>
|
||||
<group id="n36_oj7k" name="n36" xy="273,34" size="151,49" advanced="true"/>
|
||||
<text id="n41_f6br" name="tex_diamond_comsume" xy="303,38" size="85,35" font="Microsoft YaHei" fontSize="20" color="#495f55" align="center" vAlign="middle" autoSize="none" singleLine="true" autoClearText="true" text="0">
|
||||
<gearDisplay controller="mng" pages="1"/>
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
</text>
|
||||
<text id="n42_f6br" name="tex_round_total" xy="451,38" size="96,39" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="451,38|398,22"/>
|
||||
<text id="n42_f6br" name="tex_round_total" xy="421,38" size="96,39" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="421,38|398,22"/>
|
||||
<relation target="" sidePair="width-width%,right-right%"/>
|
||||
</text>
|
||||
<text id="n43_f6br" name="tex_round_valid" xy="807,38" size="118,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="807,38|506,24"/>
|
||||
<text id="n43_f6br" name="tex_round_valid" xy="827,38" size="118,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="827,38|506,24"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
<component id="n56_j120" name="btn_award" src="j1207i2r" fileName="images/Button10.xml" xy="722,38" size="91,36" visible="false">
|
||||
<relation target="" sidePair="center-center%"/>
|
||||
<Button title="0"/>
|
||||
</component>
|
||||
<text id="n44_f6br" name="tex_total" xy="660,38" size="138,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="660,38|639,25"/>
|
||||
<text id="n44_f6br" name="tex_total" xy="610,38" size="138,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="610,38|639,25"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
<component id="n54_j120" name="btn_detail" src="j1207i2o" fileName="images/Button9.xml" xy="896,33" size="111,48" visible="false">
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</component>
|
||||
<text id="n63_omkm" name="tex_round_youxiao" xy="550,38" size="103,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="550,38|509,24"/>
|
||||
<text id="n63_omkm" name="tex_round_youxiao" xy="520,38" size="103,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="520,38|509,24"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
<component id="n65_xt5s" name="btn_more" src="xt5s7iia" fileName="mgr/component/member/partner/btn_mul.xml" xy="43,21" size="68,68">
|
||||
|
|
@ -75,5 +75,9 @@
|
|||
<relation target="" sidePair="right-right%"/>
|
||||
<Button checked="true" icon="ui://m7iejg46ilon7iat"/>
|
||||
</component>
|
||||
<text id="n69_gdye" name="tex_reward" xy="728,38" size="118,37" font="Microsoft YaHei" fontSize="26" color="#444444" align="center" vAlign="middle" autoSize="shrink" bold="true" singleLine="true" autoClearText="true" text="0">
|
||||
<gearXY controller="mng" pages="0,1" values="728,38|506,24"/>
|
||||
<relation target="" sidePair="width-width%,left-right%"/>
|
||||
</text>
|
||||
</displayList>
|
||||
</component>
|
||||
|
|
@ -1100,7 +1100,6 @@
|
|||
<component id="xt5s7iia" name="btn_mul.xml" path="/mgr/component/member/partner/"/>
|
||||
<image id="xt5s7iib" name="Group 806.png" path="/mgr/imgs/"/>
|
||||
<image id="xt5s7iic" name="Group 807.png" path="/mgr/imgs/"/>
|
||||
<component id="xt5s7iih" name="item_partner_stat2.xml" path="/mgr/component/member/partner/"/>
|
||||
<image id="xt5s7iii" name="Group 795.png" path="/images/jifen/"/>
|
||||
<image id="xt5s7iij" name="Group 796.png" path="/images/jifen/"/>
|
||||
<image id="xt5s7iik" name="Group 797.png" path="/images/jifen/"/>
|
||||
|
|
@ -1159,6 +1158,11 @@
|
|||
<image id="avqi7ijr" name="快速开始.png" path="/component/Lst_info/"/>
|
||||
<image id="avqi7ijs" name="Group 414.png" path="/images/"/>
|
||||
<component id="avqi7ijt" name="getgames.xml" path="/component/Lst_info/"/>
|
||||
<image id="gdye7ik4" name="Arrow 1 (Stroke).png" path="/mgr/component/member/partner/images/"/>
|
||||
<image id="gdye7ik5" name="Arrow 2 (Stroke).png" path="/mgr/component/member/partner/images/"/>
|
||||
<image id="gdye7ik6" name="Arrow 3 (Stroke).png" path="/mgr/component/member/partner/images/"/>
|
||||
<image id="gdye7ik7" name="Polygon 7.png" path="/component/nav/"/>
|
||||
<component id="gdye7ik8" name="item_partner_stat2.xml" path="/mgr/component/member/partner/"/>
|
||||
</resources>
|
||||
<publish name="NewGroup" path="..\wb_unity_pro\Assets\ART\base\newgroup\ui" packageCount="2"/>
|
||||
</packageDescription>
|
||||