mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-02-23 08:33:36 +00:00
misc
This commit is contained in:
parent
f145fd49f2
commit
e326f454e5
3 changed files with 25 additions and 4 deletions
|
|
@ -7,9 +7,9 @@ import scodec.codecs._
|
|||
|
||||
/**
|
||||
* The object_guid space for SetEmpireMessage is continent specific.
|
||||
* SetEmpireMessage is usually followed by HackMessage (indicating the hack disposition of the same object_guid)
|
||||
* SetEmpireMessage is usually followed by HackMessage (indicating the hack disposition of the same building_guid)
|
||||
*/
|
||||
final case class SetEmpireMessage(continent_guid : PlanetSideGUID,
|
||||
final case class SetEmpireMessage(building_guid : PlanetSideGUID,
|
||||
empire : PlanetSideEmpire.Value)
|
||||
extends PlanetSideGamePacket {
|
||||
type Packet = SetEmpireMessage
|
||||
|
|
@ -19,7 +19,7 @@ final case class SetEmpireMessage(continent_guid : PlanetSideGUID,
|
|||
|
||||
object SetEmpireMessage extends Marshallable[SetEmpireMessage] {
|
||||
implicit val codec : Codec[SetEmpireMessage] = (
|
||||
("object_guid" | PlanetSideGUID.codec) ::
|
||||
("building_guid" | PlanetSideGUID.codec) ::
|
||||
("empire" | PlanetSideEmpire.codec)
|
||||
).as[SetEmpireMessage]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -796,6 +796,27 @@ class GamePacketTest extends Specification {
|
|||
}
|
||||
}
|
||||
|
||||
"SetEmpireMessage" should {
|
||||
val string = hex"24 02 00 80"
|
||||
|
||||
"decode" in {
|
||||
PacketCoding.DecodePacket(string).require match {
|
||||
case SetEmpireMessage(building_guid, empire) =>
|
||||
building_guid mustEqual PlanetSideGUID(2)
|
||||
empire mustEqual PlanetSideEmpire.VS
|
||||
case default =>
|
||||
ko
|
||||
}
|
||||
}
|
||||
|
||||
"encode" in {
|
||||
val msg = SetEmpireMessage(PlanetSideGUID(2), PlanetSideEmpire.VS)
|
||||
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
||||
|
||||
pkt mustEqual string
|
||||
}
|
||||
}
|
||||
|
||||
"PingMsg" should {
|
||||
val packet = hex"1a 00000000 b0360000"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue