- Fixed: Dehacked string replacement did not check the clusters' finaleflats.

- Changed the definition of several typedef'd structs so that they are
  properly named.
- Limited DEHSUPP lump lookup to search zdoom.pk3 only. It will no longer
  be possible to load DEHSUPP lumps from user WADs.
- Brought back the text-based DEHSUPP parser and changed it to be able to 
  reference states by label. Also changed label names of 
  DoomUnusedStates and added proper labels to all states that were
  previously forced to be the first state of an actor so that the old
  (limited) method could access them. This was done to address the following
  bug:
- Fixed: The player's death states calling A_PlayerSkinCheck should not be
  part of the state set that is accessible by Dehacked. These will produce
  error messages when mapped to non-players.

SVN r1512 (trunk)
This commit is contained in:
Christoph Oelckers 2009-03-28 11:49:44 +00:00
commit bf4e17703d
33 changed files with 726 additions and 4958 deletions

View file

@ -123,10 +123,10 @@ typedef enum
} animenum_t;
typedef struct
struct yahpt_t
{
int x, y;
} yahpt_t;
};
struct lnode_t
{
@ -146,7 +146,7 @@ struct lnode_t
//
#define MAX_ANIMATION_FRAMES 20
typedef struct
struct in_anim_t
{
int type; // Made an int so I can use '|'
int period; // period in tics between animations
@ -162,7 +162,7 @@ typedef struct
char levelname[9];
char levelname2[9];
} in_anim_t;
};
static TArray<lnode_t> lnodes;
static TArray<in_anim_t> anims;