-- 注册红点时调用 functionRedDotNode:RegisterHandle(parentGo) -- 查找物体下面是否有红点物体 local go = __FindChild(parentGo, "RedDot") -- 如果有直接设置为该节点的红点游戏物体 -- 否则就进行动态加载并实例化 if go then self.gameObject = go else -- 这里是根据key的后缀加载不同的红点预制 -- 并设置其位置 local prefabName = string.endWith(self.name, "_NUM") and"NumRedDot"or"RedDot" go = __UIResouseIns:LoadUIPrefab('UI/Panel/' .. prefabName, 0, parentGo.transform) -- 这个是我们项目封装的加载并实例化的接口 go.name = "RedDot" local rtPoint = go:GetComponent(CSType.RectTransform) ifnot rtPoint then rtPoint = go:AddComponent(CSType.RectTransform) end ifnot rtPoint then UnityEngine.GameObject.Destroy(go) return end rtPoint.anchorMax = Vector2.New(1, 1) rtPoint.anchorMin = Vector2.New(1, 1) rtPoint.anchoredPosition = Vector2.New(-16, -16) self.gameObject = go end -- 查找红点下的显示数量的Text组件 self.txtComp = __FindChild(self.gameObject, "TxtCount", CSType.Text) self:Refresh() end
-- 注销红点时进行调用 functionRedDotNode:UnRegisterHandle() self.gameObject = nil self.txtComp = nil end
-- 红点是否点亮(当数量>0是该红点就为点亮状态) functionRedDotNode:IsValid() returnself.count > 0 end
-- 添加子节点 functionRedDotNode:AddChild(name) ifnotself.childList then self.childList = {} end local node = RedDotNode.new(name, self) table.append(self.childList, node) return node end
-- 通过名字获取子节点 functionRedDotNode:GetChild(name) for _, node inipairs(self.childList or {}) do if node.name == name then return node end end end
-- 设置红点显示状态 functionRedDotNode:SetValid(isValid) -- 如果设置的红点显示状态和当前状态一直,并且当前结点是叶子结点就不进行处理 ifself:IsValid() == isValid and (notself.childList or #self.childList <= 0) then return end if isValid then -- 状态为 true, 红点数量加1 self.count = self.count + 1 else -- 状态为 false,红点数量减1 self.count = self.count - 1 end -- 刷新红点显示 self:Refresh() -- 如果当前节点存在父节点,则继续设置父节点状态 ifself.parent then self.parent:SetValid(isValid) end end
-- 刷新红点显示 functionRedDotNode:Refresh() -- 如果红点游戏物体为null,不做处理 if tolua.isnull(self.gameObject) then return end -- 如果存在显示红点数量的Text,就设置数量显示 ifself.txtComp then self.txtComp.text = self.count >= 100and"99"orself.count end -- 设置红点物体的显示状态 __SetActive(self.gameObject, self:IsValid()) end
-- 注册红点 -- parentGo: 需要显示红点的物体 functionRedDotMgr:Register(key, parentGo) local node = self:_GetNode(key) if node then node:RegisterHandle(parentGo) --node:Refresh() end end
-- 注销红点 functionRedDotMgr:UnRegister(key) ifnotself:IsNodeExist(key) then return end local node = self:_GetNode(key) if node then node:UnRegisterHandle() end end
-- 设置红点显示状态(只能设置叶子结点) functionRedDotMgr:SetValid(key, isValid) local node = self:_GetNode(key) if node.childList and #node.childList > 0then LogError("SetValid Error: 只能设置叶子节点的状态!key=" .. key) return end node:SetValid(isValid) end
-- 判断key对应的红点是否显示 functionRedDotMgr:IsValid(key) ifself:IsNodeExist(key) then local node = self:_GetNode(key) return node:IsValid() end returnfalse end
-- 组装Key functionRedDotMgr:PackKey(prefixKey, ...) local args = { ... } local key = string.format("%s.%s", prefixKey, table.concat(args, '.')) return key end
-- 获取节点 functionRedDotMgr:_GetNode(key) ifnotself.root then self.root = RedDotNode.new("Root") end local keyList = self:_ParseKey(key) local node = self.root for _, name inipairs(keyList) do local tempNode = node:GetChild(name) ifnot tempNode then tempNode = node:AddChild(name) end node = tempNode end return node end
-- 节点是否存在 functionRedDotMgr:IsNodeExist(key) returnself.key_map[key] ~= nil end
functionRedDotMgr:_ParseKey(key) ifstring.isNilOrEmpty(key) then LogError("ParseKey Error: Key不能为空!") return end local keyList = self.key_map[key] ifnot keyList then keyList = string.split(key, '.') self.key_map[key] = keyList end return keyList end