Exemple #1
0
def handle(userToken, packetData):
    try:
        # get usertoken data
        userID = userToken.userID

        # Read packet data
        packetData = clientPackets.createMatch(packetData)

        # Create a match object
        # TODO: Player number check
        matchID = glob.matches.createMatch(packetData["matchName"],
                                           packetData["matchPassword"],
                                           packetData["beatmapID"],
                                           packetData["beatmapName"],
                                           packetData["beatmapMD5"],
                                           packetData["gameMode"], userID)

        # Make sure the match has been created
        if matchID not in glob.matches.matches:
            raise exceptions.matchCreateError()

        with glob.matches.matches[matchID] as match:
            # Join that match
            userToken.joinMatch(matchID)

            # Give host to match creator
            match.setHost(userID)
            match.sendUpdates()
            match.changePassword(packetData["matchPassword"])
    except exceptions.matchCreateError:
        log.error("Error while creating match!")
Exemple #2
0
def handle(userToken, packetData):
    try:
        # get usertoken data
        userID = userToken.userID

        # Read packet data
        packetData = clientPackets.createMatch(packetData)

        # Make sure the name is valid
        matchName = packetData["matchName"].strip()
        if not matchName:
            raise exceptions.matchCreateError()

        # Create a match object
        # TODO: Player number check
        matchID = glob.matches.createMatch(matchName,
                                           packetData["matchPassword"].strip(),
                                           packetData["beatmapID"],
                                           packetData["beatmapName"],
                                           packetData["beatmapMD5"],
                                           packetData["gameMode"],
                                           userID,
                                           creatorUserID=userID)

        # Make sure the match has been created
        if matchID not in glob.matches.matches:
            raise exceptions.matchCreateError()

        with glob.matches.matches[matchID] as match:
            # Join that match
            userToken.joinMatch(matchID)

            # Multiplayer Room Patch
            for i in range(0, 16):
                if match.slots[i].status is not 4:
                    match.slots[i].status = packetData["slot{}Status".format(
                        i)]

            # Give host to match creator
            match.setHost(userID)
            match.sendUpdates()
            match.changePassword(packetData["matchPassword"])
    except exceptions.matchCreateError:
        log.error("Error while creating match!")
        userToken.enqueue(serverPackets.matchJoinFail())