corrections to the structure of the packet and the data in the List; comments

This commit is contained in:
FateJH 2016-09-16 21:57:03 -04:00
parent 6786d9934d
commit 4529006490
2 changed files with 36 additions and 16 deletions

View file

@ -6,25 +6,43 @@ import scodec.Codec
import scodec.codecs._ import scodec.codecs._
/** /**
* na * Information for positioning a hotspot on the continental map.<br>
* @param unk na * <br>
* The coordinate values and the scaling value have different endianness than most numbers transmitted as packet data.
* The two unknown values are not part of the positioning system, at least not a part of the coordinates.<br>
* <br>
* The origin point is the lowest left corner of the map grid.
* On either axis, the other edge of the map is found at the maximum value 4096 (`FFF`).
* The scale is typically set as 128 (`80000`) but can also be made smaller or made absurdly big.
* @param unk1 na
* @param x the x-coord of the center of the hotspot * @param x the x-coord of the center of the hotspot
* @param unk2 na
* @param y the y-coord of the center of the hotspot * @param y the y-coord of the center of the hotspot
* @param scale the scaling of the hotspot graphic * @param scale the scaling of the hotspot icon
*/ */
final case class HotSpotInfo(unk : Int, final case class HotSpotInfo(unk1 : Int,
x : Int, x : Int,
unk2 : Int,
y : Int, y : Int,
scale : Int) scale : Int)
/** /**
* na * A list of data for creating hotspots on a continental map.<br>
* <br>
* The hotspot system is a forgetful all-or-nothing affair.
* The packet that is always initially sent during server login clears any would-be hotspots from the map.
* Each time a hotspot packet is received for a zone, all of the previous hotspots for that zone are forgotten.
* To simply add a hotspot, the next packet has to contain information that re-explains the packets that were originally rendered.<br>
* <br>
* Exploration 1:<br>
* The unknown parameter has been observed with various non-zero values such as 1, 2, and 5.
* Visually, however, `unk` does not affect anything.
* Does it do something internally?
* @param continent_guid the zone (continent) * @param continent_guid the zone (continent)
* @param unk na * @param unk na
* @param spots a list of HotSpotInfo, or Nil if empty * @param spots a List of HotSpotInfo, or `Nil` if empty
*/ */
// TODO test for size > 0 (e.g., > hex'00') // TODO need aligned/padded list support
// TODO test for size > 15 (e.g., > hex'F0')
final case class HotSpotUpdateMessage(continent_guid : PlanetSideGUID, final case class HotSpotUpdateMessage(continent_guid : PlanetSideGUID,
unk : Int, unk : Int,
spots : List[HotSpotInfo] = Nil) spots : List[HotSpotInfo] = Nil)
@ -36,15 +54,16 @@ final case class HotSpotUpdateMessage(continent_guid : PlanetSideGUID,
object HotSpotUpdateMessage extends Marshallable[HotSpotUpdateMessage] { object HotSpotUpdateMessage extends Marshallable[HotSpotUpdateMessage] {
implicit val hotspot_codec : Codec[HotSpotInfo] = { implicit val hotspot_codec : Codec[HotSpotInfo] = {
("unk" | uint8L) :: ("unk1" | uint8) ::
("x" | uint16L) :: ("x" | uint(12)) ::
("y" | uint16L) :: ("unk2" | uint8) ::
("scale" | uintL(20)) ("y" | uint(12)) ::
("scale" | uint(20))
}.as[HotSpotInfo] }.as[HotSpotInfo]
implicit val codec : Codec[HotSpotUpdateMessage] = ( implicit val codec : Codec[HotSpotUpdateMessage] = (
("continent_guid" | PlanetSideGUID.codec) :: ("continent_guid" | PlanetSideGUID.codec) ::
("unk" | uint8L) :: ("unk" | uint4L) ::
("spots" | listOfN(uint8L, hotspot_codec)) ("spots" | listOfN(uint8L, hotspot_codec))
).as[HotSpotUpdateMessage] ).as[HotSpotUpdateMessage]
} }

View file

@ -916,13 +916,14 @@ class GamePacketTest extends Specification {
} }
"HotSpotUpdateMessage" should { "HotSpotUpdateMessage" should {
val stringClear = hex"9F 0500 10 00" val stringClear = hex"9F 0500 1 00 0"
val stringOne = hex"9F 0500 1 01 0 00 2E9 00 145 80000 0"
"decode (clear)" in { "decode (clear)" in {
PacketCoding.DecodePacket(stringClear).require match { PacketCoding.DecodePacket(stringClear).require match {
case HotSpotUpdateMessage(continent_guid, unk, spots) => case HotSpotUpdateMessage(continent_guid, unk, spots) =>
continent_guid mustEqual PlanetSideGUID(5) continent_guid mustEqual PlanetSideGUID(5)
unk mustEqual 16 unk mustEqual 1
spots.size mustEqual 0 spots.size mustEqual 0
case _ => case _ =>
ko ko
@ -930,7 +931,7 @@ class GamePacketTest extends Specification {
} }
"encode (clear)" in { "encode (clear)" in {
val msg = HotSpotUpdateMessage(PlanetSideGUID(5),16) val msg = HotSpotUpdateMessage(PlanetSideGUID(5),1)
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
pkt mustEqual stringClear pkt mustEqual stringClear
} }