mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-03-01 19:23:38 +00:00
* Add .scalafmt.conf
* Adopt quill for database access
* Removed postgresql-async
* Refactored all instances of database access
* Creating duplicate characters of the same account is no longer possible
* Rewrote large parts of LoginSessionActor
* Implement migrations
* Move overrides into subdirectory
* Make usernames case insensitive
* Use LOWER(?) comparison instead of storing lowercased username
* import scala.util.{Success, Failure}
* Add config and joda-time dependencies
* Add sbt-scalafmt
* Use defaultWithAlign scalafmt preset
* Format all
* Add scalafix
* Remove unused imports
* Don't lowercase username when inserting
* Update readme
* Listen on worldserver.Hostname address
* Remove database test on startup
It could fail when the global thread pool is busy loading zone
maps. Migrations run on the main thread and also serve the
purpose of verifying the database configuration so it's fine to
remove the test altogether.
* Refactor chat message handlers, zones
What started as a small change to how zones are stored turned
into a pretty big effort of refactoring the chat message handler.
The !hack command was removed, the /capturebase commandwas added.
* Expose db ports in docker-compose.yml
* Silence property override log
* Rework configuration
* Unify configuration using the typesafe.config library
* Add configuration option for public address
* Configuration is now loaded from application.conf rather than worldserver.ini
* Refactor PsLogin and remove unnecessary logging
* Move pslogin into net.psforever.pslogin namespace
* Fix coverage
62 lines
1.6 KiB
Scala
62 lines
1.6 KiB
Scala
// Copyright (c) 2017 PSForever
|
|
package game
|
|
|
|
import org.specs2.mutable._
|
|
import net.psforever.packet._
|
|
import net.psforever.packet.game._
|
|
import net.psforever.types.{PlanetSideGUID, Vector3}
|
|
import scodec.bits._
|
|
|
|
class ObjectDetachMessageTest extends Specification {
|
|
val string = hex"27 640B C609 92F76 01D65 F611 00 00 40"
|
|
|
|
"decode" in {
|
|
PacketCoding.DecodePacket(string).require match {
|
|
case ObjectDetachMessage(parent_guid, child_guid, pos, roll, pitch, yaw) =>
|
|
parent_guid mustEqual PlanetSideGUID(2916)
|
|
child_guid mustEqual PlanetSideGUID(2502)
|
|
pos.x mustEqual 3567.1406f
|
|
pos.y mustEqual 2988.0078f
|
|
pos.z mustEqual 71.84375f
|
|
roll mustEqual 0f
|
|
pitch mustEqual 0f
|
|
yaw mustEqual 270f
|
|
case _ =>
|
|
ko
|
|
}
|
|
}
|
|
|
|
"encode (1)" in {
|
|
val msg = ObjectDetachMessage(
|
|
PlanetSideGUID(2916),
|
|
PlanetSideGUID(2502),
|
|
Vector3(3567.1406f, 2988.0078f, 71.84375f),
|
|
0f,
|
|
0f,
|
|
270f
|
|
)
|
|
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
|
|
|
pkt mustEqual string
|
|
}
|
|
|
|
"encode (2)" in {
|
|
val msg = ObjectDetachMessage(
|
|
PlanetSideGUID(2916),
|
|
PlanetSideGUID(2502),
|
|
Vector3(3567.1406f, 2988.0078f, 71.84375f),
|
|
Vector3(0f, 0f, 270f)
|
|
)
|
|
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
|
|
|
pkt mustEqual string
|
|
}
|
|
|
|
"encode (3)" in {
|
|
val msg =
|
|
ObjectDetachMessage(PlanetSideGUID(2916), PlanetSideGUID(2502), Vector3(3567.1406f, 2988.0078f, 71.84375f), 270f)
|
|
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
|
|
|
pkt mustEqual string
|
|
}
|
|
}
|