mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
043bb208b3
git-svn-id: https://svn.eduke32.com/eduke32@1802 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
|