diff --git a/lua_probject/base_project/Game/Controller/GroupMgrController.lua b/lua_probject/base_project/Game/Controller/GroupMgrController.lua
index 15abcd01..a2c44be8 100644
--- a/lua_probject/base_project/Game/Controller/GroupMgrController.lua
+++ b/lua_probject/base_project/Game/Controller/GroupMgrController.lua
@@ -412,6 +412,9 @@ end
-- 邀请在线玩家
function M:FG_InvitePlayer(group_id, tag, player_id, roomid, pid, game_name, callback)
+ if not self._mgr_client then
+ return
+ end
local _data = {}
_data.groupId = group_id
_data.tagId = tag
@@ -456,12 +459,7 @@ end
--被邀请玩家收到邀请
function M:FG_ResponseInvited(evt_data)
- local invite_id = evt_data.invite_id
- local g_name = evt_data.g_name
- local roomid = evt_data.roomid
- local pid = evt_data.pid
- local groupid = evt_data.groupId
- DispatchEvent(self._dispatcher, GroupMgrEvent.InviteResponse, invite_id, g_name, roomid, pid, groupid)
+ DispatchEvent(self._dispatcher, GroupMgrEvent.InviteResponse, evt_data)
end
-- 设置助理,来用给对面刷新界面 tagId=助理
diff --git a/lua_probject/base_project/Game/Controller/LoginController.lua b/lua_probject/base_project/Game/Controller/LoginController.lua
index a5002067..fa832904 100644
--- a/lua_probject/base_project/Game/Controller/LoginController.lua
+++ b/lua_probject/base_project/Game/Controller/LoginController.lua
@@ -55,6 +55,7 @@ local function __Login(cmd, _data, callBack)
user.phone = account.phone
user.address = account.address
user.games = FilterGame(data.games)
+ user.havaPsw = account.havaPassword
if Application.platform == RuntimePlatform.WindowsPlayer or Application.platform == RuntimePlatform.WindowsEditor then
--GameApplication.Instance.printLog = true
else
diff --git a/lua_probject/base_project/Game/IGameInfo.lua b/lua_probject/base_project/Game/IGameInfo.lua
index 5ff784a2..0582ac26 100644
--- a/lua_probject/base_project/Game/IGameInfo.lua
+++ b/lua_probject/base_project/Game/IGameInfo.lua
@@ -41,10 +41,10 @@ end
function M:OnChangeOption(ctype)
self:ShowRoomPrice(ctype)
- local round = self._config:GetController("round")
- round.onChanged:Set(function()
- self:ShowVariablePrice(ctype)
- end)
+ -- local round = self._config:GetController("round")
+ -- round.onChanged:Set(function()
+ -- self:ShowVariablePrice(ctype)
+ -- end)
end
function M:ShowVariablePrice(ctype)
diff --git a/lua_probject/base_project/Game/View/FGAssistView.lua b/lua_probject/base_project/Game/View/FGAssistView.lua
index 9be52dfc..76de296e 100644
--- a/lua_probject/base_project/Game/View/FGAssistView.lua
+++ b/lua_probject/base_project/Game/View/FGAssistView.lua
@@ -63,7 +63,6 @@ function FGAssistView.new(blur_view, group_id, callback)
self.callback = callback
self:init("ui://FGAssist/panel_assist")
- print("lingmeng FGAssistView new")
return self
end
@@ -191,28 +190,27 @@ end
-- end
function M:GetOnlinePlayers(index)
index = index or 0
- print("lingmeng GetOnlinePlayers", self.group_id)
local group = DataManager.groups:get(self.group_id)
local fgCtr = ControllerManager.GetController(NewGroupController)
- if not group then
- fgCtr:FG_GroupList(function(res)
- if res.ReturnCode ~= 0 then
- ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
- else
- fgCtr:FG_EnterGroup(self.group_id, function(res)
- ViewUtil:CloseModalWait2()
- if res.ReturnCode ~= 0 then
- ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
- else
- self:GetOnlinePlayersshow(fgCtr, DataManager.groups:get(self.group_id), index)
- return 1
- end
- end)
- end
- end)
- else
- self:GetOnlinePlayersshow(fgCtr, group, index)
- end
+ -- if not group then
+ fgCtr:FG_GroupList(function(res)
+ if res.ReturnCode ~= 0 then
+ ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
+ else
+ fgCtr:FG_EnterGroup(self.group_id, function(res)
+ ViewUtil:CloseModalWait2()
+ if res.ReturnCode ~= 0 then
+ ViewUtil.ErrorTip(res.ReturnCode, "连接亲友圈失败")
+ else
+ self:GetOnlinePlayersshow(fgCtr, DataManager.groups:get(self.group_id), index)
+ return 1
+ end
+ end)
+ end
+ end)
+ -- else
+ -- self:GetOnlinePlayersshow(fgCtr, group, index)
+ -- end
end
function M:GetOnlinePlayersshow(fgCtr, group, index)
diff --git a/lua_probject/base_project/Game/View/Family/FamilyEventView.lua b/lua_probject/base_project/Game/View/Family/FamilyEventView.lua
index b0b01186..f85ad213 100644
--- a/lua_probject/base_project/Game/View/Family/FamilyEventView.lua
+++ b/lua_probject/base_project/Game/View/Family/FamilyEventView.lua
@@ -167,20 +167,22 @@ end
function M:_evtInviteResponse(...)
local arg = { ... }
- local invite_id = arg[1]
- local g_name = arg[2]
- local roomid = arg[3]
- local pid = arg[4]
- local groupid = arg[5]
+ local evt_data = arg[1]
+ local invite_id = evt_data.invite_id
+ local nik = evt_data.nik
+ local g_name = evt_data.g_name
+ local roomid = evt_data.roomid
+ local pid = evt_data.pid
+ local groupid = evt_data.groupId
+ local playInfo = evt_data.pinfo
local roomCtr = ControllerManager.GetController(RoomController)
- local gameId = DataManager.groups:get(groupid):getPlay(pid).gameId
UIPackage.AddPackage('base/newgroup/ui/FGAssist')
local imv =
FGInvitedMsgView.new(
self._root_view,
groupid,
- pid,
- invite_id,
+ playInfo,
+ nik,
function()
roomCtr:PublicJoinRoom(
Protocol.WEB_FG_JOIN_ROOM,
@@ -199,7 +201,8 @@ function M:_evtInviteResponse(...)
return
else
UpdateBeat:Remove(self.OnUpdate, self)
- ViewManager.ChangeView(ViewManager.View_Main, gameId, { _flag_showTip = true })
+ ViewManager.ChangeView(ViewManager.View_Main, DataManager.CurrenRoom.game_id,
+ { _flag_showTip = true })
end
end,
groupid,
diff --git a/lua_probject/base_project/Game/View/Family/FamilyInvitedMsgView.lua b/lua_probject/base_project/Game/View/Family/FamilyInvitedMsgView.lua
index 38efa988..53f570d0 100644
--- a/lua_probject/base_project/Game/View/Family/FamilyInvitedMsgView.lua
+++ b/lua_probject/base_project/Game/View/Family/FamilyInvitedMsgView.lua
@@ -4,7 +4,7 @@ local FamilyInvitedMsgView = {}
local M = FamilyInvitedMsgView
setmetatable(M, { __index = BaseWindow })
-function FamilyInvitedMsgView.new(blur_view, groupid, pid, invite_id, callback)
+function FamilyInvitedMsgView.new(blur_view, groupid, pinfo, nik, callback)
print("lingmeng FGAssistInviteView")
local self = setmetatable({}, { __index = M })
self.class = "FGAssistInviteView"
@@ -14,8 +14,8 @@ function FamilyInvitedMsgView.new(blur_view, groupid, pid, invite_id, callback)
self._put_map = false
self._close_destroy = true
self.groupid = groupid
- self.pid = pid
- self.invite_id = invite_id
+ self.pinfo = pinfo
+ self.nik = nik
self.callback = callback
UIPackage.AddPackage('base/newgroup/ui/FGAssist')
self:initView("ui://FGAssist/panel_invited")
@@ -35,45 +35,35 @@ function M:initView(url)
self._viewText_playName.emojies = EmojiDitc.EmojiesDitc
self._view:GetChild('btn_no').onClick:Set(function()
- print("lingmeng btn_no")
self:Destroy()
end)
- print("lingmeng FGAssistInviteView5")
self._view:GetChild('btn_yes').onClick:Set(function()
- print("lingmeng btn_yes", self.callback)
-
if self.callback then
self.callback()
end
self:Destroy()
end)
- print("lingmeng FGAssistInviteViewend")
self:FillData()
end
function M:FillData()
local group = DataManager.groups:get(self.groupid)
- local play = group:getPlay(self.pid)
- local player = group.memberMap[self.invite_id]
-
- if player == nil then
- return
- end
+ local play = self.pinfo
--print("lingmeng FillData", self.groupid, self.pid, self.invite_id, type(self.invite_id), type(self.groupid),player)
--pt(group.memberMap)
self._viewText_groupName.text = Utils.TextOmit(group.name, 6, "...")
self._viewText_gameName.text = play.game_name
- self._viewText_inviteName.text = player.nick
+ self._viewText_inviteName.text = self.nik
self._viewText_playName.text = Utils.TextOmit(play.name, 6, "...")
local config = ExtendManager.GetExtendConfig(play.gameId)
local mode = config:GetGameInfo()
local gamePlay = mode:LoadConfigToDetail(play.config, play.hpData)
- self._viewText_playConfig.text = play.hp_times / 1000 .. "倍," .. gamePlay
+ self._viewText_playConfig.text = gamePlay
end
function M:Destroy()
diff --git a/lua_probject/base_project/Game/View/IdPasswordLoginView.lua b/lua_probject/base_project/Game/View/IdPasswordLoginView.lua
new file mode 100644
index 00000000..1d638d74
--- /dev/null
+++ b/lua_probject/base_project/Game/View/IdPasswordLoginView.lua
@@ -0,0 +1,118 @@
+local IdPasswordLoginView = {}
+
+local M = IdPasswordLoginView
+
+function IdPasswordLoginView.new(type, callback)
+ setmetatable(M, { __index = BaseWindow })
+ local self = setmetatable({}, { __index = M })
+ self.class = "IdPasswordLoginView"
+ self._callback = callback
+ self._close_destroy = true
+ self.codeType = type
+ self:init("ui://Login/IDLogin")
+
+ return self
+end
+
+function M:init(url)
+ BaseWindow.init(self, url)
+
+ local btn_login = self._view:GetChild("btn_login")
+ btn_login.onClick:Add(handler(self, function()
+ self:login()
+ end))
+end
+
+function M:login()
+ if self.codeType == 0 then
+ local uid = self:CheckInputId()
+ if not uid then
+ return
+ end
+ local loginCtr = ControllerManager.GetController(LoginController)
+ local passwd = self:CheckInputPasswd()
+ if not passwd then
+ return
+ end
+ ViewUtil.ShowModalWait2()
+ loginCtr:IdPasswordLogin(uid, passwd, function(res)
+ ViewUtil.CloseModalWait2()
+ if res.ReturnCode ~= 0 then
+ ViewUtil.ErrorTip(res.ReturnCode, "ID或者密码错误")
+ return
+ end
+ self._callback(res)
+ end)
+ else
+ ---[[
+ --直接登入
+ local loginCtr = ControllerManager.GetController(LoginController)
+
+ local phone = self:CheckInputPhone()
+ if not phone then
+ return
+ end
+
+ local code = self:CheckInputPhoneCode()
+ if not code then
+ return
+ end
+
+ loginCtr:PhoneLogin(phone, code, function(res)
+ if res.ReturnCode ~= 0 then
+ local msg_txt = "验证码错误"
+ if (Table_Error_code_Map[res.ReturnCode] ~= nil) then
+ msg_txt = Table_Error_code_Map[res.ReturnCode].note
+ end
+ local guo_msg = MsgWindow.new(self._root_view, msg_txt, MsgWindow.MsgMode.OnlyOk)
+ guo_msg._new_hide = false
+ guo_msg:Show()
+ return
+ end
+ self._callback(res)
+ self:Destroy()
+ end)
+ end
+end
+
+function M:Destroy()
+ getmetatable(M).__index.Destroy(self)
+end
+
+function M:CheckInputId()
+ local uid = self._view:GetChild("phone_input").text
+ if not (string.len(uid) >= 6) then
+ ViewUtil.ShowTips("请输入正确的用户ID")
+ return
+ end
+ return uid
+end
+
+function M:CheckInputPasswd()
+ local tex_passwd = self._view:GetChild("tex_passwd").text
+ if string.len(tex_passwd) < 8 then
+ ViewUtil.ShowTips("密码最少八位")
+ return
+ end
+ return tex_passwd
+end
+
+function M:CheckInputPhone()
+ local phone = self._view:GetChild("phone_input").text
+ if not (string.len(phone) == 11) then
+ ViewUtil.ShowTips("请输入正确的电话号码")
+ return
+ end
+ return phone
+end
+
+function M:CheckInputPhoneCode()
+ local code = self._view:GetChild("code_input").text
+ if string.len(code) ~= 6 then
+ ViewUtil.ShowTips("请输入正确的验证码")
+ return
+ end
+ return code
+end
+
+return M
diff --git a/lua_probject/base_project/Game/View/Lobby/LobbyPlayerInfoView.lua b/lua_probject/base_project/Game/View/Lobby/LobbyPlayerInfoView.lua
index ad639d3c..2b185868 100644
--- a/lua_probject/base_project/Game/View/Lobby/LobbyPlayerInfoView.lua
+++ b/lua_probject/base_project/Game/View/Lobby/LobbyPlayerInfoView.lua
@@ -1,5 +1,5 @@
--设置窗口对象
-local PhoneLoginView = import(".PhoneLoginView2")
+local PasswordUpdateView = import(".PasswordUpdateView")
local LobbyPlayerInfoView = {}
@@ -12,6 +12,7 @@ function LobbyPlayerInfoView.new(user, callback)
self._close_destroy = true
self.user = user
self._callback = callback
+ self._loadAll = 0
self:init('ui://Lobby/PlayerInfo')
return self
end
@@ -31,16 +32,23 @@ function M:init(url)
view:GetController('ctr_sex').selectedIndex = user.sex - 1
view:GetChild('ip').text = DataManager.SelfUser.currenIp
ImageLoad.Load(DataManager.SelfUser.head_url, view:GetChild("btn_PlayerHead")._iconObject)
- GameApplication.Instance:GetPublicIP(function(ip)
- DataManager.SelfUser.currenIp = ip
- end)
+ if DataManager.SelfUser.currenIp then
+ self._loadAll = self._loadAll + 1
+ else
+ GameApplication.Instance:GetPublicIP(function(ip)
+ DataManager.SelfUser.currenIp = ip
+ view:GetChild('ip').text = DataManager.SelfUser.currenIp
+ self:CheckAllload()
+ end)
+ end
+
--change
view:GetChild('choose_id').text = user.account_id
view:GetChild('choose_diamo').text = user.diamo
- if user.phone and #user.phone == 11 then
- self._view:GetChild('btn_changeInfo').visible = false
- self._view:GetChild('btn_changeInfo').touchable = false
- end
+ -- if user.phone and #user.phone == 11 then
+ -- self._view:GetChild('btn_changeInfo').visible = false
+ -- self._view:GetChild('btn_changeInfo').touchable = false
+ -- end
self.Lable_name = view:GetChild('Lable_name'):GetChild('text')
self.Lable_name.text = user.nick_name
self.group_sex = view:GetController('group_sex')
@@ -105,18 +113,30 @@ function M:init(url)
end)
end)
+ local pswType = DataManager.SelfUser.havaPsw and 1 or 0
local btn_changeInfo = self._view:GetChild('btn_changeInfo')
+ btn_changeInfo:GetController('type').selectedIndex = pswType
btn_changeInfo.onClick:Set(function()
- local phoneLoginView = PhoneLoginView.new(1, function(res)
- view:GetChild('phone').text = res.Data.phone
- user.phone = res.Data.phone
- if user.phone and #user.phone == 11 then
- self._view:GetChild('btn_changeInfo').visible = false
- self._view:GetChild('btn_changeInfo').touchable = false
- end
+ local passwordUpdateView = PasswordUpdateView.new(pswType, function(res)
+ pswType = DataManager.SelfUser.havaPsw and 1 or 0
+ btn_changeInfo:GetController('type').selectedIndex = pswType
end)
- phoneLoginView:Show()
+ passwordUpdateView:Show()
+ end)
+
+ local loddyCtr1 = ControllerManager.GetController(LoddyController)
+ loddyCtr1:GetUserInfo(function(res)
+ if res.ReturnCode == 0 then
+ self:CheckAllload()
+ end
end)
end
+function M:CheckAllload()
+ self._loadAll = self._loadAll + 1
+ if self._loadAll >= 2 then
+ self:Show()
+ end
+end
+
return M
diff --git a/lua_probject/base_project/Game/View/Lobby/PasswordUpdateView.lua b/lua_probject/base_project/Game/View/Lobby/PasswordUpdateView.lua
new file mode 100644
index 00000000..36a30ca8
--- /dev/null
+++ b/lua_probject/base_project/Game/View/Lobby/PasswordUpdateView.lua
@@ -0,0 +1,157 @@
+local PasswordUpdateView = {}
+
+local M = PasswordUpdateView
+
+function PasswordUpdateView.new(type, callback)
+ setmetatable(M, { __index = BaseWindow })
+ local self = setmetatable({}, { __index = M })
+ self.class = "PasswordUpdateView"
+ self._callback = callback
+ self._close_destroy = true
+ -- self.codeType = type
+ self.codeType = 0
+ self:init("ui://Lobby/PasswordSet")
+
+ return self
+end
+
+function M:init(url)
+ BaseWindow.init(self, url)
+ self.login_type = self._view:GetController("type")
+ self.login_type.selectedIndex = self.codeType
+
+ local btn_login = self._view:GetChild("btn_login")
+ btn_login.onClick:Add(handler(self, function()
+ self:Bind()
+ end))
+end
+
+function M:Bind()
+ if self.codeType == 0 then
+ local passwd = self:CheckInputPasswd()
+ if not passwd then
+ return
+ end
+ local loddyctr = ControllerManager.GetController(LoddyController)
+ local _data = {}
+ _data.password = passwd
+ _data.type = 3
+ ViewUtil.ShowModalWait2()
+ loddyctr:UpdateUserInfo(_data, function(res)
+ ViewUtil.CloseModalWait2()
+ if (res.ReturnCode == 0) then
+ DataManager.SelfUser.havaPsw = true
+ self.login_type.selectedIndex = 1
+ if self._callback then self._callback() end
+ else
+ ViewUtil.ErrorTip(res.ReturnCode, "提交失败")
+ end
+ self:Close()
+ end)
+ else
+ local myPwd = self:CheckInputPasswd2()
+ if not myPwd then
+ return
+ end
+
+ local passwd = self:CheckInputPasswd()
+ if not passwd then
+ return
+ end
+ local loddyctr = ControllerManager.GetController(LoddyController)
+ local _data = {}
+ _data.password = passwd
+ _data.type = 3
+ ViewUtil.ShowModalWait2()
+ loddyctr:UpdateUserInfo(_data, function(res)
+ ViewUtil.CloseModalWait2()
+ if (res.ReturnCode == 0) then
+ DataManager.SelfUser.havaPsw = true
+ self.login_type.selectedIndex = 1
+ if self._callback then self._callback() end
+ else
+ ViewUtil.ErrorTip(res.ReturnCode, "提交失败")
+ end
+ self:Close()
+ end)
+ end
+end
+
+function M:Destroy()
+ UpdateBeat:Remove(self.OnUpdate, self)
+ getmetatable(M).__index.Destroy(self)
+end
+
+function M:CheckInputId()
+ local uid = self._view:GetChild("phone_input").text
+ if not (string.len(uid) >= 6) then
+ ViewUtil.ShowTips("请输入正确的用户ID")
+ return
+ end
+ return uid
+end
+
+function M:CheckInputPasswd2()
+ local tex_passwd = self._view:GetChild("my_input").text
+ if string.len(tex_passwd) < 8 then
+ ViewUtil.ShowTips("旧密码最少八位")
+ return
+ end
+ return tex_passwd
+end
+
+function M:CheckInputPasswd()
+ local tex_frist_passwd = self._view:GetChild("phone_input").text
+ local tex_confrim_passwd = self._view:GetChild("code_input").text
+
+ if string.len(tex_frist_passwd) < 8 then
+ ViewUtil.ShowTips("密码最少八位")
+ return
+ end
+
+ local flg_xiaozimu = false
+ local flg_dazimu = false
+ local fla_shuzi = false
+ for i = 1, #tex_frist_passwd do
+ local oneChar = string.sub(tex_frist_passwd, i, i)
+ print("lingmeng Bind", oneChar, string.byte(oneChar))
+ if string.byte(oneChar) >= 65 and string.byte(oneChar) <= 90 then
+ flg_dazimu = true
+ elseif string.byte(oneChar) >= 97 and string.byte(oneChar) <= 122 then
+ flg_xiaozimu = true
+ elseif string.byte(oneChar) >= 48 and string.byte(oneChar) <= 57 then
+ fla_shuzi = true
+ end
+ end
+ if not ((flg_xiaozimu or flg_dazimu) and fla_shuzi) then
+ ViewUtil.ShowTips("密码必须同时包含字母和数字")
+ return
+ end
+
+ if tex_frist_passwd ~= tex_confrim_passwd then
+ ViewUtil.ShowTips("确认密码必须和输入密码保持一致")
+ return
+ end
+
+ return tex_confrim_passwd
+end
+
+function M:CheckInputPhone()
+ local phone = self._view:GetChild("phone_input").text
+ if not (string.len(phone) == 11) then
+ ViewUtil.ShowTips("请输入正确的电话号码")
+ return
+ end
+ return phone
+end
+
+function M:CheckInputPhoneCode()
+ local code = self._view:GetChild("code_input").text
+ if string.len(code) ~= 6 then
+ ViewUtil.ShowTips("请输入正确的验证码")
+ return
+ end
+ return code
+end
+
+return M
diff --git a/lua_probject/base_project/Game/View/Lobby/PhonePasswordView.lua b/lua_probject/base_project/Game/View/Lobby/PhonePasswordView.lua
index 3fd35581..c2bda02e 100644
--- a/lua_probject/base_project/Game/View/Lobby/PhonePasswordView.lua
+++ b/lua_probject/base_project/Game/View/Lobby/PhonePasswordView.lua
@@ -83,15 +83,6 @@ function M:Bind()
end
local _data = {}
- -- if self.ctr_update.selectedIndex == 1 then
-
- -- local code = self:CheckInputCode()
- -- if not code then
- -- return
- -- end
- -- _data.phone = DataManager.SelfUser.phone
- -- _data.code = code
- -- end
ViewUtil.ShowModalWait2(self._root_view, "正在提交...")
local loddyctr = ControllerManager.GetController(LoddyController)
_data.password = password
diff --git a/lua_probject/base_project/Game/View/LobbyView.lua b/lua_probject/base_project/Game/View/LobbyView.lua
index 86571aa8..4182ece1 100644
--- a/lua_probject/base_project/Game/View/LobbyView.lua
+++ b/lua_probject/base_project/Game/View/LobbyView.lua
@@ -193,7 +193,7 @@ function M:InitView(url)
local lobbyPlayerInfoView = LobbyPlayerInfoView.new(DataManager.SelfUser, function()
ImageLoad.Load(DataManager.SelfUser.head_url, btn_head._iconObject)
end)
- lobbyPlayerInfoView:Show()
+ -- lobbyPlayerInfoView:Show()
end)
diff --git a/lua_probject/base_project/Game/View/LoginView.lua b/lua_probject/base_project/Game/View/LoginView.lua
index c6fca6ec..dc43a80a 100644
--- a/lua_probject/base_project/Game/View/LoginView.lua
+++ b/lua_probject/base_project/Game/View/LoginView.lua
@@ -1,4 +1,5 @@
local PhoneLoginView = import(".PhoneLoginView2")
+local IdPasswordLoginView = import(".IdPasswordLoginView")
LoginView = {}
@@ -90,13 +91,26 @@ function M:init()
-- end)
local btn_phone_code = view:GetChild("btn_phone_code")
- btn_phone_code.onClick:Set(function()
- if self.agree.selectedIndex == 0 then
- ViewUtil.ErrorTip(self._root_view, "请勾选同意《用户协议》")
- return
- end
- self:PhoneCodeLogin()
- end)
+ if btn_phone_code then
+ btn_phone_code.onClick:Set(function()
+ if self.agree.selectedIndex == 0 then
+ ViewUtil.ErrorTip(self._root_view, "请勾选同意《用户协议》")
+ return
+ end
+ self:PhoneCodeLogin()
+ end)
+ end
+
+ local btn_id = view:GetChild("btn_id")
+ if btn_id then
+ btn_id.onClick:Set(function()
+ if self.agree.selectedIndex == 0 then
+ ViewUtil.ErrorTip(self._root_view, "请勾选同意《用户协议》")
+ return
+ end
+ self:IDLogin()
+ end)
+ end
end
function M:Destroy()
@@ -228,7 +242,7 @@ end
function M:IDLogin()
local _idView = nil
- _idView = IDLoginView.new(function(res)
+ _idView = IdPasswordLoginView.new(0, function(res)
if res.ReturnCode == 0 then
_idView:Destroy()
end
diff --git a/lua_probject/base_project/Game/View/MainView.lua b/lua_probject/base_project/Game/View/MainView.lua
index f943a43d..60d5cc99 100644
--- a/lua_probject/base_project/Game/View/MainView.lua
+++ b/lua_probject/base_project/Game/View/MainView.lua
@@ -584,7 +584,6 @@ function M:InitView(url, isHideIpAdds)
_room.group_id ~= 0 and "亲友圈," or "", _room.room_config.config.hpData.maxRound)
data.description = gamePlay
data.type = 0
- pt("lingmeng share ", data)
ViewUtil.__share(data)
end)
end
diff --git a/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua b/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua
index dad74487..bd0c1319 100644
--- a/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua
+++ b/lua_probject/extend_project/extend/majiang/fuzhou/EXGameInfo.lua
@@ -24,6 +24,20 @@ function M:FillData()
local com_editSetting = self._config:GetChild("com_editSetting")
com_editSetting:GetController("cGps").selectedIndex = 2
+
+ local ctr_round = self._config:GetController("round")
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ self._config:GetController("round").onChanged:Set(function()
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ end)
-- if oldGameVersion == 2 then
-- self._config:GetController("xipai").selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua b/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua
index 6de90403..cd33e9a8 100644
--- a/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/fuzhou/EXMainView.lua
@@ -516,7 +516,7 @@ function M:EventInit()
self:PlayMJMusic("gameover.mp3")
end
else
- self:ShowHand(arg)
+ -- self:ShowHand(arg)
self:PlayMJMusic("gameover.mp3")
end
local liuju = result and result.liuju or nil
diff --git a/lua_probject/extend_project/extend/majiang/jinxi/EXGameInfo.lua b/lua_probject/extend_project/extend/majiang/jinxi/EXGameInfo.lua
index ef3f6278..ca27e786 100644
--- a/lua_probject/extend_project/extend/majiang/jinxi/EXGameInfo.lua
+++ b/lua_probject/extend_project/extend/majiang/jinxi/EXGameInfo.lua
@@ -24,6 +24,20 @@ function M:FillData()
local com_editSetting = self._config:GetChild("com_editSetting")
com_editSetting:GetController("cGps").selectedIndex = 2
+
+ local ctr_round = self._config:GetController("round")
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ self._config:GetController("round").onChanged:Set(function()
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ end)
-- if oldGameVersion == 2 then
-- self._config:GetController("xipai").selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua b/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua
index 6197a337..2c063afe 100644
--- a/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/jinxi/EXMainView.lua
@@ -516,7 +516,7 @@ function M:EventInit()
self:PlayMJMusic("gameover.mp3")
end
else
- self:ShowHand(arg)
+ -- self:ShowHand(arg)
self:PlayMJMusic("gameover.mp3")
end
local liuju = result and result.liuju or nil
diff --git a/lua_probject/extend_project/extend/majiang/lichuan/EXGameInfo.lua b/lua_probject/extend_project/extend/majiang/lichuan/EXGameInfo.lua
index e58fe6e9..e44aa26a 100644
--- a/lua_probject/extend_project/extend/majiang/lichuan/EXGameInfo.lua
+++ b/lua_probject/extend_project/extend/majiang/lichuan/EXGameInfo.lua
@@ -22,6 +22,20 @@ function M:FillData()
com_editSetting:GetController("cGps").selectedIndex = 2
self._config:GetController("jingbibo").selectedIndex = 1
+ local ctr_round = self._config:GetController("round")
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ self._config:GetController("round").onChanged:Set(function()
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ end)
+
-- if oldGameVersion == 2 then
-- self._config:GetController("xipai").selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua b/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua
index 3771d893..1a939b65 100644
--- a/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/lichuan/EXMainView.lua
@@ -515,7 +515,7 @@ function M:EventInit()
self:PlayMJMusic("gameover.mp3")
end
else
- self:ShowHand(arg)
+ -- self:ShowHand(arg)
self:PlayMJMusic("gameover.mp3")
end
local liuju = result and result.liuju or nil
diff --git a/lua_probject/extend_project/extend/majiang/nancheng/EXGameInfo.lua b/lua_probject/extend_project/extend/majiang/nancheng/EXGameInfo.lua
index c63d651f..1783b342 100644
--- a/lua_probject/extend_project/extend/majiang/nancheng/EXGameInfo.lua
+++ b/lua_probject/extend_project/extend/majiang/nancheng/EXGameInfo.lua
@@ -24,6 +24,20 @@ function M:FillData()
local com_editSetting = self._config:GetChild("com_editSetting")
com_editSetting:GetController("cGps").selectedIndex = 2
+
+ local ctr_round = self._config:GetController("round")
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ self._config:GetController("round").onChanged:Set(function()
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ end)
-- if oldGameVersion == 2 then
-- self._config:GetController("xipai").selectedIndex = 0
diff --git a/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua b/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua
index 8521c05b..e8d7c16a 100644
--- a/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua
+++ b/lua_probject/extend_project/extend/majiang/nancheng/EXMainView.lua
@@ -515,7 +515,7 @@ function M:EventInit()
self:PlayMJMusic("gameover.mp3")
end
else
- self:ShowHand(arg)
+ -- self:ShowHand(arg)
self:PlayMJMusic("gameover.mp3")
end
local liuju = result and result.liuju or nil
diff --git a/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua b/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua
index c8ff25b4..973ce45f 100644
--- a/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua
+++ b/lua_probject/extend_project/extend/poker/runfast/EXGameInfo.lua
@@ -25,6 +25,20 @@ function M:FillData(view, index)
local com_editSetting = self._config:GetChild("com_editSetting")
com_editSetting:GetController("cGps").selectedIndex = 2
+
+ local ctr_round = self._config:GetController("round")
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ self._config:GetController("round").onChanged:Set(function()
+ if ctr_round.selectedIndex == 0 then
+ com_editSetting:GetController("oneRound").selectedIndex = 1
+ else
+ com_editSetting:GetController("oneRound").selectedIndex = 0
+ end
+ end)
-- else
-- self._config = UIPackage.CreateObjectFromURL("ui://Info_Poker_RunFastNew/Creat_RunFast_yueyang")
-- end
diff --git a/wb_new_ui/assets/FGAssist/invite/panel_invited.xml b/wb_new_ui/assets/FGAssist/invite/panel_invited.xml
index 3bdb3112..74cd8474 100644
--- a/wb_new_ui/assets/FGAssist/invite/panel_invited.xml
+++ b/wb_new_ui/assets/FGAssist/invite/panel_invited.xml
@@ -23,7 +23,7 @@
-
+
diff --git a/wb_new_ui/assets/Info_MJ_FuZhou/Label_Detail_83.xml b/wb_new_ui/assets/Info_MJ_FuZhou/Label_Detail_83.xml
index 459703e7..570a8f57 100644
--- a/wb_new_ui/assets/Info_MJ_FuZhou/Label_Detail_83.xml
+++ b/wb_new_ui/assets/Info_MJ_FuZhou/Label_Detail_83.xml
@@ -15,13 +15,13 @@
-
+
-
+
@@ -32,13 +32,13 @@
-
+
-
+
diff --git a/wb_new_ui/assets/Info_MJ_JinXi/Label_Detail_83.xml b/wb_new_ui/assets/Info_MJ_JinXi/Label_Detail_83.xml
index 846f5f34..6d1717ed 100644
--- a/wb_new_ui/assets/Info_MJ_JinXi/Label_Detail_83.xml
+++ b/wb_new_ui/assets/Info_MJ_JinXi/Label_Detail_83.xml
@@ -14,13 +14,13 @@
-
+
-
+
@@ -30,13 +30,13 @@
-
+
-
+
diff --git a/wb_new_ui/assets/Info_MJ_LiChuan/Label_Detail_83.xml b/wb_new_ui/assets/Info_MJ_LiChuan/Label_Detail_83.xml
index 5915c4fe..1e27fbf0 100644
--- a/wb_new_ui/assets/Info_MJ_LiChuan/Label_Detail_83.xml
+++ b/wb_new_ui/assets/Info_MJ_LiChuan/Label_Detail_83.xml
@@ -11,13 +11,13 @@
-
+
-
+
@@ -28,13 +28,13 @@
-
+
-
+
diff --git a/wb_new_ui/assets/Info_MJ_NanCheng/Label_Detail_83.xml b/wb_new_ui/assets/Info_MJ_NanCheng/Label_Detail_83.xml
index 7a5ed44a..4a1fec0f 100644
--- a/wb_new_ui/assets/Info_MJ_NanCheng/Label_Detail_83.xml
+++ b/wb_new_ui/assets/Info_MJ_NanCheng/Label_Detail_83.xml
@@ -15,13 +15,13 @@
-
+
-
+
@@ -32,13 +32,13 @@
-
+
-
+
diff --git a/wb_new_ui/assets/Info_Poker_RunFastNew/Label_Detail_Play.xml b/wb_new_ui/assets/Info_Poker_RunFastNew/Label_Detail_Play.xml
index c8c7270b..7fc73b88 100644
--- a/wb_new_ui/assets/Info_Poker_RunFastNew/Label_Detail_Play.xml
+++ b/wb_new_ui/assets/Info_Poker_RunFastNew/Label_Detail_Play.xml
@@ -1,6 +1,6 @@
-
+
@@ -11,132 +11,143 @@
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
+
+
-
+
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
-
+
+
-
+
-
-
-
-
-
+
+
+
+
+
-
+
-
+
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/PasswordSet.xml b/wb_new_ui/assets/Lobby/PasswordSet.xml
new file mode 100644
index 00000000..5a5d2c3e
--- /dev/null
+++ b/wb_new_ui/assets/Lobby/PasswordSet.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/CreatePlay/Component/com_editSetting.xml b/wb_new_ui/assets/Lobby/component/CreatePlay/Component/com_editSetting.xml
index 828a66cb..de5659fe 100644
--- a/wb_new_ui/assets/Lobby/component/CreatePlay/Component/com_editSetting.xml
+++ b/wb_new_ui/assets/Lobby/component/CreatePlay/Component/com_editSetting.xml
@@ -1,11 +1,12 @@
-
+
+
@@ -17,15 +18,15 @@
-
+
-
+
-
+
-
+
@@ -87,23 +88,27 @@
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
-
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Lobby/component/PasswordSet/Image/修改密码.png b/wb_new_ui/assets/Lobby/component/PasswordSet/Image/修改密码.png
new file mode 100644
index 00000000..85a1f3f5
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/PasswordSet/Image/修改密码.png differ
diff --git a/wb_new_ui/assets/Lobby/component/PasswordSet/Image/设置密码.png b/wb_new_ui/assets/Lobby/component/PasswordSet/Image/设置密码.png
new file mode 100644
index 00000000..8d4741dc
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/PasswordSet/Image/设置密码.png differ
diff --git a/wb_new_ui/assets/Lobby/component/PlayerInfo/Component/btn_changeInfo.xml b/wb_new_ui/assets/Lobby/component/PlayerInfo/Component/btn_changeInfo.xml
index 03a03627..12b67342 100644
--- a/wb_new_ui/assets/Lobby/component/PlayerInfo/Component/btn_changeInfo.xml
+++ b/wb_new_ui/assets/Lobby/component/PlayerInfo/Component/btn_changeInfo.xml
@@ -1,8 +1,14 @@
+
-
+
+
+
+
+
+
diff --git a/wb_new_ui/assets/Lobby/component/PlayerInfo/Image/Frame 48.png b/wb_new_ui/assets/Lobby/component/PlayerInfo/Image/Frame 48.png
new file mode 100644
index 00000000..ea1f4b22
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/PlayerInfo/Image/Frame 48.png differ
diff --git a/wb_new_ui/assets/Lobby/component/PlayerInfo/Image/Frame 49.png b/wb_new_ui/assets/Lobby/component/PlayerInfo/Image/Frame 49.png
new file mode 100644
index 00000000..13a482e7
Binary files /dev/null and b/wb_new_ui/assets/Lobby/component/PlayerInfo/Image/Frame 49.png differ
diff --git a/wb_new_ui/assets/Lobby/package.xml b/wb_new_ui/assets/Lobby/package.xml
index b262dcc7..4a7dccd9 100644
--- a/wb_new_ui/assets/Lobby/package.xml
+++ b/wb_new_ui/assets/Lobby/package.xml
@@ -749,6 +749,11 @@
+
+
+
+
+
diff --git a/wb_new_ui/assets/Login/IDLogin.xml b/wb_new_ui/assets/Login/IDLogin.xml
new file mode 100644
index 00000000..81778b81
--- /dev/null
+++ b/wb_new_ui/assets/Login/IDLogin.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Login/Main.xml b/wb_new_ui/assets/Login/Main.xml
index 3d416891..e743de9c 100644
--- a/wb_new_ui/assets/Login/Main.xml
+++ b/wb_new_ui/assets/Login/Main.xml
@@ -2,7 +2,7 @@
-
+
@@ -10,7 +10,7 @@
-
+
diff --git a/wb_new_ui/assets/Login/component/id_login/image/Group 16.png b/wb_new_ui/assets/Login/component/id_login/image/Group 16.png
new file mode 100644
index 00000000..f2aab6c4
Binary files /dev/null and b/wb_new_ui/assets/Login/component/id_login/image/Group 16.png differ
diff --git a/wb_new_ui/assets/Login/component/id_login/image/登录.png b/wb_new_ui/assets/Login/component/id_login/image/登录.png
new file mode 100644
index 00000000..8d9695f1
Binary files /dev/null and b/wb_new_ui/assets/Login/component/id_login/image/登录.png differ
diff --git a/wb_new_ui/assets/Login/component/main/component/Btn_id.xml b/wb_new_ui/assets/Login/component/main/component/Btn_id.xml
new file mode 100644
index 00000000..fb3046fc
--- /dev/null
+++ b/wb_new_ui/assets/Login/component/main/component/Btn_id.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/wb_new_ui/assets/Login/component/main/image/Group 16.png b/wb_new_ui/assets/Login/component/main/image/Group 16.png
new file mode 100644
index 00000000..77bf7919
Binary files /dev/null and b/wb_new_ui/assets/Login/component/main/image/Group 16.png differ
diff --git a/wb_new_ui/assets/Login/package.xml b/wb_new_ui/assets/Login/package.xml
index 186ec0bc..d850963e 100644
--- a/wb_new_ui/assets/Login/package.xml
+++ b/wb_new_ui/assets/Login/package.xml
@@ -45,6 +45,11 @@
+
+
+
+
+
diff --git a/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4/Component/Comp_HandCard3.xml b/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4/Component/Comp_HandCard3.xml
index a9eb6269..85af1fa6 100644
--- a/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4/Component/Comp_HandCard3.xml
+++ b/wb_new_ui/assets/Main_Majiang/Main_new/Main_new_4/Component/Comp_HandCard3.xml
@@ -1,11 +1,11 @@
-
+
-
+
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png
index 1ad93fc9..29eeea5d 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png
index e8413f86..e91eb64b 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_1.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png
index a4e3ed79..eb5a970f 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_10.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png
index 3444c92e..f008d18a 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_11.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png
index 1f7b0a59..1aaefc12 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_12.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png
index 9693fbc8..fbc68c8e 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_13.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png
new file mode 100644
index 00000000..d63e45c4
Binary files /dev/null and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta
new file mode 100644
index 00000000..329a632c
--- /dev/null
+++ b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_14.png.meta
@@ -0,0 +1,92 @@
+fileFormatVersion: 2
+guid: 09fe1432b0c4b2c44b95b99916003e5c
+TextureImporter:
+ internalIDToNameTable: []
+ externalObjects: {}
+ serializedVersion: 11
+ mipmaps:
+ mipMapMode: 0
+ enableMipMap: 1
+ sRGBTexture: 1
+ linearTexture: 0
+ fadeOut: 0
+ borderMipMap: 0
+ mipMapsPreserveCoverage: 0
+ alphaTestReferenceValue: 0.5
+ mipMapFadeDistanceStart: 1
+ mipMapFadeDistanceEnd: 3
+ bumpmap:
+ convertToNormalMap: 0
+ externalNormalMap: 0
+ heightScale: 0.25
+ normalMapFilter: 0
+ isReadable: 0
+ streamingMipmaps: 0
+ streamingMipmapsPriority: 0
+ grayScaleToAlpha: 0
+ generateCubemap: 6
+ cubemapConvolution: 0
+ seamlessCubemap: 0
+ textureFormat: 1
+ maxTextureSize: 2048
+ textureSettings:
+ serializedVersion: 2
+ filterMode: -1
+ aniso: -1
+ mipBias: -100
+ wrapU: -1
+ wrapV: -1
+ wrapW: -1
+ nPOTScale: 1
+ lightmap: 0
+ compressionQuality: 50
+ spriteMode: 0
+ spriteExtrude: 1
+ spriteMeshType: 1
+ alignment: 0
+ spritePivot: {x: 0.5, y: 0.5}
+ spritePixelsToUnits: 100
+ spriteBorder: {x: 0, y: 0, z: 0, w: 0}
+ spriteGenerateFallbackPhysicsShape: 1
+ alphaUsage: 1
+ alphaIsTransparency: 0
+ spriteTessellationDetail: -1
+ textureType: 0
+ textureShape: 1
+ singleChannelComponent: 0
+ maxTextureSizeSet: 0
+ compressionQualitySet: 0
+ textureFormatSet: 0
+ applyGammaDecoding: 0
+ platformSettings:
+ - serializedVersion: 3
+ buildTarget: DefaultTexturePlatform
+ maxTextureSize: 2048
+ resizeAlgorithm: 0
+ textureFormat: -1
+ textureCompression: 1
+ compressionQuality: 50
+ crunchedCompression: 0
+ allowsAlphaSplitting: 0
+ overridden: 0
+ androidETC2FallbackOverride: 0
+ forceMaximumCompressionQuality_BC6H_BC7: 0
+ spriteSheet:
+ serializedVersion: 2
+ sprites: []
+ outline: []
+ physicsShape: []
+ bones: []
+ spriteID:
+ internalID: 0
+ vertices: []
+ indices:
+ edges: []
+ weights: []
+ secondaryTextures: []
+ spritePackingTag:
+ pSDRemoveMatte: 0
+ pSDShowRemoveMatteOption: 0
+ userData:
+ assetBundleName: base/lobby/4a425335ab0e1c246f741e6da62b244f
+ assetBundleVariant:
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png
index 641fa36c..0387b64b 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_2.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png
index 07f2a4ee..6a2216b9 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_3.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png
index 281ae821..3b3d96da 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_4.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png
index 8d9c6d02..9ac26127 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_5.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png
index b6baa9d0..358521e3 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_6.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png
index 811e6a29..c7e40584 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_7.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png
index d5df69ee..2ad7ae69 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_8.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png
index f8c81f88..e3f8c2a1 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_atlas0_9.png differ
diff --git a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes
index 2a4cb4a4..7feb68f8 100644
Binary files a/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes and b/wb_unity_pro/Assets/ART/base/lobby/ui/Lobby_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas0.png b/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas0.png
index e465d668..9520d8d4 100644
Binary files a/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas0.png and b/wb_unity_pro/Assets/ART/base/login/ui/Login_atlas0.png differ
diff --git a/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes b/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes
index 10ff2c35..76113624 100644
Binary files a/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes and b/wb_unity_pro/Assets/ART/base/login/ui/Login_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes
index 7bfe4f9b..588c4ea7 100644
Binary files a/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes and b/wb_unity_pro/Assets/ART/base/main_majiang/ui/Main_Majiang_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes b/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes
index fabd6506..04ec5c06 100644
Binary files a/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes and b/wb_unity_pro/Assets/ART/base/newgroup/ui/FGAssist_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/fuzhou/ui/Info_MJ_FuZhou_fui.bytes b/wb_unity_pro/Assets/ART/extend/majiang/fuzhou/ui/Info_MJ_FuZhou_fui.bytes
index ddf0ed3e..93665d20 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/fuzhou/ui/Info_MJ_FuZhou_fui.bytes and b/wb_unity_pro/Assets/ART/extend/majiang/fuzhou/ui/Info_MJ_FuZhou_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/jinxi/ui/Info_MJ_JinXi_fui.bytes b/wb_unity_pro/Assets/ART/extend/majiang/jinxi/ui/Info_MJ_JinXi_fui.bytes
index 8557a221..dd5dc5ac 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/jinxi/ui/Info_MJ_JinXi_fui.bytes and b/wb_unity_pro/Assets/ART/extend/majiang/jinxi/ui/Info_MJ_JinXi_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/lichuan/ui/Info_MJ_LiChuan_fui.bytes b/wb_unity_pro/Assets/ART/extend/majiang/lichuan/ui/Info_MJ_LiChuan_fui.bytes
index f60fc28d..c6884dec 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/lichuan/ui/Info_MJ_LiChuan_fui.bytes and b/wb_unity_pro/Assets/ART/extend/majiang/lichuan/ui/Info_MJ_LiChuan_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/majiang/nancheng/ui/Info_MJ_NanCheng_fui.bytes b/wb_unity_pro/Assets/ART/extend/majiang/nancheng/ui/Info_MJ_NanCheng_fui.bytes
index 3f2f967f..93f7f5a2 100644
Binary files a/wb_unity_pro/Assets/ART/extend/majiang/nancheng/ui/Info_MJ_NanCheng_fui.bytes and b/wb_unity_pro/Assets/ART/extend/majiang/nancheng/ui/Info_MJ_NanCheng_fui.bytes differ
diff --git a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes
index 59643d13..48b389d3 100644
Binary files a/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes and b/wb_unity_pro/Assets/ART/extend/poker/runfast/ui/Info_Poker_RunFastNew_fui.bytes differ
diff --git a/wb_unity_pro/Assets/StreamingAssets/init1_1.json b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
index 2d812560..44e74e56 100644
--- a/wb_unity_pro/Assets/StreamingAssets/init1_1.json
+++ b/wb_unity_pro/Assets/StreamingAssets/init1_1.json
@@ -1,41 +1,41 @@
[
{
- "ver": "1.0.54",
+ "ver": "1.0.55",
"name": "跑得快",
"check": true,
- "version": "1.0.54",
+ "version": "1.0.55",
"game_id": "66",
"bundle": "extend/poker/runfast"
},
{
- "ver": "1.0.77",
+ "ver": "1.0.78",
"name": "南城麻将",
"check": true,
- "version": "1.0.77",
+ "version": "1.0.78",
"game_id": "86",
"bundle": "extend/majiang/nancheng"
},
{
- "ver": "1.0.82",
+ "ver": "1.0.83",
"name": "黎川麻将",
"check": true,
- "version": "1.0.82",
+ "version": "1.0.83",
"game_id": "87",
"bundle": "extend/majiang/lichuan"
},
{
- "ver": "1.0.64",
+ "ver": "1.0.65",
"name": "金溪麻将",
"check": true,
- "version": "1.0.64",
+ "version": "1.0.65",
"game_id": "88",
"bundle": "extend/majiang/jinxi"
},
{
- "ver": "1.0.63",
+ "ver": "1.0.64",
"name": "抚州麻将",
"check": true,
- "version": "1.0.63",
+ "version": "1.0.64",
"game_id": "89",
"bundle": "extend/majiang/fuzhou"
}
diff --git a/wb_unity_pro/Assets/StreamingAssets/init2_1.json b/wb_unity_pro/Assets/StreamingAssets/init2_1.json
index a8cb7958..4bfb3f7d 100644
--- a/wb_unity_pro/Assets/StreamingAssets/init2_1.json
+++ b/wb_unity_pro/Assets/StreamingAssets/init2_1.json
@@ -1,39 +1,39 @@
[
{
"lua_path": "/tolua_project,/base_project,/main_project",
- "ver": "1.0.7",
+ "ver": "1.0.8",
"name": "base_script",
"check": true,
"bundle": "base/base_script",
- "version": "1.0.7"
+ "version": "1.0.8"
},
{
- "ver": "1.0.6",
+ "ver": "1.0.7",
"name": "common",
"check": true,
"bundle": "base/common",
- "version": "1.0.6"
+ "version": "1.0.7"
},
{
- "ver": "1.0.6",
+ "ver": "1.0.7",
"name": "login",
"check": true,
"bundle": "base/login",
- "version": "1.0.6"
+ "version": "1.0.7"
},
{
- "ver": "1.0.6",
+ "ver": "1.0.7",
"name": "lobby",
"check": true,
"bundle": "base/lobby",
- "version": "1.0.6"
+ "version": "1.0.7"
},
{
- "ver": "1.0.6",
+ "ver": "1.0.7",
"name": "Family",
"check": true,
"bundle": "base/Family",
- "version": "1.0.6"
+ "version": "1.0.7"
},
{
"ver": "1.0.6",
@@ -57,10 +57,10 @@
"bundle": "base/rank"
},
{
- "ver": "1.0.6",
+ "ver": "1.0.7",
"name": "main_majiang",
"check": true,
- "version": "1.0.6",
+ "version": "1.0.7",
"bundle": "base/main_majiang"
},
{
diff --git a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.7.bytes b/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.7.bytes
deleted file mode 100644
index 45b9ca82..00000000
Binary files a/wb_unity_pro/Pack/Android32/base/base_script/asset_pack1.0.7.bytes and /dev/null differ
diff --git a/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.7.bytes b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.7.bytes
new file mode 100644
index 00000000..a8463f72
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/login/asset_pack1.0.7.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes
new file mode 100644
index 00000000..9ab52b55
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.6.bytes differ
diff --git a/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.7.bytes b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.7.bytes
new file mode 100644
index 00000000..9ab52b55
Binary files /dev/null and b/wb_unity_pro/Pack/Android32/base/main_majiang/asset_pack1.0.7.bytes differ
diff --git a/wb_unity_pro/Pack/asset_config1.0.8.json b/wb_unity_pro/Pack/asset_config1.0.8.json
new file mode 100644
index 00000000..4bfb3f7d
--- /dev/null
+++ b/wb_unity_pro/Pack/asset_config1.0.8.json
@@ -0,0 +1,109 @@
+[
+ {
+ "lua_path": "/tolua_project,/base_project,/main_project",
+ "ver": "1.0.8",
+ "name": "base_script",
+ "check": true,
+ "bundle": "base/base_script",
+ "version": "1.0.8"
+ },
+ {
+ "ver": "1.0.7",
+ "name": "common",
+ "check": true,
+ "bundle": "base/common",
+ "version": "1.0.7"
+ },
+ {
+ "ver": "1.0.7",
+ "name": "login",
+ "check": true,
+ "bundle": "base/login",
+ "version": "1.0.7"
+ },
+ {
+ "ver": "1.0.7",
+ "name": "lobby",
+ "check": true,
+ "bundle": "base/lobby",
+ "version": "1.0.7"
+ },
+ {
+ "ver": "1.0.7",
+ "name": "Family",
+ "check": true,
+ "bundle": "base/Family",
+ "version": "1.0.7"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "chat",
+ "check": true,
+ "bundle": "base/chat",
+ "version": "1.0.6"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "newgroup",
+ "check": true,
+ "bundle": "base/newgroup",
+ "version": "1.0.6"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "rank",
+ "check": true,
+ "version": "1.0.6",
+ "bundle": "base/rank"
+ },
+ {
+ "ver": "1.0.7",
+ "name": "main_majiang",
+ "check": true,
+ "version": "1.0.7",
+ "bundle": "base/main_majiang"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "main_poker",
+ "check": true,
+ "version": "1.0.6",
+ "bundle": "base/main_poker"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "main_zipai",
+ "check": true,
+ "version": "1.0.6",
+ "bundle": "base/main_zipai"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "static",
+ "check": true,
+ "bundle": "base/static",
+ "version": "1.0.6"
+ },
+ {
+ "ver": "1.0.6",
+ "is_res": true,
+ "name": "embed",
+ "check": true,
+ "bundle": "base/embed",
+ "version": "1.0.6"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "main_pokemajiang",
+ "check": true,
+ "version": "1.0.6",
+ "bundle": "base/main_pokemajiang"
+ },
+ {
+ "ver": "1.0.6",
+ "name": "main_zipaimajiang",
+ "check": true,
+ "version": "1.0.6",
+ "bundle": "base/main_zipaimajiang"
+ }
+]
diff --git a/wb_unity_pro/ProjectSettings/GraphicsSettings.asset b/wb_unity_pro/ProjectSettings/GraphicsSettings.asset
index 4da061a7..a7bcfc3d 100644
--- a/wb_unity_pro/ProjectSettings/GraphicsSettings.asset
+++ b/wb_unity_pro/ProjectSettings/GraphicsSettings.asset
@@ -39,7 +39,6 @@ GraphicsSettings:
- {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0}
- {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0}
- - {fileID: 16003, guid: 0000000000000000f000000000000000, type: 0}
m_PreloadedShaders: []
m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000,
type: 0}