2006-05-05 04:37:10 +00:00
|
|
|
/*
|
|
|
|
** name.h
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2005-2006 Randy Heit
|
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
#ifndef NAME_H
|
|
|
|
#define NAME_H
|
|
|
|
|
2006-05-05 04:37:10 +00:00
|
|
|
#include "doomtype.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
enum ENamedName
|
|
|
|
{
|
- Fixed compilation with mingw again.
- Added multiple-choice sound sequences. These overcome one of the major
deficiences of the Hexen-inherited SNDSEQ system while still being Hexen
compatible: Custom door sounds can now use different opening and closing
sequences, for both normal and blazing speeds.
- Added a serializer for TArray.
- Added a countof macro to doomtype.h. See the1's blog to find out why
it's implemented the way it is.
<http://blogs.msdn.com/the1/articles/210011.aspx>
- Added a new method to FRandom for getting random numbers larger than 255,
which lets me:
- Fixed: SNDSEQ delayrand commands could delay for no more than 255 tics.
- Fixed: If you're going to have sector_t.SoundTarget, then they need to
be included in the pointer cleanup scans.
- Ported back newer name code from 2.1.
- Fixed: Using -warp with only one parameter in Doom and Heretic to
select a map on episode 1 no longer worked.
- New: Loading a multiplayer save now restores the players based on
their names rather than on their connection order. Using connection
order was sensible when -net was the only way to start a network game,
but with -host/-join, it's not so nice. Also, if there aren't enough
players in the save, then the extra players will be spawned normally,
so you can continue a saved game with more players than you started it
with.
- Added some new SNDSEQ commands to make it possible to define Heretic's
ambient sounds in SNDSEQ: volumerel, volumerand, slot, randomsequence,
delayonce, and restart. With these, it is basically possible to obsolete
all of the $ambient SNDINFO commands.
- Fixed: Sound sequences would only execute one command each time they were
ticked.
- Fixed: No bounds checking was done on the volume sound sequences played at.
- Fixed: The tic parameter to playloop was useless and caused it to
act like a redundant playrepeat. I have removed all the logic that
caused playloop to play repeating sounds, and now it acts like an
infinite sequence of play/delay commands until the sequence is
stopped.
- Fixed: Sound sequences were ticked every frame, not every tic, so all
the delay commands were timed incorrectly and varied depending on your
framerate. Since this is useful for restarting looping sounds that got
cut off, I have not changed this. Instead, the delay commands now
record the tic when execution should resume, not the number of tics
left to delay.
SVN r57 (trunk)
2006-04-21 01:22:55 +00:00
|
|
|
#define xx(n) NAME_##n,
|
|
|
|
#include "namedef.h"
|
|
|
|
#undef xx
|
2006-02-24 04:48:15 +00:00
|
|
|
};
|
|
|
|
|
2006-05-03 22:45:01 +00:00
|
|
|
class FName
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2006-05-03 22:45:01 +00:00
|
|
|
FName () : Index(0) {}
|
2006-05-05 04:37:10 +00:00
|
|
|
FName (const char *text) { Index = NameData.FindName (text, false); }
|
|
|
|
FName (const char *text, bool noCreate) { Index = NameData.FindName (text, noCreate); }
|
2006-05-03 22:45:01 +00:00
|
|
|
FName (const FName &other) { Index = other.Index; }
|
|
|
|
FName (ENamedName index) { Index = index; }
|
|
|
|
// ~FName () {} // Names can be added but never removed.
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
int GetIndex() const { return Index; }
|
|
|
|
operator int() const { return Index; }
|
2006-05-05 04:37:10 +00:00
|
|
|
const char *GetChars() const { return NameData.NameArray[Index].Text; }
|
|
|
|
operator const char *() const { return NameData.NameArray[Index].Text; }
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-05 04:37:10 +00:00
|
|
|
FName &operator = (const char *text) { Index = NameData.FindName (text, false); return *this; }
|
2006-05-03 22:45:01 +00:00
|
|
|
FName &operator = (const FName &other) { Index = other.Index; return *this; }
|
|
|
|
FName &operator = (ENamedName index) { Index = index; return *this; }
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-05 04:37:10 +00:00
|
|
|
int SetName (const char *text, bool noCreate=false) { return Index = NameData.FindName (text, noCreate); }
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-05 04:37:10 +00:00
|
|
|
bool IsValidName() const { return (unsigned)Index < (unsigned)NameData.NumNames; }
|
- Fixed: ActorFlagSetOrReset() wasn't receiving the + or - character from
ParseActorProperties().
- Fixed: The decorate FindFlag() function returned flags from ActorFlags
instead of the passed flags set.
- Fixed: The CHT_CHAINSAW, CHT_POWER, CHT_HEALTH, and CHT_RESSURECT needed
NULL player->mo checks.
- Fixed: The "give all" command didn't give the backpack in Doom, and it
must give the backpack before giving ammo.
- Fixed: P_SetPsprite() must not call the action function if the player is
not attached to an actor. This can happen, for instance, if the level is
destroyed while the player is holding a powered-up Phoenix Rod. As part
of its EndPowerup() function, it sets the psprite to the regular version,
but the player actor has already been destroyed.
- Fixed: FinishThingdef() needs to check for valid names, because weapons
could have inherited valid pointers from their superclass.
- Fixed: fuglyname didn't work.
- Fixed: Redefining $ambient sounds leaked memory.
- Added Jim's crashcatcher.c fix for better shell support.
- VC7.1 seems to have no trouble distinguishing between passing a (const
TypeInfo *) reference to operator<< and the generic, templated (object *)
version, so a few places that can benefit from it now use it. I believe
VC6 had problems with this, which is why I didn't do it all along. The
function's implementation was also moved out of dobject.cpp and into
farchive.cpp.
- Fixed: UnpackPixels() unpacked all chunks in a byte, which is wrong for the
last byte in a row if the image width is not an even multiple of the number
pixels per byte.
- Fixed: P_TranslateLineDef() should only clear monster activation for secret
useable lines, not crossable lines.
- Fixed: Some leftover P_IsHostile() calls still needed to be rewritten.
- Fixed: AWeaponHolder::Serialize() wrote the class type in all circumstances.
SVN r20 (trunk)
2006-03-14 06:11:39 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// Note that the comparison operators compare the names' indices, not
|
|
|
|
// their text, so they cannot be used to do a lexicographical sort.
|
2006-05-03 22:45:01 +00:00
|
|
|
bool operator == (const FName &other) const { return Index == other.Index; }
|
|
|
|
bool operator != (const FName &other) const { return Index != other.Index; }
|
|
|
|
bool operator < (const FName &other) const { return Index < other.Index; }
|
|
|
|
bool operator <= (const FName &other) const { return Index <= other.Index; }
|
|
|
|
bool operator > (const FName &other) const { return Index > other.Index; }
|
|
|
|
bool operator >= (const FName &other) const { return Index >= other.Index; }
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
bool operator == (ENamedName index) const { return Index == index; }
|
|
|
|
bool operator != (ENamedName index) const { return Index != index; }
|
|
|
|
bool operator < (ENamedName index) const { return Index < index; }
|
|
|
|
bool operator <= (ENamedName index) const { return Index <= index; }
|
|
|
|
bool operator > (ENamedName index) const { return Index > index; }
|
|
|
|
bool operator >= (ENamedName index) const { return Index >= index; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
int Index;
|
|
|
|
|
2006-05-05 04:37:10 +00:00
|
|
|
struct NameEntry
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-05 04:37:10 +00:00
|
|
|
char *Text;
|
2006-05-10 02:40:43 +00:00
|
|
|
unsigned int Hash;
|
2006-02-24 04:48:15 +00:00
|
|
|
int NextHash;
|
|
|
|
};
|
2006-05-05 04:37:10 +00:00
|
|
|
|
|
|
|
struct NameManager
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-05-05 04:37:10 +00:00
|
|
|
// No constructor because we can't ensure that it actually gets
|
|
|
|
// called before any FNames are constructed during startup. This
|
|
|
|
// means this struct must only exist in the program's BSS section.
|
|
|
|
~NameManager();
|
|
|
|
|
|
|
|
enum { HASH_SIZE = 256 };
|
|
|
|
struct NameBlock;
|
|
|
|
|
|
|
|
NameBlock *Blocks;
|
|
|
|
NameEntry *NameArray;
|
|
|
|
int NumNames, MaxNames;
|
|
|
|
int Buckets[HASH_SIZE];
|
|
|
|
|
|
|
|
int FindName (const char *text, bool noCreate);
|
2006-05-10 02:40:43 +00:00
|
|
|
int AddName (const char *text, unsigned int hash, unsigned int bucket);
|
2006-05-05 04:37:10 +00:00
|
|
|
NameBlock *AddBlock (size_t len);
|
|
|
|
void InitBuckets ();
|
|
|
|
bool Inited;
|
|
|
|
};
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2006-05-05 04:37:10 +00:00
|
|
|
static NameManager NameData;
|
|
|
|
};
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
#endif
|