Blame view

src/actions/RoleAction.lua 6.13 KB
314bc5df   zhengshouren   提交服务器初始代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  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 httpc = require("http.httpc")
  
  local WAVE_HERO_NUMS = 150
  local WAVE_EQUIP_NUMS = 150
  
  local function validName(name)
  	name = string.upper(name)
  	local exist = redisproxy:exists(string_format("user:%s", name))
  	if exist then return "existed" end
  
  	local SERV = string_format("NAMED%d", math.random(1, 5))
  	local legal = skynet.call(SERV, "lua", "check", name)
  	return legal and "ok" or "illegal"
  end
  
  -- 随机玩家名
  local function randomRoleName()
  	-- 过滤已经存在的名字
  	local name
  	repeat
  		name = getRandomName()
  	until validName(name) == "ok"
  	return name
  end
  
  local function setRoleName(uid, roleId)
  	local result
  	local name
  	local dbName
  	repeat
  		name = randomRoleName()
  		dbName = string.upper(name)
  		result = redisproxy:setnx(string_format("user:%s", dbName), roleId)
  	until result == 1
  	redisproxy:set(string_format("uid:%s", uid), dbName)
  	return name
  end
  
  local _M = {}
  function _M.loginRpc( agent, data )
  	local msg = MsgPack.unpack(data)
  	local response = {}
be83d162   zhouahaihai   登陆成功。 增加数据结构修正功能
57
58
59
60
61
  	-- if msg.version ~= globalCsv.version then
  	-- 	response.result = "UPDATE_TIP"
  	-- 	SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(response))
  	-- 	return true
  	-- end
314bc5df   zhengshouren   提交服务器初始代码
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  
  	-- 1.
  	local roleId = redisproxy:get(string_format("user:%s", string.upper(msg.name)))
  	if not roleId then
  		response.result = "NOT_EXIST"
  		SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(response))
  		return true
  	end
  
  	roleId = tonumber(roleId)
  
  	--维护不能登录
  	local maintain = tonumber(redisproxy:hget("autoincrement_set", "maintain"))
  	if maintain and maintain > 0 then
0a07bdd9   zhouahaihai   角色升级 。gm
76
  		if tonumber(redisproxy:hget(string_format("role:%d", roleId), "ignoreMt")) ~= 1 then
314bc5df   zhengshouren   提交服务器初始代码
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  			response.result = "MAINTAIN_TIP"
  			SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(response))
  			return true
  		end
  	end
  
  	local now = skynet.timex()
  	local role = agent.role
  	-- 2
  	if not role then
  		local roleKey = string_format("role:%d", roleId)
  		if not redisproxy:exists(roleKey) then
  			response.result = "DB_ERROR"
  			SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(response))
  			return true
  		end
  		-- 2a
  		role = require("models.Role").new({key = roleKey})
  		role:load()
  		role:loadAll()
  	else
  		role:reloadWhenLogin()
  	end
  	
0a07bdd9   zhouahaihai   角色升级 。gm
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
  	if not msg.isGMlogin then
  		local banTime = role:getProperty("banTime")
  		if banTime > now then
  			response.result = "BAN_TIP"
  			response.banTime = banTime
  			response.banType = role:getProperty("banType")
  			response.roleId = roleId
  			SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(response))
  			return true
  		end
  		if banTime ~= 0 then
  			-- 清除封号状态
  			role:setBan(0)
  		end
  	end
314bc5df   zhengshouren   提交服务器初始代码
116
  	SERV_OPEN = redisproxy:hget("autoincrement_set", "server_start")
0a07bdd9   zhouahaihai   角色升级 。gm
117
  	local ltime = role:getProperty("ltime")
314bc5df   zhengshouren   提交服务器初始代码
118
  
be83d162   zhouahaihai   登陆成功。 增加数据结构修正功能
119
  	role:changeStructVersion() -- 数据结构 版本更新
314bc5df   zhengshouren   提交服务器初始代码
120
  
be83d162   zhouahaihai   登陆成功。 增加数据结构修正功能
121
  	-- 跨天登陆事件
0a07bdd9   zhouahaihai   角色升级 。gm
122
  	role:onCrossDay(now)
0a07bdd9   zhouahaihai   角色升级 。gm
123
124
  	role:setProperty("ltime", now)
  	
be9c9ca6   zhouahaihai   角色评论
125
126
127
128
129
  
  	for _, name in ipairs({"dailyData"}) do
  		response[name] = role[name]:data()
  	end
  
314bc5df   zhengshouren   提交服务器初始代码
130
131
132
133
  	response.role = role:data()
  	response.result = "SUCCESS"
  	response.serverTime = now
  
0a07bdd9   zhouahaihai   角色升级 。gm
134
135
136
137
138
139
140
  	local modules = {}
  
  	local heroIds = {}
  	for heroId, _ in pairs(role.heros) do
  		table.insert(heroIds, heroId)
  	end
  	local heroWave = math.ceil(#heroIds / WAVE_HERO_NUMS)
6947e382   zhouahaihai   好感度, 皮肤
141
  	if #heroIds <= 50 then
0a07bdd9   zhouahaihai   角色升级 。gm
142
143
144
145
146
147
148
149
150
151
152
153
  		heroWave = 0
  		table_insert(modules, "heros")
  	end
  
  	for _, name in ipairs(modules) do
  		response[name] = {}
  		for id, unit in pairs(role[name]) do
  			response[name][id] = unit:data()
  		end
  	end
  
  	response.wave = 1 + heroWave
314bc5df   zhengshouren   提交服务器初始代码
154
155
156
  
  	SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(response))
  
0a07bdd9   zhouahaihai   角色升级 。gm
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  	local heroIndex = 1
  	for index = 2, 1 + heroWave do
  		local heroResponse = {heros = {}}
  		for i = heroIndex, heroIndex + WAVE_HERO_NUMS do
  			local heroId = heroIds[i]
  			if not heroId then
  				break
  			end
  			local hero = role.heros[heroId]
  			table_insert(heroResponse.heros, hero:data())
  			heroIndex = heroIndex + 1
  		end
  		heroResponse.heroWave = index
  		SendPacket(actionCodes.Role_loginRpc, MsgPack.pack(heroResponse))
  	end
314bc5df   zhengshouren   提交服务器初始代码
172
173
174
175
176
177
178
179
180
  
  	-- role:log("login", { ip = agent.ip, diamond = role:getProperty("diamond"), reDiamond = role:getProperty("reDiamond")})
  
  	datacenter.set("agent", roleId, {
  		serv = skynet.self(),
  		fd = agent.client_fd,
  		gate_serv = agent.gate_serv,
  	})
  	agent.role = role
314bc5df   zhengshouren   提交服务器初始代码
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
  	
  	start_agent_timer()
  	-- 注册全服广播
  	local channel = math.randomInt(1, 1)
  	local w_channel = datacenter.get( ("MC_W_CHANNEL" .. channel) )
  	if w_channel then
  		mcast_util.sub_world(w_channel)
  	end
  	return true
  end
  
  function _M.createRpc(agent, data)
  	local msg = MsgPack.unpack(data)
  	local response = {}
  
  	-- 再次检查uid
  	local uid = tostring(msg.uid)
  	local user = redisproxy:get(string_format("uid:%s", uid))
  	if user then
  		response.result = "SUCCESS"
  		response.roleName = user
  		SendPacket(actionCodes.Role_createRpc, MsgPack.pack(response))
  		return true
  	end
  
  	local roleId = getNextRoleId()
  	if not roleId then
  		response.result = "DB_FULL"
  		SendPacket(actionCodes.Role_createRpc, MsgPack.pack(response))
  		return true
  	end
  	local roleName = setRoleName(msg.uid, roleId)
314bc5df   zhengshouren   提交服务器初始代码
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
  	local newRole = require("models.Role").new({
  		key = string_format("role:%d", roleId),
  		id = roleId,
  		uid = tostring(msg.uid),
  		subId = msg.subId or 0,
  		name = roleName,
  		uname = msg.uname or "",
  		device = tostring(msg.device)
  	})
  
  	if newRole:create() then
  		--更新USER表
  		response.result = "SUCCESS"
  		response.roleId = roleId
  		response.roleName = string.upper(roleName)
  	else
  		response.result = "DB_ERROR"
  		SendPacket(actionCodes.Role_createRpc, MsgPack.pack(response))
  		return true
  	end
  
314bc5df   zhengshouren   提交服务器初始代码
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
  	-- 欢迎邮件
  	-- redisproxy:insertEmail({roleId = roleId, emailId = 1})
  	-- redisproxy:insertEmail({roleId = roleId, emailId = 2})
  
  	newRole:log("create", { ip = agent.ip, ucode = ucode})
  
  	SendPacket(actionCodes.Role_createRpc, MsgPack.pack(response))
  	return true
  end
  
  function _M.syncTimeRpc(agent, data)
  	SendPacket(actionCodes.Role_syncTimeRpc, MsgPack.pack({nowTime = skynet.timex()}))
  	return true
  end
  
  return _M