2020-08-27 13:09:35 +01:00
|
|
|
const osu = require("osu-packet"),
|
|
|
|
getUserById = require("./util/getUserById.js"),
|
|
|
|
StatusUpdate = require("./Packets/StatusUpdate.js");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
userEnterLobby:function(currentUser) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// If the user is currently already in a match force them to leave
|
2020-08-27 13:09:35 +01:00
|
|
|
if (currentUser.currentMatch != null) {
|
|
|
|
this.leaveMatch(currentUser);
|
|
|
|
currentUser.currentMatch = null;
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Add user to the stream for the lobby
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.addUserToStream("multiplayer_lobby", currentUser.id);
|
|
|
|
|
|
|
|
const osuPacketWriter1 = new osu.Bancho.Writer;
|
2020-11-03 02:08:57 +00:00
|
|
|
let userIds = [];
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Add the ID of every user connected to the server to an array
|
|
|
|
for (let i = 0; i < global.users.length; i++) {
|
|
|
|
userIds.push(global.users[i].id);
|
|
|
|
}
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send all user ids back to the client
|
|
|
|
osuPacketWriter1.UserPresenceBundle(userIds);
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send user ids to all users in the lobby
|
|
|
|
global.StreamsHandler.sendToStream("multiplayer_lobby", osuPacketWriter1.toBuffer, null);
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all matches
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < global.matches.length; i++) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all the users in this match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i1 = 0; i1 < global.matches[i][1].slots.length; i1++) {
|
|
|
|
const slot = global.matches[i][1].slots[i1];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure there is a player / the slot is not locked
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId == -1 || slot.status == 2) continue;
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Get user in this slot
|
2020-08-27 13:09:35 +01:00
|
|
|
const User = getUserById(slot.playerId);
|
|
|
|
|
|
|
|
// Get user score info from the database
|
2020-09-07 19:23:06 +01:00
|
|
|
const userScoreDB = global.DatabaseHelper.getFromDB(`SELECT * FROM users_modes_info WHERE user_id = ${User.id} AND mode_id = ${User.playMode} LIMIT 1`);
|
2020-08-27 13:09:35 +01:00
|
|
|
|
|
|
|
let UserStatusObject = {
|
|
|
|
userId: User.id,
|
|
|
|
status: User.actionID,
|
|
|
|
statusText: User.actionText,
|
|
|
|
beatmapChecksum: User.beatmapChecksum,
|
|
|
|
currentMods: User.currentMods,
|
|
|
|
playMode: User.playMode,
|
|
|
|
beatmapId: User.beatmapID,
|
|
|
|
rankedScore: userScoreDB.ranked_score,
|
|
|
|
accuracy: userScoreDB.avg_accuracy / 100, // Scale of 0 to 1
|
|
|
|
playCount: userScoreDB.playcount,
|
|
|
|
totalScore: userScoreDB.total_score,
|
2020-11-03 02:08:57 +00:00
|
|
|
rank: User.rank,
|
2020-08-27 13:09:35 +01:00
|
|
|
performance: userScoreDB.pp_raw
|
|
|
|
};
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send user status back for client display
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter.HandleOsuUpdate(UserStatusObject);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send this data back to every user in the lobby
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream("multiplayer_lobby", osuPacketWriter.toBuffer, null);
|
|
|
|
}
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// List the match on the client
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter.MatchNew(global.matches[i][1]);
|
|
|
|
|
|
|
|
currentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
|
|
|
}
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
2020-11-03 02:08:57 +00:00
|
|
|
|
|
|
|
// Add the user to the #lobby channel
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter.ChannelJoinSuccess("#lobby");
|
|
|
|
if (!global.StreamsHandler.isUserInStream("#lobby", currentUser.id))
|
|
|
|
global.StreamsHandler.addUserToStream("#lobby", currentUser.id);
|
|
|
|
|
|
|
|
currentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
|
|
|
},
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
userLeaveLobby:function(currentUser) {
|
|
|
|
// Remove user from the stream for the multiplayer lobby if they are a part of it
|
|
|
|
if (global.StreamsHandler.isUserInStream("multiplayer_lobby", currentUser.id))
|
|
|
|
global.StreamsHandler.removeUserFromStream("multiplayer_lobby", currentUser.id);
|
|
|
|
},
|
|
|
|
|
2020-08-27 13:09:35 +01:00
|
|
|
updateMatchListing:function() {
|
|
|
|
const osuPacketWriter1 = new osu.Bancho.Writer;
|
|
|
|
let userIds = [];
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Add the ID of every user connected to the server to an array
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < global.users.length; i++) {
|
|
|
|
userIds.push(global.users[i].id);
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send all user ids back to the client
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter1.UserPresenceBundle(userIds);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send user ids to all users in the lobby
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream("multiplayer_lobby", osuPacketWriter1.toBuffer, null);
|
2020-11-03 02:08:57 +00:00
|
|
|
// List through all matches
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < global.matches.length; i++) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// List through all users in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i1 = 0; i1 < global.matches[i][1].slots.length; i1++) {
|
|
|
|
const slot = global.matches[i][1].slots[i1];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the slot has a user in it / isn't locked
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId == -1 || slot.status == 2) continue;
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Get the user in this slot
|
2020-08-27 13:09:35 +01:00
|
|
|
const User = getUserById(slot.playerId);
|
|
|
|
|
|
|
|
// Get user score info from the database
|
2020-09-07 19:23:06 +01:00
|
|
|
const userScoreDB = global.DatabaseHelper.getFromDB(`SELECT * FROM users_modes_info WHERE user_id = ${User.id} AND mode_id = ${User.playMode} LIMIT 1`);
|
2020-08-27 13:09:35 +01:00
|
|
|
|
|
|
|
let UserStatusObject = {
|
|
|
|
userId: User.id,
|
|
|
|
status: User.actionID,
|
|
|
|
statusText: User.actionText,
|
|
|
|
beatmapChecksum: User.beatmapChecksum,
|
|
|
|
currentMods: User.currentMods,
|
|
|
|
playMode: User.playMode,
|
|
|
|
beatmapId: User.beatmapID,
|
|
|
|
rankedScore: userScoreDB.ranked_score,
|
|
|
|
accuracy: userScoreDB.avg_accuracy / 100, // Scale of 0 to 1
|
|
|
|
playCount: userScoreDB.playcount,
|
|
|
|
totalScore: userScoreDB.total_score,
|
2020-11-03 02:08:57 +00:00
|
|
|
rank: User.rank,
|
2020-08-27 13:09:35 +01:00
|
|
|
performance: userScoreDB.pp_raw
|
|
|
|
};
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send user status back for client display
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter.HandleOsuUpdate(UserStatusObject);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send this data back to every user in the lobby
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream("multiplayer_lobby", osuPacketWriter.toBuffer, null);
|
|
|
|
}
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// List the match on the client
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter.MatchNew(global.matches[i][1]);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send this data back to every user in the lobby
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream("multiplayer_lobby", osuPacketWriter.toBuffer, null);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
createMultiplayerMatch:function(currentUser, data) {
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// If there is no password instead set the password param to null
|
2020-08-27 13:09:35 +01:00
|
|
|
if (data.gamePassword == '') data.gamePassword == null;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Create a match with the data given by the creating client
|
2020-08-27 13:09:35 +01:00
|
|
|
let NewMatchObject = {
|
|
|
|
matchId: global.matches.length,
|
|
|
|
inProgress: false,
|
|
|
|
matchType: 0,
|
|
|
|
activeMods: 0,
|
|
|
|
gameName: data.gameName,
|
|
|
|
gamePassword: data.gamePassword,
|
|
|
|
beatmapName: data.beatmapName,
|
|
|
|
beatmapId: data.beatmapId,
|
|
|
|
beatmapChecksum: data.beatmapChecksum,
|
|
|
|
slots: data.slots,
|
|
|
|
host: currentUser.id,
|
|
|
|
playMode: 0,
|
|
|
|
matchScoringType: 0,
|
|
|
|
matchTeamType: 0,
|
|
|
|
specialModes: 0,
|
|
|
|
hidden: false,
|
|
|
|
seed: data.seed
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < NewMatchObject.slots.length; i++) {
|
|
|
|
let s = NewMatchObject.slots[i];
|
|
|
|
s.mods = 0;
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update the status of the current user
|
2020-08-27 13:09:35 +01:00
|
|
|
StatusUpdate(currentUser, currentUser.id);
|
|
|
|
osuPacketWriter.MatchNew(NewMatchObject);
|
|
|
|
|
|
|
|
// Queue match creation for user
|
|
|
|
currentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
|
|
|
|
|
|
|
global.StreamsHandler.addStream(`mp_${data.gameName.split(" ").join("-")}`, true, NewMatchObject.matchId);
|
|
|
|
|
|
|
|
global.matches.push([`mp_${data.gameName.split(" ").join("-")}`, NewMatchObject]);
|
|
|
|
|
|
|
|
this.updateMatchListing();
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Join the user to the newly created match
|
2020-08-27 13:09:35 +01:00
|
|
|
this.joinMultiplayerMatch(currentUser, {
|
|
|
|
matchId: NewMatchObject.matchId,
|
|
|
|
gamePassword: NewMatchObject.gamePassword
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
joinMultiplayerMatch:function(currentUser, data) {
|
|
|
|
try {
|
|
|
|
let osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
const osuPacketWriter1 = new osu.Bancho.Writer;
|
|
|
|
|
|
|
|
const streamName = global.matches[data.matchId][0];
|
|
|
|
const mpLobby = global.matches[data.matchId][1];
|
|
|
|
|
|
|
|
let full = true;
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots to find an empty one
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the slot doesn't have a player in it / the slot is locked
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId !== -1 || slot.status === 2) continue;
|
2020-11-03 02:08:57 +00:00
|
|
|
|
|
|
|
// Slot is empty and not locked, we can join the match!
|
2020-08-27 13:09:35 +01:00
|
|
|
full = false;
|
|
|
|
slot.playerId = currentUser.id;
|
|
|
|
currentUser.matchSlotId = i;
|
|
|
|
slot.status = 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter1.MatchUpdate(mpLobby);
|
|
|
|
osuPacketWriter.MatchJoinSuccess(mpLobby);
|
|
|
|
|
|
|
|
if (full) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform the client that they can't join the match
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
osuPacketWriter.MatchJoinFail();
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the user's current match to this match
|
2020-08-27 13:09:35 +01:00
|
|
|
currentUser.currentMatch = data.matchId;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Add user to the stream for the match
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.addUserToStream(streamName, currentUser.id);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all users in the match that a new user has joined
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(streamName, osuPacketWriter1.toBuffer, null);
|
|
|
|
|
|
|
|
osuPacketWriter.ChannelJoinSuccess("#multiplayer");
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform joining client they they have joined the match
|
2020-08-27 13:09:35 +01:00
|
|
|
currentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update the match listing for all users in the lobby since
|
|
|
|
// A user has joined a match
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
2020-08-27 13:09:35 +01:00
|
|
|
} catch (e) {
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
|
|
|
osuPacketWriter.MatchJoinFail();
|
|
|
|
|
|
|
|
currentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
|
|
|
|
|
|
|
this.updateMatchListing();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
setReadyState:function(currentUser, state) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// Get the match the user is in
|
2020-08-27 13:09:35 +01:00
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop though all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Check if the player in this slot is this user
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId == currentUser.id) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// Turn on or off the user's ready state
|
2020-08-27 13:09:35 +01:00
|
|
|
if (state) slot.status = 8;
|
|
|
|
else slot.status = 4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send this update to all users in the stream
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
sendMatchUpdate:function(currentUser) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update all users in the match with new match information
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
updateMatch:function(currentUser, data) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update match with new data
|
2020-08-27 13:09:35 +01:00
|
|
|
global.matches[currentUser.currentMatch][1] = data;
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(global.matches[currentUser.currentMatch][1]);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send this new match data to all users in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update the match listing in the lobby to reflect these changes
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
2020-08-27 13:09:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
moveToSlot:function(currentUser, data) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
|
|
|
let currentUserData, slotIndex;
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the user in this slot is the user we want
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId != currentUser.id) continue;
|
|
|
|
|
|
|
|
currentUserData = slot;
|
|
|
|
slotIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the new slot's data to the user's old slot data
|
2020-08-27 13:09:35 +01:00
|
|
|
mpLobby.slots[data].playerId = currentUserData.playerId;
|
|
|
|
currentUser.matchSlotId = data;
|
|
|
|
mpLobby.slots[data].status = currentUserData.status;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the old slot's data to open
|
2020-08-27 13:09:35 +01:00
|
|
|
mpLobby.slots[slotIndex].playerId = -1;
|
|
|
|
mpLobby.slots[slotIndex].status = 1;
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send this change to all users in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update the match listing in the lobby to reflect this change
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
2020-08-27 13:09:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
kickPlayer:function(currentUser, data) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the user attempting to kick / lock is the host of the match
|
2020-08-27 13:09:35 +01:00
|
|
|
if (mpLobby.host != currentUser.id) return;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Get the data of the slot at the index sent by the client
|
2020-08-27 13:09:35 +01:00
|
|
|
const slot = mpLobby.slots[data];
|
|
|
|
let cachedPlayerId = slot.playerId;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// If the slot is empty lock instead of kicking
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId === -1) { // Slot is empty, lock it
|
|
|
|
if (slot.status === 1) slot.status = 2;
|
|
|
|
else slot.status = 1;
|
2020-11-03 02:08:57 +00:00
|
|
|
}
|
|
|
|
// The slot isn't empty, prepare to kick the player
|
|
|
|
else {
|
2020-08-27 13:09:35 +01:00
|
|
|
const kickedPlayer = getUserById(slot.playerId);
|
|
|
|
kickedPlayer.matchSlotId = -1;
|
|
|
|
slot.playerId = -1;
|
|
|
|
slot.status = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all users in the match of the change
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update the match listing in the lobby listing to reflect this change
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
|
|
|
|
2020-08-27 13:09:35 +01:00
|
|
|
if (cachedPlayerId !== null || cachedPlayerId !== -1) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// Remove the kicked user from the match stream
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.removeUserFromStream(global.matches[currentUser.currentMatch][0], cachedPlayerId);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
matchSkip:function(currentUser) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
|
|
|
|
if (global.matches[currentUser.currentMatch][2] == null) {
|
|
|
|
global.matches[currentUser.currentMatch][2] = [];
|
|
|
|
|
|
|
|
const skippedSlots = global.matches[currentUser.currentMatch][2];
|
|
|
|
|
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
|
|
|
// Make sure the slot has a user in it
|
|
|
|
if (slot.playerId === -1 || slot.status === 1 || slot.status === 2) continue;
|
|
|
|
|
|
|
|
// Add the slot's user to the loaded checking array
|
|
|
|
skippedSlots.push({playerId: slot.playerId, skipped: false});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const skippedSlots = global.matches[currentUser.currentMatch][2];
|
|
|
|
|
|
|
|
for (let i = 0; i < skippedSlots.length; i++) {
|
|
|
|
// If loadslot belongs to this user then set loaded to true
|
|
|
|
if (skippedSlots[i].playerId == currentUser.id) {
|
|
|
|
skippedSlots[i].skipped = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let allSkipped = true;
|
|
|
|
for (let i = 0; i < skippedSlots.length; i++) {
|
|
|
|
if (skippedSlots[i].skipped) continue;
|
|
|
|
|
|
|
|
// A user hasn't finished playing
|
|
|
|
allSkipped = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All players have finished playing, finish the match
|
|
|
|
if (allSkipped) {
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
osuPacketWriter.MatchPlayerSkipped(currentUser.id);
|
|
|
|
osuPacketWriter.MatchSkip();
|
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
|
|
|
|
global.matches[currentUser.currentMatch][2] = null;
|
|
|
|
} else {
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
osuPacketWriter.MatchPlayerSkipped(currentUser.id);
|
|
|
|
|
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-08-27 13:09:35 +01:00
|
|
|
missingBeatmap:function(currentUser, state) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the user in the slot is the user we want to update
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId != currentUser.id) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// If the user is missing the beatmap set the status to reflect it
|
|
|
|
if (state) slot.status = 16;
|
|
|
|
// The user is not missing the beatmap, set the status to normal
|
|
|
|
else slot.status = 4;
|
2020-08-27 13:09:35 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all users in the match of this change
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
transferHost:function(currentUser, data) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Get the information of the user that the host is being transfered to
|
2020-08-27 13:09:35 +01:00
|
|
|
const newUser = getUserById(mpLobby.slots[data].playerId);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the lobby's host to the new user
|
2020-08-27 13:09:35 +01:00
|
|
|
mpLobby.host = newUser.id;
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all clients in the match of the change
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
},
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// TODO: Allow freemod to work
|
|
|
|
updateMods(currentUser, data) {
|
|
|
|
// Make sure the person updating mods is the host of the match
|
|
|
|
// TODO: Add a check here for is freemod is enabled
|
|
|
|
console.log(global.matches[currentUser.currentMatch][1]);
|
|
|
|
console.log(data);
|
|
|
|
if (Object.keys(global.matches[currentUser.currentMatch][1].slots[0]).includes("mods")) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
|
|
|
if (slot.playerId === currentUser.id) {
|
|
|
|
slot.mods = data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
osuPacketWriter.MatchUpdate(global.matches[currentUser.currentMatch][1]);
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
} else {
|
|
|
|
if (global.matches[currentUser.currentMatch][1].host !== currentUser.id) return;
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Change the matches mods to these new mods
|
|
|
|
// TODO: Do this per user if freemod is enabled
|
|
|
|
global.matches[currentUser.currentMatch][1].activeMods = data;
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
osuPacketWriter.MatchUpdate(global.matches[currentUser.currentMatch][1]);
|
|
|
|
|
|
|
|
// Inform all users in the match of the change
|
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update match listing in the lobby to reflect this change
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
2020-08-27 13:09:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
startMatch(currentUser) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the match is not already in progress
|
|
|
|
// The client sometimes double fires the start packet
|
2020-08-27 13:09:35 +01:00
|
|
|
if (mpLobby.inProgress) return;
|
|
|
|
mpLobby.inProgress = true;
|
2020-11-03 02:08:57 +00:00
|
|
|
// Create array for monitoring users until they are ready to play
|
2020-08-27 13:09:35 +01:00
|
|
|
global.matches[currentUser.currentMatch][2] = [];
|
|
|
|
const loadedSlots = global.matches[currentUser.currentMatch][2];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the slot has a user in it
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId === -1 || slot.status === 1 || slot.status === 2) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Add the slot's user to the loaded checking array
|
2020-08-27 13:09:35 +01:00
|
|
|
loadedSlots.push({playerId: slot.playerId, loaded: false});
|
|
|
|
}
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the slot has a user in it
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId === -1 || slot.status === 1 || slot.status === 2) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the user's status to playing
|
2020-08-27 13:09:35 +01:00
|
|
|
slot.status = 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter.MatchStart(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all users in the match that it has started
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update all users in the match with new info
|
2020-08-27 13:09:35 +01:00
|
|
|
this.sendMatchUpdate(currentUser);
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update match listing in lobby to show the game is in progress
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
2020-08-27 13:09:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
setPlayerLoaded:function(currentUser) {
|
|
|
|
const loadedSlots = global.matches[currentUser.currentMatch][2];
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all user load check items
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < loadedSlots.length; i++) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// If loadslot belongs to this user then set loaded to true
|
2020-08-27 13:09:35 +01:00
|
|
|
if (loadedSlots[i].playerId == currentUser.id) {
|
|
|
|
loadedSlots[i].loaded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all loaded slots and check if all users are loaded
|
2020-08-27 13:09:35 +01:00
|
|
|
let allLoaded = true;
|
|
|
|
for (let i = 0; i < loadedSlots.length; i++) {
|
|
|
|
if (loadedSlots[i].loaded) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// A user wasn't loaded, keep waiting.
|
2020-08-27 13:09:35 +01:00
|
|
|
allLoaded = false;
|
2020-11-03 02:08:57 +00:00
|
|
|
break;
|
2020-08-27 13:09:35 +01:00
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// All players have loaded the beatmap, start playing.
|
2020-08-27 13:09:35 +01:00
|
|
|
if (allLoaded) {
|
|
|
|
let osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
osuPacketWriter.MatchAllPlayersLoaded();
|
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Blank out user loading array
|
2020-08-27 13:09:35 +01:00
|
|
|
global.matches[currentUser.currentMatch][2] = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onPlayerFinishMatch:function(currentUser) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
2020-11-03 02:08:57 +00:00
|
|
|
// If user loading slots do not exist
|
2020-08-27 13:09:35 +01:00
|
|
|
if (global.matches[currentUser.currentMatch][2] == null) {
|
|
|
|
global.matches[currentUser.currentMatch][2] = [];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Repopulate user loading slots again
|
2020-08-27 13:09:35 +01:00
|
|
|
const loadedSlots = global.matches[currentUser.currentMatch][2];
|
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the slot has a user
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId === -1 || slot.status === 1 || slot.status === 2) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Populate user loading slots with this user's id and load status
|
2020-08-27 13:09:35 +01:00
|
|
|
loadedSlots.push({playerId: slot.playerId, loaded: false});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const loadedSlots = global.matches[currentUser.currentMatch][2];
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all loaded slots to make sure all users have finished playing
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < loadedSlots.length; i++) {
|
|
|
|
if (loadedSlots[i].playerId == currentUser.id) {
|
|
|
|
loadedSlots[i].loaded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let allLoaded = true;
|
|
|
|
for (let i = 0; i < loadedSlots.length; i++) {
|
|
|
|
if (loadedSlots[i].loaded) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// A user hasn't finished playing
|
2020-08-27 13:09:35 +01:00
|
|
|
allLoaded = false;
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// All players have finished playing, finish the match
|
2020-08-27 13:09:35 +01:00
|
|
|
if (allLoaded) this.finishMatch(currentUser);
|
|
|
|
},
|
|
|
|
|
|
|
|
finishMatch:function(currentUser) {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
|
|
|
if (!mpLobby.inProgress) return;
|
|
|
|
global.matches[currentUser.currentMatch][2] = [];
|
|
|
|
mpLobby.inProgress = false;
|
|
|
|
let osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the slot has a user
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId === -1 || slot.status === 1 || slot.status === 2) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the user's status back to normal from playing
|
2020-08-27 13:09:35 +01:00
|
|
|
slot.status = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter.MatchComplete();
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all users in the match that it is complete
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update all users in the match with new info
|
2020-08-27 13:09:35 +01:00
|
|
|
this.sendMatchUpdate(currentUser);
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update match info in the lobby to reflect that the match has finished
|
2020-09-02 10:15:41 +01:00
|
|
|
this.updateMatchListing();
|
2020-08-27 13:09:35 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
updatePlayerScore:function(currentUser, data) {
|
|
|
|
const osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the user's slot ID is not invalid
|
|
|
|
if (currentUser.matchSlotId == -1) return;
|
2020-08-27 13:09:35 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Get the user's current slotID and append it to the givien data, just incase.
|
2020-08-27 13:09:35 +01:00
|
|
|
data.id = currentUser.matchSlotId;
|
|
|
|
|
|
|
|
osuPacketWriter.MatchScoreUpdate(data);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Send the newly updated score to all users in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
leaveMatch:function(currentUser) {
|
|
|
|
try {
|
|
|
|
const mpLobby = global.matches[currentUser.currentMatch][1];
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
let userInMatch = false;
|
|
|
|
// Loop through all slots in the match
|
2020-09-02 10:15:41 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Check if the user is in this slot
|
2020-09-02 10:15:41 +01:00
|
|
|
if (slot.playerId == currentUser.id) {
|
2020-11-03 02:08:57 +00:00
|
|
|
userInMatch = true;
|
2020-09-02 10:15:41 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we don't run more than once
|
2020-11-03 02:08:57 +00:00
|
|
|
// Again, client double firing packets.
|
|
|
|
if (!userInMatch) return;
|
2020-09-02 10:15:41 +01:00
|
|
|
|
2020-08-27 13:09:35 +01:00
|
|
|
let osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all slots in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Make sure the user is in this slot
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId != currentUser.id) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Set the slot's status to avaliable
|
2020-08-27 13:09:35 +01:00
|
|
|
slot.playerId = -1;
|
|
|
|
slot.status = 1;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
osuPacketWriter.MatchUpdate(mpLobby);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Remove the leaving user from the match's stream
|
2020-09-02 10:15:41 +01:00
|
|
|
global.StreamsHandler.removeUserFromStream(global.matches[currentUser.currentMatch][0], currentUser.id);
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Inform all users in the match that the leaving user has left
|
2020-08-27 13:09:35 +01:00
|
|
|
global.StreamsHandler.sendToStream(global.matches[currentUser.currentMatch][0], osuPacketWriter.toBuffer, null);
|
|
|
|
|
|
|
|
osuPacketWriter = new osu.Bancho.Writer;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// Remove user from the multiplayer channel for the match
|
2020-08-27 13:09:35 +01:00
|
|
|
osuPacketWriter.ChannelRevoked("#multiplayer");
|
|
|
|
|
|
|
|
currentUser.addActionToQueue(osuPacketWriter.toBuffer);
|
|
|
|
|
|
|
|
let empty = true;
|
2020-11-03 02:08:57 +00:00
|
|
|
// Check if the match is empty
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < mpLobby.slots.length; i++) {
|
|
|
|
const slot = mpLobby.slots[i];
|
2020-11-03 02:08:57 +00:00
|
|
|
// Check if the slot is avaliable
|
2020-08-27 13:09:35 +01:00
|
|
|
if (slot.playerId === -1) continue;
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// There is a user in the match
|
2020-08-27 13:09:35 +01:00
|
|
|
empty = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-11-03 02:08:57 +00:00
|
|
|
// The match is empty, proceed to remove it.
|
2020-08-27 13:09:35 +01:00
|
|
|
if (empty) {
|
|
|
|
let matchIndex;
|
2020-11-03 02:08:57 +00:00
|
|
|
// Loop through all matches
|
2020-08-27 13:09:35 +01:00
|
|
|
for (let i = 0; i < global.matches.length; i++) {
|
2020-11-03 02:08:57 +00:00
|
|
|
// If the match matches the match the user has left
|
2020-08-27 13:09:35 +01:00
|
|
|
if (global.matches[i][0] == global.matches[currentUser.currentMatch][0]) {
|
|
|
|
matchIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we got a match index
|
|
|
|
if (matchIndex == null) return;
|
|
|
|
|
2020-09-02 10:15:41 +01:00
|
|
|
// Remove this match from the list of active matches
|
2020-08-27 13:09:35 +01:00
|
|
|
global.matches.splice(matchIndex, 1);
|
|
|
|
}
|
|
|
|
} catch (e) { }
|
2020-11-03 02:08:57 +00:00
|
|
|
// Update the match listing to reflect this change (either removal or user leaving)
|
2020-08-27 13:09:35 +01:00
|
|
|
this.updateMatchListing();
|
|
|
|
|
2020-09-02 10:15:41 +01:00
|
|
|
// Delay a 2nd match listing update
|
2020-08-27 13:09:35 +01:00
|
|
|
setTimeout(() => {
|
|
|
|
this.updateMatchListing();
|
2020-09-02 10:15:41 +01:00
|
|
|
}, 1000);
|
2020-08-27 13:09:35 +01:00
|
|
|
}
|
|
|
|
}
|