UIModelZhuangbeiShop = class('UIModelZhuangbeiShop') UIModelZhuangbeiShop.luckyBagConfType = { Deposit = 0, Shop = 1 } function UIModelZhuangbeiShop:Ins() if UIModelZhuangbeiShop.ins == nil then UIModelZhuangbeiShop.ins = UIModelZhuangbeiShop.new() end return UIModelZhuangbeiShop.ins end function UIModelZhuangbeiShop:ctor() self.luckyBagPurchaseTimes = {} self.luckyBagPurchaseLimits = {} self:SetLuckyBagPurchaseTimesZero() self:SetLuckyBagPurchaseLimitsZero() end function UIModelZhuangbeiShop:SetLuckyBagPurchaseTimes(lucky_bag_conf_id, times) self.luckyBagPurchaseTimes[lucky_bag_conf_id] = times end function UIModelZhuangbeiShop:SetLuckyBagPurchaseLimit(lucky_bag_conf_id, limit) helplog("SetLuckyBagPurchaseLimit:",lucky_bag_conf_id,limit) self.luckyBagPurchaseLimits[lucky_bag_conf_id] = limit end function UIModelZhuangbeiShop:SetLuckyBagPurchaseTimesZero() for k, v in pairs(Table_Deposit) do local productID = k local productConf = v if productConf.LimitType ~= 6 and productConf.Type == 4 and productConf.Switch == 1 and productConf.ActivityCount ~= 1 then self.luckyBagPurchaseTimes[productID] = 0 end end end function UIModelZhuangbeiShop:SetLuckyBagPurchaseLimitsZero() for k, v in pairs(Table_Deposit) do local productID = k local productConf = v if productConf.LimitType ~= 6 and productConf.Type == 4 and productConf.Switch == 1 and productConf.ActivityCount ~= 1 then self.luckyBagPurchaseLimits[productID] = 0 end end end function UIModelZhuangbeiShop:AddLuckyBagPurchaseTimes(lucky_bag_conf_id) local purchaseTimes = self.luckyBagPurchaseTimes[lucky_bag_conf_id] purchaseTimes = purchaseTimes or 0 purchaseTimes = purchaseTimes + 1 self.luckyBagPurchaseTimes[lucky_bag_conf_id] = purchaseTimes end function UIModelZhuangbeiShop:GetLuckyBagPurchaseTimes(lucky_bag_conf_id) if self.luckyBagPurchaseTimes ~= nil then return self.luckyBagPurchaseTimes[lucky_bag_conf_id] end return nil end function UIModelZhuangbeiShop:GetLuckyBagPurchaseLimit(lucky_bag_conf_id) if self.luckyBagPurchaseLimits ~= nil then return self.luckyBagPurchaseLimits[lucky_bag_conf_id] end return nil end UIModelZhuangbeiShop.LuckyBagShopType = 913 UIModelZhuangbeiShop.LuckyBagShopID = 1 function UIModelZhuangbeiShop:GetLuckyBagShopConf() return ShopProxy.Instance:GetConfigByTypeId(UIModelZhuangbeiShop.LuckyBagShopType, UIModelZhuangbeiShop.LuckyBagShopID) end function UIModelZhuangbeiShop:RequestQueryShopItem(shop_type, shop_id) ShopProxy.Instance:CallQueryShopConfig(shop_type, shop_id) end UIModelZhuangbeiShop.ItemShopType = 855 UIModelZhuangbeiShop.ItemShopID = 1 function UIModelZhuangbeiShop:GetItemShopConf() return ShopProxy.Instance:GetConfigByTypeId(UIModelZhuangbeiShop.ItemShopType, UIModelZhuangbeiShop.ItemShopID) end -- local tempActivityParamsD = { -- [1] = 1, -- product configure id -- [2] = 1, -- discount times -- [3] = 1, -- new define product configure id -- [4] = 1, -- discount start time -- [5] = 1, -- discount end time -- [6] = 1 -- activity id -- } -- local tempActivityParamsG = { -- [1] = 1, -- product configure id -- [2] = 1, -- gain more times -- [3] = 1, -- gain more multiple number -- [4] = 1, -- gain more start time -- [5] = 1, -- gain more end time -- [6] = 1 -- activity id -- } -- local tempActivityParamsM = { -- [1] = 1, -- product configure id -- [2] = 1, -- more times times -- [3] = 1, -- more times start time -- [4] = 1, -- more times end time -- [5] = 1 -- activity id -- } local allProductActivityParams = {} -- { -- [1] = { -- product configure id -- [1] = { -- discount -- [1] = 1, -- discount times -- [2] = 1, -- new define product configure id -- [3] = 1, -- discount used times -- [4] = 1, -- discount start time -- [5] = 1, -- discount end time -- [6] = 1 -- activity id -- ], -- [2] = { -- gain more -- [1] = 1, -- gain more times -- [2] = 1, -- gain more multiple number -- [3] = 1, -- gain more used times -- [4] = 1, -- gain more start time -- [5] = 1, -- gain more end time -- [6] = 1 -- activity id -- }, -- [3] = { -- [1] = 1, -- more times times -- [2] = 1, -- more times start time -- [3] = 1, -- more times end time -- [4] = 1 -- activity id -- } -- } -- } function UIModelZhuangbeiShop:SetActivityParams_Discount(p_conf_id, activity_params) if activity_params ~= nil then local pConfID = activity_params[1] if not table.ContainsKey(allProductActivityParams, pConfID) then allProductActivityParams[pConfID] = {} end if not table.ContainsKey(allProductActivityParams[pConfID], 1) then allProductActivityParams[pConfID][1] = {} end local discountTimes = activity_params[2] local newPConfID = activity_params[3] local startTime = activity_params[4] local endTime = activity_params[5] local activityID = activity_params[6] allProductActivityParams[pConfID][1][1] = discountTimes allProductActivityParams[pConfID][1][2] = newPConfID allProductActivityParams[pConfID][1][4] = startTime allProductActivityParams[pConfID][1][5] = endTime allProductActivityParams[pConfID][1][6] = activityID else allProductActivityParams[p_conf_id][1] = nil end end function UIModelZhuangbeiShop:SetActivityParams_GainMore(p_conf_id, activity_params) if activity_params ~= nil then local pConfID = activity_params[1] if not table.ContainsKey(allProductActivityParams, pConfID) then allProductActivityParams[pConfID] = {} end if not table.ContainsKey(allProductActivityParams[pConfID], 2) then allProductActivityParams[pConfID][2] = {} end local gainMoreTimes = activity_params[2] local multipleNumber = activity_params[3] local startTime = activity_params[4] local endTime = activity_params[5] local activityID = activity_params[6] allProductActivityParams[pConfID][2][1] = gainMoreTimes allProductActivityParams[pConfID][2][2] = multipleNumber allProductActivityParams[pConfID][2][4] = startTime allProductActivityParams[pConfID][2][5] = endTime allProductActivityParams[pConfID][2][6] = activityID else allProductActivityParams[p_conf_id][2] = nil end end function UIModelZhuangbeiShop:SetActivityParams_MoreTimes(p_conf_id, activity_params) if activity_params ~= nil then local pConfID = activity_params[1] if not table.ContainsKey(allProductActivityParams, pConfID) then allProductActivityParams[pConfID] = {} end if not table.ContainsKey(allProductActivityParams[pConfID], 3) then allProductActivityParams[pConfID][3] = {} end local moreTimesTimes = activity_params[2] local startTime = activity_params[3] local endTime = activity_params[4] local activityID = activity_params[5] allProductActivityParams[pConfID][3][1] = moreTimesTimes allProductActivityParams[pConfID][3][2] = startTime allProductActivityParams[pConfID][3][3] = endTime allProductActivityParams[pConfID][3][4] = activityID else allProductActivityParams[p_conf_id][3] = nil end end function UIModelZhuangbeiShop:SetActivityUsedTimes(activity_id, used_times) for _, v in pairs(allProductActivityParams) do local activityParams = v if activityParams[1] ~= nil then if activityParams[1][6] == activity_id then activityParams[1][3] = used_times break end end if activityParams[2] ~= nil then if activityParams[2][6] == activity_id then activityParams[2][3] = used_times break end end if activityParams[3] ~= nil then if activityParams[3][4] == activity_id then activityParams[3][5] = used_times end end end end function UIModelZhuangbeiShop:GetProductActivity(p_conf_id) return allProductActivityParams[p_conf_id] end function UIModelZhuangbeiShop:GetProductActivity_Discount(activity_p_conf_id) for k, v in pairs(allProductActivityParams) do local activity = v local discountActivity = activity[1] if discountActivity ~= nil then local activityPConfID = discountActivity[2] if activityPConfID == activity_p_conf_id then return discountActivity end end end return nil end function UIModelZhuangbeiShop:SetEPVIPCards(ep_vip_cards) self.epVIPCards = ep_vip_cards end function UIModelZhuangbeiShop:GetEPVIPCards() return self.epVIPCards end function UIModelZhuangbeiShop:SetFPRFlag(tab_fpr_flag_product) if self.fprFlagProduct == nil then self.fprFlagProduct = {} end TableUtility.TableClear(self.fprFlagProduct) for i = 1, #tab_fpr_flag_product do self.fprFlagProduct[tab_fpr_flag_product[i]] = 0 end end function UIModelZhuangbeiShop:RemoveFPRFlag(product_conf_id) if self.fprFlagProduct ~= nil then self.fprFlagProduct[product_conf_id] = nil end end function UIModelZhuangbeiShop:IsFPR(product_conf_id) if self.fprFlagProduct == nil then return false else return self.fprFlagProduct[product_conf_id] ~= nil end end