Class ProductionComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.resources.ProductionComponent
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionProductionComponent
(Resource produces, long tickRate, int tickSize) ProductionComponent allows an entity to produce resources on some real time interval and send them to the gameState and event handler. -
Method Summary
Methods inherited from class com.csse3200.game.components.Component
dispose, earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate
-
Constructor Details
-
ProductionComponent
ProductionComponent allows an entity to produce resources on some real time interval and send them to the gameState and event handler.- Parameters:
produces
- the resource type this should producetickRate
- the amount of miliseconds between ticks (not guaranteed but catchup is performed if a tick is missed)tickSize
- the amount of the resource to produce on each tick
-
-
Method Details
-
getProduces
-
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. -
getProductionModifier
public long getProductionModifier()getProductionModifier returns a value between 0 and 1 for how efficient the extractor is. For example a fully functioning extractor would have an efficiency of 1.0, and a broken one 0.0.- Returns:
- long between 0 and 1.
-
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. -
setTimer
-