Package com.csse3200.game.components
Class LaboratoryInventoryComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.LaboratoryInventoryComponent
LaboratoryInventoryComponent handles the inventory of a laboratory,
specifically the number of potions it contains.
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionLaboratoryInventoryComponent
(int potion) Initializes a LaboratoryInventoryComponent with the specified initial number of potions. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addPotion
(int potion) Adds a certain number of potions to the laboratory's inventory.int
Gets the current number of potions in the laboratory.hasPotion
(int potion) Checks if the laboratory has at least a certain number of potions.void
setPotion
(int potion) Sets the number of potions in the laboratory.Methods inherited from class com.csse3200.game.components.Component
create, dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
-
Constructor Details
-
LaboratoryInventoryComponent
public LaboratoryInventoryComponent(int potion) Initializes a LaboratoryInventoryComponent with the specified initial number of potions.- Parameters:
potion
- The initial number of potions in the laboratory.
-
-
Method Details
-
getPotion
public int getPotion()Gets the current number of potions in the laboratory.- Returns:
- The current number of potions.
-
hasPotion
Checks if the laboratory has at least a certain number of potions.- Parameters:
potion
- The number of potions to check.- Returns:
- True if the laboratory has at least the specified number of potions, false otherwise.
-
setPotion
public void setPotion(int potion) Sets the number of potions in the laboratory.- Parameters:
potion
- The new number of potions.
-
addPotion
public void addPotion(int potion) Adds a certain number of potions to the laboratory's inventory.- Parameters:
potion
- The number of potions to add.
-