1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
Copyright (C) 1998 Jeffrey S. Freedman
Copyright (C) 2001-2022 The Exult Team
This program 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 2
of the License, or (at your option) any later version.
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 FLAGS_H
#define FLAGS_H
namespace Obj_flags {
enum { // Bit #'s of flags:
invisible = 0,
asleep = 1,
charmed = 2,
cursed = 3,
dead = 4,
in_party = 6, // Guess, appears to be correct
paralyzed = 7,
poisoned = 8,
protection = 9,
on_moving_barge = 10, // ??Guessing.
okay_to_take = 11, // Okay to take??
might = 12, // Double strength, dext, intel.
immunities = 13, // Test flag in Monster_info.
cant_die = 14, // Test flag in Monster_info.
in_action = 15, // Can be seen in cheat screen
dont_move = 16, // User can't move.
bg_dont_render = 16, // In BG: also completely invisible.
si_on_moving_barge = 17, // SI's version of 10?
is_temporary = 18, // Is temporary
active_sailor
= 20, // "Flag" used to store an object for later use in
// usecode. Generally used by various barges.
okay_to_land = 21, // Used for flying-carpet.
bg_dont_move = 22, // Exult-only: BG version of dont_move flag
dont_render
= 22, // Exult-only: Non-BG version of bg_dont_render flag
in_dungeon = 23, // Pretty sure. If set, you won't
// be accused of stealing food.
is_solid = 24, // Used by gangplank usecode to determine if an object
// is solid based on TFA data.
confused = 25, // ??Guessing.
active_barge = 26, // ??Guessing (cart, boat)??
met = 28, // Has the npc been met
tournament = 29, // Call usecode (eventid=7)
// Originally SI-only, but allowed for BG in Exult
si_zombie = 30, // Used for sick Neyobi.
no_spell_casting = 31, // Known (cheat screen).
// Flags > 31
polymorph = 32, // SI. Pretty sure about this.
tattooed = 33, // Guess (SI).
read = 34, // Guess (SI).
petra = 35, // Guess
fly = 36, // Known (cheat screen). Get/set/clear fly type flag.
freeze = 37, // SI. Pretty sure.
naked = 38 // Exult. Makes the avatar naked given its skin.
};
} // namespace Obj_flags
#endif
|