123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- /*
- ===========================================================================
- Doom 3 GPL Source Code
- Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
- This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
- Doom 3 Source Code is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- Doom 3 Source Code is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
- In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
- If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
- ===========================================================================
- */
- #ifndef __GAME_TARGET_H__
- #define __GAME_TARGET_H__
- /*
- ===============================================================================
- idTarget
- ===============================================================================
- */
- class idTarget : public idEntity {
- public:
- CLASS_PROTOTYPE( idTarget );
- };
- /*
- ===============================================================================
- idTarget_Remove
- ===============================================================================
- */
- class idTarget_Remove : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_Remove );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_Show
- ===============================================================================
- */
- class idTarget_Show : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_Show );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_Damage
- ===============================================================================
- */
- class idTarget_Damage : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_Damage );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SessionCommand
- ===============================================================================
- */
- class idTarget_SessionCommand : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SessionCommand );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_EndLevel
- ===============================================================================
- */
- class idTarget_EndLevel : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_EndLevel );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_WaitForButton
- ===============================================================================
- */
- class idTarget_WaitForButton : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_WaitForButton );
- void Think( void );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetGlobalShaderTime
- ===============================================================================
- */
- class idTarget_SetGlobalShaderTime : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetGlobalShaderTime );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetShaderParm
- ===============================================================================
- */
- class idTarget_SetShaderParm : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetShaderParm );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetShaderTime
- ===============================================================================
- */
- class idTarget_SetShaderTime : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetShaderTime );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_FadeEntity
- ===============================================================================
- */
- class idTarget_FadeEntity : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_FadeEntity );
- idTarget_FadeEntity( void );
- void Save( idSaveGame *savefile ) const;
- void Restore( idRestoreGame *savefile );
- void Think( void );
- private:
- idVec4 fadeFrom;
- int fadeStart;
- int fadeEnd;
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_LightFadeIn
- ===============================================================================
- */
- class idTarget_LightFadeIn : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_LightFadeIn );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_LightFadeOut
- ===============================================================================
- */
- class idTarget_LightFadeOut : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_LightFadeOut );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_Give
- ===============================================================================
- */
- class idTarget_Give : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_Give );
- void Spawn( void );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_GiveEmail
- ===============================================================================
- */
- class idTarget_GiveEmail : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_GiveEmail );
- void Spawn( void );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetModel
- ===============================================================================
- */
- class idTarget_SetModel : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetModel );
- void Spawn( void );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetInfluence
- ===============================================================================
- */
- class idTarget_SetInfluence : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetInfluence );
- idTarget_SetInfluence( void );
- void Save( idSaveGame *savefile ) const;
- void Restore( idRestoreGame *savefile );
- void Spawn( void );
- private:
- void Event_Activate( idEntity *activator );
- void Event_RestoreInfluence();
- void Event_GatherEntities();
- void Event_Flash( float flash, int out );
- void Event_ClearFlash( float flash );
- void Think( void );
- idList<int> lightList;
- idList<int> guiList;
- idList<int> soundList;
- idList<int> genericList;
- float flashIn;
- float flashOut;
- float delay;
- idStr flashInSound;
- idStr flashOutSound;
- idEntity * switchToCamera;
- idInterpolate<float>fovSetting;
- bool soundFaded;
- bool restoreOnTrigger;
- };
- /*
- ===============================================================================
- idTarget_SetKeyVal
- ===============================================================================
- */
- class idTarget_SetKeyVal : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetKeyVal );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetFov
- ===============================================================================
- */
- class idTarget_SetFov : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetFov );
- void Save( idSaveGame *savefile ) const;
- void Restore( idRestoreGame *savefile );
- void Think( void );
- private:
- idInterpolate<int> fovSetting;
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_SetPrimaryObjective
- ===============================================================================
- */
- class idTarget_SetPrimaryObjective : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_SetPrimaryObjective );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_LockDoor
- ===============================================================================
- */
- class idTarget_LockDoor: public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_LockDoor );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_CallObjectFunction
- ===============================================================================
- */
- class idTarget_CallObjectFunction : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_CallObjectFunction );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_LockDoor
- ===============================================================================
- */
- class idTarget_EnableLevelWeapons : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_EnableLevelWeapons );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_Tip
- ===============================================================================
- */
- class idTarget_Tip : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_Tip );
- idTarget_Tip( void );
- void Spawn( void );
- void Save( idSaveGame *savefile ) const;
- void Restore( idRestoreGame *savefile );
- private:
- idVec3 playerPos;
- void Event_Activate( idEntity *activator );
- void Event_TipOff( void );
- void Event_GetPlayerPos( void );
- };
- /*
- ===============================================================================
- idTarget_GiveSecurity
- ===============================================================================
- */
- class idTarget_GiveSecurity : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_GiveSecurity );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_RemoveWeapons
- ===============================================================================
- */
- class idTarget_RemoveWeapons : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_RemoveWeapons );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_LevelTrigger
- ===============================================================================
- */
- class idTarget_LevelTrigger : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_LevelTrigger );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_EnableStamina
- ===============================================================================
- */
- class idTarget_EnableStamina : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_EnableStamina );
- private:
- void Event_Activate( idEntity *activator );
- };
- /*
- ===============================================================================
- idTarget_FadeSoundClass
- ===============================================================================
- */
- class idTarget_FadeSoundClass : public idTarget {
- public:
- CLASS_PROTOTYPE( idTarget_FadeSoundClass );
- private:
- void Event_Activate( idEntity *activator );
- void Event_RestoreVolume();
- };
- #endif /* !__GAME_TARGET_H__ */
|