mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Correctly pass char name to client.
This commit is contained in:
parent
4db38f3457
commit
f1a0de715f
@ -363,32 +363,7 @@ sealed class BbMessage(override val buffer: Buffer) : AbstractMessage(BB_HEADER_
|
|||||||
class Char(buffer: Buffer) : BbMessage(buffer) {
|
class Char(buffer: Buffer) : BbMessage(buffer) {
|
||||||
constructor(char: PsoCharacter) : this(
|
constructor(char: PsoCharacter) : this(
|
||||||
buf(0x00E5, 128) {
|
buf(0x00E5, 128) {
|
||||||
writeInt(char.slot)
|
char.write(this)
|
||||||
writeInt(char.exp)
|
|
||||||
writeInt(char.level)
|
|
||||||
writeStringAscii(char.guildCardString, byteLength = 16)
|
|
||||||
repeat(2) { writeInt(0) } // Unknown.
|
|
||||||
writeInt(char.nameColor)
|
|
||||||
writeInt(char.model)
|
|
||||||
repeat(3) { writeInt(0) } // Unused.
|
|
||||||
writeInt(char.nameColorChecksum)
|
|
||||||
writeByte(char.sectionId.toByte())
|
|
||||||
writeByte(char.characterClass.toByte())
|
|
||||||
writeByte(0) // V2 flags.
|
|
||||||
writeByte(0) // Version.
|
|
||||||
writeInt(0) // V1 flags.
|
|
||||||
writeShort(char.costume.toShort())
|
|
||||||
writeShort(char.skin.toShort())
|
|
||||||
writeShort(char.face.toShort())
|
|
||||||
writeShort(char.head.toShort())
|
|
||||||
writeShort(char.hair.toShort())
|
|
||||||
writeShort(char.hairRed.toShort())
|
|
||||||
writeShort(char.hairGreen.toShort())
|
|
||||||
writeShort(char.hairBlue.toShort())
|
|
||||||
writeFloat(char.propX.toFloat())
|
|
||||||
writeFloat(char.propY.toFloat())
|
|
||||||
writeStringUtf16(char.name, byteLength = 32)
|
|
||||||
writeInt(char.playTime)
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -446,24 +421,17 @@ sealed class BbMessage(override val buffer: Buffer) : AbstractMessage(BB_HEADER_
|
|||||||
|
|
||||||
// 0x00E7
|
// 0x00E7
|
||||||
class FullCharacterData(buffer: Buffer) : BbMessage(buffer) {
|
class FullCharacterData(buffer: Buffer) : BbMessage(buffer) {
|
||||||
constructor(char: PsoCharData, name: String, sectionId: Byte, charClass: Byte) : this(
|
constructor(char: PsoCharData) : this(
|
||||||
buf(0x00E7, 14744) {
|
buf(0x00E7, 14744) {
|
||||||
repeat(211) { writeInt(0) }
|
repeat(211) { writeInt(0) }
|
||||||
repeat(3) { writeShort(0) } // ATP/MST/EVP
|
char.write(this)
|
||||||
writeShort(char.hp)
|
|
||||||
repeat(3) { writeShort(0) } // DFP/ATA/LCK
|
|
||||||
writeShort(0) // Unknown.
|
|
||||||
repeat(2) { writeInt(0) } // Unknown.
|
|
||||||
writeInt(char.level)
|
|
||||||
writeInt(char.exp)
|
|
||||||
repeat(92) { writeInt(0) } // Rest of char.
|
|
||||||
repeat(1275) { writeInt(0) }
|
repeat(1275) { writeInt(0) }
|
||||||
writeStringUtf16(name, byteLength = 48)
|
writeStringUtf16(char.name, byteLength = 48)
|
||||||
repeat(8) { writeInt(0) } // Team name.
|
repeat(8) { writeInt(0) } // Team name
|
||||||
repeat(44) { writeInt(0) } // Guild card description.
|
repeat(44) { writeInt(0) } // Guild card description
|
||||||
writeShort(0) // Reserved.
|
writeShort(0) // Reserved
|
||||||
writeByte(sectionId)
|
writeByte(char.sectionId)
|
||||||
writeByte(charClass)
|
writeByte(char.charClass)
|
||||||
repeat(1403) { writeInt(0) }
|
repeat(1403) { writeInt(0) }
|
||||||
writeByteArray(DEFAULT_KEYBOARD_CONFIG)
|
writeByteArray(DEFAULT_KEYBOARD_CONFIG)
|
||||||
writeByteArray(DEFAULT_GAMEPAD_CONFIG)
|
writeByteArray(DEFAULT_GAMEPAD_CONFIG)
|
||||||
@ -594,7 +562,38 @@ class PsoCharacter(
|
|||||||
val propY: Double,
|
val propY: Double,
|
||||||
val name: String,
|
val name: String,
|
||||||
val playTime: Int,
|
val playTime: Int,
|
||||||
)
|
) {
|
||||||
|
fun write(cursor: WritableCursor) {
|
||||||
|
with(cursor) {
|
||||||
|
writeInt(slot)
|
||||||
|
writeInt(exp)
|
||||||
|
writeInt(level)
|
||||||
|
writeStringAscii(guildCardString, byteLength = 16)
|
||||||
|
repeat(2) { writeInt(0) } // Unknown.
|
||||||
|
writeInt(nameColor)
|
||||||
|
writeInt(model)
|
||||||
|
repeat(3) { writeInt(0) } // Unused.
|
||||||
|
writeInt(nameColorChecksum)
|
||||||
|
writeByte(sectionId.toByte())
|
||||||
|
writeByte(characterClass.toByte())
|
||||||
|
writeByte(0) // V2 flags.
|
||||||
|
writeByte(0) // Version.
|
||||||
|
writeInt(0) // V1 flags.
|
||||||
|
writeShort(costume.toShort())
|
||||||
|
writeShort(skin.toShort())
|
||||||
|
writeShort(face.toShort())
|
||||||
|
writeShort(head.toShort())
|
||||||
|
writeShort(hair.toShort())
|
||||||
|
writeShort(hairRed.toShort())
|
||||||
|
writeShort(hairGreen.toShort())
|
||||||
|
writeShort(hairBlue.toShort())
|
||||||
|
writeFloat(propX.toFloat())
|
||||||
|
writeFloat(propY.toFloat())
|
||||||
|
writeStringUtf16(name, byteLength = 32)
|
||||||
|
writeInt(playTime)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class GuildCardEntry(
|
class GuildCardEntry(
|
||||||
val playerTag: Int,
|
val playerTag: Int,
|
||||||
@ -654,7 +653,48 @@ class PsoCharData(
|
|||||||
val hp: Short,
|
val hp: Short,
|
||||||
val level: Int,
|
val level: Int,
|
||||||
val exp: Int,
|
val exp: Int,
|
||||||
)
|
val sectionId: Byte,
|
||||||
|
val charClass: Byte,
|
||||||
|
val name: String,
|
||||||
|
) {
|
||||||
|
fun write(cursor: WritableCursor) {
|
||||||
|
with(cursor) {
|
||||||
|
repeat(3) { writeShort(0) } // ATP/MST/EVP
|
||||||
|
writeShort(hp)
|
||||||
|
repeat(3) { writeShort(0) } // DFP/ATA/LCK
|
||||||
|
writeShort(0) // Unknown
|
||||||
|
repeat(2) { writeInt(0) } // Unknown
|
||||||
|
writeInt(level)
|
||||||
|
writeInt(exp)
|
||||||
|
writeInt(0) // Meseta
|
||||||
|
repeat(4) { writeInt(0) } // Guild card
|
||||||
|
repeat(2) { writeInt(0) } // Unknown
|
||||||
|
writeInt(0) // Name color
|
||||||
|
writeByte(0) // Extra model
|
||||||
|
repeat(3) { writeByte(0) } // Unused
|
||||||
|
repeat(3) { writeInt(0) } // Unused
|
||||||
|
writeInt(0) // Name color checksum
|
||||||
|
writeByte(sectionId)
|
||||||
|
writeByte(charClass)
|
||||||
|
writeByte(0) // V2 flags
|
||||||
|
writeByte(0) // Version
|
||||||
|
writeInt(0) // V1 flags
|
||||||
|
writeShort(0) // Costume
|
||||||
|
writeShort(0) // Skin
|
||||||
|
writeShort(0) // Face
|
||||||
|
writeShort(0) // Head
|
||||||
|
writeShort(0) // Hair
|
||||||
|
writeShort(0) // Hair red
|
||||||
|
writeShort(0) // Hair green
|
||||||
|
writeShort(0) // Hair blue
|
||||||
|
writeFloat(0.5f) // Prop x
|
||||||
|
writeFloat(0.5f) // Prop y
|
||||||
|
writeStringUtf16(name, 32)
|
||||||
|
repeat(58) { writeInt(0) } // Config
|
||||||
|
repeat(5) { writeInt(0) } // Tech levels
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class LobbyPlayer(
|
class LobbyPlayer(
|
||||||
val playerTag: Int,
|
val playerTag: Int,
|
||||||
|
@ -77,10 +77,10 @@ class BlockServer(
|
|||||||
hp = 0,
|
hp = 0,
|
||||||
level = char.level - 1,
|
level = char.level - 1,
|
||||||
exp = char.exp,
|
exp = char.exp,
|
||||||
|
sectionId = char.sectionId.ordinal.toByte(),
|
||||||
|
charClass = 0,
|
||||||
|
name = char.name,
|
||||||
),
|
),
|
||||||
char.name,
|
|
||||||
char.sectionId.ordinal.toByte(),
|
|
||||||
charClass = 0,
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
ctx.send(BbMessage.GetCharData())
|
ctx.send(BbMessage.GetCharData())
|
||||||
|
Loading…
Reference in New Issue
Block a user