mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 20:19:35 +08:00
Add CreateRoom
This commit is contained in:
parent
4473d6b477
commit
aafe4f006a
@ -209,14 +209,14 @@ namespace Milimoe.FunGame.Server.Model
|
||||
if (username != null && email != null)
|
||||
{
|
||||
// 先检查账号是否重复
|
||||
SQLHelper.ExecuteDataSet(UserQuery.Select_DuplicateUsername(username), out SQLResult result);
|
||||
SQLHelper.ExecuteDataSet(UserQuery.Select_IsExistUsername(username), out SQLResult result);
|
||||
if (result == SQLResult.Success)
|
||||
{
|
||||
ServerHelper.WriteLine(SocketHelper.MakeClientName(ClientName, User) + " 账号已被注册");
|
||||
return Send(socket, type, RegInvokeType.DuplicateUserName);
|
||||
}
|
||||
// 检查邮箱是否重复
|
||||
SQLHelper.ExecuteDataSet(UserQuery.Select_DuplicateEmail(email), out result);
|
||||
SQLHelper.ExecuteDataSet(UserQuery.Select_IsExistEmail(email), out result);
|
||||
if (result == SQLResult.Success)
|
||||
{
|
||||
ServerHelper.WriteLine(SocketHelper.MakeClientName(ClientName, User) + " 邮箱已被注册");
|
||||
@ -324,6 +324,32 @@ namespace Milimoe.FunGame.Server.Model
|
||||
return Send(socket, type, Config.RoomList.GetRoomIDList());
|
||||
|
||||
case SocketMessageType.CreateRoom:
|
||||
msg = "-1";
|
||||
if (args != null)
|
||||
{
|
||||
string? roomtype_string = "";
|
||||
long userid = 0;
|
||||
string? password = "";
|
||||
if (args.Length > 0) roomtype_string = SocketObject.GetParam<string>(0);
|
||||
if (args.Length > 1) userid = SocketObject.GetParam<long>(1);
|
||||
if (args.Length > 2) password = SocketObject.GetParam<string>(2);
|
||||
if (!string.IsNullOrWhiteSpace(roomtype_string) && userid != 0)
|
||||
{
|
||||
RoomType roomtype = roomtype_string switch
|
||||
{
|
||||
GameMode.GameMode_Team => RoomType.Team,
|
||||
GameMode.GameMode_MixHasPass => RoomType.MixHasPass,
|
||||
GameMode.GameMode_TeamHasPass => RoomType.TeamHasPass,
|
||||
_ => RoomType.Mix,
|
||||
};
|
||||
string roomid = Verification.CreateVerifyCode(VerifyCodeType.MixVerifyCode, 7).ToUpper();
|
||||
SQLHelper.Execute(RoomQuery.Insert_CreateRoom(roomid, userid, roomtype, password ?? ""), out SQLResult result);
|
||||
if (result == SQLResult.Success)
|
||||
{
|
||||
msg = roomid;
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case SocketMessageType.QuitRoom:
|
||||
@ -498,7 +524,7 @@ namespace Milimoe.FunGame.Server.Model
|
||||
{
|
||||
// 每两小时触发一次SQL服务器的心跳查询,防止SQL服务器掉线
|
||||
Thread.Sleep(2 * 1000 * 3600);
|
||||
SQLHelper.ExecuteDataSet(UserQuery.Select_DuplicateUsername(UserName), out _);
|
||||
SQLHelper.ExecuteDataSet(UserQuery.Select_IsExistUsername(UserName), out _);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user