Blame view

src/actions/AdvAction.lua 20.3 KB
23d89d13   zhouahaihai   冒险 结构
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  local ipairs = ipairs
  local table = table
  local math = math
  local next = next
  local string = string
  local redisproxy = redisproxy
  local MsgPack = MsgPack
  local getRandomName = getRandomName
  local mcast_util = mcast_util
  local string_format = string.format
  local tonumber = tonumber
  local require = require
  local table_insert = table.insert
  local tconcat = table.concat
  local table_unpack = table.unpack
  
8da953a7   zhouhaihai   无尽模式
17
18
  local AdvCommon = require "adv.AdvCommon"
  
23d89d13   zhouahaihai   冒险 结构
19
20
  local _M = {}
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  -- 无尽模式是否开放
  local function isOpenEndless(role)
  	if role.advOverTime ~= 0 and skynet.timex() >= role.advOverTime then
  		return false
  	end
  	return true
  end
  -- 冒险内的操作是否可以继续
  local function isCanContinue(role)
  	local adv = role:getAdvData()
  	if not adv:isRunning() then return false end
  	if adv:isEndless() then
  		if not isOpenEndless(role) then return false end
  	end
  	return true
  end
  
09be9059   zhouhaihai   冒险接口
38
  
c3d5fe54   zhouhaihai   无战斗状态挂机清掉战斗队伍
39
  local function checkFormat(role, format, checkAdvTeam)
09be9059   zhouhaihai   冒险接口
40
41
42
43
44
45
46
47
48
49
  	local advHang = role:getProperty("advHang")
  	local hadHero = {}
  	for chapterId, info in pairs(advHang) do
  		if info.format then
  			for _, heroId in pairs(info.format.heros) do
  				hadHero[heroId] = true
  			end
  		end
  	end
  
c3d5fe54   zhouhaihai   无战斗状态挂机清掉战斗队伍
50
  	if checkAdvTeam then
09be9059   zhouhaihai   冒险接口
51
52
53
54
55
56
  		for _, heroId in pairs(role:getProperty("advTeam").heros or {}) do
  			hadHero[heroId] = true
  		end
  	end
  
  	if not format.leader then return end
bfd33de5   zhouhaihai   队长技
57
  	if format.leader2 == format.leader then return end
09be9059   zhouhaihai   冒险接口
58
  	local hadLeader = false
bfd33de5   zhouhaihai   队长技
59
60
  	local hadLeader2 = false
  	local heroCount = 0
09be9059   zhouhaihai   冒险接口
61
62
63
64
65
66
67
  	for slot, heroId in pairs(format.heros) do
  		if not role.heros[heroId] or hadHero[heroId] then
  			return
  		end
  		if heroId == format.leader then
  			hadLeader = true
  		end
bfd33de5   zhouhaihai   队长技
68
69
70
71
72
73
74
  		if heroId == format.leader2 then
  			hadLeader2 = true
  		end
  		heroCount = heroCount + 1
  	end
  	if not hadLeader2 and heroCount >= 2 then
  		return
09be9059   zhouhaihai   冒险接口
75
76
77
78
79
  	end
  	if not hadLeader then return end
  	return true
  end
  
46fac6f1   zhouahaihai   酱料
80
  --开始一个新的关卡
23d89d13   zhouahaihai   冒险 结构
81
82
83
  function _M.startAdvRpc( agent, data )
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
09be9059   zhouhaihai   冒险接口
84
85
86
  	local chapterId = msg.chapterId --关卡id
  	local layer = msg.layer or 1	--选择层数
  	local format = msg.format 		--编队
8da953a7   zhouhaihai   无尽模式
87
88
  
  	--上一个关卡结束才可以开始新的关卡
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
89
  	if role:getAdvData():isRunning() then return 8 end
8da953a7   zhouhaihai   无尽模式
90
  
09be9059   zhouhaihai   冒险接口
91
  	local chapterData = csvdb["adv_chapterCsv"][chapterId]
8da953a7   zhouhaihai   无尽模式
92
  	if not chapterData or layer < 1 then return  1 end
09be9059   zhouhaihai   冒险接口
93
  
47d5d769   zhouhaihai   中继判断 随机任务
94
  	local advPass = role:getProperty("advPass")
0e3ab88d   zhouhaihai   中继层
95
96
97
  
  	if AdvCommon.isEndless(chapterId) then -- 无尽模式判断
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
98
99
  		if chapterId ~= role.advElChapter then return end -- 不是当前进行的章节
  		if not isOpenEndless(role) then return end
0e3ab88d   zhouhaihai   中继层
100
  
e38b9c49   zhouhaihai   无尽次数
101
  		if role.dailyData:getProperty("advElC") >= role:getAdvElLimit() then return 2 end -- 是否有体力
0e3ab88d   zhouhaihai   中继层
102
103
104
  		if not role:isFuncOpen(FuncOpenType.AdvEndless) then return 11 end -- 无尽模式 才可以玩儿无尽模式
  
  		local advElM = role:getProperty("advElM")  --最高通关的层数
e38b9c49   zhouhaihai   无尽次数
105
106
107
  
  		if layer == 1 then
  			if not role:advChapterIsOpen(chapterId, layer) then return 13 end
0e3ab88d   zhouhaihai   中继层
108
109
110
111
  		else
  			local relayData = role:getAdvData():isHaveRelay(layer, chapterId) 
  			if not relayData then return end  -- 不是中继层
  			if advElM < relayData.unlockfloor then return end --未解锁
e38b9c49   zhouhaihai   无尽次数
112
  		end
0e3ab88d   zhouhaihai   中继层
113
  	else   -- 普通模式判断
e38b9c49   zhouhaihai   无尽次数
114
  		if role.dailyData:getProperty("advC") >= role:getAdvHangLimit() then return 2 end -- 是否有体力
8da953a7   zhouhaihai   无尽模式
115
116
117
  		if layer > chapterData.limitlevel  then return 4 end
  		-- 关卡开放判断
  		if not role:advChapterIsOpen(chapterId, layer) then return 5 end
0e3ab88d   zhouhaihai   中继层
118
119
  		-- 普通模式没有中继 只能从1 开始 中继开放判断
  		if layer ~= 1 then return 6 end
8da953a7   zhouhaihai   无尽模式
120
  	end
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
121
122
  	
  	if not checkFormat(role, format) then return 7 end
46fac6f1   zhouahaihai   酱料
123
  
09be9059   zhouhaihai   冒险接口
124
125
126
127
  	local advTeam = role:getProperty("advTeam")
  	table.clear(advTeam)
  
  	advTeam.heros = {}
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
128
  	for slot, heroId in pairs(format.heros) do
09be9059   zhouhaihai   冒险接口
129
130
  		advTeam.heros[slot] = heroId
  	end
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
131
  	advTeam.leader = format.leader
bfd33de5   zhouhaihai   队长技
132
  	advTeam.leader2 = format.leader2
09be9059   zhouhaihai   冒险接口
133
  	role:updateProperty({field = "advTeam", value = advTeam})
e38b9c49   zhouhaihai   无尽次数
134
135
136
137
138
  	if AdvCommon.isEndless(chapterId) then
  		role.dailyData:updateProperty({field = "advElC", delta = 1})
  	else
  		role.dailyData:updateProperty({field = "advC", delta = 1})
  	end
09be9059   zhouhaihai   冒险接口
139
  
0e3ab88d   zhouhaihai   中继层
140
  	role:getAdvData():initByChapter(chapterId, layer, false, false, layer ~= 1, true)
53e8037e   zhouhaihai   任务
141
  	role:checkTaskEnter("AdvStart", {id = chapterId})
f60b89b1   zhouhaihai   奖励副本
142
  	role:checkTaskEnter("AdvStartSelf", {id = chapterId})
23d89d13   zhouahaihai   冒险 结构
143
144
145
146
  	SendPacket(actionCodes.Adv_startAdvRpc, '')
  	return true
  end
  
09be9059   zhouhaihai   冒险接口
147
148
  
  function _M.startHangRpc(agent, data)
46fac6f1   zhouahaihai   酱料
149
150
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
09be9059   zhouhaihai   冒险接口
151
152
153
154
155
156
157
158
159
160
  	local chapterId = msg.chapterId --关卡id
  	local format = msg.format --编队
  
  	local chapterData = csvdb["adv_chapterCsv"][chapterId]
  	if not chapterData then return end
  
  	local advHang = role:getProperty("advHang")
  	if advHang[chapterId] then return end --正在挂机
  
  	local advPass = role:getProperty("advPass")
8da953a7   zhouhaihai   无尽模式
161
  	if AdvCommon.isEndless(chapterId) or advPass[chapterId] ~= chapterData.limitlevel then return end -- 没有全通关
09be9059   zhouhaihai   冒险接口
162
163
164
  
  	if role.dailyData:getProperty("advC") >= role:getAdvHangLimit() then return end -- 是否有体力
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
165
  	if not checkFormat(role, format, role:getAdvData():isRunning()) then return end --编队是否正确
09be9059   zhouhaihai   冒险接口
166
167
168
169
170
171
172
173
174
175
176
  
  	local battleV = 0
  	for _, heroId in pairs(format.heros) do
  		local hero = role.heros[heroId]
  		battleV = battleV + hero:getProperty("battleV")
  	end
  	if battleV < chapterData.idleValue then return end -- 战斗力是否满足
  
  	local info = {}
  	info.format = {}
  	info.format.leader = format.leader
bfd33de5   zhouhaihai   队长技
177
  	info.format.leader2 = format.leader2
09be9059   zhouhaihai   冒险接口
178
179
180
181
182
183
  	info.format.heros  = {}
  	for slot, heroId in pairs(format.heros) do
  		info.format.heros[slot] = heroId
  	end
  	info.time = skynet.timex() + chapterData.idleTime --挂机时间
  
c3d5fe54   zhouhaihai   无战斗状态挂机清掉战斗队伍
184
  	-- 没有在战斗  用team来挂机了  把team清掉
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
185
  	if not role:getAdvData():isRunning() then
c3d5fe54   zhouhaihai   无战斗状态挂机清掉战斗队伍
186
187
188
  		role:updateProperty({field = "advTeam", value = {}})
  	end
  
09be9059   zhouhaihai   冒险接口
189
190
191
  	role:changeUpdates({{type = "advHang", field = chapterId, value = info}})
  
  	role.dailyData:updateProperty({field = "advC", delta = 1})
53e8037e   zhouhaihai   任务
192
  	role:checkTaskEnter("AdvStart", {id = chapterId})
09be9059   zhouhaihai   冒险接口
193
194
195
196
  	SendPacket(actionCodes.Adv_startHangRpc, '')
  	return true
  end
  
5404ee7d   zhouhaihai   冒险挂机加速
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
  function _M.quickHangRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
  	local chapterId = msg.chapterId --关卡id
  	
  	local advHang = role:getProperty("advHang")
  	local info = advHang[chapterId]
  	if not info then return end 
  
  	local chapterData = csvdb["adv_chapterCsv"][chapterId]
  	if not chapterData then return end
  	
  	local reward, isFull
  	if skynet.timex() >= info.time then return end  -- 已经完成了
  
  	local cost = math.ceil((info.time - skynet.timex()) / chapterData.idleTime * chapterData.accelerate)
  
  	if not role:checkItemEnough({[ItemId.Diamond] = cost}) then return end
  	role:costItems({[ItemId.Diamond] = cost})
  	info.time = 0
  	role:changeUpdates({{type = "advHang", field = chapterId, value = info}})
  
  	SendPacket(actionCodes.Adv_quickHangRpc, '')
  	return true
  end
  
09be9059   zhouhaihai   冒险接口
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
  function _M.endHangRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
  	local chapterId = msg.chapterId --关卡id
  	local cancel = msg.cancel  --是否是取消
  	
  	local advHang = role:getProperty("advHang")
  	local info = advHang[chapterId]
  	if not info then return end 
  
  	local chapterData = csvdb["adv_chapterCsv"][chapterId]
  	if not chapterData then return end
  	
  	local reward, isFull
  	if skynet.timex() >= info.time then
  		reward = role:award(chapterData.idleReward)
  	else
  		if cancel then
  			if role.dailyData:getProperty("advC") <= 0 then 
  				isFull = true
  			else
  				role.dailyData:updateProperty({field = "advC", delta = -1})
  			end
  		else
46fac6f1   zhouahaihai   酱料
249
250
251
  			return
  		end
  	end
09be9059   zhouhaihai   冒险接口
252
253
254
255
256
257
258
259
260
261
262
263
  	
  	role:changeUpdates({{type = "advHang", field = chapterId, value = nil}})
  
  	SendPacket(actionCodes.Adv_endHangRpc, MsgPack.pack({reward = reward, isFull = isFull}))
  	return true
  end
  
  function _M.buyAdvCountRpc(agent , data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  	
  	local count = msg.count --购买次数
e38b9c49   zhouhaihai   无尽次数
264
265
266
  	local isEl = msg.isEl -- 是否是无尽模式
  	local cost
  	if isEl then
0e3ab88d   zhouhaihai   中继层
267
  		if math.illegalNum(count, 1, globalCsv.adv_endless_daily_buy_count - role.dailyData:getProperty("advElBC")) then return end
e38b9c49   zhouhaihai   无尽次数
268
269
  		cost = {[ItemId.Diamond] = count * globalCsv.adv_endless_daily_buy_cost}
  	else
0e3ab88d   zhouhaihai   中继层
270
  		if math.illegalNum(count, 1, globalCsv.adv_daily_buy_count - role.dailyData:getProperty("advBC")) then return end
e38b9c49   zhouhaihai   无尽次数
271
272
273
274
  		cost = {[ItemId.Diamond] = count * globalCsv.adv_daily_buy_cost}
  	end
  	
  	
09be9059   zhouhaihai   冒险接口
275
276
  	if not role:checkItemEnough(cost) then return end
  	role:costItems(cost)
e38b9c49   zhouhaihai   无尽次数
277
278
279
280
281
282
283
  	if isEl then
  		role.dailyData:updateProperty({field = "advElC", delta = -count})
  		role.dailyData:updateProperty({field = "advElBC", delta = count})
  	else
  		role.dailyData:updateProperty({field = "advC", delta = -count})
  		role.dailyData:updateProperty({field = "advBC", delta = count})
  	end
09be9059   zhouhaihai   冒险接口
284
285
  	
  	SendPacket(actionCodes.Adv_buyAdvCountRpc, '')
46fac6f1   zhouahaihai   酱料
286
287
288
  	return true
  end
  
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
289
290
291
292
  function _M.finishTaskRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
293
  	if not isCanContinue(role) then return end
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
294
295
296
297
298
299
300
  	local adv = role:getAdvData()
  	local taskId = msg.taskId  -- -1 则是主线任务
  	local status, reward
  	if taskId == -1 then
  		status, reward = adv:finishMTask()
  	else
  		status, reward = adv:finishTask(taskId)
b176d7d3   zhouhaihai   冒险成就
301
302
  		adv:checkAchievement(adv.AchievType.TaskLayer, 1, taskId)
  		adv:updateAchievement()
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
303
  	end
f99f48df   zhouhaihai   冒险任务
304
  	adv:updateTask()
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
305
  	if not status then return end
53e8037e   zhouhaihai   任务
306
  	role:checkTaskEnter("AdvOverTask", {id = taskId})
4faef572   zhouhaihai   冒险任务,冒险扫荡, 冒险中继
307
308
309
310
  	SendPacket(actionCodes.Adv_finishTaskRpc, MsgPack.pack({reward = reward}))
  	return true
  end
  
46fac6f1   zhouahaihai   酱料
311
312
313
314
315
  -- 点击地块(解锁)(触发事件)
  function _M.clickBlockRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
316
  	if not isCanContinue(role) then return end
46fac6f1   zhouahaihai   酱料
317
  	local adv = role:getAdvData()
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
318
  
ccbafe67   zhouhaihai   冒险神器和buff
319
  	if adv:isWaitChooseArtifact() then return end
8c4a6f4c   zhouhaihai   冒险增加错误返回
320
321
  	local status, errorCode = adv:clickBlock(msg.roomId, msg.blockId, msg)
  	if not status then return errorCode end
46fac6f1   zhouahaihai   酱料
322
323
324
325
326
327
328
329
330
  	SendPacket(actionCodes.Adv_clickBlockRpc, MsgPack.pack({events = adv:popBackEvents()}))
  	return true
  end
  
  --use item 使用背包道具
  function _M.useItemRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
25a376de   zhouhaihai   冒险使用道具
331
332
333
334
335
336
337
  	local itemId = msg.itemId -- 道具Id
  	local count = msg.count or 1 --数量
  	local target = msg.target -- {roomId = 1, blockId = 1} 选择的目标
  
  	local itemData = csvdb["adv_itemCsv"][itemId] 
  	if not itemData then return end
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
338
  	if not isCanContinue(role) then return end
46fac6f1   zhouahaihai   酱料
339
  	local adv = role:getAdvData()
ccbafe67   zhouhaihai   冒险神器和buff
340
  	if adv:isWaitChooseArtifact() then return end
25a376de   zhouhaihai   冒险使用道具
341
342
343
344
  	--重置数量 
  	if itemData["function"] == 0 or itemData["function"] == 2 then count = 1 end
  	if not adv:cost({[itemId] = count}, {}, true) then return true end
  
25a376de   zhouhaihai   冒险使用道具
345
346
347
  	--消耗
  	if itemData["function"] == 0 or itemData["function"] == 1 then 
  		adv:cost({[itemId] = count}, {})
85ded242   zhouhaihai   丰富返回事件
348
  		adv:backUse({[itemId] = count})
25a376de   zhouhaihai   冒险使用道具
349
350
  	end
  
db3c56ad   zhouhaihai   冒险相关
351
  	adv:checkAchievement(adv.AchievType.UseItem, count, itemId)
6dc482bb   zhouhaihai   中继层完成, 新增两个冒险物品使用效果
352
353
354
355
356
  
  	for i = 1, count do
  		adv:doActive(itemData.effect, target) -- target
  	end
  	
25a376de   zhouhaihai   冒险使用道具
357
358
359
  	adv:afterRound()
  	adv:saveDB()
  
46fac6f1   zhouahaihai   酱料
360
361
362
363
  	SendPacket(actionCodes.Adv_useItemRpc, MsgPack.pack({events = adv:popBackEvents()}))
  	return true
  end
  
42f2d1d3   suhongyang   战斗内技能序列逻辑
364
  --使用营养技能
d27ad5e0   suhongyang   使用营养技
365
  function _M.usePotionRpc(agent, data)
46fac6f1   zhouahaihai   酱料
366
367
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
4f0a5fae   zhouhaihai   营养剂
368
369
370
371
372
373
374
375
376
377
378
379
380
381
  	local potionId = msg.potionId -- 营养剂Id
  	local target = msg.target -- {roomId = 1, blockId = 1} 选择的目标
  	local potionLv = role.dinerData:getProperty("dishTree"):getv(potionId, 0)
  	if potionLv == 0 then return 1 end
  
  	local potionSet = csvdb["adv_potionCsv"][potionId]
  	if not potionSet then return 2 end
  
  	local potionData = potionSet[potionLv]
  	if not potionData then return 3 end
  
  	local potionBag = role:getProperty("potionBag")
  	local own = potionBag[potionId] or 0
  	if own <= 0 then return 4 end
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
382
383
  
  	if not isCanContinue(role) then return end
46fac6f1   zhouahaihai   酱料
384
  	local adv = role:getAdvData()
ccbafe67   zhouhaihai   冒险神器和buff
385
386
  	if adv:isWaitChooseArtifact() then return end
  
4f0a5fae   zhouhaihai   营养剂
387
  	local status = adv:doActive(potionData.effect, target) -- target
46fac6f1   zhouahaihai   酱料
388
  	if not status then return end
4f0a5fae   zhouhaihai   营养剂
389
390
391
  
  	potionBag[potionId] = own - 1
  	role:updateProperty({field = "potionBag", value = potionBag})
85ded242   zhouhaihai   丰富返回事件
392
  	adv:pushBackEvent(AdvBackEventType.Potion, {id = potionId})
4f0a5fae   zhouhaihai   营养剂
393
394
395
396
  	adv:afterRound()
  	adv:saveDB()
  	role:checkTaskEnter("AdvUsePotion")
  
d27ad5e0   suhongyang   使用营养技
397
  	SendPacket(actionCodes.Adv_usePotionRpc, MsgPack.pack({events = adv:popBackEvents()}))
46fac6f1   zhouahaihai   酱料
398
399
  	return true
  end
23d89d13   zhouahaihai   冒险 结构
400
  
ccbafe67   zhouhaihai   冒险神器和buff
401
402
403
404
  -- 选择神器
  function _M.chooseArtifactRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
ccbafe67   zhouhaihai   冒险神器和buff
405
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
406
407
408
  	if not isCanContinue(role) then return end
  
  	local adv = role:getAdvData()
ccbafe67   zhouhaihai   冒险神器和buff
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
  	if not msg.idx then return end
  	if not adv:isWaitChooseArtifact() then return end
  	local status = adv:chooseArtifact(msg.idx)
  	if not status then return end
  	adv:saveDB()
  
  	SendPacket(actionCodes.Adv_chooseArtifactRpc, '')
  	return true
  end
  
  -- 穿戴神器
  function _M.wearArtifactRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  	local slot = msg.slot
  	local id = msg.id
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
426
427
  	if not isCanContinue(role) then return end
  
ccbafe67   zhouhaihai   冒险神器和buff
428
429
  	local adv = role:getAdvData()
  
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
430
431
432
  	if math.illegalNum(slot, 1, 5) then return 1 end
  	if not adv:isHaveArtifact(id) then return 2 end
  	if adv:isWaitChooseArtifact() then return 3 end
ccbafe67   zhouhaihai   冒险神器和buff
433
434
  
  	local status = adv:wearArtifact(slot, id)
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
435
  	if not status then return 4 end
ccbafe67   zhouhaihai   冒险神器和buff
436
437
438
439
440
441
442
443
444
445
446
447
  	adv:saveDB()
  
  	SendPacket(actionCodes.Adv_wearArtifactRpc, '')
  	return true
  end
  
  -- 升级神器
  function _M.upArtifactRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  	local id = msg.id
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
448
449
  	if not isCanContinue(role) then return end
  
ccbafe67   zhouhaihai   冒险神器和buff
450
  	local adv = role:getAdvData()
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
451
  	if adv:isWaitChooseArtifact() then return 1 end
ccbafe67   zhouhaihai   冒险神器和buff
452
  	local curLevel = adv:isHaveArtifact(id)
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
453
454
455
456
  	if not curLevel then return 2 end
  	if not role:isArtifactOpen(id, adv:isEndless(), curLevel + 1) then return 3 end
  	local cost = csvdb["adv_artifactCsv"][id][curLevel].exp:toNumMap()
  	if not adv:cost(cost, {}, true) then return 4 end
ccbafe67   zhouhaihai   冒险神器和buff
457
458
  
  	local status = adv:artifactLevelUp(id)
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
459
  	if not status then return 5 end
ccbafe67   zhouhaihai   冒险神器和buff
460
  	adv:cost(cost, {})
85ded242   zhouhaihai   丰富返回事件
461
  	adv:backCost(cost)
ccbafe67   zhouhaihai   冒险神器和buff
462
463
464
465
466
467
468
  	if status == 1 then -- 现在穿着呢。更新下
  		adv:saveDB()
  	end
  	SendPacket(actionCodes.Adv_upArtifactRpc, '')
  	return true
  end
  
ec87b4a5   zhouahaihai   冒险 完善
469
470
471
472
  --退出
  function _M.exitAdvRpc(agent, data)
  	local role = agent.role
  	-- local msg = MsgPack.unpack(data)
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
473
474
  	if not isCanContinue(role) then return end
  
ec87b4a5   zhouahaihai   冒险 完善
475
476
477
478
479
480
  	local adv = role:getAdvData()
  	local status = adv:exit() -- target {roomId = 1, blockId = 1} 选择的目标
  	SendPacket(actionCodes.Adv_exitAdvRpc, MsgPack.pack({events = adv:popBackEvents()}))
  	return true
  end 
  
12f7b52c   zhouhaihai   冒险战斗
481
482
483
484
485
486
487
488
489
490
491
  --开始战斗
  function _M.startBattleRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
  	-- 校验一下信息
  	local roomId = msg.roomId
  	local blockId = msg.blockId
  	local monsterId = msg.monsterId
  	local enemyId = msg.enemyId
  	if not enemyId then return end
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
492
  	if not isCanContinue(role) then return end
12f7b52c   zhouhaihai   冒险战斗
493
494
  
  	local adv = role:getAdvData()
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
495
  
ccbafe67   zhouhaihai   冒险神器和buff
496
  	if adv:isWaitChooseArtifact() then return end
12f7b52c   zhouhaihai   冒险战斗
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
  	local enemy = adv.battle:getEnemyById(enemyId)
  
  	if enemy.monsterId ~= monsterId or enemy.roomId ~= roomId or enemy.blockId ~= blockId or enemy.lock or enemy.isDead then return end
  
  	local key = tostring(math.random())
  	adv.__battleCache = {
  		enemyId = enemyId,
  		key = key
  	}
  	SendPacket(actionCodes.Adv_startBattleRpc, MsgPack.pack({key = key}))
  	return true
  end
  
  -- 结束战斗
  function _M.endBattleRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  	local roomId = msg.roomId
  	local blockId = msg.blockId
  	local monsterId = msg.monsterId
  	local enemyId = msg.enemyId
  	local key =  msg.key
  	local player = msg.player
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
520
  	local bySkill = msg.bySkill --死于 技能
12f7b52c   zhouhaihai   冒险战斗
521
522
  
  	if not player or not player.hp or not player.sp or not enemyId or not key then return end
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
523
524
  	if not isCanContinue(role) then return end
  	
12f7b52c   zhouhaihai   冒险战斗
525
  	local adv = role:getAdvData()
ccbafe67   zhouhaihai   冒险神器和buff
526
  	if adv:isWaitChooseArtifact() then return end
12f7b52c   zhouhaihai   冒险战斗
527
528
529
530
531
532
533
534
  	-- 校验
  	if not adv.__battleCache then return end
  	if adv.__battleCache.enemyId ~= enemyId then return end
  	local enemy = adv.battle:getEnemyById(enemyId)
  	if enemy.monsterId ~= monsterId or enemy.roomId ~= roomId or enemy.blockId ~= blockId then return end
  	adv.__battleCache = nil
  
  	
d3da3368   zhouhaihai   冒险地图被动技, buff 神器
535
  	local status = adv:clickBlock(roomId, blockId, {player = player, bySkill = bySkill})
12f7b52c   zhouhaihai   冒险战斗
536
537
538
539
540
  	if not status then return end
  	SendPacket(actionCodes.Adv_endBattleRpc, MsgPack.pack({events = adv:popBackEvents()}))
  	return true
  end
  
bab30666   zhouhaihai   增加通用功能等级 字段
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
  function _M.workshopRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
  	local id = msg.id 
  	local count = msg.count or 1
  	local mergeData = csvdb["adv_mergeCsv"][id]
  	if not mergeData then return 1 end
  
  	if not role:isFuncOpen(FuncOpenType.AdvWS) or role:getFuncLv(FuncOpenType.AdvWS) < mergeData.unlock then return 2 end
  
  	local advWs = role.dailyData:getProperty("advWs")
  	if math.illegalNum(count, 1, mergeData.limit - (advWs[id] or 0)) then return 3 end
  
  	local cost = mergeData.formula:toNumMap()
  	for k, v in pairs(cost) do
  		cost[k] = v * count
  	end
  	if not role:checkItemEnough(cost) then return 4 end
  
  	role:costItems(cost)
  	advWs[id] = (advWs[id] or 0) + count
ad88ba14   zhouhaihai   工坊 bug
563
  	role.dailyData:updateProperty({field = "advWs", value = advWs})
bab30666   zhouhaihai   增加通用功能等级 字段
564
565
566
567
  	local reward = role:award({[id] = count})
  	SendPacket(actionCodes.Adv_workshopRpc, MsgPack.pack({reward = reward}))
  	return true
  end
12f7b52c   zhouhaihai   冒险战斗
568
  
f4c65591   zhouhaihai   抽奖
569
570
  function _M.wheelSurfRpc(agent, data)
  	local role = agent.role
81032a9c   zhouhaihai   抽奖
571
  	-- if not role:isFuncOpen(FuncOpenType.AdvWheelSurf) then return end -- 默认解锁
b176d7d3   zhouhaihai   冒险成就
572
  
81032a9c   zhouhaihai   抽奖
573
  	local msg = MsgPack.unpack(data)
f4c65591   zhouhaihai   抽奖
574
  
81032a9c   zhouhaihai   抽奖
575
576
  	local ptype = msg.ptype  -- 池子类型 1, 2
  	local ctype = msg.ctype  -- 抽取次数  1 1次,2 10次
f4c65591   zhouhaihai   抽奖
577
  
81032a9c   zhouhaihai   抽奖
578
579
580
581
582
  	local countPool = {
  		[1] = 1,
  		[2] = 10
  	}
  	local count = countPool[ctype]
8f5218e6   zhouhaihai   犯回错误区分
583
  	if not count then return 1 end
f4c65591   zhouhaihai   抽奖
584
  
6b5c9206   zhouhaihai   冒险资助升级属性奖励
585
  	if ptype == 2 and not role:isFuncOpen(FuncOpenType.AdvEndless) then
8f5218e6   zhouhaihai   犯回错误区分
586
  		return 2
6b5c9206   zhouhaihai   冒险资助升级属性奖励
587
  	end
f4c65591   zhouhaihai   抽奖
588
  
81032a9c   zhouhaihai   抽奖
589
  	local drawTypeData = csvdb["adv_wheelsurfCsv"][ptype]
8f5218e6   zhouhaihai   犯回错误区分
590
  	if not drawTypeData then return 3 end
6b5c9206   zhouhaihai   冒险资助升级属性奖励
591
  	local drawData = drawTypeData[role:getAdvWheelSurfLv(ptype)]
8f5218e6   zhouhaihai   犯回错误区分
592
  	if not drawData then return 4 end
f4c65591   zhouhaihai   抽奖
593
  
81032a9c   zhouhaihai   抽奖
594
  	local costs = drawData.cost:toNumMap()
9d0976a5   zhouhaihai   bug
595
  	for id, count_ in pairs(costs) do
81032a9c   zhouhaihai   抽奖
596
  		costs[id] = count_ * count
f4c65591   zhouhaihai   抽奖
597
598
  	end
  
8f5218e6   zhouhaihai   犯回错误区分
599
  	if not role:checkItemEnough(costs) then return 5 end
81032a9c   zhouhaihai   抽奖
600
  	role:costItems(costs)
6b5c9206   zhouhaihai   冒险资助升级属性奖励
601
  	role:addAdvLvExp(costs[ItemId.OldCoin] or 0)
764e5296   zhouhaihai   冒险抽奖保底
602
603
604
  	local advDrawB = role:getProperty("advDrawB")
  	advDrawB[ptype] = (advDrawB[ptype] or 0) + count
  	role:updateProperty({field = "advDrawB", value = advDrawB})
81032a9c   zhouhaihai   抽奖
605
606
607
608
609
610
611
612
613
614
615
  	-- 随机池子
  	local pool = drawData.weight:randWeight()
  	local reward = {}
  	local backReward = {}
  	for i = 1, count do
  		local gift = drawData["pool" .. pool]:randWeight(true)
  		reward[gift[1]] = (reward[gift[1]] or 0) + gift[2]
  		table.insert(backReward, gift)
  	end
  	role:award(reward)
  	SendPacket(actionCodes.Adv_wheelSurfRpc, MsgPack.pack({reward = backReward}))
f4c65591   zhouhaihai   抽奖
616
617
  	return true
  end
764e5296   zhouhaihai   冒险抽奖保底
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
  function _M.repayWheelSurfRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  
  	local ptype = msg.ptype
  
  	if ptype == 2 and not role:isFuncOpen(FuncOpenType.AdvEndless) then
  		return
  	end
  
  	local drawTypeData = csvdb["adv_wheelsurfCsv"][ptype]
  	if not drawTypeData then return end
  	local drawData = drawTypeData[role:getAdvWheelSurfLv(ptype)]
  	if not drawData then return end
  
  	local advDrawB = role:getProperty("advDrawB")
  	if (advDrawB[ptype] or 0) < globalCsv.adv_draw_back_cond then
  		return
  	end
  	advDrawB[ptype] = advDrawB[ptype] - globalCsv.adv_draw_back_cond
  	role:updateProperty({field = "advDrawB", value = advDrawB})
  	local gift = drawData["pool3"]:randWeight(true)
  	local reward = {[gift[1]] = gift[2]}
  	reward = role:award(reward)
  
  	SendPacket(actionCodes.Adv_repayWheelSurfRpc, MsgPack.pack({reward = reward}))
  	return true
  end
f4c65591   zhouhaihai   抽奖
646
  
b176d7d3   zhouhaihai   冒险成就
647
648
649
650
651
652
653
654
  function _M.finishAchievRpc(agent, data)
  	local role = agent.role
  	local msg = MsgPack.unpack(data)
  	-- local ctype = msg.ctype -- 领取类型 1 成就  2 pt累计奖励
  	local chapterId = msg.chapterId --章节id
  	local taskId = msg.taskId  -- 领取id
  
  	local adv = role:getAdvData()
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
655
  
b176d7d3   zhouhaihai   冒险成就
656
657
658
659
660
661
662
663
664
665
666
667
  	local status, reward
  	-- if ctype == 1 then
  	-- 	status = adv:finishAchievement(chapterId, taskId)
  	-- elseif ctype == 2 then
  		status, reward = adv:getAchievementReward(chapterId, taskId)
  	-- end
  	if not status then return end
  	adv:updateAchievement()
  	SendPacket(actionCodes.Adv_finishAchievRpc, MsgPack.pack({reward = reward}))
  	return true
  end
  
1b20cfdb   zhouhaihai   赛季更新完善 无尽冒险排行榜
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
  function _M.rankRpc(agent, data)
  	local role = agent.role
  
  	local list = {}
  	local ids = redisproxy:zrevrange(RANK_ADV, 0 , 99)
  	local redret = {}
  	if ids and next(ids) then
  		redret = redisproxy:pipelining(function (red)
  			for i = 1, #ids do
  				local roleId = ids[i]
  				table.insert(list, {roleId = tonumber(roleId)})
  				red:hget(RANK_ADV_INFO, roleId)
  			end
  		end)
  	end
  	for i = 1, #redret do
  		local player = MsgPack.unpack(redret[i])
  		player.format = nil
  		list[i].player = player
  	end
  	local redret = redisproxy:pipelining(function(red)
  		red:ZREVRANK(RANK_ADV, role:getProperty("id"))
  		red:zscore(RANK_ADV, role:getProperty("id"))
  	end)
  	local rank = redret[1]
  	if not rank then
  		rank = -1
  	else
  		rank = redret[1] + 1
  	end
  	local score = tonum(redret[2], 0)
  
  	SendPacket(actionCodes.Adv_rankRpc, MsgPack.pack({list = list, rank = rank, score = score}))
  	return true
  end
ae20365b   suhongyang   Revert "修改冒险战斗逻辑"
703
  
23d89d13   zhouahaihai   冒险 结构
704
  return _M