Class InventoryComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.player.InventoryComponent
A component intended to be used by the player to track their inventory.
Player can switch between weapons and weapons can be updated
Can also be used as a more generic component for other entities.
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
changeEquipped
(WeaponType type) Updates weapon of the active inventory slotvoid
changeEquippedAmmo
(int ammoChange) Changes the amount of ammo in current weapon slot by change (decrease for negative values of ammoChange)void
create()
Called when the entity is created and registered.int
Get the currently equipped weapons current ammoint
returns the amount of ammo the currently equipped weapon uses per shotint
REturns the amount of max ammo for the current weapon slotint
returns the remaining tick cooldown for the currently equipped weapon slotReturns the equipped weapon typeReturns the current equipped weapons represented in a hash mapvoid
placeInSlot
(WeaponType weaponType) void
replaceSlotWithWeapon
(String slot, WeaponType weaponType) Replaces the specified slot with a given weapon.void
setEquipped
(String slot) Changes active inventory slot to a specific slotvoid
setEquippedCooldown
(int coolDown) Sets the cooldown for the currently equipped weapon slotvoid
update()
Called once per frame of the game, and should be used for most component logic.Methods inherited from class com.csse3200.game.components.Component
dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate
-
Constructor Details
-
InventoryComponent
-
-
Method Details
-
create
public void create()Description copied from class:Component
Called when the entity is created and registered. Initial logic such as calls to GetComponent should be made here, not in the constructor which is called before an entity is finished. -
update
public void update()Description copied from class:Component
Called once per frame of the game, and should be used for most component logic. Not called if component is disabled. -
getConfigs
-
getEquipped
- Returns:
- int - the equipped weapon
-
setEquipped
Changes active inventory slot to a specific slot- Parameters:
slot
- - the weapon to be equipped
-
replaceSlotWithWeapon
Replaces the specified slot with a given weapon.- Parameters:
slot
- the slot to be updatedweaponType
- the weapon type to be placed in the slot
-
getEquippedWeapons
Returns the current equipped weapons represented in a hash map -
placeInSlot
-
changeEquipped
Updates weapon of the active inventory slot -
getEquippedType
Returns the equipped weapon type- Returns:
- WeaponType - Type of cureently equiped weapon
-
getCurrentAmmo
public int getCurrentAmmo()Get the currently equipped weapons current ammo- Returns:
- remaining ammo
-
changeEquippedAmmo
public void changeEquippedAmmo(int ammoChange) Changes the amount of ammo in current weapon slot by change (decrease for negative values of ammoChange)- Parameters:
ammoChange
- - amount to change ammo by
-
getCurrentAmmoUse
public int getCurrentAmmoUse()returns the amount of ammo the currently equipped weapon uses per shot- Returns:
- amount of ammo use per shot
-
getCurrentMaxAmmo
public int getCurrentMaxAmmo()REturns the amount of max ammo for the current weapon slot- Returns:
-
getEquippedCooldown
public int getEquippedCooldown()returns the remaining tick cooldown for the currently equipped weapon slot- Returns:
- amount of ticks before weapon slot can be used again
-
setEquippedCooldown
public void setEquippedCooldown(int coolDown) Sets the cooldown for the currently equipped weapon slot- Parameters:
coolDown
- - tick duration to set coolDown to
-