Added CreateParty message.

This commit is contained in:
Daan Vanden Bosch 2021-08-12 20:30:53 +02:00
parent 5af76bac7c
commit 74938bb253
6 changed files with 25 additions and 5 deletions

View File

@ -10,7 +10,8 @@ class AccountData(
private var loggedIn: Boolean, private var loggedIn: Boolean,
) { ) {
/** /**
* All access to this class' properties must synchronize on this lock. * All operations on this object must synchronize on this lock. All exposed data must be deeply
* immutable and represent a consistent snapshot of the object's state at the time of retrieval.
*/ */
private val lock = Any() private val lock = Any()
private var _account = account private var _account = account

View File

@ -4,7 +4,7 @@ import mu.KLogger
class AccountStore(private val logger: KLogger) { class AccountStore(private val logger: KLogger) {
/** /**
* All access to this class' properties must synchronize on this lock. * All operations on this object must synchronize on this lock.
*/ */
private val lock = Any() private val lock = Any()
private var nextId: Long = 1L private var nextId: Long = 1L
@ -49,7 +49,7 @@ class AccountStore(private val logger: KLogger) {
fun getPlayingAccountsForBlock(blockId: Int): List<PlayingAccount> = fun getPlayingAccountsForBlock(blockId: Int): List<PlayingAccount> =
synchronized(lock) { synchronized(lock) {
idToAccountData.values.asSequence() idToAccountData.values.asSequence()
.mapNotNull { it.playing } .mapNotNull { it.playing } // Map before filtering to avoid race condition.
.filter { it.blockId == blockId } .filter { it.blockId == blockId }
.toList() .toList()
} }

View File

@ -38,6 +38,7 @@ object BbMessageDescriptor : MessageDescriptor<BbMessage> {
0x0093 -> BbMessage.Authenticate(buffer) 0x0093 -> BbMessage.Authenticate(buffer)
0x0095 -> BbMessage.GetCharData(buffer) 0x0095 -> BbMessage.GetCharData(buffer)
0x00A0 -> BbMessage.ShipList(buffer) 0x00A0 -> BbMessage.ShipList(buffer)
0x00C1 -> BbMessage.CreateParty(buffer)
0x01DC -> BbMessage.GuildCardHeader(buffer) 0x01DC -> BbMessage.GuildCardHeader(buffer)
0x02DC -> BbMessage.GuildCardChunk(buffer) 0x02DC -> BbMessage.GuildCardChunk(buffer)
0x03DC -> BbMessage.GetGuildCardChunk(buffer) 0x03DC -> BbMessage.GetGuildCardChunk(buffer)
@ -275,6 +276,9 @@ sealed class BbMessage(override val buffer: Buffer) : AbstractMessage(BB_HEADER_
) )
} }
// 0x00C1
class CreateParty(buffer: Buffer) : BbMessage(buffer)
// 0x01DC // 0x01DC
class GuildCardHeader(buffer: Buffer) : BbMessage(buffer) { class GuildCardHeader(buffer: Buffer) : BbMessage(buffer) {
val guildCardSize: Int get() = int(4) val guildCardSize: Int get() = int(4)

View File

@ -123,6 +123,10 @@ class BlockServer(
true true
} }
is BbMessage.CreateParty -> {
true
}
is BbMessage.Disconnect -> { is BbMessage.Disconnect -> {
// Log out and disconnect. // Log out and disconnect.
logOut() logOut()

View File

@ -58,6 +58,8 @@ abstract class Server(
// Retry after timeout. // Retry after timeout.
continue continue
} catch (e: InterruptedException) { } catch (e: InterruptedException) {
Thread.currentThread().interrupt()
logger.error(e) { logger.error(e) {
"Interrupted while trying to accept client connections on $bindPair, stopping." "Interrupted while trying to accept client connections on $bindPair, stopping."
} }

View File

@ -189,12 +189,18 @@ abstract class SocketHandler<MessageType : Message>(
} }
} }
} catch (e: InterruptedException) { } catch (e: InterruptedException) {
logger.error(e) { "Interrupted while listening to $name ($sockName), closing connection." } Thread.currentThread().interrupt()
logger.error(e) {
"Interrupted while listening to $name ($sockName), closing connection."
}
} catch (e: SocketException) { } catch (e: SocketException) {
// Don't log if we're not running anymore because that means this exception was probably // Don't log if we're not running anymore because that means this exception was probably
// generated by a socket.close() call. // generated by a socket.close() call.
if (running) { if (running) {
logger.error(e) { "Error while listening to $name ($sockName), closing connection." } logger.error(e) {
"Error while listening to $name ($sockName), closing connection."
}
} }
} catch (e: Throwable) { } catch (e: Throwable) {
logger.error(e) { "Error while listening to $name ($sockName), closing connection." } logger.error(e) { "Error while listening to $name ($sockName), closing connection." }
@ -252,6 +258,9 @@ abstract class SocketHandler<MessageType : Message>(
socket.write(buffer, 0, buffer.size) socket.write(buffer, 0, buffer.size)
} }
protected fun isSockedClosed(): Boolean =
socket.isClosed
protected abstract fun processMessage(message: MessageType): ProcessResult protected abstract fun processMessage(message: MessageType): ProcessResult
protected open fun processRawBytes(buffer: Buffer, offset: Int, size: Int) { protected open fun processRawBytes(buffer: Buffer, offset: Int, size: Int) {