mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
4ba6da5007
EVENT_SOUND: triggered upon playback of any sound, this allows the "hard coded" sounds to be altered in a context-aware fashion instead of having to resort to clunky hacks like replacing them with a blank sound effect. RETURN var iable is set to the sound effect # of the sound to be played, or -1 to cancel playback. EVENT_CHECKTOUCHDAMAGE: triggered in P_CheckTouchDamage() whenever the player collides with anything. Value of RET URN is set to the result provided by clipmove() and so can be decoded in the same way. Value of RETURN when the event is over can also be manipulated to control some of the hard coded damage effects. EVENT_CHECKFLOORDAMAGE: triggered in P_CheckFloorDamage(), RETURN is simply the picnum of the floor of the sector t he player is in. Can be used to cancel hard coded floor damage effects or to make other tiles exhibit the same eff ects Other misc fixes and cleanups, including a possible workaround for Duke Plus SECTOREFFECTOR light issues wherein all SE49 and SE50 that have a statnum of STAT_EFFECTOR are simply changed to STAT_LIGHT during the STAT_EFFECTOR loop now. git-svn-id: https://svn.eduke32.com/eduke32@2652 1a8010ca-5511-0410-912e-c29ae57300e0
96 lines
3.5 KiB
C
96 lines
3.5 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2011 EDuke32 developers and contributors
|
|
|
|
This file is part of EDuke32.
|
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 2
|
|
as published by the Free Software Foundation.
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
//-------------------------------------------------------------------------
|
|
|
|
#ifndef __quotes_h__
|
|
#define __quotes_h__
|
|
|
|
#define MAXQUOTES 16384
|
|
#define MAXQUOTELEN 128
|
|
#define OBITQUOTEINDEX (MAXQUOTES-128)
|
|
#define SUICIDEQUOTEINDEX (MAXQUOTES-32)
|
|
|
|
#define QUOTE_SHOW_MAP_OFF 1
|
|
#define QUOTE_ACTIVATED 2
|
|
#define QUOTE_MEDKIT 3
|
|
#define QUOTE_LOCKED 4
|
|
#define QUOTE_CHEAT_EVERYTHING 5
|
|
#define QUOTE_BOOTS 6
|
|
#define QUOTE_WASTED 7
|
|
#define QUOTE_UNLOCKED 8
|
|
#define QUOTE_FOUND_SECRET 9
|
|
#define QUOTE_SQUISHED 10
|
|
#define QUOTE_USED_STEROIDS 12
|
|
#define QUOTE_DEACTIVATED 15
|
|
#define QUOTE_CHEAT_GODMODE_ON 17
|
|
#define QUOTE_CHEAT_GODMODE_OFF 18
|
|
#define QUOTE_CROSSHAIR_OFF 21
|
|
#define QUOTE_CHEATS_DISABLED 22
|
|
#define QUOTE_MESSAGES_ON 23
|
|
#define QUOTE_MESSAGES_OFF 24
|
|
#define QUOTE_MUSIC 26
|
|
#define QUOTE_CHEAT_STEROIDS 37
|
|
#define QUOTE_F1HELP 40
|
|
#define QUOTE_MOUSE_AIMING_OFF 44
|
|
#define QUOTE_HOLODUKE_ON 47
|
|
#define QUOTE_HOLODUKE_OFF 48
|
|
#define QUOTE_HOLODUKE_NOT_FOUND 49
|
|
#define QUOTE_JETPACK_NOT_FOUND 50
|
|
#define QUOTE_JETPACK_ON 52
|
|
#define QUOTE_JETPACK_OFF 53
|
|
#define QUOTE_NEED_BLUE_KEY 70
|
|
#define QUOTE_NEED_RED_KEY 71
|
|
#define QUOTE_NEED_YELLOW_KEY 72
|
|
#define QUOTE_WEAPON_LOWERED 73
|
|
#define QUOTE_WEAPON_RAISED 74
|
|
#define QUOTE_BOOTS_ON 75
|
|
#define QUOTE_SCUBA_ON 76
|
|
#define QUOTE_CHEAT_ALLEN 79
|
|
#define QUOTE_MIGHTY_FOOT 80
|
|
#define QUOTE_WEAPON_MODE_OFF 82
|
|
#define QUOTE_MAP_FOLLOW_OFF 83
|
|
#define QUOTE_RUN_MODE_OFF 85
|
|
#define QUOTE_JETPACK 88
|
|
#define QUOTE_SCUBA 89
|
|
#define QUOTE_STEROIDS 90
|
|
#define QUOTE_HOLODUKE 91
|
|
#define QUOTE_CHEAT_TODD 99
|
|
#define QUOTE_CHEAT_UNLOCK 100
|
|
#define QUOTE_NVG 101
|
|
#define QUOTE_WEREGONNAFRYYOURASS 102
|
|
#define QUOTE_SCREEN_SAVED 103
|
|
#define QUOTE_CHEAT_BETA 105
|
|
#define QUOTE_NVG_OFF 107
|
|
#define QUOTE_VIEW_MODE_OFF 109
|
|
#define QUOTE_SHOW_MAP_ON 111
|
|
#define QUOTE_CHEAT_NOCLIP 113
|
|
#define QUOTE_SAVE_BAD_VERSION 114
|
|
#define QUOTE_RESERVED 115
|
|
#define QUOTE_RESERVED2 116
|
|
#define QUOTE_RESERVED3 117
|
|
#define QUOTE_SAVE_DEAD 118
|
|
#define QUOTE_CHEAT_ALL_WEAPONS 119
|
|
#define QUOTE_CHEAT_ALL_INV 120
|
|
#define QUOTE_CHEAT_ALL_KEYS 121
|
|
#define QUOTE_RESERVED4 122
|
|
#define QUOTE_SAVE_BAD_PLAYERS 124
|
|
|
|
#endif
|