![]() |
Nuclide
Software Development Kit for id Technology (BETA)
|
This entity class represents inventory items, weapons.
QUAKED ncItem (0 0.8 0.8) (-16 -16 0) (16 16 72)
Represents any item within the players' inventory. These can be used, or be dormant. Some configurations will simply increase your statistics upon touch.
Some basic items that most games will have some variety off:
In the above example, changing inv_health to inv_armor will increment the armor value instead, as expected.
Public Member Functions | |
void | ncItem (void) |
virtual void | Spawned (void) |
Called when the entity is fulled initialized. More... | |
virtual bool | ItemPickupCheck (entity) |
virtual void | Touch (entity) |
Called whenever we're touching another entity. More... | |
virtual void | Respawn (void) |
Server: Called when the entity first spawns or when game-logic requests the entity to return to its original spawn state. More... | |
virtual void | SpawnKey (string, string) |
This method handles entity key/value pairs on map load. More... | |
virtual void | Input (entity, string, string) |
Called when we are being prompted by another object/function with an input message. More... | |
virtual void | Save (float) |
Handles saving a copy of this entity to a given filehandle. More... | |
virtual void | Restore (string, string) |
Similar to ncIO::SpawnKey() but for save-game fields. More... | |
virtual void | EvaluateEntity (void) |
Run each tic after physics are run to determine if we need to send updates over the network. More... | |
virtual float | SendEntity (entity, float) |
Called by the engine whenever we need to send a client an update about this entity. More... | |
nonvirtual void | SetFloating (int) |
nonvirtual bool | GetFloating (void) |
nonvirtual void | SetSpinning (bool) |
nonvirtual bool | GetSpinning (void) |
nonvirtual void | PickupRespawn (void) |
nonvirtual void | SetRespawnTime (float) |
virtual void | OnInventoryUse (void) |
virtual void | OnPickup (void) |
Overridable: Called when this item is picked up. More... | |
virtual void | OnUse (entity) |
Overridable: Called when this item is used. More... | |
virtual void | PrintDebugInfo (void) |
nonvirtual void | BecomePickup (void) |
Call to turn a weapon into a pickup. More... | |
virtual void | AddedToInventory (void) |
Called when an item was added to someones inventory. More... | |
virtual void | RemovedFromInventory (void) |
Called when an item was removed from someones inventory. More... | |
virtual void | ReceiveEntity (float, float) |
Client: Handles network updates from the server for the associated entity. More... | |
virtual void | ReceiveEvent (float) |
virtual void | PredictPreFrame (void) |
virtual void | PredictPostFrame (void) |
virtual bool | IsWeapon (void) |
virtual bool | InInventory (void) |
virtual void | OnRemoveEntity (void) |
Handles what happens before the entity gets removed from the client game. More... | |
void ncItem::ncItem | ( | void | ) |
|
virtual |
Called when an item was added to someones inventory.
Reimplemented in ncWeapon.
void ncItem::BecomePickup | ( | void | ) |
Call to turn a weapon into a pickup.
|
virtual |
Run each tic after physics are run to determine if we need to send updates over the network.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
bool ncItem::GetFloating | ( | void | ) |
bool ncItem::GetSpinning | ( | void | ) |
|
virtual |
|
virtual |
Called when we are being prompted by another object/function with an input message.
Reimplemented from ncSurfacePropEntity.
|
virtual |
Reimplemented in ncWeapon.
|
virtual |
|
virtual |
|
virtual |
Overridable: Called when this item is picked up.
|
virtual |
Handles what happens before the entity gets removed from the client game.
Reimplemented from ncIO.
|
virtual |
Overridable: Called when this item is used.
void ncItem::PickupRespawn | ( | void | ) |
|
virtual |
Reimplemented in ncWeapon.
|
virtual |
Reimplemented in ncWeapon.
|
virtual |
|
virtual |
Client: Handles network updates from the server for the associated entity.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
|
virtual |
|
virtual |
Called when an item was removed from someones inventory.
Reimplemented in ncWeapon.
|
virtual |
Server: Called when the entity first spawns or when game-logic requests the entity to return to its original spawn state.
Reimplemented from ncPhysicsEntity.
|
virtual |
Similar to ncIO::SpawnKey() but for save-game fields.
Whatever you write into file handles within your ncIO::Save()
method needs to be read back in here.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
|
virtual |
Handles saving a copy of this entity to a given filehandle.
Within you want to use the ncIO::SaveFloat() etc. methods to write the internal member attributes to the specified file handle.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
|
virtual |
Called by the engine whenever we need to send a client an update about this entity.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
void ncItem::SetFloating | ( | int | i | ) |
void ncItem::SetRespawnTime | ( | float | newTime | ) |
void ncItem::SetSpinning | ( | bool | value | ) |
|
virtual |
Called when the entity is fulled initialized.
Any spawn key/value info pairs have already been dealt with. So now we can make full decisions on the entity. Always make sure to call super::Spawned();
inside your method when overriding.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
|
virtual |
This method handles entity key/value pairs on map load.
You can easily convert the strValue
parameter using the ReadFloat etc. methods that are part of ncIO.
Reimplemented from ncPhysicsEntity.
Reimplemented in ncWeapon.
|
virtual |
Called whenever we're touching another entity.
Reimplemented from ncPhysicsEntity.