mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-03-04 04:30:21 +00:00
Merge branch 'master' into feature/VehicleDismountImprovements
This commit is contained in:
commit
12443c6aa5
51 changed files with 2281 additions and 384 deletions
|
|
@ -3,6 +3,7 @@ package net.psforever.objects
|
|||
|
||||
import net.psforever.objects.definition.{AvatarDefinition, ImplantDefinition}
|
||||
import net.psforever.objects.equipment.EquipmentSize
|
||||
import net.psforever.objects.loadouts.Loadout
|
||||
import net.psforever.types.{CertificationType, CharacterGender, ImplantType, PlanetSideEmpire}
|
||||
|
||||
import scala.annotation.tailrec
|
||||
|
|
@ -16,7 +17,7 @@ class Avatar(val name : String, val faction : PlanetSideEmpire.Value, val sex :
|
|||
/** Certifications */
|
||||
private val certs : mutable.Set[CertificationType.Value] = mutable.Set[CertificationType.Value]()
|
||||
/** Implants<br>
|
||||
* Unlike other objects, the maximum number of `ImplantSlots` are built into the `Avatar`.
|
||||
* Unlike other objects, all `ImplantSlot` objects are already built into the `Avatar`.
|
||||
* Additionally, implants do not have tightly-coupled "`Definition` objects" that explain a formal implant object.
|
||||
* The `ImplantDefinition` objects themselves are moved around as if they were the implants.
|
||||
* The terms externally used for the states of process is "installed" and "uninstalled."
|
||||
|
|
@ -24,9 +25,12 @@ class Avatar(val name : String, val faction : PlanetSideEmpire.Value, val sex :
|
|||
* @see `DetailedCharacterData.implants`
|
||||
*/
|
||||
private val implants : Array[ImplantSlot] = Array.fill[ImplantSlot](3)(new ImplantSlot)
|
||||
/** Loadouts */
|
||||
private val loadouts : Array[Option[Loadout]] = Array.fill[Option[Loadout]](10)(None)
|
||||
/** Locker (inventory slot number five) */
|
||||
/** Loadouts<br>
|
||||
* 0-9 are Infantry loadouts
|
||||
* 10-14 are Vehicle loadouts
|
||||
*/
|
||||
private val loadouts : Array[Option[Loadout]] = Array.fill[Option[Loadout]](15)(None)
|
||||
/** Locker */
|
||||
private val locker : LockerContainer = new LockerContainer() {
|
||||
override def toString : String = {
|
||||
s"$name's ${Definition.Name}"
|
||||
|
|
@ -153,6 +157,12 @@ class Avatar(val name : String, val faction : PlanetSideEmpire.Value, val sex :
|
|||
}
|
||||
}
|
||||
|
||||
def SaveLoadout(owner : Vehicle, label : String, line : Int) : Unit = {
|
||||
if(line > 9 && line < loadouts.length) {
|
||||
loadouts(line) = Some(Loadout.Create(owner, label))
|
||||
}
|
||||
}
|
||||
|
||||
def LoadLoadout(line : Int) : Option[Loadout] = loadouts.lift(line).getOrElse(None)
|
||||
|
||||
def DeleteLoadout(line : Int) : Unit = {
|
||||
|
|
|
|||
|
|
@ -524,6 +524,10 @@ object GlobalDefinitions {
|
|||
|
||||
val medical_terminal = new MedicalTerminalDefinition(529)
|
||||
|
||||
val pad_landing = new RepairRearmSiloDefinition(719)
|
||||
|
||||
val repair_silo = new RepairRearmSiloDefinition(729)
|
||||
|
||||
val spawn_pad = new VehicleSpawnPadDefinition
|
||||
|
||||
val mb_locker = new LockerDefinition
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ package net.psforever.objects
|
|||
import net.psforever.objects.definition.AvatarDefinition
|
||||
import net.psforever.objects.equipment.{Equipment, EquipmentSize}
|
||||
import net.psforever.objects.inventory.{Container, GridInventory, InventoryItem}
|
||||
import net.psforever.objects.loadouts.Loadout
|
||||
import net.psforever.objects.serverobject.affinity.FactionAffinity
|
||||
import net.psforever.packet.game.PlanetSideGUID
|
||||
import net.psforever.types._
|
||||
|
|
|
|||
|
|
@ -349,6 +349,39 @@ class Vehicle(private val vehicleDef : VehicleDefinition) extends PlanetSideServ
|
|||
|
||||
def VisibleSlots : Set[Int] = weapons.keySet
|
||||
|
||||
override def Slot(slotNum : Int) : EquipmentSlot = {
|
||||
weapons.get(slotNum)
|
||||
// .orElse(utilities.get(slotNum) match {
|
||||
// case Some(_) =>
|
||||
// //TODO what do now?
|
||||
// None
|
||||
// case None => ;
|
||||
// None
|
||||
// })
|
||||
.orElse(Some(Inventory.Slot(slotNum))).get
|
||||
}
|
||||
|
||||
override def Find(guid : PlanetSideGUID) : Option[Int] = {
|
||||
weapons.find({ case (_, obj) =>
|
||||
obj.Equipment match {
|
||||
case Some(item) =>
|
||||
if(item.HasGUID && item.GUID == guid) {
|
||||
true
|
||||
}
|
||||
else {
|
||||
false
|
||||
}
|
||||
case None =>
|
||||
false
|
||||
}
|
||||
}) match {
|
||||
case Some((index, _)) =>
|
||||
Some(index)
|
||||
case None =>
|
||||
Inventory.Find(guid)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* A reference to the `Vehicle` `Trunk` space.
|
||||
* @return this `Vehicle` `Trunk`
|
||||
|
|
|
|||
|
|
@ -0,0 +1,102 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.loadouts
|
||||
|
||||
import net.psforever.types.ExoSuitType
|
||||
|
||||
/**
|
||||
* A blueprint of a player's uniform, their holster items, and their inventory items, saved in a specific state.
|
||||
* This previous state can be restored on any given player template
|
||||
* by reconstructing the items (if permitted) and re-assigning the uniform (if available).<br>
|
||||
* <br>
|
||||
* The fifth tab on an `order_terminal` window is occupied by the list of "Favorite" `Loadout` blueprints.
|
||||
* The ten-long list is initialized with `FavoritesMessage` packets assigned to the "Infantry" list.
|
||||
* Specific entries are added or removed using `FavoritesRequest` packets,
|
||||
* re-established using other conventional game packets.
|
||||
* @param label the name by which this inventory will be known when displayed in a Favorites list;
|
||||
* field gets inherited
|
||||
* @param visible_slots simplified representation of the `Equipment` that can see "seen" on the target;
|
||||
* field gets inherited
|
||||
* @param inventory simplified representation of the `Equipment` in the target's inventory or trunk;
|
||||
* field gets inherited
|
||||
* @param exosuit the exo-suit in which the avatar will be dressed;
|
||||
* may be restricted
|
||||
* @param subtype the mechanized assault exo-suit specialization number that indicates whether the MAX performs:
|
||||
* anti-infantry (1), anti-vehicular (2), or anti-air work (3);
|
||||
* the default value is 0
|
||||
*/
|
||||
final case class InfantryLoadout(label : String,
|
||||
visible_slots : List[Loadout.SimplifiedEntry],
|
||||
inventory : List[Loadout.SimplifiedEntry],
|
||||
exosuit : ExoSuitType.Value,
|
||||
subtype : Int) extends Loadout(label, visible_slots, inventory)
|
||||
|
||||
object InfantryLoadout {
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.objects.GlobalDefinitions
|
||||
import net.psforever.objects.equipment.Equipment
|
||||
|
||||
/**
|
||||
* The sub-type of the player's uniform.
|
||||
* Applicable to mechanized assault units, mainly.
|
||||
* The subtype is reported as a number but indicates the specialization - anti-infantry, ani-vehicular, anti-air - of the suit
|
||||
* as indicated by the arm weapon(s).
|
||||
* @param player the player
|
||||
* @return the numeric subtype
|
||||
*/
|
||||
def DetermineSubtype(player : Player) : Int = {
|
||||
DetermineSubtypeA(player.ExoSuit, player.Slot(0).Equipment)
|
||||
}
|
||||
|
||||
/**
|
||||
* The sub-type of the player's uniform.
|
||||
* Applicable to mechanized assault units, mainly.
|
||||
* The subtype is reported as a number but indicates the specialization - anti-infantry, ani-vehicular, anti-air - of the suit
|
||||
* as indicated by the arm weapon(s).
|
||||
* @param suit the player's uniform;
|
||||
* the target is for MAX armors
|
||||
* @param weapon any weapon the player may have it his "first pistol slot;"
|
||||
* to a MAX, that is its "primary weapon slot"
|
||||
* @return the numeric subtype
|
||||
*/
|
||||
def DetermineSubtypeA(suit : ExoSuitType.Value, weapon : Option[Equipment]) : Int = {
|
||||
if(suit == ExoSuitType.MAX) {
|
||||
weapon match {
|
||||
case Some(item) =>
|
||||
item.Definition match {
|
||||
case GlobalDefinitions.trhev_dualcycler | GlobalDefinitions.nchev_scattercannon | GlobalDefinitions.vshev_quasar =>
|
||||
1
|
||||
case GlobalDefinitions.trhev_pounder | GlobalDefinitions.nchev_falcon | GlobalDefinitions.vshev_comet =>
|
||||
2
|
||||
case GlobalDefinitions.trhev_burster | GlobalDefinitions.nchev_sparrow | GlobalDefinitions.vshev_starfire =>
|
||||
3
|
||||
case _ =>
|
||||
0
|
||||
}
|
||||
case None =>
|
||||
0
|
||||
}
|
||||
}
|
||||
else {
|
||||
0
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The sub-type of the player's uniform, as used in `FavoritesMessage`.<br>
|
||||
* <br>
|
||||
* The values for `Standard`, `Infiltration`, and the generic `MAX` are not perfectly known.
|
||||
* The latter-most exo-suit option is presumed.
|
||||
* @param suit the player's uniform
|
||||
* @param subtype the mechanized assault exo-suit subtype as determined by their arm weapons
|
||||
* @return the numeric subtype
|
||||
*/
|
||||
def DetermineSubtypeB(suit : ExoSuitType.Value, subtype : Int) : Int = {
|
||||
suit match {
|
||||
case ExoSuitType.Standard => 0
|
||||
case ExoSuitType.Agile => 1
|
||||
case ExoSuitType.Reinforced => 2
|
||||
case ExoSuitType.MAX => 3 + subtype //4, 5, 6
|
||||
case ExoSuitType.Infiltration => 7
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,91 +1,42 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects
|
||||
package net.psforever.objects.loadouts
|
||||
|
||||
import net.psforever.objects._
|
||||
import net.psforever.objects.definition._
|
||||
import net.psforever.objects.equipment.Equipment
|
||||
import net.psforever.objects.inventory.InventoryItem
|
||||
import net.psforever.types.ExoSuitType
|
||||
|
||||
import scala.annotation.tailrec
|
||||
|
||||
/**
|
||||
* From a `Player` their current exo-suit and their `Equipment`, retain a set of instructions to reconstruct this arrangement.<br>
|
||||
* The base of all specific kinds of blueprint containers.
|
||||
* This previous state can be restored on any appropriate template from which the loadout was copied
|
||||
* by reconstructing the items (if permitted).
|
||||
* The three fields are the name assigned to the loadout,
|
||||
* the visible items that are created (which obey different rules depending on the source),
|
||||
* and the concealed items that are created and added to the source's `Inventory`.<br>
|
||||
* For example, the `visible_slots` on a `Player`-borne loadout will transform into the form `Array[EquipmentSlot]`;
|
||||
* `Vehicle`-originating loadouts transform into the form `Map[Int, Equipment]`.
|
||||
* <br>
|
||||
* `Loadout` objects are composed of the following information, as if a blueprint:<br>
|
||||
* - the avatar's current exo-suit<br>
|
||||
* - the type of specialization, called a "subtype" (mechanized assault exo-suits only)<br>
|
||||
* - the contents of the avatar's occupied holster slots<br>
|
||||
* - the contents of the avatar's occupied inventory<br>
|
||||
* `Equipment` contents of the holsters and of the formal inventory region will be condensed into a simplified form.
|
||||
* These are also "blueprints."
|
||||
* At its most basic, this simplification will merely comprise the former object's `EquipmentDefinition`.
|
||||
* For items that are already simple - `Kit` objects and `SimpleItem` objects - this form will not be too far removed.
|
||||
* For more complicated affairs like `Tool` objects and `AmmoBox` objects, only essential information will be retained.<br>
|
||||
* <br>
|
||||
* The deconstructed blueprint can be applied to any avatar.
|
||||
* They are, however, typically tied to unique users and unique characters.
|
||||
* For reasons of certifications, however, permissions on that avatar may affect what `Equipment` can be distributed.
|
||||
* Even a whole blueprint can be denied if the user lacks the necessary exo-suit certification.
|
||||
* A completely new piece of `Equipment` is constructed when the `Loadout` is regurgitated.<br>
|
||||
* <br>
|
||||
* The fifth tab on an `order_terminal` window is for "Favorite" blueprints for `Loadout` entries.
|
||||
* The ten-long list is initialized with `FavoritesMessage` packets.
|
||||
* The lists of user-specific loadouts are initialized with `FavoritesMessage` packets.
|
||||
* Specific entries are loaded or removed using `FavoritesRequest` packets.
|
||||
* @param label the name by which this inventory will be known when displayed in a Favorites list
|
||||
* @param visible_slots simplified representation of the `Equipment` that can see "seen" on the target
|
||||
* @param inventory simplified representation of the `Equipment` in the target's inventory or trunk
|
||||
* @param exosuit na
|
||||
* @param subtype na
|
||||
*/
|
||||
final case class Loadout(private val label : String,
|
||||
private val visible_slots : List[Loadout.SimplifiedEntry],
|
||||
private val inventory : List[Loadout.SimplifiedEntry],
|
||||
private val exosuit : ExoSuitType.Value,
|
||||
private val subtype : Int) {
|
||||
/**
|
||||
* The label by which this `Loadout` is called.
|
||||
* @return the label
|
||||
*/
|
||||
def Label : String = label
|
||||
|
||||
/**
|
||||
* The exo-suit in which the avatar will be dressed.
|
||||
* Might be restricted and, thus, restrict the rest of the `Equipment` from being constructed and given.
|
||||
* @return the exo-suit
|
||||
*/
|
||||
def ExoSuit : ExoSuitType.Value = exosuit
|
||||
|
||||
/**
|
||||
* The mechanized assault exo-suit specialization number that indicates whether the MAX performs:
|
||||
* anti-infantry (1),
|
||||
* anti-vehicular (2),
|
||||
* or anti-air work (3).
|
||||
* The major distinction is the type of arm weapons that MAX is equipped.
|
||||
* When the blueprint doesn't call for a MAX, the number will be 0.
|
||||
* @return the specialization number
|
||||
*/
|
||||
def Subtype : Int = subtype
|
||||
|
||||
/**
|
||||
* The `Equipment` in the `Player`'s holster slots when this `Loadout` is created.
|
||||
* @return a `List` of the holster item blueprints
|
||||
*/
|
||||
def VisibleSlots : List[Loadout.SimplifiedEntry] = visible_slots
|
||||
|
||||
/**
|
||||
* The `Equipment` in the `Player`'s inventory region when this `Loadout` is created.
|
||||
* @return a `List` of the inventory item blueprints
|
||||
*/
|
||||
def Inventory : List[Loadout.SimplifiedEntry] = inventory
|
||||
}
|
||||
abstract class Loadout(label : String,
|
||||
visible_slots : List[Loadout.SimplifiedEntry],
|
||||
inventory : List[Loadout.SimplifiedEntry])
|
||||
|
||||
object Loadout {
|
||||
def apply(label : String, visible : List[SimplifiedEntry], inventory : List[SimplifiedEntry]) : Loadout = {
|
||||
new Loadout(label, visible, inventory, ExoSuitType.Standard, 0)
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce the blueprint on a player.
|
||||
* @param player the player
|
||||
* @param label the name of this loadout
|
||||
* @return an `InfantryLoadout` object populated with appropriate information about the current state of the player
|
||||
*/
|
||||
def Create(player : Player, label : String) : Loadout = {
|
||||
new Loadout(
|
||||
InfantryLoadout(
|
||||
label,
|
||||
packageSimplifications(player.Holsters()),
|
||||
packageSimplifications(player.Inventory.Items.values.toList),
|
||||
|
|
@ -94,11 +45,18 @@ object Loadout {
|
|||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Produce the blueprint of a vehicle.
|
||||
* @param vehicle the vehicle
|
||||
* @param label the name of this loadout
|
||||
* @return a `VehicleLoadout` object populated with appropriate information about the current state of the vehicle
|
||||
*/
|
||||
def Create(vehicle : Vehicle, label : String) : Loadout = {
|
||||
Loadout(
|
||||
VehicleLoadout(
|
||||
label,
|
||||
packageSimplifications(vehicle.Weapons.map({ case ((index, weapon)) => InventoryItem(weapon.Equipment.get, index) }).toList),
|
||||
packageSimplifications(vehicle.Trunk.Items.values.toList)
|
||||
packageSimplifications(vehicle.Trunk.Items.values.toList),
|
||||
vehicle.Definition
|
||||
)
|
||||
}
|
||||
|
||||
|
|
@ -152,35 +110,32 @@ object Loadout {
|
|||
*/
|
||||
final case class ShorthandKit(definition : KitDefinition) extends Simplification
|
||||
|
||||
/**
|
||||
* The sub-type of the player's uniform.
|
||||
* Applicable to mechanized assault units, mainly.
|
||||
* The subtype is reported as a number but indicates the specialization - anti-infantry, ani-vehicular, anti-air - of the suit
|
||||
* as indicated by the arm weapon(s).
|
||||
* @param player the player
|
||||
* @return the numeric subtype
|
||||
*/
|
||||
def DetermineSubtype(player : Player) : Int = {
|
||||
if(player.ExoSuit == ExoSuitType.MAX) {
|
||||
player.Slot(0).Equipment match {
|
||||
case Some(item) =>
|
||||
item.Definition match {
|
||||
case GlobalDefinitions.trhev_dualcycler | GlobalDefinitions.nchev_scattercannon | GlobalDefinitions.vshev_quasar =>
|
||||
1
|
||||
case GlobalDefinitions.trhev_pounder | GlobalDefinitions.nchev_falcon | GlobalDefinitions.vshev_comet =>
|
||||
2
|
||||
case GlobalDefinitions.trhev_burster | GlobalDefinitions.nchev_sparrow | GlobalDefinitions.vshev_starfire =>
|
||||
3
|
||||
case _ =>
|
||||
0
|
||||
}
|
||||
case None =>
|
||||
0
|
||||
}
|
||||
}
|
||||
else {
|
||||
0
|
||||
}
|
||||
InfantryLoadout.DetermineSubtype(player)
|
||||
}
|
||||
|
||||
/**
|
||||
* The sub-type of the vehicle.
|
||||
* Vehicle's have no subtype.
|
||||
* @param vehicle the vehicle
|
||||
* @return the numeric subtype, always 0
|
||||
*/
|
||||
def DetermineSubtype(vehicle : Vehicle) : Int = 0
|
||||
|
||||
/**
|
||||
* Overloaded entry point for constructing simplified blueprints from holster slot equipment.
|
||||
* @param equipment the holster slots
|
||||
* @return a `List` of simplified `Equipment`
|
||||
*/
|
||||
private def packageSimplifications(equipment : Array[EquipmentSlot]) : List[SimplifiedEntry] = {
|
||||
protected def packageSimplifications(equipment : Array[EquipmentSlot]) : List[SimplifiedEntry] = {
|
||||
recursiveHolsterSimplifications(equipment.iterator)
|
||||
}
|
||||
|
||||
|
|
@ -189,7 +144,7 @@ object Loadout {
|
|||
* @param equipment the enumerated contents of the inventory
|
||||
* @return a `List` of simplified `Equipment`
|
||||
*/
|
||||
private def packageSimplifications(equipment : List[InventoryItem]) : List[SimplifiedEntry] = {
|
||||
protected def packageSimplifications(equipment : List[InventoryItem]) : List[SimplifiedEntry] = {
|
||||
equipment.map(entry => { SimplifiedEntry(buildSimplification(entry.obj), entry.start) })
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.loadouts
|
||||
|
||||
import net.psforever.objects.definition._
|
||||
|
||||
/**
|
||||
* A blueprint of a vehicle's mounted weapons and its inventory items, saved in a specific state.
|
||||
* This previous state can be restored on an apporpriate vehicle template
|
||||
* by reconstructing the items (if permitted).
|
||||
* Mismatched vehicles may produce no loadout or an imperfect loadout depending on specifications.<br>
|
||||
* <br>
|
||||
* The second tab on an `repair_silo` window is occupied by the list of "Favorite" `Loadout` blueprints.
|
||||
* The five-long list is initialized with `FavoritesMessage` packets assigned to the "Vehicle" list.
|
||||
* Specific entries are added or removed using `FavoritesRequest` packets,
|
||||
* re-established using other conventional game packets.
|
||||
* @param label the name by which this inventory will be known when displayed in a Favorites list;
|
||||
* field gets inherited
|
||||
* @param visible_slots simplified representation of the `Equipment` that can see "seen" on the target;
|
||||
* field gets inherited
|
||||
* @param inventory simplified representation of the `Equipment` in the target's inventory or trunk;
|
||||
* field gets inherited
|
||||
* @param vehicle_definition the original type of vehicle whose state is being populated
|
||||
*/
|
||||
final case class VehicleLoadout(label : String,
|
||||
visible_slots : List[Loadout.SimplifiedEntry],
|
||||
inventory : List[Loadout.SimplifiedEntry],
|
||||
vehicle_definition : VehicleDefinition) extends Loadout(label, visible_slots, inventory)
|
||||
|
|
@ -4,6 +4,7 @@ package net.psforever.objects.serverobject.terminals
|
|||
import net.psforever.objects._
|
||||
import net.psforever.objects.definition._
|
||||
import net.psforever.objects.equipment.Equipment
|
||||
import net.psforever.objects.loadouts.Loadout
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
import net.psforever.types.ExoSuitType
|
||||
|
||||
|
|
@ -336,7 +337,7 @@ object EquipmentTerminalDefinition {
|
|||
* `TerminalDefinition.MakeKit`
|
||||
*/
|
||||
def BuildSimplifiedPattern(entry : Loadout.Simplification) : Equipment = {
|
||||
import net.psforever.objects.Loadout._
|
||||
import net.psforever.objects.loadouts.Loadout._
|
||||
entry match {
|
||||
case obj : ShorthandTool =>
|
||||
val ammo : List[AmmoBoxDefinition] = obj.ammo.map(fmode => { fmode.ammo.definition })
|
||||
|
|
|
|||
|
|
@ -1,18 +1,12 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
|
||||
/**
|
||||
* The definition for any `Terminal` that is of a type "medical_terminal".
|
||||
* This includes the limited proximity-based functionality of the formal medical terminals
|
||||
* and the actual proximity-based functionality of the cavern crystals.<br>
|
||||
* <br>
|
||||
* Do not confuse the "medical_terminal" category and the actual `medical_terminal` object (529).
|
||||
* Objects created by this definition being linked by their use of `ProximityTerminalUseMessage` is more accurate.
|
||||
* This includes the functionality of the formal medical terminals and some of the cavern crystals.
|
||||
* Do not confuse the game's internal "medical_terminal" object category and the actual `medical_terminal` object (529).
|
||||
*/
|
||||
class MedicalTerminalDefinition(objectId : Int) extends TerminalDefinition(objectId) {
|
||||
class MedicalTerminalDefinition(objectId : Int) extends TerminalDefinition(objectId) with ProximityDefinition {
|
||||
Name = if(objectId == 38) {
|
||||
"adv_med_terminal"
|
||||
}
|
||||
|
|
@ -31,6 +25,4 @@ class MedicalTerminalDefinition(objectId : Int) extends TerminalDefinition(objec
|
|||
else {
|
||||
throw new IllegalArgumentException("medical terminal must be either object id 38, 225, 226, 529, or 689")
|
||||
}
|
||||
|
||||
def Buy(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = Terminal.NoDeal()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ package net.psforever.objects.serverobject.terminals
|
|||
|
||||
import akka.actor.ActorContext
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.objects.loadouts.InfantryLoadout
|
||||
import net.psforever.objects.inventory.InventoryItem
|
||||
import net.psforever.objects.serverobject.structures.Amenity
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
|
|
@ -41,7 +42,7 @@ class OrderTerminalABDefinition(object_id : Int) extends EquipmentTerminalDefini
|
|||
override def Buy(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = buyFunc(player, msg)
|
||||
|
||||
/**
|
||||
* Process a `TransactionType.InfantryLoadout` action by the user.
|
||||
* Process a `TransactionType.Loadout` action by the user.
|
||||
* `Loadout` objects are blueprints composed of exo-suit specifications and simplified `Equipment`-to-slot mappings.
|
||||
* If a valid loadout is found, its data is transformed back into actual `Equipment` for return to the user.
|
||||
* Loadouts that would suit the player into a mechanized assault exo-suit are not permitted.
|
||||
|
|
@ -52,16 +53,16 @@ class OrderTerminalABDefinition(object_id : Int) extends EquipmentTerminalDefini
|
|||
override def Loadout(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = {
|
||||
if(msg.item_page == 4) { //Favorites tab
|
||||
player.LoadLoadout(msg.unk1) match {
|
||||
case Some(loadout) =>
|
||||
if(loadout.ExoSuit != ExoSuitType.MAX) {
|
||||
val holsters = loadout.VisibleSlots.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
val inventory = loadout.Inventory.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
Terminal.InfantryLoadout(loadout.ExoSuit, loadout.Subtype, holsters, inventory)
|
||||
case Some(loadout : InfantryLoadout) =>
|
||||
if(loadout.exosuit != ExoSuitType.MAX) {
|
||||
val holsters = loadout.visible_slots.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
val inventory = loadout.inventory.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
Terminal.InfantryLoadout(loadout.exosuit, loadout.subtype, holsters, inventory)
|
||||
}
|
||||
else {
|
||||
Terminal.NoDeal()
|
||||
}
|
||||
case None =>
|
||||
case Some(_) | None =>
|
||||
Terminal.NoDeal()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.objects.loadouts.InfantryLoadout
|
||||
import net.psforever.objects.inventory.InventoryItem
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
import net.psforever.objects.serverobject.terminals.EquipmentTerminalDefinition._
|
||||
|
|
@ -27,7 +28,7 @@ class OrderTerminalDefinition extends EquipmentTerminalDefinition(612) {
|
|||
override def Buy(player: Player, msg : ItemTransactionMessage) : Terminal.Exchange = buyFunc(player, msg)
|
||||
|
||||
/**
|
||||
* Process a `TransactionType.InfantryLoadout` action by the user.
|
||||
* Process a `TransactionType.Loadout` action by the user.
|
||||
* `Loadout` objects are blueprints composed of exo-suit specifications and simplified `Equipment`-to-slot mappings.
|
||||
* If a valid loadout is found, its data is transformed back into actual `Equipment` for return to the user.
|
||||
* @param player the player
|
||||
|
|
@ -37,11 +38,11 @@ class OrderTerminalDefinition extends EquipmentTerminalDefinition(612) {
|
|||
override def Loadout(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = {
|
||||
if(msg.item_page == 4) { //Favorites tab
|
||||
player.LoadLoadout(msg.unk1) match {
|
||||
case Some(loadout) =>
|
||||
val holsters = loadout.VisibleSlots.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
val inventory = loadout.Inventory.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
Terminal.InfantryLoadout(loadout.ExoSuit, loadout.Subtype, holsters, inventory)
|
||||
case None =>
|
||||
case Some(loadout : InfantryLoadout) =>
|
||||
val holsters = loadout.visible_slots.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
val inventory = loadout.inventory.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
Terminal.InfantryLoadout(loadout.exosuit, loadout.subtype, holsters, inventory)
|
||||
case Some(_) | None =>
|
||||
Terminal.NoDeal()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
|
||||
/**
|
||||
* The definition for any `Terminal` that possesses a proximity-based effect.
|
||||
* This includes the limited proximity-based functionality of the formal medical terminals
|
||||
* and the actual proximity-based functionality of the cavern crystals.
|
||||
* Objects created by this definition being linked by their use of `ProximityTerminalUseMessage`.
|
||||
*/
|
||||
trait ProximityDefinition {
|
||||
def Buy(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = Terminal.NoDeal()
|
||||
}
|
||||
|
|
@ -1,8 +1,6 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.packet.game.PlanetSideGUID
|
||||
|
||||
/**
|
||||
* A server object that is a "terminal" that can be accessed for amenities and services,
|
||||
* triggered when a certain distance from the unit itself (proximity-based).<br>
|
||||
|
|
@ -11,28 +9,14 @@ import net.psforever.packet.game.PlanetSideGUID
|
|||
* For example, the cavern crystals are considered owner-neutral elements that are not attached to a `Building` object.
|
||||
* @param tdef the `ObjectDefinition` that constructs this object and maintains some of its immutable fields
|
||||
*/
|
||||
class ProximityTerminal(tdef : MedicalTerminalDefinition) extends Terminal(tdef) {
|
||||
private var users : Set[PlanetSideGUID] = Set.empty
|
||||
|
||||
def NumberUsers : Int = users.size
|
||||
|
||||
def AddUser(player_guid : PlanetSideGUID) : Int = {
|
||||
users += player_guid
|
||||
NumberUsers
|
||||
}
|
||||
|
||||
def RemoveUser(player_guid : PlanetSideGUID) : Int = {
|
||||
users -= player_guid
|
||||
NumberUsers
|
||||
}
|
||||
}
|
||||
class ProximityTerminal(tdef : TerminalDefinition with ProximityDefinition) extends Terminal(tdef) with ProximityUnit
|
||||
|
||||
object ProximityTerminal {
|
||||
/**
|
||||
* Overloaded constructor.
|
||||
* @param tdef the `ObjectDefinition` that constructs this object and maintains some of its immutable fields
|
||||
*/
|
||||
def apply(tdef : MedicalTerminalDefinition) : ProximityTerminal = {
|
||||
def apply(tdef : TerminalDefinition with ProximityDefinition) : ProximityTerminal = {
|
||||
new ProximityTerminal(tdef)
|
||||
}
|
||||
|
||||
|
|
@ -45,7 +29,7 @@ object ProximityTerminal {
|
|||
* @param context a context to allow the object to properly set up `ActorSystem` functionality
|
||||
* @return the `Terminal` object
|
||||
*/
|
||||
def Constructor(tdef : MedicalTerminalDefinition)(id : Int, context : ActorContext) : Terminal = {
|
||||
def Constructor(tdef : TerminalDefinition with ProximityDefinition)(id : Int, context : ActorContext) : Terminal = {
|
||||
import akka.actor.Props
|
||||
val obj = ProximityTerminal(tdef)
|
||||
obj.Actor = context.actorOf(Props(classOf[ProximityTerminalControl], obj), s"${tdef.Name}_$id")
|
||||
|
|
|
|||
|
|
@ -2,36 +2,24 @@
|
|||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import akka.actor.Actor
|
||||
import net.psforever.objects.serverobject.CommonMessages
|
||||
import net.psforever.objects.serverobject.affinity.{FactionAffinity, FactionAffinityBehavior}
|
||||
import net.psforever.objects.serverobject.terminals.Terminal.TerminalMessage
|
||||
|
||||
/**
|
||||
*
|
||||
* An `Actor` that handles messages being dispatched to a specific `ProximityTerminal`.
|
||||
* Although this "terminal" itself does not accept the same messages as a normal `Terminal` object,
|
||||
* it returns the same type of messages - wrapped in a `TerminalMessage` - to the `sender`.
|
||||
* @param term the proximity unit (terminal)
|
||||
*/
|
||||
class ProximityTerminalControl(term : ProximityTerminal) extends Actor with FactionAffinityBehavior.Check {
|
||||
class ProximityTerminalControl(term : Terminal with ProximityUnit) extends Actor with FactionAffinityBehavior.Check with ProximityUnit.Use {
|
||||
def FactionObject : FactionAffinity = term
|
||||
|
||||
def receive : Receive = checkBehavior.orElse {
|
||||
case CommonMessages.Use(player) =>
|
||||
val hadNoUsers = term.NumberUsers == 0
|
||||
if(term.AddUser(player.GUID) == 1 && hadNoUsers) {
|
||||
sender ! TerminalMessage(player, null, Terminal.StartProximityEffect(term))
|
||||
}
|
||||
def TerminalObject : Terminal with ProximityUnit = term
|
||||
|
||||
case CommonMessages.Unuse(player) =>
|
||||
val hadUsers = term.NumberUsers > 0
|
||||
if(term.RemoveUser(player.GUID) == 0 && hadUsers) {
|
||||
sender ! TerminalMessage(player, null, Terminal.StopProximityEffect(term))
|
||||
}
|
||||
|
||||
case _ =>
|
||||
sender ! Terminal.NoDeal()
|
||||
}
|
||||
def receive : Receive = checkBehavior
|
||||
.orElse(proximityBehavior)
|
||||
.orElse {
|
||||
case _ => ;
|
||||
}
|
||||
|
||||
override def toString : String = term.Definition.Name
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,60 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.objects.serverobject.CommonMessages
|
||||
import net.psforever.objects.serverobject.terminals.Terminal.TerminalMessage
|
||||
import net.psforever.packet.game.PlanetSideGUID
|
||||
|
||||
/**
|
||||
* A server object that provides a service, triggered when a certain distance from the unit itself (proximity-based).
|
||||
* Unlike conventional terminals, this one is not necessarily structure-owned.
|
||||
* For example, the cavern crystals are considered owner-neutral elements that are not attached to a `Building` object.
|
||||
*/
|
||||
trait ProximityUnit {
|
||||
this : Terminal =>
|
||||
|
||||
/**
|
||||
* A list of targets that are currently affected by this proximity unit.
|
||||
*/
|
||||
private var targets : Set[PlanetSideGUID] = Set.empty
|
||||
|
||||
def NumberUsers : Int = targets.size
|
||||
|
||||
def AddUser(player_guid : PlanetSideGUID) : Int = {
|
||||
targets += player_guid
|
||||
NumberUsers
|
||||
}
|
||||
|
||||
def RemoveUser(player_guid : PlanetSideGUID) : Int = {
|
||||
targets -= player_guid
|
||||
NumberUsers
|
||||
}
|
||||
}
|
||||
|
||||
object ProximityUnit {
|
||||
import akka.actor.Actor
|
||||
|
||||
/**
|
||||
* A mixin `trait` for an `Actor`'s `PartialFunction` that handles messages,
|
||||
* in this case handling messages that controls the telegraphed state of the `ProximityUnit` object as the number of users changes.
|
||||
*/
|
||||
trait Use {
|
||||
this : Actor =>
|
||||
|
||||
def TerminalObject : Terminal with ProximityUnit
|
||||
|
||||
val proximityBehavior : Receive = {
|
||||
case CommonMessages.Use(player) =>
|
||||
val hadNoUsers = TerminalObject.NumberUsers == 0
|
||||
if(TerminalObject.AddUser(player.GUID) == 1 && hadNoUsers) {
|
||||
sender ! TerminalMessage(player, null, Terminal.StartProximityEffect(TerminalObject))
|
||||
}
|
||||
|
||||
case CommonMessages.Unuse(player) =>
|
||||
val hadUsers = TerminalObject.NumberUsers > 0
|
||||
if(TerminalObject.RemoveUser(player.GUID) == 0 && hadUsers) {
|
||||
sender ! TerminalMessage(player, null, Terminal.StopProximityEffect(TerminalObject))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.objects.inventory.InventoryItem
|
||||
import net.psforever.objects.loadouts.VehicleLoadout
|
||||
import net.psforever.objects.serverobject.terminals.EquipmentTerminalDefinition.BuildSimplifiedPattern
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
|
||||
/**
|
||||
* The `Definition` for any `Terminal` that is of a type "repair_silo."
|
||||
* Has both proximity-based operation and direct access purchasing power.
|
||||
*/
|
||||
class RepairRearmSiloDefinition(objectId : Int) extends EquipmentTerminalDefinition(objectId) with ProximityDefinition {
|
||||
Name = if(objectId == 719) {
|
||||
"pad_landing"
|
||||
}
|
||||
else if(objectId == 729) {
|
||||
"repair_silo"
|
||||
}
|
||||
else {
|
||||
throw new IllegalArgumentException("repair re-arm terminal must be either object id 719 or 729")
|
||||
}
|
||||
|
||||
private val buyFunc : (Player, ItemTransactionMessage)=>Terminal.Exchange = EquipmentTerminalDefinition.Buy(Map.empty, Map.empty, Map.empty)
|
||||
|
||||
override def Buy(player: Player, msg : ItemTransactionMessage) : Terminal.Exchange = buyFunc(player, msg)
|
||||
|
||||
override def Loadout(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = {
|
||||
if(msg.item_page == 4) { //Favorites tab
|
||||
player.LoadLoadout(msg.unk1 + 10) match {
|
||||
case Some(loadout : VehicleLoadout) =>
|
||||
val weapons = loadout.visible_slots.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
val inventory = loadout.inventory.map(entry => { InventoryItem(BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
Terminal.VehicleLoadout(loadout.vehicle_definition, weapons, inventory)
|
||||
case _ =>
|
||||
Terminal.NoDeal()
|
||||
}
|
||||
}
|
||||
else {
|
||||
Terminal.NoDeal()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
package net.psforever.objects.serverobject.terminals
|
||||
|
||||
import net.psforever.objects.Player
|
||||
import net.psforever.objects.definition.VehicleDefinition
|
||||
import net.psforever.objects.serverobject.structures.Amenity
|
||||
import net.psforever.packet.game.{ItemTransactionMessage, PlanetSideGUID}
|
||||
import net.psforever.types.{TransactionType, Vector3}
|
||||
|
|
@ -73,7 +74,7 @@ class Terminal(tdef : TerminalDefinition) extends Amenity {
|
|||
case TransactionType.Sell =>
|
||||
tdef.Sell(player, msg)
|
||||
|
||||
case TransactionType.InfantryLoadout =>
|
||||
case TransactionType.Loadout =>
|
||||
tdef.Loadout(player, msg)
|
||||
|
||||
case _ =>
|
||||
|
|
@ -190,17 +191,19 @@ object Terminal {
|
|||
*/
|
||||
final case class InfantryLoadout(exosuit : ExoSuitType.Value, subtype : Int = 0, holsters : List[InventoryItem], inventory : List[InventoryItem]) extends Exchange
|
||||
|
||||
final case class VehicleLoadout(vehicle_definition : VehicleDefinition, weapons : List[InventoryItem], inventory : List[InventoryItem]) extends Exchange
|
||||
|
||||
/**
|
||||
* Start the special effects caused by a proximity-base service.
|
||||
* @param terminal the proximity-based unit
|
||||
*/
|
||||
final case class StartProximityEffect(terminal : ProximityTerminal) extends Exchange
|
||||
final case class StartProximityEffect(terminal : Terminal with ProximityUnit) extends Exchange
|
||||
|
||||
/**
|
||||
* Stop the special effects caused by a proximity-base service.
|
||||
* @param terminal the proximity-based unit
|
||||
*/
|
||||
final case class StopProximityEffect(terminal : ProximityTerminal) extends Exchange
|
||||
final case class StopProximityEffect(terminal : Terminal with ProximityUnit) extends Exchange
|
||||
|
||||
/**
|
||||
* Overloaded constructor.
|
||||
|
|
|
|||
|
|
@ -15,8 +15,7 @@ class TerminalControl(term : Terminal) extends Actor with FactionAffinityBehavio
|
|||
case Terminal.Request(player, msg) =>
|
||||
sender ! Terminal.TerminalMessage(player, msg, term.Request(player, msg))
|
||||
|
||||
case _ =>
|
||||
sender ! Terminal.NoDeal()
|
||||
case _ => ;
|
||||
}
|
||||
|
||||
override def toString : String = term.Definition.Name
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ abstract class TerminalDefinition(objectId : Int) extends net.psforever.objects.
|
|||
def Sell(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = Terminal.NoDeal()
|
||||
|
||||
/**
|
||||
* The unimplemented functionality for this `Terminal`'s `TransactionType.InfantryLoadout` activity.
|
||||
* The unimplemented functionality for this `Terminal`'s `TransactionType.Loadout` activity.
|
||||
*/
|
||||
def Loadout(player : Player, msg : ItemTransactionMessage) : Terminal.Exchange = Terminal.NoDeal()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ package net.psforever.objects.serverobject.terminals
|
|||
|
||||
import net.psforever.objects.definition.VehicleDefinition
|
||||
import net.psforever.objects.{Player, Vehicle}
|
||||
import net.psforever.objects.loadouts.VehicleLoadout
|
||||
import net.psforever.objects.inventory.InventoryItem
|
||||
import net.psforever.packet.game.ItemTransactionMessage
|
||||
|
||||
|
|
@ -83,7 +84,7 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
// "aphelion_flight" -> (()=>Unit)
|
||||
)
|
||||
|
||||
import net.psforever.objects.{Loadout => _Loadout} //distinguish from Terminal.Loadout message
|
||||
import net.psforever.objects.loadouts.{Loadout => _Loadout} //distinguish from Terminal.Loadout message
|
||||
import _Loadout._
|
||||
/**
|
||||
* A `Map` of the default contents of a `Vehicle` inventory, called the trunk.
|
||||
|
|
@ -101,29 +102,31 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
val ammo_flux = ShorthandAmmoBox(flux_cannon_thresher_battery, flux_cannon_thresher_battery.Capacity)
|
||||
val ammo_bomb = ShorthandAmmoBox(liberator_bomb, liberator_bomb.Capacity)
|
||||
Map(
|
||||
//"quadstealth" -> _Loadout("default_quadstealth", List(), List()),
|
||||
"quadassault" -> _Loadout("default_quadassault", List(),
|
||||
//"quadstealth" -> VehicleLoadout("default_quadstealth", List(), List(), quadstealth),
|
||||
"quadassault" -> VehicleLoadout("default_quadassault", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_12mm, 30),
|
||||
SimplifiedEntry(ammo_12mm, 34),
|
||||
SimplifiedEntry(ammo_12mm, 74),
|
||||
SimplifiedEntry(ammo_12mm, 78)
|
||||
)
|
||||
),
|
||||
quadassault
|
||||
),
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(hellfire_ammo, hellfire_ammo.Capacity)
|
||||
"fury" -> _Loadout("default_fury", List(),
|
||||
"fury" -> VehicleLoadout("default_fury", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo, 30),
|
||||
SimplifiedEntry(ammo, 34),
|
||||
SimplifiedEntry(ammo, 74),
|
||||
SimplifiedEntry(ammo, 78)
|
||||
)
|
||||
),
|
||||
fury
|
||||
)
|
||||
},
|
||||
//"ant" -> _Loadout("default_ant", List(), List()),
|
||||
//"ams" -> _Loadout("default_ams", List(), List()),
|
||||
"two_man_assault_buggy" -> _Loadout("default_two_man_assault_buggy", List(),
|
||||
//"ant" -> VehicleLoadout("default_ant", List(), List(), ant),
|
||||
//"ams" -> VehicleLoadout("default_ams", List(), List(), ams),
|
||||
"two_man_assault_buggy" -> VehicleLoadout("default_two_man_assault_buggy", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_12mm, 30),
|
||||
SimplifiedEntry(ammo_12mm, 34),
|
||||
|
|
@ -131,11 +134,12 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_12mm, 90),
|
||||
SimplifiedEntry(ammo_12mm, 94),
|
||||
SimplifiedEntry(ammo_12mm, 98)
|
||||
)
|
||||
),
|
||||
two_man_assault_buggy
|
||||
),
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(skyguard_flak_cannon_ammo, skyguard_flak_cannon_ammo.Capacity)
|
||||
"skyguard" -> _Loadout("default_skyguard", List(),
|
||||
"skyguard" -> VehicleLoadout("default_skyguard", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_12mm, 30),
|
||||
SimplifiedEntry(ammo_12mm, 34),
|
||||
|
|
@ -143,10 +147,11 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 90),
|
||||
SimplifiedEntry(ammo, 94),
|
||||
SimplifiedEntry(ammo, 98)
|
||||
)
|
||||
),
|
||||
skyguard
|
||||
)
|
||||
},
|
||||
"threemanheavybuggy" -> _Loadout("default_threemanheavybuggy", List(),
|
||||
"threemanheavybuggy" -> VehicleLoadout("default_threemanheavybuggy", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_12mm, 30),
|
||||
SimplifiedEntry(ammo_12mm, 34),
|
||||
|
|
@ -154,11 +159,12 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_mortar, 90),
|
||||
SimplifiedEntry(ammo_mortar, 94),
|
||||
SimplifiedEntry(ammo_mortar, 98)
|
||||
)
|
||||
),
|
||||
threemanheavybuggy
|
||||
),
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(firebird_missile, firebird_missile.Capacity)
|
||||
"twomanheavybuggy" -> _Loadout("default_twomanheavybuggy", List(),
|
||||
"twomanheavybuggy" -> VehicleLoadout("default_twomanheavybuggy", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo, 30),
|
||||
SimplifiedEntry(ammo, 34),
|
||||
|
|
@ -166,10 +172,11 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 90),
|
||||
SimplifiedEntry(ammo, 94),
|
||||
SimplifiedEntry(ammo, 98)
|
||||
)
|
||||
),
|
||||
twomanheavybuggy
|
||||
)
|
||||
},
|
||||
"twomanhoverbuggy" -> _Loadout("default_twomanhoverbuggy", List(),
|
||||
"twomanhoverbuggy" -> VehicleLoadout("default_twomanhoverbuggy", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_flux, 30),
|
||||
SimplifiedEntry(ammo_flux, 34),
|
||||
|
|
@ -177,9 +184,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_flux, 90),
|
||||
SimplifiedEntry(ammo_flux, 94),
|
||||
SimplifiedEntry(ammo_flux, 98)
|
||||
)
|
||||
),
|
||||
twomanhoverbuggy
|
||||
),
|
||||
"mediumtransport" -> _Loadout("default_mediumtransport", List(),
|
||||
"mediumtransport" -> VehicleLoadout("default_mediumtransport", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_20mm, 30),
|
||||
SimplifiedEntry(ammo_20mm, 34),
|
||||
|
|
@ -190,9 +198,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_20mm, 150),
|
||||
SimplifiedEntry(ammo_20mm, 154),
|
||||
SimplifiedEntry(ammo_20mm, 158)
|
||||
)
|
||||
),
|
||||
mediumtransport
|
||||
),
|
||||
"battlewagon" -> _Loadout("default_battlewagon", List(),
|
||||
"battlewagon" -> VehicleLoadout("default_battlewagon", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_15mm, 30),
|
||||
SimplifiedEntry(ammo_15mm, 34),
|
||||
|
|
@ -203,11 +212,12 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_15mm, 150),
|
||||
SimplifiedEntry(ammo_15mm, 154),
|
||||
SimplifiedEntry(ammo_15mm, 158)
|
||||
)
|
||||
),
|
||||
battlewagon
|
||||
),
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(gauss_cannon_ammo, gauss_cannon_ammo.Capacity)
|
||||
"thunderer" -> _Loadout("default_thunderer", List(),
|
||||
"thunderer" -> VehicleLoadout("default_thunderer", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo, 30),
|
||||
SimplifiedEntry(ammo, 34),
|
||||
|
|
@ -218,12 +228,13 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 150),
|
||||
SimplifiedEntry(ammo, 154),
|
||||
SimplifiedEntry(ammo, 158)
|
||||
)
|
||||
),
|
||||
thunderer
|
||||
)
|
||||
},
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(fluxpod_ammo, fluxpod_ammo.Capacity)
|
||||
"aurora" -> _Loadout("default_aurora", List(),
|
||||
"aurora" -> VehicleLoadout("default_aurora", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo, 30),
|
||||
SimplifiedEntry(ammo, 34),
|
||||
|
|
@ -234,10 +245,11 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 150),
|
||||
SimplifiedEntry(ammo, 154),
|
||||
SimplifiedEntry(ammo, 158)
|
||||
)
|
||||
),
|
||||
aurora
|
||||
)
|
||||
},
|
||||
"apc_tr" -> _Loadout("default_apc_tr", List(),
|
||||
"apc_tr" -> VehicleLoadout("default_apc_tr", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_75mm, 30),
|
||||
SimplifiedEntry(ammo_75mm, 34),
|
||||
|
|
@ -259,9 +271,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_15mm, 278),
|
||||
SimplifiedEntry(ammo_15mm, 282),
|
||||
SimplifiedEntry(ammo_15mm, 286)
|
||||
)
|
||||
),
|
||||
apc_tr
|
||||
),
|
||||
"apc_nc" -> _Loadout("default_apc_nc", List(),
|
||||
"apc_nc" -> VehicleLoadout("default_apc_nc", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_75mm, 30),
|
||||
SimplifiedEntry(ammo_75mm, 34),
|
||||
|
|
@ -283,9 +296,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_20mm, 278),
|
||||
SimplifiedEntry(ammo_20mm, 282),
|
||||
SimplifiedEntry(ammo_20mm, 286)
|
||||
)
|
||||
),
|
||||
apc_nc
|
||||
),
|
||||
"apc_vs" -> _Loadout("default_apc_vs", List(),
|
||||
"apc_vs" -> VehicleLoadout("default_apc_vs", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_75mm, 30),
|
||||
SimplifiedEntry(ammo_75mm, 34),
|
||||
|
|
@ -307,9 +321,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_flux, 278),
|
||||
SimplifiedEntry(ammo_flux, 282),
|
||||
SimplifiedEntry(ammo_flux, 286)
|
||||
)
|
||||
),
|
||||
apc_vs
|
||||
),
|
||||
"lightning" -> _Loadout("default_lightning", List(),
|
||||
"lightning" -> VehicleLoadout("default_lightning", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_25mm, 30),
|
||||
SimplifiedEntry(ammo_25mm, 34),
|
||||
|
|
@ -317,11 +332,12 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_75mm, 90),
|
||||
SimplifiedEntry(ammo_75mm, 94),
|
||||
SimplifiedEntry(ammo_75mm, 98)
|
||||
)
|
||||
),
|
||||
lightning
|
||||
),
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(bullet_105mm, bullet_105mm.Capacity)
|
||||
"prowler" -> _Loadout("default_prowler", List(),
|
||||
"prowler" -> VehicleLoadout("default_prowler", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_15mm, 30),
|
||||
SimplifiedEntry(ammo_15mm, 34),
|
||||
|
|
@ -329,12 +345,13 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 90),
|
||||
SimplifiedEntry(ammo, 94),
|
||||
SimplifiedEntry(ammo, 98)
|
||||
)
|
||||
),
|
||||
prowler
|
||||
)
|
||||
},
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(bullet_150mm, bullet_150mm.Capacity)
|
||||
"vanguard" -> _Loadout("default_vanguard", List(),
|
||||
"vanguard" -> VehicleLoadout("default_vanguard", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_20mm, 30),
|
||||
SimplifiedEntry(ammo_20mm, 34),
|
||||
|
|
@ -342,13 +359,14 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 90),
|
||||
SimplifiedEntry(ammo, 94),
|
||||
SimplifiedEntry(ammo, 98)
|
||||
)
|
||||
),
|
||||
vanguard
|
||||
)
|
||||
},
|
||||
{
|
||||
val ammo1 = ShorthandAmmoBox(pulse_battery, pulse_battery.Capacity)
|
||||
val ammo2 = ShorthandAmmoBox(heavy_rail_beam_battery, heavy_rail_beam_battery.Capacity)
|
||||
"magrider" -> _Loadout("default_magrider", List(),
|
||||
"magrider" -> VehicleLoadout("default_magrider", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo1, 30),
|
||||
SimplifiedEntry(ammo1, 34),
|
||||
|
|
@ -356,23 +374,25 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo2, 90),
|
||||
SimplifiedEntry(ammo2, 94),
|
||||
SimplifiedEntry(ammo2, 98)
|
||||
)
|
||||
),
|
||||
magrider
|
||||
)
|
||||
},
|
||||
//"flail" -> _Loadout("default_flail", List(), List()),
|
||||
//"switchblade" -> _Loadout("default_switchblade", List(), List()),
|
||||
//"router" -> _Loadout("default_router", List(), List()),
|
||||
"mosquito" -> _Loadout("default_mosquito", List(),
|
||||
//"flail" -> VehicleLoadout("default_flail", List(), List(), flail),
|
||||
//"switchblade" -> VehicleLoadout("default_switchblade", List(), List(), switchblade),
|
||||
//"router" -> VehicleLoadout("default_router", List(), List(), router),
|
||||
"mosquito" -> VehicleLoadout("default_mosquito", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_12mm, 30),
|
||||
SimplifiedEntry(ammo_12mm, 34),
|
||||
SimplifiedEntry(ammo_12mm, 74),
|
||||
SimplifiedEntry(ammo_12mm, 78)
|
||||
)
|
||||
),
|
||||
mosquito
|
||||
),
|
||||
{
|
||||
val ammo = ShorthandAmmoBox(reaver_rocket, reaver_rocket.Capacity)
|
||||
"lightgunship" -> _Loadout("default_lightgunship", List(),
|
||||
"lightgunship" -> VehicleLoadout("default_lightgunship", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo, 30),
|
||||
SimplifiedEntry(ammo, 34),
|
||||
|
|
@ -380,22 +400,24 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo, 90),
|
||||
SimplifiedEntry(ammo_20mm, 94),
|
||||
SimplifiedEntry(ammo_20mm, 98)
|
||||
)
|
||||
),
|
||||
lightgunship
|
||||
)
|
||||
},
|
||||
{
|
||||
val ammo1 = ShorthandAmmoBox(wasp_rocket_ammo, wasp_rocket_ammo.Capacity)
|
||||
val ammo2 = ShorthandAmmoBox(wasp_gun_ammo, wasp_gun_ammo.Capacity)
|
||||
"wasp" -> _Loadout("default_wasp", List(),
|
||||
"wasp" -> VehicleLoadout("default_wasp", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo1, 30),
|
||||
SimplifiedEntry(ammo1, 34),
|
||||
SimplifiedEntry(ammo2, 74),
|
||||
SimplifiedEntry(ammo2, 78)
|
||||
)
|
||||
),
|
||||
wasp
|
||||
)
|
||||
},
|
||||
"liberator" -> _Loadout("default_liberator", List(),
|
||||
"liberator" -> VehicleLoadout("default_liberator", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_35mm, 30),
|
||||
SimplifiedEntry(ammo_35mm, 34),
|
||||
|
|
@ -406,9 +428,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_bomb, 150),
|
||||
SimplifiedEntry(ammo_bomb, 154),
|
||||
SimplifiedEntry(ammo_bomb, 158)
|
||||
)
|
||||
),
|
||||
liberator
|
||||
),
|
||||
"vulture" -> _Loadout("default_vulture", List(),
|
||||
"vulture" -> VehicleLoadout("default_vulture", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_35mm, 30),
|
||||
SimplifiedEntry(ammo_35mm, 34),
|
||||
|
|
@ -418,9 +441,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_bomb, 98),
|
||||
SimplifiedEntry(ammo_bomb, 102),
|
||||
SimplifiedEntry(ammo_bomb, 106)
|
||||
) //TODO confirm
|
||||
), //TODO confirm
|
||||
vulture
|
||||
),
|
||||
"dropship" -> _Loadout("default_dropship", List(),
|
||||
"dropship" -> VehicleLoadout("default_dropship", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_20mm, 30),
|
||||
SimplifiedEntry(ammo_20mm, 34),
|
||||
|
|
@ -434,9 +458,10 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_20mm, 162),
|
||||
SimplifiedEntry(ammo_20mm, 166),
|
||||
SimplifiedEntry(ammo_20mm, 170)
|
||||
)
|
||||
),
|
||||
dropship
|
||||
),
|
||||
"galaxy_gunship" -> _Loadout("galaxy_gunship", List(),
|
||||
"galaxy_gunship" -> VehicleLoadout("galaxy_gunship", List(),
|
||||
List(
|
||||
SimplifiedEntry(ammo_35mm, 30),
|
||||
SimplifiedEntry(ammo_35mm, 34),
|
||||
|
|
@ -450,10 +475,11 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
SimplifiedEntry(ammo_mortar, 178),
|
||||
SimplifiedEntry(ammo_mortar, 182),
|
||||
SimplifiedEntry(ammo_mortar, 186)
|
||||
)
|
||||
),
|
||||
galaxy_gunship
|
||||
)
|
||||
//"phantasm" -> _Loadout("default_phantasm", List(), List()),
|
||||
//"lodestar" -> _Loadout("default_lodestar", List(), List()),
|
||||
//"phantasm" -> VehicleLoadout("default_phantasm", List(), List(), phantasm),
|
||||
//"lodestar" -> VehicleLoadout("default_lodestar", List(), List(), lodestar),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
@ -461,12 +487,12 @@ abstract class VehicleTerminalDefinition(objId : Int) extends TerminalDefinition
|
|||
vehicles.get(msg.item_name) match {
|
||||
case Some(vehicle) =>
|
||||
val (weapons, inventory) = trunk.get(msg.item_name) match {
|
||||
case Some(loadout) =>
|
||||
case Some(loadout : VehicleLoadout) =>
|
||||
(
|
||||
loadout.VisibleSlots.map(entry => { InventoryItem(EquipmentTerminalDefinition.BuildSimplifiedPattern(entry.item), entry.index) }),
|
||||
loadout.Inventory.map(entry => { InventoryItem(EquipmentTerminalDefinition.BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
loadout.visible_slots.map(entry => { InventoryItem(EquipmentTerminalDefinition.BuildSimplifiedPattern(entry.item), entry.index) }),
|
||||
loadout.inventory.map(entry => { InventoryItem(EquipmentTerminalDefinition.BuildSimplifiedPattern(entry.item), entry.index) })
|
||||
)
|
||||
case None =>
|
||||
case _ =>
|
||||
(List.empty, List.empty)
|
||||
}
|
||||
Terminal.BuyVehicle(vehicle(), weapons, inventory)
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ object GamePacketOpcode extends Enumeration {
|
|||
= Value
|
||||
|
||||
private def noDecoder(opcode : GamePacketOpcode.Type) = (a : BitVector) =>
|
||||
Attempt.failure(Err(s"Could not find a marshaller for game packet ${opcode}"))
|
||||
Attempt.failure(Err(s"Could not find a marshaller for game packet $opcode"))
|
||||
|
||||
/// Mapping of packet IDs to decoders. Notice that we are using the @switch annotation which ensures that the Scala
|
||||
/// compiler will be able to optimize this as a lookup table (switch statement). Microbenchmarks show a nearly 400x
|
||||
|
|
@ -549,7 +549,7 @@ object GamePacketOpcode extends Enumeration {
|
|||
// OPCODES 0xc0-cf
|
||||
case 0xc0 => noDecoder(CaptureFlagUpdateMessage)
|
||||
case 0xc1 => noDecoder(VanuModuleUpdateMessage)
|
||||
case 0xc2 => noDecoder(FacilityBenefitShieldChargeRequestMessage)
|
||||
case 0xc2 => game.FacilityBenefitShieldChargeRequestMessage.decode
|
||||
case 0xc3 => game.ProximityTerminalUseMessage.decode
|
||||
case 0xc4 => game.QuantityDeltaUpdateMessage.decode
|
||||
case 0xc5 => noDecoder(ChainLashMessage)
|
||||
|
|
@ -608,7 +608,7 @@ object GamePacketOpcode extends Enumeration {
|
|||
case 0xf1 => game.MailMessage.decode
|
||||
case 0xf2 => noDecoder(GameVarUpdate)
|
||||
case 0xf3 => noDecoder(ClientCheatedMessage)
|
||||
case default => noDecoder(opcode)
|
||||
case _ => noDecoder(opcode)
|
||||
}
|
||||
|
||||
implicit val codec: Codec[this.Value] = PacketHelpers.createEnumerationCodec(this, uint8L)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,24 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.packet.game
|
||||
|
||||
import net.psforever.packet.{GamePacketOpcode, Marshallable, PlanetSideGamePacket}
|
||||
import scodec.Codec
|
||||
import scodec.codecs._
|
||||
|
||||
/**
|
||||
* Dispatched by the client when driving a vehicle in the sphere of influence of an allied base
|
||||
* that is an amp station facility or that possesses the lattice-connected benefit of an amp station.
|
||||
* The vehicle that is being driven will not have perfect fully-charged shields at the time.
|
||||
* @param vehicle_guid the vehicle whose shield is being charged
|
||||
*/
|
||||
final case class FacilityBenefitShieldChargeRequestMessage(vehicle_guid : PlanetSideGUID)
|
||||
extends PlanetSideGamePacket {
|
||||
type Packet = FacilityBenefitShieldChargeRequestMessage
|
||||
def opcode = GamePacketOpcode.FacilityBenefitShieldChargeRequestMessage
|
||||
def encode = FacilityBenefitShieldChargeRequestMessage.encode(this)
|
||||
}
|
||||
|
||||
object FacilityBenefitShieldChargeRequestMessage extends Marshallable[FacilityBenefitShieldChargeRequestMessage] {
|
||||
implicit val codec : Codec[FacilityBenefitShieldChargeRequestMessage] =
|
||||
("vehicle_guid" | PlanetSideGUID.codec).as[FacilityBenefitShieldChargeRequestMessage]
|
||||
}
|
||||
|
|
@ -2,6 +2,7 @@
|
|||
package net.psforever.packet.game
|
||||
|
||||
import net.psforever.packet.{GamePacketOpcode, Marshallable, PacketHelpers, PlanetSideGamePacket}
|
||||
import net.psforever.types.LoadoutType
|
||||
import scodec.Codec
|
||||
import scodec.codecs._
|
||||
import shapeless.{::, HNil}
|
||||
|
|
@ -18,12 +19,6 @@ import shapeless.{::, HNil}
|
|||
* Infantry equipment favorites are appended with a code for the type of exo-suit that they will load on a player.
|
||||
* This does not match the same two field numbering system as in `ArmorChangedMessage` packets.<br>
|
||||
* <br>
|
||||
* Lists:<br>
|
||||
* `
|
||||
* 0 - Equipment Terminal (infantry)<br>
|
||||
* 1 - Repair/Rearm Silo (standard vehicles)<br>
|
||||
* `
|
||||
* <br>
|
||||
* Armors:<br>
|
||||
* `
|
||||
* 1 - Agile<br>
|
||||
|
|
@ -33,13 +28,7 @@ import shapeless.{::, HNil}
|
|||
* 6 - AV MAX<br>
|
||||
* `
|
||||
* <br>
|
||||
* Exploration 1:<br>
|
||||
* The identifier for the list is two bits so four separated lists of `Favorites` are supportable.
|
||||
* Two of the lists are common enough and we can assume one of the others is related to Battleframe Robotics.
|
||||
* These lists also do not include `Squad Defintion...` presets.
|
||||
* What are the unknown lists?<br>
|
||||
* <br>
|
||||
* Exploration 2:<br>
|
||||
* Exploration:<br>
|
||||
* There are three unaccounted exo-suit indices - 0, 3, and 7;
|
||||
* and, there are two specific kinds of exo-suit that are not defined - Infiltration and Standard.
|
||||
* It is possible that one of the indices also defines the generic MAX (see `ArmorChangedMessage`).
|
||||
|
|
@ -50,11 +39,11 @@ import shapeless.{::, HNil}
|
|||
* @param label the identifier for this entry
|
||||
* @param armor the type of exo-suit, if an Infantry loadout
|
||||
*/
|
||||
final case class FavoritesMessage(list : Int,
|
||||
final case class FavoritesMessage(list : LoadoutType.Value,
|
||||
player_guid : PlanetSideGUID,
|
||||
line : Int,
|
||||
label : String,
|
||||
armor : Option[Int] = None)
|
||||
armor : Option[Int])
|
||||
extends PlanetSideGamePacket {
|
||||
type Packet = FavoritesMessage
|
||||
def opcode = GamePacketOpcode.FavoritesMessage
|
||||
|
|
@ -62,12 +51,36 @@ final case class FavoritesMessage(list : Int,
|
|||
}
|
||||
|
||||
object FavoritesMessage extends Marshallable[FavoritesMessage] {
|
||||
implicit val codec : Codec[FavoritesMessage] = (
|
||||
("list" | uint2L) >>:~ { value =>
|
||||
/**
|
||||
* Overloaded constructor, for infantry loadouts specifically.
|
||||
* @param list the destination list
|
||||
* @param player_guid the player
|
||||
* @param line the zero-indexed line number of this entry in its list
|
||||
* @param label the identifier for this entry
|
||||
* @param armor the type of exo-suit, if an Infantry loadout
|
||||
* @return a `FavoritesMessage` object
|
||||
*/
|
||||
def apply(list : LoadoutType.Value, player_guid : PlanetSideGUID, line : Int, label : String, armor : Int) : FavoritesMessage = {
|
||||
FavoritesMessage(list, player_guid, line, label, Some(armor))
|
||||
}
|
||||
|
||||
/**
|
||||
* Overloaded constructor, for vehicle loadouts specifically.
|
||||
* @param list the destination list
|
||||
* @param player_guid the player
|
||||
* @param line the zero-indexed line number of this entry in its list
|
||||
* @param label the identifier for this entry
|
||||
* @return a `FavoritesMessage` object
|
||||
*/
|
||||
def apply(list : LoadoutType.Value, player_guid : PlanetSideGUID, line : Int, label : String) : FavoritesMessage = {
|
||||
FavoritesMessage(list, player_guid, line, label, None)
|
||||
}
|
||||
implicit val codec : Codec[FavoritesMessage] = (
|
||||
("list" | LoadoutType.codec) >>:~ { value =>
|
||||
("player_guid" | PlanetSideGUID.codec) ::
|
||||
("line" | uint4L) ::
|
||||
("label" | PacketHelpers.encodedWideStringAligned(2)) ::
|
||||
conditional(value == 0, "armor" | uintL(3))
|
||||
conditional(value == LoadoutType.Infantry, "armor" | uintL(3))
|
||||
}).xmap[FavoritesMessage] (
|
||||
{
|
||||
case lst :: guid :: ln :: str :: arm :: HNil =>
|
||||
|
|
@ -75,7 +88,7 @@ object FavoritesMessage extends Marshallable[FavoritesMessage] {
|
|||
},
|
||||
{
|
||||
case FavoritesMessage(lst, guid, ln, str, arm) =>
|
||||
val armset : Option[Int] = if(lst == 0 && arm.isEmpty) { Some(0) } else { arm }
|
||||
val armset : Option[Int] = if(lst == LoadoutType.Infantry && arm.isEmpty) { Some(0) } else { arm }
|
||||
lst :: guid :: ln :: str :: armset :: HNil
|
||||
}
|
||||
)
|
||||
|
|
|
|||
|
|
@ -2,21 +2,33 @@
|
|||
package net.psforever.packet.game
|
||||
|
||||
import net.psforever.packet.{GamePacketOpcode, Marshallable, PacketHelpers, PlanetSideGamePacket}
|
||||
import net.psforever.types.LoadoutType
|
||||
import scodec.Codec
|
||||
import scodec.codecs._
|
||||
|
||||
object FavoritesAction extends Enumeration {
|
||||
type Type = Value
|
||||
|
||||
val Unknown,
|
||||
Save,
|
||||
Delete = Value
|
||||
val
|
||||
Unknown,
|
||||
Save,
|
||||
Delete
|
||||
= Value
|
||||
|
||||
implicit val codec = PacketHelpers.createEnumerationCodec(this, uint2L)
|
||||
}
|
||||
|
||||
/**
|
||||
* na
|
||||
* @param player_guid the player
|
||||
* @param list na
|
||||
* @param action the behavior of this packet
|
||||
* @param line what line of the applicable loadout ("Saved Favorites") list is modified
|
||||
* @param label applicable when a load out is being saved;
|
||||
* this is the string that will be displayed in the list of loadouts on that line
|
||||
*/
|
||||
final case class FavoritesRequest(player_guid : PlanetSideGUID,
|
||||
unk : Int,
|
||||
list : LoadoutType.Value,
|
||||
action : FavoritesAction.Value,
|
||||
line : Int,
|
||||
label : Option[String])
|
||||
|
|
@ -29,7 +41,7 @@ final case class FavoritesRequest(player_guid : PlanetSideGUID,
|
|||
object FavoritesRequest extends Marshallable[FavoritesRequest] {
|
||||
implicit val codec : Codec[FavoritesRequest] = (
|
||||
("player_guid" | PlanetSideGUID.codec) ::
|
||||
("unk" | uint2L) ::
|
||||
("list" | LoadoutType.codec) ::
|
||||
(("action" | FavoritesAction.codec) >>:~ { action =>
|
||||
("line" | uint4L) ::
|
||||
conditional(action == FavoritesAction.Save, "label" | PacketHelpers.encodedWideString)
|
||||
|
|
|
|||
16
common/src/main/scala/net/psforever/types/LoadoutType.scala
Normal file
16
common/src/main/scala/net/psforever/types/LoadoutType.scala
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package net.psforever.types
|
||||
|
||||
import net.psforever.packet.PacketHelpers
|
||||
import scodec.codecs.uint2L
|
||||
|
||||
object LoadoutType extends Enumeration {
|
||||
type Type = Value
|
||||
|
||||
val
|
||||
Infantry,
|
||||
Vehicle
|
||||
= Value
|
||||
|
||||
implicit val codec = PacketHelpers.createEnumerationCodec(this, uint2L)
|
||||
}
|
||||
|
|
@ -12,7 +12,7 @@ object TransactionType extends Enumeration {
|
|||
Sell, // or forget on certif term
|
||||
Unk4,
|
||||
Unk5,
|
||||
InfantryLoadout,
|
||||
Loadout,
|
||||
Unk7
|
||||
= Value
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package game
|
||||
|
||||
import org.specs2.mutable._
|
||||
import net.psforever.packet._
|
||||
import net.psforever.packet.game._
|
||||
import scodec.bits._
|
||||
|
||||
class FacilityBenefitShieldChargeRequestMessageTest extends Specification {
|
||||
val string = hex"C2 4C00"
|
||||
|
||||
"decode" in {
|
||||
PacketCoding.DecodePacket(string).require match {
|
||||
case FacilityBenefitShieldChargeRequestMessage(guid) =>
|
||||
guid mustEqual PlanetSideGUID(76)
|
||||
case _ =>
|
||||
ko
|
||||
}
|
||||
}
|
||||
|
||||
"encode" in {
|
||||
val msg = FacilityBenefitShieldChargeRequestMessage(PlanetSideGUID(76))
|
||||
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
||||
|
||||
pkt mustEqual string
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -4,6 +4,7 @@ package game
|
|||
import org.specs2.mutable._
|
||||
import net.psforever.packet._
|
||||
import net.psforever.packet.game._
|
||||
import net.psforever.types.LoadoutType
|
||||
import scodec.bits._
|
||||
|
||||
class FavoritesMessageTest extends Specification {
|
||||
|
|
@ -13,7 +14,7 @@ class FavoritesMessageTest extends Specification {
|
|||
"decode (for infantry)" in {
|
||||
PacketCoding.DecodePacket(stringInfantry).require match {
|
||||
case FavoritesMessage(list, player_guid, line, label, armor) =>
|
||||
list mustEqual 0
|
||||
list mustEqual LoadoutType.Infantry
|
||||
player_guid mustEqual PlanetSideGUID(3760)
|
||||
line mustEqual 0
|
||||
label mustEqual "Agile (basic)"
|
||||
|
|
@ -25,7 +26,7 @@ class FavoritesMessageTest extends Specification {
|
|||
}
|
||||
|
||||
"encode (for infantry)" in {
|
||||
val msg = FavoritesMessage(0, PlanetSideGUID(3760), 0, "Agile (basic)", Option(1))
|
||||
val msg = FavoritesMessage(LoadoutType.Infantry, PlanetSideGUID(3760), 0, "Agile (basic)", 1)
|
||||
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
||||
|
||||
pkt mustEqual stringInfantry
|
||||
|
|
@ -34,7 +35,7 @@ class FavoritesMessageTest extends Specification {
|
|||
"decode (for vehicles)" in {
|
||||
PacketCoding.DecodePacket(stringVehicles).require match {
|
||||
case FavoritesMessage(list, player_guid, line, label, armor) =>
|
||||
list mustEqual 1
|
||||
list mustEqual LoadoutType.Vehicle
|
||||
player_guid mustEqual PlanetSideGUID(4210)
|
||||
line mustEqual 0
|
||||
label mustEqual "Skyguard"
|
||||
|
|
@ -45,7 +46,7 @@ class FavoritesMessageTest extends Specification {
|
|||
}
|
||||
|
||||
"encode (for vehicles)" in {
|
||||
val msg = FavoritesMessage(1, PlanetSideGUID(4210), 0, "Skyguard")
|
||||
val msg = FavoritesMessage(LoadoutType.Vehicle, PlanetSideGUID(4210), 0, "Skyguard")
|
||||
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
||||
|
||||
pkt mustEqual stringVehicles
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ package game
|
|||
import org.specs2.mutable._
|
||||
import net.psforever.packet._
|
||||
import net.psforever.packet.game._
|
||||
import net.psforever.types.LoadoutType
|
||||
import scodec.bits._
|
||||
|
||||
class FavoritesRequestTest extends Specification {
|
||||
|
|
@ -11,9 +12,9 @@ class FavoritesRequestTest extends Specification {
|
|||
|
||||
"decode (for infantry)" in {
|
||||
PacketCoding.DecodePacket(stringInfantry).require match {
|
||||
case FavoritesRequest(player_guid, unk, action, line, label) =>
|
||||
case FavoritesRequest(player_guid, list, action, line, label) =>
|
||||
player_guid mustEqual PlanetSideGUID(75)
|
||||
unk mustEqual 0
|
||||
list mustEqual LoadoutType.Infantry
|
||||
action mustEqual FavoritesAction.Save
|
||||
line mustEqual 1
|
||||
label.isDefined mustEqual true
|
||||
|
|
@ -24,7 +25,7 @@ class FavoritesRequestTest extends Specification {
|
|||
}
|
||||
|
||||
"encode (for infantry)" in {
|
||||
val msg = FavoritesRequest(PlanetSideGUID(75), 0, FavoritesAction.Save, 1, Some("Example"))
|
||||
val msg = FavoritesRequest(PlanetSideGUID(75), LoadoutType.Infantry, FavoritesAction.Save, 1, Some("Example"))
|
||||
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
||||
|
||||
pkt mustEqual stringInfantry
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ package objects
|
|||
|
||||
import net.psforever.objects.GlobalDefinitions._
|
||||
import net.psforever.objects._
|
||||
import net.psforever.objects.loadouts._
|
||||
import net.psforever.objects.definition.ImplantDefinition
|
||||
import net.psforever.types.{CharacterGender, ImplantType, PlanetSideEmpire}
|
||||
import org.specs2.mutable._
|
||||
|
|
@ -291,13 +292,13 @@ class AvatarTest extends Specification {
|
|||
avatar.SaveLoadout(obj, "test", 0)
|
||||
|
||||
avatar.LoadLoadout(0) match {
|
||||
case Some(items) =>
|
||||
items.Label mustEqual "test"
|
||||
items.ExoSuit mustEqual obj.ExoSuit
|
||||
items.Subtype mustEqual 0
|
||||
case Some(items : InfantryLoadout) =>
|
||||
items.label mustEqual "test"
|
||||
items.exosuit mustEqual obj.ExoSuit
|
||||
items.subtype mustEqual 0
|
||||
|
||||
items.VisibleSlots.length mustEqual 3
|
||||
val holsters = items.VisibleSlots.sortBy(_.index)
|
||||
items.visible_slots.length mustEqual 3
|
||||
val holsters = items.visible_slots.sortBy(_.index)
|
||||
holsters.head.index mustEqual 0
|
||||
holsters.head.item.asInstanceOf[Loadout.ShorthandTool].definition mustEqual beamer
|
||||
holsters.head.item.asInstanceOf[Loadout.ShorthandTool].ammo.head.ammo.capacity mustEqual 1 //we changed this
|
||||
|
|
@ -307,8 +308,8 @@ class AvatarTest extends Specification {
|
|||
holsters(2).index mustEqual 4
|
||||
holsters(2).item.asInstanceOf[Loadout.ShorthandTool].definition mustEqual forceblade
|
||||
|
||||
items.Inventory.length mustEqual 6
|
||||
val inventory = items.Inventory.sortBy(_.index)
|
||||
items.inventory.length mustEqual 6
|
||||
val inventory = items.inventory.sortBy(_.index)
|
||||
inventory.head.index mustEqual 6
|
||||
inventory.head.item.asInstanceOf[Loadout.ShorthandAmmoBox].definition mustEqual bullet_9mm
|
||||
inventory(1).index mustEqual 9
|
||||
|
|
@ -321,7 +322,7 @@ class AvatarTest extends Specification {
|
|||
inventory(4).item.asInstanceOf[Loadout.ShorthandAmmoBox].definition mustEqual energy_cell
|
||||
inventory(5).index mustEqual 39
|
||||
inventory(5).item.asInstanceOf[Loadout.ShorthandSimpleItem].definition mustEqual remote_electronics_kit
|
||||
case None =>
|
||||
case _ =>
|
||||
ko
|
||||
}
|
||||
}
|
||||
|
|
@ -347,13 +348,13 @@ class AvatarTest extends Specification {
|
|||
avatar.SaveLoadout(obj, "test", 0)
|
||||
|
||||
avatar.LoadLoadout(0) match {
|
||||
case Some(items) =>
|
||||
items.Label mustEqual "test"
|
||||
items.ExoSuit mustEqual obj.ExoSuit
|
||||
items.Subtype mustEqual 0
|
||||
items.VisibleSlots.length mustEqual 3
|
||||
items.Inventory.length mustEqual 0 //empty
|
||||
case None =>
|
||||
case Some(items : InfantryLoadout) =>
|
||||
items.label mustEqual "test"
|
||||
items.exosuit mustEqual obj.ExoSuit
|
||||
items.subtype mustEqual 0
|
||||
items.visible_slots.length mustEqual 3
|
||||
items.inventory.length mustEqual 0 //empty
|
||||
case _ =>
|
||||
ko
|
||||
}
|
||||
}
|
||||
|
|
@ -366,13 +367,13 @@ class AvatarTest extends Specification {
|
|||
avatar.SaveLoadout(obj, "test", 0)
|
||||
|
||||
avatar.LoadLoadout(0) match {
|
||||
case Some(items) =>
|
||||
items.Label mustEqual "test"
|
||||
items.ExoSuit mustEqual obj.ExoSuit
|
||||
items.Subtype mustEqual 0
|
||||
items.VisibleSlots.length mustEqual 0 //empty
|
||||
items.Inventory.length mustEqual 6
|
||||
case None =>
|
||||
case Some(items : InfantryLoadout) =>
|
||||
items.label mustEqual "test"
|
||||
items.exosuit mustEqual obj.ExoSuit
|
||||
items.subtype mustEqual 0
|
||||
items.visible_slots.length mustEqual 0 //empty
|
||||
items.inventory.length mustEqual 6
|
||||
case _ =>
|
||||
ko
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
package objects
|
||||
|
||||
import net.psforever.objects._
|
||||
import net.psforever.objects.loadouts._
|
||||
import net.psforever.types.{CharacterGender, ExoSuitType, PlanetSideEmpire}
|
||||
import net.psforever.objects.GlobalDefinitions._
|
||||
import org.specs2.mutable._
|
||||
|
|
@ -36,14 +37,14 @@ class LoadoutTest extends Specification {
|
|||
|
||||
"create a loadout that contains a player's inventory" in {
|
||||
val player = CreatePlayer()
|
||||
val obj = Loadout.Create(player, "test")
|
||||
val obj = Loadout.Create(player, "test").asInstanceOf[InfantryLoadout]
|
||||
|
||||
obj.Label mustEqual "test"
|
||||
obj.ExoSuit mustEqual obj.ExoSuit
|
||||
obj.Subtype mustEqual 0
|
||||
obj.label mustEqual "test"
|
||||
obj.exosuit mustEqual ExoSuitType.Standard
|
||||
obj.subtype mustEqual 0
|
||||
|
||||
obj.VisibleSlots.length mustEqual 3
|
||||
val holsters = obj.VisibleSlots.sortBy(_.index)
|
||||
obj.visible_slots.length mustEqual 3
|
||||
val holsters = obj.visible_slots.sortBy(_.index)
|
||||
holsters.head.index mustEqual 0
|
||||
holsters.head.item.asInstanceOf[Loadout.ShorthandTool].definition mustEqual beamer
|
||||
holsters(1).index mustEqual 2
|
||||
|
|
@ -51,8 +52,8 @@ class LoadoutTest extends Specification {
|
|||
holsters(2).index mustEqual 4
|
||||
holsters(2).item.asInstanceOf[Loadout.ShorthandTool].definition mustEqual forceblade
|
||||
|
||||
obj.Inventory.length mustEqual 5
|
||||
val inventory = obj.Inventory.sortBy(_.index)
|
||||
obj.inventory.length mustEqual 5
|
||||
val inventory = obj.inventory.sortBy(_.index)
|
||||
inventory.head.index mustEqual 6
|
||||
inventory.head.item.asInstanceOf[Loadout.ShorthandConstructionItem].definition mustEqual ace
|
||||
inventory(1).index mustEqual 9
|
||||
|
|
@ -65,26 +66,86 @@ class LoadoutTest extends Specification {
|
|||
inventory(4).item.asInstanceOf[Loadout.ShorthandSimpleItem].definition mustEqual remote_electronics_kit
|
||||
}
|
||||
|
||||
"create a loadout that contains a vehicle's inventory" in {
|
||||
val vehicle = Vehicle(mediumtransport)
|
||||
vehicle.Inventory += 30 -> AmmoBox(bullet_9mm)
|
||||
vehicle.Inventory += 33 -> AmmoBox(bullet_9mm_AP)
|
||||
val obj = Loadout.Create(vehicle, "test").asInstanceOf[VehicleLoadout]
|
||||
|
||||
obj.label mustEqual "test"
|
||||
obj.vehicle_definition mustEqual mediumtransport
|
||||
|
||||
obj.visible_slots.length mustEqual 2
|
||||
val holsters = obj.visible_slots.sortBy(_.index)
|
||||
holsters.head.index mustEqual 5
|
||||
holsters.head.item.asInstanceOf[Loadout.ShorthandTool].definition mustEqual mediumtransport_weapon_systemA
|
||||
holsters(1).index mustEqual 6
|
||||
holsters(1).item.asInstanceOf[Loadout.ShorthandTool].definition mustEqual mediumtransport_weapon_systemB
|
||||
|
||||
obj.inventory.length mustEqual 2
|
||||
val inventory = obj.inventory.sortBy(_.index)
|
||||
inventory.head.index mustEqual 30
|
||||
inventory.head.item.asInstanceOf[Loadout.ShorthandAmmoBox].definition mustEqual bullet_9mm
|
||||
inventory(1).index mustEqual 33
|
||||
inventory(1).item.asInstanceOf[Loadout.ShorthandAmmoBox].definition mustEqual bullet_9mm_AP
|
||||
}
|
||||
|
||||
"distinguish MAX subtype information" in {
|
||||
val player = CreatePlayer()
|
||||
val slot = player.Slot(0)
|
||||
slot.Equipment = None //only an unequipped slot can have its Equipment Size changed (Rifle -> Max)
|
||||
Player.SuitSetup(player, ExoSuitType.MAX)
|
||||
|
||||
val ldout1 = Loadout.Create(player, "weaponless")
|
||||
val ldout1 = Loadout.Create(player, "weaponless").asInstanceOf[InfantryLoadout]
|
||||
slot.Equipment = None
|
||||
slot.Equipment = Tool(trhev_dualcycler)
|
||||
val ldout2 = Loadout.Create(player, "cycler")
|
||||
val ldout2 = Loadout.Create(player, "cycler").asInstanceOf[InfantryLoadout]
|
||||
slot.Equipment = None
|
||||
slot.Equipment = Tool(trhev_pounder)
|
||||
val ldout3 = Loadout.Create(player, "pounder")
|
||||
val ldout3 = Loadout.Create(player, "pounder").asInstanceOf[InfantryLoadout]
|
||||
slot.Equipment = None
|
||||
slot.Equipment = Tool(trhev_burster)
|
||||
val ldout4 = Loadout.Create(player, "burster")
|
||||
val ldout4 = Loadout.Create(player, "burster").asInstanceOf[InfantryLoadout]
|
||||
|
||||
ldout1.Subtype mustEqual 0
|
||||
ldout2.Subtype mustEqual 1
|
||||
ldout3.Subtype mustEqual 2
|
||||
ldout4.Subtype mustEqual 3
|
||||
ldout1.subtype mustEqual 0
|
||||
ldout2.subtype mustEqual 1
|
||||
ldout3.subtype mustEqual 2
|
||||
ldout4.subtype mustEqual InfantryLoadout.DetermineSubtype(player) //example
|
||||
}
|
||||
|
||||
"players have additional uniform subtype" in {
|
||||
val player = CreatePlayer()
|
||||
val slot = player.Slot(0)
|
||||
slot.Equipment = None //only an unequipped slot can have its Equipment Size changed (Rifle -> Max)
|
||||
|
||||
player.ExoSuit = ExoSuitType.Standard
|
||||
val ldout0 = Loadout.Create(player, "standard").asInstanceOf[InfantryLoadout]
|
||||
player.ExoSuit = ExoSuitType.Agile
|
||||
val ldout1 = Loadout.Create(player, "agile").asInstanceOf[InfantryLoadout]
|
||||
player.ExoSuit = ExoSuitType.Reinforced
|
||||
val ldout2 = Loadout.Create(player, "rein").asInstanceOf[InfantryLoadout]
|
||||
player.ExoSuit = ExoSuitType.Infiltration
|
||||
val ldout7 = Loadout.Create(player, "inf").asInstanceOf[InfantryLoadout]
|
||||
|
||||
Player.SuitSetup(player, ExoSuitType.MAX)
|
||||
val ldout3 = Loadout.Create(player, "weaponless").asInstanceOf[InfantryLoadout]
|
||||
slot.Equipment = None
|
||||
slot.Equipment = Tool(trhev_dualcycler)
|
||||
val ldout4 = Loadout.Create(player, "cycler").asInstanceOf[InfantryLoadout]
|
||||
slot.Equipment = None
|
||||
slot.Equipment = Tool(trhev_pounder)
|
||||
val ldout5 = Loadout.Create(player, "pounder").asInstanceOf[InfantryLoadout]
|
||||
slot.Equipment = None
|
||||
slot.Equipment = Tool(trhev_burster)
|
||||
val ldout6 = Loadout.Create(player, "burster").asInstanceOf[InfantryLoadout]
|
||||
|
||||
InfantryLoadout.DetermineSubtypeB(ldout0.exosuit, ldout0.subtype) mustEqual 0
|
||||
InfantryLoadout.DetermineSubtypeB(ldout1.exosuit, ldout1.subtype) mustEqual 1
|
||||
InfantryLoadout.DetermineSubtypeB(ldout2.exosuit, ldout2.subtype) mustEqual 2
|
||||
InfantryLoadout.DetermineSubtypeB(ldout3.exosuit, ldout3.subtype) mustEqual 3
|
||||
InfantryLoadout.DetermineSubtypeB(ldout4.exosuit, ldout4.subtype) mustEqual 4
|
||||
InfantryLoadout.DetermineSubtypeB(ldout5.exosuit, ldout5.subtype) mustEqual 5
|
||||
InfantryLoadout.DetermineSubtypeB(ldout6.exosuit, ldout6.subtype) mustEqual 6
|
||||
InfantryLoadout.DetermineSubtypeB(ldout7.exosuit, ldout7.subtype) mustEqual 7
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -277,6 +277,38 @@ class VehicleTest extends Specification {
|
|||
filteredMap(0).UtilType mustEqual UtilityType.order_terminalb
|
||||
filteredMap(2).UtilType mustEqual UtilityType.order_terminalb
|
||||
}
|
||||
|
||||
"access its mounted weapons by Slot" in {
|
||||
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
||||
harasser_vehicle.Weapons(2).Equipment.get.GUID = PlanetSideGUID(10)
|
||||
|
||||
harasser_vehicle.Slot(2).Equipment.get.GUID mustEqual PlanetSideGUID(10)
|
||||
}
|
||||
|
||||
"access its trunk by Slot" in {
|
||||
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
||||
val ammobox = AmmoBox(GlobalDefinitions.armor_canister)
|
||||
ammobox.GUID = PlanetSideGUID(10)
|
||||
harasser_vehicle.Inventory += 30 -> ammobox
|
||||
|
||||
harasser_vehicle.Slot(30).Equipment.get.GUID mustEqual PlanetSideGUID(10)
|
||||
}
|
||||
|
||||
"find its mounted weapons by GUID" in {
|
||||
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
||||
harasser_vehicle.Weapons(2).Equipment.get.GUID = PlanetSideGUID(10)
|
||||
|
||||
harasser_vehicle.Find(PlanetSideGUID(10)) mustEqual Some(2)
|
||||
}
|
||||
|
||||
"find items in its trunk by GUID" in {
|
||||
val harasser_vehicle = Vehicle(GlobalDefinitions.two_man_assault_buggy)
|
||||
val ammobox = AmmoBox(GlobalDefinitions.armor_canister)
|
||||
ammobox.GUID = PlanetSideGUID(10)
|
||||
harasser_vehicle.Inventory += 30 -> ammobox
|
||||
|
||||
harasser_vehicle.Find(PlanetSideGUID(10)) mustEqual Some(30)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -68,10 +68,10 @@ class OrderTerminalABTest extends Specification {
|
|||
player.ExoSuit = ExoSuitType.MAX
|
||||
avatar.SaveLoadout(player, "test2", 1)
|
||||
|
||||
val msg1 = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.InfantryLoadout, 4, "", 0, PlanetSideGUID(0))
|
||||
val msg1 = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.Loadout, 4, "", 0, PlanetSideGUID(0))
|
||||
terminal.Request(player, msg1) mustEqual Terminal.InfantryLoadout(ExoSuitType.Standard, 0, Nil, Nil)
|
||||
|
||||
val msg2 = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.InfantryLoadout, 4, "", 1, PlanetSideGUID(0))
|
||||
val msg2 = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.Loadout, 4, "", 1, PlanetSideGUID(0))
|
||||
terminal.Request(player, msg2) mustEqual Terminal.NoDeal()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -72,12 +72,54 @@ class OrderTerminalTest extends Specification {
|
|||
terminal.Request(player, msg) mustEqual Terminal.NoDeal()
|
||||
}
|
||||
|
||||
//TODO loudout tests
|
||||
|
||||
"player can not buy equipment from the wrong page ('9mmbullet_AP', page 1)" in {
|
||||
val msg = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.Buy, 1, "9mmbullet_AP", 0, PlanetSideGUID(0))
|
||||
|
||||
terminal.Request(player, msg) mustEqual Terminal.NoDeal()
|
||||
}
|
||||
|
||||
"player can retrieve an infantry loadout" in {
|
||||
val avatar = Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0)
|
||||
val player2 = Player(avatar)
|
||||
player2.ExoSuit = ExoSuitType.Agile
|
||||
player2.Slot(0).Equipment = Tool(GlobalDefinitions.beamer)
|
||||
player2.Slot(6).Equipment = Tool(GlobalDefinitions.beamer)
|
||||
avatar.SaveLoadout(player2, "test", 0)
|
||||
|
||||
val msg = terminal.Request(player2, ItemTransactionMessage(PlanetSideGUID(10), TransactionType.Loadout, 4, "", 0, PlanetSideGUID(0)))
|
||||
msg.isInstanceOf[Terminal.InfantryLoadout] mustEqual true
|
||||
val loadout = msg.asInstanceOf[Terminal.InfantryLoadout]
|
||||
loadout.exosuit mustEqual ExoSuitType.Agile
|
||||
loadout.subtype mustEqual 0
|
||||
loadout.holsters.size mustEqual 1
|
||||
loadout.holsters.head.obj.Definition mustEqual GlobalDefinitions.beamer
|
||||
loadout.holsters.head.start mustEqual 0
|
||||
loadout.inventory.head.obj.Definition mustEqual GlobalDefinitions.beamer
|
||||
loadout.inventory.head.start mustEqual 6
|
||||
}
|
||||
|
||||
"player can not retrieve an infantry loadout from the wrong page" in {
|
||||
val avatar = Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0)
|
||||
val player2 = Player(avatar)
|
||||
player2.ExoSuit = ExoSuitType.Agile
|
||||
player2.Slot(0).Equipment = Tool(GlobalDefinitions.beamer)
|
||||
player2.Slot(6).Equipment = Tool(GlobalDefinitions.beamer)
|
||||
avatar.SaveLoadout(player2, "test", 0)
|
||||
|
||||
val msg = terminal.Request(player2, ItemTransactionMessage(PlanetSideGUID(10), TransactionType.Loadout, 3, "", 0, PlanetSideGUID(0))) //page 3
|
||||
msg.isInstanceOf[Terminal.NoDeal] mustEqual true
|
||||
}
|
||||
|
||||
"player can not retrieve an infantry loadout from the wrong line" in {
|
||||
val avatar = Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0)
|
||||
val player2 = Player(avatar)
|
||||
player2.ExoSuit = ExoSuitType.Agile
|
||||
player2.Slot(0).Equipment = Tool(GlobalDefinitions.beamer)
|
||||
player2.Slot(6).Equipment = Tool(GlobalDefinitions.beamer)
|
||||
avatar.SaveLoadout(player2, "test", 0)
|
||||
|
||||
val msg = terminal.Request(player2, ItemTransactionMessage(PlanetSideGUID(10), TransactionType.Loadout, 4, "", 1, PlanetSideGUID(0)))
|
||||
msg.isInstanceOf[Terminal.NoDeal] mustEqual true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,8 +25,7 @@ class ProximityTerminalControl2Test extends ActorTest() {
|
|||
val (_, terminal) = TerminalControlTest.SetUpAgents(GlobalDefinitions.medical_terminal, PlanetSideEmpire.TR)
|
||||
|
||||
terminal.Actor !"hello"
|
||||
val reply = receiveOne(Duration.create(500, "ms"))
|
||||
assert(reply.isInstanceOf[Terminal.NoDeal])
|
||||
expectNoMsg(Duration.create(500, "ms"))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
170
common/src/test/scala/objects/terminal/ProximityTest.scala
Normal file
170
common/src/test/scala/objects/terminal/ProximityTest.scala
Normal file
|
|
@ -0,0 +1,170 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package objects.terminal
|
||||
|
||||
import akka.actor.Props
|
||||
import net.psforever.objects.serverobject.CommonMessages
|
||||
import net.psforever.objects.serverobject.terminals.Terminal.TerminalMessage
|
||||
import net.psforever.objects.serverobject.terminals.{ProximityTerminal, ProximityTerminalControl, ProximityUnit, Terminal}
|
||||
import net.psforever.objects.{Avatar, GlobalDefinitions, Player}
|
||||
import net.psforever.packet.game.PlanetSideGUID
|
||||
import net.psforever.types.{CharacterGender, PlanetSideEmpire}
|
||||
import objects.ActorTest
|
||||
import org.specs2.mutable.Specification
|
||||
|
||||
import scala.concurrent.duration._
|
||||
|
||||
class ProximityTest extends Specification {
|
||||
"ProximityUnit" should {
|
||||
"construct (with a Terminal object)" in {
|
||||
val obj = new ProximityTest.SampleTerminal()
|
||||
obj.NumberUsers mustEqual 0
|
||||
}
|
||||
|
||||
"keep track of users (add)" in {
|
||||
val obj = new ProximityTest.SampleTerminal()
|
||||
obj.NumberUsers mustEqual 0
|
||||
obj.AddUser(PlanetSideGUID(10)) mustEqual obj.NumberUsers
|
||||
obj.NumberUsers mustEqual 1
|
||||
obj.AddUser(PlanetSideGUID(20)) mustEqual obj.NumberUsers
|
||||
obj.NumberUsers mustEqual 2
|
||||
}
|
||||
|
||||
"keep track of users (remove)" in {
|
||||
val obj = new ProximityTest.SampleTerminal()
|
||||
obj.AddUser(PlanetSideGUID(10))
|
||||
obj.AddUser(PlanetSideGUID(20))
|
||||
obj.NumberUsers mustEqual 2
|
||||
obj.RemoveUser(PlanetSideGUID(10)) mustEqual obj.NumberUsers
|
||||
obj.NumberUsers mustEqual 1
|
||||
obj.RemoveUser(PlanetSideGUID(20)) mustEqual obj.NumberUsers
|
||||
obj.NumberUsers mustEqual 0
|
||||
}
|
||||
|
||||
"can not add a user twice" in {
|
||||
val obj = new ProximityTest.SampleTerminal()
|
||||
obj.AddUser(PlanetSideGUID(10))
|
||||
obj.NumberUsers mustEqual 1
|
||||
obj.AddUser(PlanetSideGUID(10))
|
||||
obj.NumberUsers mustEqual 1
|
||||
}
|
||||
|
||||
"can not remove a user that was not added" in {
|
||||
val obj = new ProximityTest.SampleTerminal()
|
||||
obj.AddUser(PlanetSideGUID(10))
|
||||
obj.NumberUsers mustEqual 1
|
||||
obj.RemoveUser(PlanetSideGUID(20))
|
||||
obj.NumberUsers mustEqual 1
|
||||
}
|
||||
}
|
||||
|
||||
"ProximityTerminal" should {
|
||||
"construct" in {
|
||||
ProximityTerminal(GlobalDefinitions.medical_terminal)
|
||||
ok
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class ProximityTerminalControl1bTest extends ActorTest {
|
||||
"ProximityTerminalControl" should {
|
||||
"send out a start message" in {
|
||||
val obj = ProximityTerminal(GlobalDefinitions.medical_terminal)
|
||||
obj.Actor = system.actorOf(Props(classOf[ProximityTerminalControl], obj), "prox-ctrl")
|
||||
val player = Player(Avatar("TestCharacter", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
player.GUID = PlanetSideGUID(10)
|
||||
|
||||
assert(obj.NumberUsers == 0)
|
||||
obj.Actor ! CommonMessages.Use(player)
|
||||
val msg = receiveOne(200 milliseconds)
|
||||
assert(obj.NumberUsers == 1)
|
||||
assert(msg.isInstanceOf[TerminalMessage])
|
||||
val msgout = msg.asInstanceOf[TerminalMessage]
|
||||
assert(msgout.player == player)
|
||||
assert(msgout.msg == null)
|
||||
assert(msgout.response.isInstanceOf[Terminal.StartProximityEffect])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class ProximityTerminalControl2bTest extends ActorTest {
|
||||
"ProximityTerminalControl" should {
|
||||
"will not send out one start message unless first user" in {
|
||||
val obj = ProximityTerminal(GlobalDefinitions.medical_terminal)
|
||||
obj.Actor = system.actorOf(Props(classOf[ProximityTerminalControl], obj), "prox-ctrl")
|
||||
val player1 = Player(Avatar("TestCharacter1", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
player1.GUID = PlanetSideGUID(10)
|
||||
val player2 = Player(Avatar("TestCharacter2", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
player2.GUID = PlanetSideGUID(11)
|
||||
assert(obj.NumberUsers == 0)
|
||||
|
||||
obj.Actor ! CommonMessages.Use(player1)
|
||||
val msg = receiveOne(200 milliseconds)
|
||||
assert(obj.NumberUsers == 1)
|
||||
assert(msg.isInstanceOf[TerminalMessage])
|
||||
assert(msg.asInstanceOf[TerminalMessage].response.isInstanceOf[Terminal.StartProximityEffect])
|
||||
obj.Actor ! CommonMessages.Use(player2)
|
||||
expectNoMsg(500 milliseconds)
|
||||
assert(obj.NumberUsers == 2)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class ProximityTerminalControl3bTest extends ActorTest {
|
||||
"ProximityTerminalControl" should {
|
||||
"send out a stop message" in {
|
||||
val obj = ProximityTerminal(GlobalDefinitions.medical_terminal)
|
||||
obj.Actor = system.actorOf(Props(classOf[ProximityTerminalControl], obj), "prox-ctrl")
|
||||
val player = Player(Avatar("TestCharacter", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
player.GUID = PlanetSideGUID(10)
|
||||
|
||||
assert(obj.NumberUsers == 0)
|
||||
obj.Actor ! CommonMessages.Use(player)
|
||||
receiveOne(200 milliseconds)
|
||||
assert(obj.NumberUsers == 1)
|
||||
obj.Actor ! CommonMessages.Unuse(player)
|
||||
val msg = receiveOne(200 milliseconds)
|
||||
assert(obj.NumberUsers == 0)
|
||||
assert(msg.isInstanceOf[TerminalMessage])
|
||||
val msgout = msg.asInstanceOf[TerminalMessage]
|
||||
assert(msgout.player == player)
|
||||
assert(msgout.msg == null)
|
||||
assert(msgout.response.isInstanceOf[Terminal.StopProximityEffect])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class ProximityTerminalControl4bTest extends ActorTest {
|
||||
"ProximityTerminalControl" should {
|
||||
"will not send out one stop message until last user" in {
|
||||
val obj = ProximityTerminal(GlobalDefinitions.medical_terminal)
|
||||
obj.Actor = system.actorOf(Props(classOf[ProximityTerminalControl], obj), "prox-ctrl")
|
||||
val player1 = Player(Avatar("TestCharacter1", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
player1.GUID = PlanetSideGUID(10)
|
||||
val player2 = Player(Avatar("TestCharacter2", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
player2.GUID = PlanetSideGUID(11)
|
||||
assert(obj.NumberUsers == 0)
|
||||
|
||||
obj.Actor ! CommonMessages.Use(player1)
|
||||
receiveOne(200 milliseconds) //StartProximityEffect
|
||||
assert(obj.NumberUsers == 1)
|
||||
obj.Actor ! CommonMessages.Use(player2)
|
||||
expectNoMsg(500 milliseconds)
|
||||
assert(obj.NumberUsers == 2)
|
||||
obj.Actor ! CommonMessages.Unuse(player1)
|
||||
expectNoMsg(500 milliseconds)
|
||||
assert(obj.NumberUsers == 1)
|
||||
obj.Actor ! CommonMessages.Unuse(player2)
|
||||
val msg = receiveOne(200 milliseconds)
|
||||
assert(obj.NumberUsers == 0)
|
||||
assert(msg.isInstanceOf[TerminalMessage])
|
||||
val msgout = msg.asInstanceOf[TerminalMessage]
|
||||
assert(msgout.player == player2)
|
||||
assert(msgout.msg == null)
|
||||
assert(msgout.response.isInstanceOf[Terminal.StopProximityEffect])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
object ProximityTest {
|
||||
class SampleTerminal extends Terminal(GlobalDefinitions.dropship_vehicle_terminal) with ProximityUnit
|
||||
}
|
||||
|
|
@ -0,0 +1,91 @@
|
|||
// Copyright (c) 2017 PSForever
|
||||
package objects.terminal
|
||||
|
||||
import akka.actor.ActorRef
|
||||
import net.psforever.objects.serverobject.structures.{Building, StructureType}
|
||||
import net.psforever.objects._
|
||||
import net.psforever.objects.serverobject.terminals.Terminal
|
||||
import net.psforever.objects.zones.Zone
|
||||
import net.psforever.packet.game.{ItemTransactionMessage, PlanetSideGUID}
|
||||
import net.psforever.types.{CharacterGender, PlanetSideEmpire, TransactionType}
|
||||
import org.specs2.mutable.Specification
|
||||
|
||||
class RepairRearmSiloTest extends Specification {
|
||||
"RepairRearmSilo" should {
|
||||
val player = Player(Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0))
|
||||
val silo = Terminal(GlobalDefinitions.repair_silo)
|
||||
silo.Owner = new Building(0, Zone.Nowhere, StructureType.Building)
|
||||
silo.Owner.Faction = PlanetSideEmpire.TR
|
||||
|
||||
"define" in {
|
||||
GlobalDefinitions.repair_silo.ObjectId mustEqual 729
|
||||
}
|
||||
|
||||
"construct" in {
|
||||
val obj = Terminal(GlobalDefinitions.repair_silo)
|
||||
obj.Actor mustEqual ActorRef.noSender
|
||||
}
|
||||
|
||||
"player can buy a box of ammunition ('bullet_35mm')" in {
|
||||
val msg = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.Buy, 3, "35mmbullet", 0, PlanetSideGUID(0))
|
||||
val reply = silo.Request(player, msg)
|
||||
reply.isInstanceOf[Terminal.BuyEquipment] mustEqual true
|
||||
val reply2 = reply.asInstanceOf[Terminal.BuyEquipment]
|
||||
reply2.item.isInstanceOf[AmmoBox] mustEqual true
|
||||
reply2.item.asInstanceOf[AmmoBox].Definition mustEqual GlobalDefinitions.bullet_35mm
|
||||
reply2.item.asInstanceOf[AmmoBox].Capacity mustEqual 100
|
||||
}
|
||||
|
||||
"player can not buy fake equipment ('sabot')" in {
|
||||
val msg = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.Buy, 3, "sabot", 0, PlanetSideGUID(0))
|
||||
|
||||
silo.Request(player, msg) mustEqual Terminal.NoDeal()
|
||||
}
|
||||
|
||||
"player can not buy equipment from the wrong page ('35mmbullet', page 1)" in {
|
||||
val msg = ItemTransactionMessage(PlanetSideGUID(1), TransactionType.Buy, 1, "35mmbullet", 0, PlanetSideGUID(0))
|
||||
|
||||
silo.Request(player, msg) mustEqual Terminal.NoDeal()
|
||||
}
|
||||
|
||||
"player can retrieve a vehicle loadout" in {
|
||||
val avatar = Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0)
|
||||
val player2 = Player(avatar)
|
||||
val vehicle = Vehicle(GlobalDefinitions.fury)
|
||||
vehicle.Slot(30).Equipment = AmmoBox(GlobalDefinitions.bullet_9mm)
|
||||
avatar.SaveLoadout(vehicle, "test", 10)
|
||||
|
||||
val msg = silo.Request(player2, ItemTransactionMessage(PlanetSideGUID(10), TransactionType.Loadout, 4, "", 0, PlanetSideGUID(0)))
|
||||
msg.isInstanceOf[Terminal.VehicleLoadout] mustEqual true
|
||||
val loadout = msg.asInstanceOf[Terminal.VehicleLoadout]
|
||||
loadout.vehicle_definition mustEqual GlobalDefinitions.fury
|
||||
loadout.weapons.size mustEqual 1
|
||||
loadout.weapons.head.obj.Definition mustEqual GlobalDefinitions.fury_weapon_systema
|
||||
loadout.weapons.head.start mustEqual 1
|
||||
loadout.inventory.head.obj.Definition mustEqual GlobalDefinitions.bullet_9mm
|
||||
loadout.inventory.head.start mustEqual 30
|
||||
}
|
||||
|
||||
"player can not retrieve a vehicle loadout from the wrong line" in {
|
||||
val avatar = Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0)
|
||||
val player2 = Player(avatar)
|
||||
val vehicle = Vehicle(GlobalDefinitions.fury)
|
||||
vehicle.Slot(30).Equipment = AmmoBox(GlobalDefinitions.bullet_9mm)
|
||||
avatar.SaveLoadout(vehicle, "test", 10)
|
||||
|
||||
val msg = silo.Request(player2, ItemTransactionMessage(PlanetSideGUID(10), TransactionType.Loadout, 3, "", 0, PlanetSideGUID(0))) //page 3
|
||||
msg.isInstanceOf[Terminal.NoDeal] mustEqual true
|
||||
}
|
||||
|
||||
"player can not retrieve a vehicle loadout from the wrong line" in {
|
||||
val avatar = Avatar("test", PlanetSideEmpire.TR, CharacterGender.Male, 0, 0)
|
||||
val player2 = Player(avatar)
|
||||
val vehicle = Vehicle(GlobalDefinitions.fury)
|
||||
vehicle.Slot(30).Equipment = AmmoBox(GlobalDefinitions.bullet_9mm)
|
||||
avatar.SaveLoadout(vehicle, "test", 10)
|
||||
|
||||
val msg = silo.Request(player2, ItemTransactionMessage(PlanetSideGUID(10), TransactionType.Loadout, 4, "", 1, PlanetSideGUID(0))) //line 11
|
||||
msg.isInstanceOf[Terminal.NoDeal] mustEqual true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -26,8 +26,7 @@ class TerminalControl2Test extends ActorTest() {
|
|||
val (_, terminal) = TerminalControlTest.SetUpAgents(GlobalDefinitions.cert_terminal, PlanetSideEmpire.TR)
|
||||
|
||||
terminal.Actor !"hello"
|
||||
val reply = receiveOne(Duration.create(500, "ms"))
|
||||
assert(reply.isInstanceOf[Terminal.NoDeal])
|
||||
expectNoMsg(Duration.create(500, "ms"))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue