Commit b7c3e49f3e86ff63dd4d5bf2c59d55ce6ef62fd7
Merge branch 'tr/develop' into tr/bugfix-qa
Showing
4 changed files
with
67 additions
and
7 deletions
Show diff stats
src/GlobalVar.lua
src/models/Activity.lua
... | ... | @@ -1082,6 +1082,15 @@ activityFunc[Activity.ActivityType.BattleCommand] = { |
1082 | 1082 | actData["week"] = 0 |
1083 | 1083 | self:updateActData(actType, actData, true) |
1084 | 1084 | end, |
1085 | + ["close"] = function (self, actType, notify, actId) | |
1086 | + local rechargeRecord = self.owner.storeData:getProperty("payR") | |
1087 | + for id, cfg in pairs(csvdb["shop_rechargeCsv"]) do | |
1088 | + if cfg.shop == 2 and cfg.type == CardType.ActBattleCommandCard then | |
1089 | + rechargeRecord[id] = nil | |
1090 | + end | |
1091 | + end | |
1092 | + self.owner.storeData:updateProperty({field="payR", value=rechargeRecord}) | |
1093 | + end, | |
1085 | 1094 | } |
1086 | 1095 | |
1087 | 1096 | ... | ... |
src/models/Store.lua
... | ... | @@ -17,7 +17,9 @@ Store.schema = { |
17 | 17 | growFundR = {"string", ""}, -- 成长基金领取记录 |
18 | 18 | |
19 | 19 | monthCardEx = {"number", 0}, -- 月卡过期时间戳 |
20 | + monthCardId = {"number", 0}, -- 月卡id | |
20 | 21 | smonthCardEx = {"number", 0}, -- 超级月卡过期时间戳 |
22 | + smonthCardId = {"number", 0}, -- 超级月卡id | |
21 | 23 | |
22 | 24 | battleCard = {"number", 0}, -- 赛季卡 |
23 | 25 | battleFR = {"string", ""}, -- 免费赛季卡领取记录 |
... | ... | @@ -51,7 +53,7 @@ function Store:updateProperty(params) |
51 | 53 | return |
52 | 54 | end |
53 | 55 | local newValue = self:getProperty(params.field) |
54 | - if not params.notNotify then | |
56 | + if not params.notNotify then | |
55 | 57 | self:notifyUpdateProperty(params.field, newValue, oldValue) |
56 | 58 | end |
57 | 59 | end |
... | ... | @@ -77,13 +79,16 @@ end |
77 | 79 | -- 发送月卡邮件 |
78 | 80 | function Store:sendMonthCardEmail() |
79 | 81 | local timeNow = skynet.timex() |
80 | - local tabs = {{ex="monthCardEx", t="getMailT1", mail=MailId.MonthCard, alert=MailId.MonthCardEx}, | |
81 | - {ex="smonthCardEx", t="getMailT2", mail=MailId.SuperMonthCard, alert=MailId.SuperMonthCardEx}} | |
82 | + | |
83 | + local tabs = {{ex="monthCardEx", t="getMailT1", id= self:getProperty("monthCardId")}, | |
84 | + {ex="smonthCardEx", t="getMailT2", id=self:getProperty("smonthCardId")}} | |
82 | 85 | for _, v in ipairs(tabs) do |
83 | 86 | local ex = self:getProperty(v.ex) |
84 | 87 | local ts = self:getProperty(v.t) or 0 |
85 | - local mailId = v.mail | |
86 | - local alertId = v.alert | |
88 | + local cfg = csvdb["shop_cardCsv"][v.id] or {} | |
89 | + | |
90 | + local mailId = cfg.email | |
91 | + local alertId = cfg.email_2 | |
87 | 92 | local alertTs = dayLater(ex) - DAY_SEC |
88 | 93 | if ex > timeNow then |
89 | 94 | local cnt = 0 |
... | ... | @@ -184,24 +189,66 @@ function Store:getHangDropCoef() |
184 | 189 | return (1 + globalCsv.hang_drop_exp_coef) or 1, (1 + globalCsv.hang_drop_item_coef) or 1 |
185 | 190 | end |
186 | 191 | |
192 | +function Store:getCurMonthCardLvl(isSuper) | |
193 | + local id = 0 | |
194 | + if isSuper then | |
195 | + id = self:getProperty("smonthCardId") or 0 | |
196 | + else | |
197 | + id = self:getProperty("monthCardId") or 0 | |
198 | + end | |
199 | + local cfg = csvdb["shop_cardCsv"][id] | |
200 | + if not cfg then return 0 end | |
201 | + | |
202 | + return cfg.level or 0 | |
203 | +end | |
187 | 204 | |
188 | 205 | -- 购买通行证 |
189 | 206 | function Store:onBuyCard(type, duration, id, actid) |
190 | 207 | local timeNow = skynet.timex() |
191 | 208 | if type == CardType.NormalMonthCard then |
192 | 209 | if self:isMonthCardExpire() then |
210 | + self:updateProperty({field = "monthCardId", value = id}) | |
193 | 211 | self:updateProperty({field = "monthCardEx", value = timeNow + duration}) |
194 | 212 | else |
195 | 213 | self:updateProperty({field = "monthCardEx", value = self:getProperty("monthCardEx") + duration}) |
196 | 214 | end |
197 | 215 | self:sendMonthCardEmail() |
216 | + elseif type == CardType.NormalMonthCardLevelUp then | |
217 | + if self:isMonthCardExpire() then | |
218 | + skynet.error(string.format("month card expired, can not level up,%d,%d",self.owner:getProperty("id"), id)) | |
219 | + else | |
220 | + local cfg = csvdb["shop_cardCsv"][id] | |
221 | + if not cfg then return end | |
222 | + local dif = cfg.level - self:getCurMonthCardLvl(false) | |
223 | + if dif > 1 and dif < 0 then | |
224 | + return | |
225 | + end | |
226 | + self:updateProperty({field = "monthCardId", value = id}) | |
227 | + self:updateProperty({field = "monthCardEx", value = self:getProperty("monthCardEx") + duration}) | |
228 | + end | |
229 | + self:sendMonthCardEmail() | |
198 | 230 | elseif type == CardType.SuperMonthCard then |
199 | 231 | if self:isSuperMonthCardExpire() then |
232 | + self:updateProperty({field = "smonthCardId", value = id}) | |
200 | 233 | self:updateProperty({field = "smonthCardEx", value = timeNow + duration}) |
201 | 234 | else |
202 | 235 | self:updateProperty({field = "smonthCardEx", value = self:getProperty("smonthCardEx") + duration}) |
203 | 236 | end |
204 | 237 | self:sendMonthCardEmail() |
238 | + elseif type == CardType.SuperMonthCardLevelUp then | |
239 | + if self:isSuperMonthCardExpire() then | |
240 | + skynet.error(string.format("super month card expired, can not level up,%d,%d",self.owner:getProperty("id"), id)) | |
241 | + else | |
242 | + local cfg = csvdb["shop_cardCsv"][id] | |
243 | + if not cfg then return end | |
244 | + local dif = cfg.level - self:getCurMonthCardLvl(true) | |
245 | + if dif > 1 and dif < 0 then | |
246 | + return | |
247 | + end | |
248 | + self:updateProperty({field = "smonthCardId", value = id}) | |
249 | + self:updateProperty({field = "smonthCardEx", value = self:getProperty("smonthCardEx") + duration}) | |
250 | + end | |
251 | + self:sendMonthCardEmail() | |
205 | 252 | elseif type == CardType.PrivilegeCard then |
206 | 253 | if self:isPrivCardExpire() then |
207 | 254 | self:updateProperty({field = "privCardEx", value = timeNow + duration}) |
... | ... | @@ -253,7 +300,7 @@ function Store:notifyUpdateProperty(field, newValue, oldValue) |
253 | 300 | key = field, |
254 | 301 | newValue = newValue, |
255 | 302 | oldValue = oldValue, |
256 | - } | |
303 | + } | |
257 | 304 | SendPacket(actionCodes.Store_updateproperty, MsgPack.pack(datas)) |
258 | 305 | end |
259 | 306 | |
... | ... | @@ -494,6 +541,8 @@ function Store:data() |
494 | 541 | actGoodsFlag = self:getProperty("actGoodsFlag"), |
495 | 542 | bpInfo = self:getProperty("bpInfo"), |
496 | 543 | totalRR = self:getProperty("totalRR"), |
544 | + monthCardId = self:getProperty("monthCardId"), | |
545 | + smonthCardId = self:getProperty("smonthCardId"), | |
497 | 546 | } |
498 | 547 | end |
499 | 548 | ... | ... |