711654c15e
Moves the constants from defines and compile_options files into the __DEFINES directory. The compile options in the latter file that are actually tweakable remain in their existing file in the code directory. Constants from DEFINES.dm, globals.dm, names.dm, and global_lists.dm have been moved into the _globalvars subdirectory. stylesheet.dm has been moved into the interface directory since that's a better place for it. This move contains no code changes for stock TG. It is purely an organizational move meant to clean up hard to read code. Some global constants that appear to be unused have been put into unused.dm, but not unticked. This list is by no means exhaustive. Branches should be aware that they need to move any additional defines and global constants manually.
28 lines
703 B
Plaintext
28 lines
703 B
Plaintext
|
|
//Preference toggles
|
|
#define SOUND_ADMINHELP 1
|
|
#define SOUND_MIDI 2
|
|
#define SOUND_AMBIENCE 4
|
|
#define SOUND_LOBBY 8
|
|
#define CHAT_OOC 16
|
|
#define CHAT_DEAD 32
|
|
#define CHAT_GHOSTEARS 64
|
|
#define CHAT_GHOSTSIGHT 128
|
|
#define CHAT_PRAYER 256
|
|
#define CHAT_RADIO 512
|
|
#define MEMBER_PUBLIC 1024
|
|
|
|
#define TOGGLES_DEFAULT (SOUND_ADMINHELP|SOUND_MIDI|SOUND_AMBIENCE|SOUND_LOBBY|CHAT_OOC|CHAT_DEAD|CHAT_GHOSTEARS|CHAT_GHOSTSIGHT|CHAT_PRAYER|CHAT_RADIO|MEMBER_PUBLIC)
|
|
|
|
#define BE_TRAITOR 1
|
|
#define BE_OPERATIVE 2
|
|
#define BE_CHANGELING 4
|
|
#define BE_WIZARD 8
|
|
#define BE_MALF 16
|
|
#define BE_REV 32
|
|
#define BE_ALIEN 64
|
|
#define BE_PAI 128
|
|
#define BE_CULTIST 256
|
|
#define BE_MONKEY 512
|
|
#define BE_NINJA 1024
|