jx_client_neibu/lua_probject/base_project/Game/View/FamilyView.lua

494 lines
16 KiB
Lua
Raw Normal View History

2025-04-01 10:48:36 +08:00
local FamilyInviteFamilyView = import('.Family.FamilyInviteFamilyView')
local CreatePlayView = import('.Family.CreatePlayView')
local GroupGameSettingView = import(".NewGroup.MngView.GroupGameSettingView_jaingxi")
2025-05-21 16:04:00 +08:00
local LobbyShopView = import(".Lobby.LobbyShopView")
2025-04-01 10:48:36 +08:00
2025-05-09 14:56:23 +08:00
---无窗口
local FamilyAllNumbers = import(".Family.FamilyAllNumbers")
local FamilyNumberRecord = import(".Family.FamilyNumberRecord")
2025-05-21 14:22:02 +08:00
local FamilyAuditNumber = import(".Family.FamilyAuditNumber")
local FamilyJoinAndCreate = import(".Family.FamilyJoinAndCreate")
2025-05-09 14:56:23 +08:00
---
2025-04-01 10:48:36 +08:00
FamilyView = {}
local M = FamilyView
2025-05-08 16:02:39 +08:00
2025-04-01 10:48:36 +08:00
function FamilyView.new()
UIPackage.AddPackage("base/Family/ui/Family")
setmetatable(M, { __index = BaseView })
local self = setmetatable({}, { __index = M })
self.class = 'FamilyMainView'
self._full = true
self._close_destroy = false
self._fristRoom = true
self:init('ui://Family/Main')
return self
end
function M:init(url)
BaseView.InitView(self, url)
self._full_offset = false
local view = self._view
local fgCtr = ControllerManager.GetController(NewGroupController)
self.familyType = view:GetController('familyType')
2025-05-17 15:00:23 +08:00
self.btn_close = view:GetChild('btn_close')
self:InitCloseClick()
2025-04-01 10:48:36 +08:00
fgCtr:FG_GroupList(function(res)
local groups = res.Data.groups
if #groups > 0 then
self.familyType.selectedIndex = 1
self:ConnetFamily(1, groups, true)
else
2025-05-22 11:34:59 +08:00
self:JoinFamily(true)
2025-04-01 10:48:36 +08:00
end
end)
-------绑定成员战绩按钮
view:GetChild('btn_family_record').onClick:Set(function()
self._child_familyNumberRecord = FamilyNumberRecord.New(self)
2025-05-17 15:00:23 +08:00
self.lastType = 1
end)
end
function M:InitCloseClick()
self.btn_close.onClick:Set(function()
if not self.lastType or self.familyType.selectedIndex == 1 then
ControllerManager.ChangeController(LoddyController)
ViewManager.ChangeView(ViewManager.View_Lobby)
else
self.familyType.selectedIndex = self.lastType
if self.lastType == 3 then
self.lastType = 1
end
end
end)
2025-04-01 10:48:36 +08:00
end
2025-05-08 16:02:39 +08:00
function M:ShareWx()
2025-04-01 10:48:36 +08:00
local familyInviteFamilyView = FamilyInviteFamilyView.new()
familyInviteFamilyView:Show()
2025-05-22 14:44:25 +08:00
local fgCtr = ControllerManager.GetController(NewGroupController)
fgCtr:FG_GroupMembers12(
2025-05-22 15:08:28 +08:00
self._group.id,
2025-05-22 14:44:25 +08:00
0,
2025-05-22 15:57:34 +08:00
6,
2,
2025-05-22 14:44:25 +08:00
2,
function(res)
ViewUtil.CloseModalWait()
if res.ReturnCode ~= 0 then
ViewUtil.ErrorTip(res.ReturnCode, '获取成员列表失败')
else
end
end
)
2025-04-01 10:48:36 +08:00
end
2025-05-22 11:34:59 +08:00
function M:CreateFamily(frist)
2025-05-08 16:02:39 +08:00
self.familyType.selectedIndex = 3
2025-05-22 11:34:59 +08:00
if not frist then
self.lastType = 1
end
2025-05-08 16:02:39 +08:00
self._view:GetController('createOrJoin').selectedIndex = 0
2025-05-21 14:22:02 +08:00
self._child_familyJoinAndCreate = FamilyJoinAndCreate.new(self)
2025-04-01 10:48:36 +08:00
end
2025-05-22 11:34:59 +08:00
function M:JoinFamily(frist)
2025-05-08 16:02:39 +08:00
self.familyType.selectedIndex = 3
2025-05-22 11:34:59 +08:00
if not frist then
self.lastType = 1
end
2025-05-08 16:02:39 +08:00
self._view:GetController('createOrJoin').selectedIndex = 1
2025-05-22 11:34:59 +08:00
self._child_familyJoinAndCreate = FamilyJoinAndCreate.new(self)
2025-04-01 10:48:36 +08:00
end
2025-05-08 16:02:39 +08:00
function M:PlayEdit()
self.familyType.selectedIndex = 2
self.lastType = 1
2025-04-01 10:48:36 +08:00
end
2025-05-09 14:56:23 +08:00
function M:AllNumber()
self.lastType = 1
self._child_familyAllNumbers = FamilyAllNumbers.new(self)
2025-04-01 10:48:36 +08:00
end
2025-05-21 14:22:02 +08:00
function M:AuditNumber()
self.lastType = 1
self._child_familyAuditNumber = FamilyAuditNumber.new(self)
end
2025-05-21 16:04:00 +08:00
function M:ShowShop()
self._child_familyLobbyShopView = LobbyShopView.new(self, self._group.id)
self._child_familyLobbyShopView:Show()
end
2025-04-01 10:48:36 +08:00
function M:ChangeNumber(fgCtr, group_id, limit, num, minus_only, sort_type)
local list_familyNumber = self._view:GetChild('list_familyNumber')
list_familyNumber:SetVirtual()
fgCtr:FG_GroupMembers(group_id, limit, num, minus_only, sort_type, function(res)
2025-05-09 14:56:23 +08:00
local members = self._group.members
2025-04-11 12:49:08 +08:00
-- print("==========================res.Data.members")
2025-05-09 14:56:23 +08:00
pt(self._group.members)
2025-04-01 10:48:36 +08:00
ViewUtil:CloseModalWait()
if res.ReturnCode ~= 0 then
ViewUtil.ErrorTip(res.ReturnCode, "获取成员列表失败")
else
list_familyNumber.itemRenderer = function(index, obj)
2025-05-22 11:22:14 +08:00
obj:GetChild('title').text = members[index + 1].nick
2025-04-01 10:48:36 +08:00
end
list_familyNumber.numItems = res.Data.member_num
return 1
end
end)
return 0
end
function M:ConnetFamilyRoom(fgCtr, id)
fgCtr:FG_EnterGroup(id, function(res)
ViewUtil:CloseModalWait()
if res.ReturnCode ~= 0 then
ViewUtil.ErrorTip(res.ReturnCode, "获取房间列表列表失败")
else
self:UpdateFamilyRoom(fgCtr, id)
return 1
end
end)
return 0
end
function M:UpdateFamilyRoom(fgCtr, id)
2025-04-10 11:19:20 +08:00
local list_room = self._view:GetChild('list_room')
2025-04-01 10:48:36 +08:00
list_room:SetVirtual()
local list_gamePlay = self._view:GetChild('list_gamePlay')
list_gamePlay:SetVirtual()
2025-05-22 11:22:14 +08:00
self._view:GetChild('n364').text = string.format("已开启%s桌游戏", self._group.room_num)
2025-04-01 13:56:18 +08:00
local playList = self._group.playList
2025-04-09 13:53:34 +08:00
--初始化玩法列表,用于房间使用
local playGameInfoTable = {}
for i = 1, #playList do
playGameInfoTable[playList[i].id] = {
gameId = playList[i].gameId,
config = playList[i].config,
name = playList[i].name,
2025-05-22 11:22:14 +08:00
gameName = playList[i].game_name,
2025-04-09 13:53:34 +08:00
}
end
2025-04-01 13:56:18 +08:00
local roomList = self._group.rooms
2025-05-22 18:14:21 +08:00
print("lingmengroomList")
pt(roomList)
2025-04-10 11:19:20 +08:00
local roomCtr = ControllerManager.GetController(RoomController)
2025-04-01 10:48:36 +08:00
list_room.itemRenderer = function(index, obj)
if index < #roomList then
2025-04-01 17:21:53 +08:00
local newIndex = index + 1
2025-04-11 16:27:29 +08:00
local config = ExtendManager.GetExtendConfig(playGameInfoTable[roomList[newIndex].pid].gameId)
local mode = config:GetGameInfo()
local gamePlay = mode:LoadConfigToDetail(playGameInfoTable[roomList[newIndex].pid].config)
obj:GetChild('Label_gameRule').title = gamePlay
2025-05-22 11:22:14 +08:00
obj:GetChild('game_type').text = string.format("%s%s", playGameInfoTable[roomList[newIndex].pid].gameName,
playGameInfoTable[roomList[newIndex].pid].name,
2025-04-09 13:53:34 +08:00
roomList[newIndex].id)
2025-04-01 10:48:36 +08:00
obj:GetChild('btn_joinGame'):GetController('type').selectedIndex = 1
2025-04-01 13:56:18 +08:00
obj:GetChild('btn_joinGame').onClick:Set(function()
2025-04-01 10:48:36 +08:00
roomCtr:PublicJoinRoom(
2025-04-01 13:56:18 +08:00
Protocol.WEB_FG_JOIN_ROOM,
2025-04-01 17:21:53 +08:00
roomList[newIndex].id,
2025-04-01 13:56:18 +08:00
false,
2025-04-01 10:48:36 +08:00
function(response)
if (response.ReturnCode == -1) then
2025-04-10 11:19:20 +08:00
ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, 'response.ReturnCode == -1')
2025-04-01 10:48:36 +08:00
-- RestartGame()
return
end
if response.ReturnCode ~= 0 then
ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, '进入房间失败')
-- ViewManager.ChangeView(ViewManager.View_Lobby)
return
else
2025-04-09 13:53:34 +08:00
ViewManager.ChangeView(ViewManager.View_Main, playGameInfoTable[roomList[newIndex].pid]
.gameId)
2025-04-01 10:48:36 +08:00
end
end,
id,
2025-04-01 17:21:53 +08:00
roomList[newIndex].pid
2025-04-01 10:48:36 +08:00
)
end)
else
2025-04-01 17:21:53 +08:00
local newIndex = index - #roomList + 1
2025-04-11 16:27:29 +08:00
local config = ExtendManager.GetExtendConfig(playList[newIndex].gameId)
local mode = config:GetGameInfo()
local gamePlay = mode:LoadConfigToDetail(playList[newIndex].config)
obj:GetChild('Label_gameRule').title = gamePlay
2025-05-22 11:22:14 +08:00
obj:GetChild('game_type').text = string.format("%s%s", playList[newIndex].game_name, playList[newIndex]
.name)
2025-04-01 10:48:36 +08:00
obj:GetChild('btn_joinGame'):GetController('type').selectedIndex = 0
2025-04-01 13:56:18 +08:00
obj:GetChild('btn_joinGame').onClick:Set(function()
2025-04-10 11:19:20 +08:00
roomCtr:PublicJoinRoom(
Protocol.WEB_FG_MATCH_ROOM,
"",
true,
function(response)
if (response.ReturnCode == -1) then
ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, 'response.ReturnCode == -1')
-- RestartGame()
return
end
2025-04-01 10:48:36 +08:00
2025-04-10 11:19:20 +08:00
if response.ReturnCode ~= 0 then
ViewUtil.ErrorMsg(self._root_view, response.ReturnCode, '进入房间失败')
-- ViewManager.ChangeView(ViewManager.View_Lobby)
return
else
ViewManager.ChangeView(ViewManager.View_Main, playList[newIndex].gameId)
end
end,
id,
playList[newIndex].id
)
2025-04-01 10:48:36 +08:00
end)
end
end
list_gamePlay.itemRenderer = function(index, obj)
if index == 0 then
obj:GetChild('num').text = string.format("%d/7", #playList)
obj:GetChild('btn_addPlay').onClick:Set(function()
local tem = GroupGameSettingView.new(self.blur_view, id, 0, nil, function(play)
local group = DataManager.groups:get(id)
group:addPlay(play)
-- self:FillView()
2025-04-01 10:48:36 +08:00
self:UpdateFamilyRoom(fgCtr, id)
printlog("刷新玩法===>>>>")
group.update_play = true
2025-04-01 10:48:36 +08:00
end)
tem:Show()
2025-04-01 10:48:36 +08:00
end)
return
end
obj:GetChild('text_title').text = playList[index].game_name
obj:GetChild('Label_details'):GetChild('title').text = playList[index].config
obj:GetController('type').selectedIndex = 1
obj:GetChild('btn_del').onClick:Add(function()
fgCtr:FG_DelPlay(id, playList[index].id, function()
ViewUtil.ShowBannerOnScreenCenter("删除成功")
self:UpdateFamilyRoom(fgCtr, id)
end)
end)
end
2025-04-10 11:19:20 +08:00
local all_num = #playList + #roomList
2025-04-11 12:49:08 +08:00
-- print("=================================================list_room", list_room, list_room.numItems, all_num)
2025-04-10 11:19:20 +08:00
pt(list_room)
list_room.numItems = all_num
2025-04-01 10:48:36 +08:00
list_gamePlay.numItems = #playList + 1
end
function M:ConnetFamily(index, groups, isCreate)
UpdateBeat:Remove(self.OnUpdate, self)
ViewUtil:CloseModalWait()
local list_family = self._view:GetChild('list_family')
2025-04-08 15:41:54 +08:00
list_family:SetVirtual()
2025-04-01 10:48:36 +08:00
self._group = DataManager.groups:get(groups[index].id)
2025-05-22 11:22:14 +08:00
self._view:GetChild('text_familyId').text = self._group.id
2025-04-11 12:49:08 +08:00
-- print("===================================self._group")
pt(self._group)
2025-04-01 10:48:36 +08:00
self._roomNum = self._group.room_num
if isCreate then
2025-04-08 15:41:54 +08:00
list_family.itemRenderer = function(i, obj)
local j = i + 1
2025-05-22 11:22:14 +08:00
obj.text = groups[j].name
2025-04-08 15:41:54 +08:00
obj.onClick:Add(function()
self:ConnetFamily(j, DataManager.groups.groupList, false)
2025-04-01 10:48:36 +08:00
end)
end
2025-04-08 15:41:54 +08:00
list_family.numItems = #groups
2025-05-22 11:22:14 +08:00
if list_family.selectedIndex == -1 then
list_family.selectedIndex = 0
end
2025-04-01 10:48:36 +08:00
end
local fgCtr = ControllerManager.GetController(NewGroupController)
ViewUtil.ShowModalWait(self._root_view, "正在加载亲友圈权限中......")
self:ChangeOther(tonumber(self._group.lev) + 1)
2025-04-01 10:48:36 +08:00
allLoad = 1
ViewUtil.ShowModalWait(self._root_view, "正在加载成员列表中......")
allLoad = allLoad +
self:ChangeNumber(fgCtr, self._group.id, 0, self._group.total_member_num, false,
2025-04-01 10:48:36 +08:00
1)
ViewUtil.ShowModalWait(self._root_view, "正在加载房间列表中......")
allLoad = allLoad + self:ConnetFamilyRoom(fgCtr, self._group.id)
2025-04-01 10:48:36 +08:00
UpdateBeat:Add(self.OnUpdate, self)
end
function M:OnUpdate()
2025-05-22 15:57:34 +08:00
local fgCtr = ControllerManager.GetController(NewGroupController)
local heatTime = os.time()
2025-04-01 10:48:36 +08:00
-- --12001事件
2025-05-22 11:22:14 +08:00
if self._group.update_room then
-- if self._roomNum == self._group.room_num then
-- for i = 1, self._group.room_num do
-- if self._group.rooms[i] and #self._group.rooms[i].plist == 0 then
-- self._group.update_room = false
-- fgCtr:FG_RemoveRoom(
-- self._group.id,
-- self._group.rooms[i].id,
-- function(res)
-- if res.ReturnCode ~= 0 then
-- ViewUtil.ErrorTip(res.ReturnCode, string.format('删除房间-%s失败', self._group.rooms[i].id))
-- else
-- self._roomNum = #self._group.rooms
-- end
-- end
-- )
-- end
-- end
-- else
-- self._group.update_room = false
-- -- self._group.update_room = false
-- end
-- if self._fristRoom then
self._group.update_room = false
-- self._fristRoom = true
-- end
-- -- print("====================================UpdateFamilyRoom", fgCtr, self._group.id)
self:UpdateFamilyRoom(fgCtr, self._group.id)
end
2025-05-22 15:57:34 +08:00
if not self.lastType or self.lastType - heatTime > 30 then
fgCtr:FG_SetFamilyHeartbeat(self._group.id, DataManager.SelfUser.account_id, function(res)
pt(res)
end)
self.lastType = heatTime
end
2025-04-01 10:48:36 +08:00
end
2025-05-09 14:56:23 +08:00
local IDENTITY_LIST = {
{
level = 0, --圈主
},
{
level = 1, --副圈主
otherList = {
{
name = "邀请朋友",
Fct = M.ShareWx
},
{
name = "游戏记录",
Fct = M.ShareWx
},
{
name = "玩法管理",
Fct = M.PlayEdit
},
{
name = "充值房卡",
2025-05-21 16:04:00 +08:00
Fct = M.ShowShop
2025-05-09 14:56:23 +08:00
},
{
name = "申请消息",
2025-05-21 14:22:02 +08:00
Fct = M.AuditNumber
2025-05-09 14:56:23 +08:00
},
{
name = "查看成员",
Fct = M.AllNumber
},
{
name = "创建亲友圈",
Fct = M.CreateFamily
},
{
name = "高级选项",
Fct = M.CreateFamily
},
{
2025-05-14 19:56:12 +08:00
name = "亲友圈排行榜",
2025-05-09 14:56:23 +08:00
Fct = M.CreateFamily
2025-05-14 19:56:12 +08:00
}
2025-05-09 14:56:23 +08:00
}
},
{
level = 2, --管理员
otherList = {
{
name = "邀请朋友",
Fct = M.ShareWx
},
{
name = "游戏记录",
Fct = M.ShareWx
},
{
name = "玩法管理",
Fct = M.PlayEdit
},
{
name = "充值房卡",
2025-05-21 16:04:00 +08:00
Fct = M.ShowShop
2025-05-09 14:56:23 +08:00
},
{
name = "申请消息",
2025-05-21 14:22:02 +08:00
Fct = M.AuditNumber
2025-05-09 14:56:23 +08:00
},
{
name = "查看成员",
Fct = M.AllNumber
},
{
name = "创建亲友圈",
Fct = M.CreateFamily
},
{
name = "高级选项",
Fct = M.CreateFamily
},
{
2025-05-21 14:22:02 +08:00
name = "亲友圈排行榜",
2025-05-09 14:56:23 +08:00
Fct = M.CreateFamily
2025-05-21 14:22:02 +08:00
}
2025-05-09 14:56:23 +08:00
}
},
{
level = 3, --成员
otherList = {
{
name = "邀请朋友",
Fct = M.ShareWx
},
{
name = "创建亲友圈",
Fct = M.CreateFamily
},
{
name = "加入亲友圈",
Fct = M.JoinFamily
},
}
},
}
function M:ChangeOther(i)
local otherList = IDENTITY_LIST[i].otherList
local list_other = self._view:GetChild('list_other')
self._lev = i
list_other:SetVirtual()
list_other.itemRenderer = function(index, obj)
2025-05-22 11:22:14 +08:00
obj:GetChild('title').text = otherList[index + 1].name
2025-05-09 14:56:23 +08:00
obj.onClick:Add(handler(self, otherList[index + 1].Fct))
end
list_other.numItems = #otherList
end
2025-04-01 10:48:36 +08:00
return M