Nuclide
Software Development Kit for id Tech
func_recharge Class Reference
Inheritance diagram for func_recharge:
NSRenderableEntity

Public Member Functions

void func_recharge (void)
 
virtual void Save (float)
 Handles saving a copy of this entity to a given filehandle. More...
 
virtual void Restore (string, string)
 Similar to ::SpawnKey but for save-game fields. More...
 
virtual void SpawnKey (string, string)
 This method handles entity key/value pairs on map load. More...
 
virtual void Spawned (void)
 Called when the entity is fulled initialized. 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 customphysics (void)
 
virtual void OnPlayerUse (void)
 
nonvirtual void ResetHealth (void)
 

Detailed Description

QUAKED func_recharge (0 .5 .8) ?

OVERVIEW

Brush that fills up your armor when used, to a maximum of 100 points.

KEYS

  • "targetname" : Name
  • "target" : Target when triggered.
  • "killtarget" : Target to kill when triggered.
  • "snd_first" : Sound to play when first used.
  • "snd_charging" : Sound to play when first charging.
  • "snd_done" : Sound to play when first finished charging.

TRIVIA

This entity was introduced in Half-Life (1998).

Constructor & Destructor Documentation

◆ func_recharge()

void func_recharge::func_recharge ( void  )

Member Function Documentation

◆ customphysics()

void func_recharge::customphysics ( void  )
virtual

◆ OnPlayerUse()

void func_recharge::OnPlayerUse ( void  )
virtual

◆ ResetHealth()

void func_recharge::ResetHealth ( void  )

◆ Respawn()

void func_recharge::Respawn ( void  )
virtual

Server: Called when the entity first spawns or when game-logic requests the entity to return to its original spawn state.

Reimplemented from NSRenderableEntity.

◆ Restore()

void func_recharge::Restore ( string  strKey,
string  strValue 
)
virtual

Similar to ::SpawnKey but for save-game fields.

Whatever you write into file handles within your ::Save() method needs to be read back in here.

Reimplemented from NSRenderableEntity.

◆ Save()

void func_recharge::Save ( float  handle)
virtual

Handles saving a copy of this entity to a given filehandle.

Within you want to use the ::SaveFloat() etc. methods to write the internal member attributes to the specified file handle.

Reimplemented from NSRenderableEntity.

◆ Spawned()

void func_recharge::Spawned ( void  )
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 NSEntity.

◆ SpawnKey()

void func_recharge::SpawnKey ( string  strKey,
string  strValue 
)
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 NSIO.

Reimplemented from NSRenderableEntity.


The documentation for this class was generated from the following file: