- Expanded the args for MAPINFO special actions to 32 bit integers as in

the rest of the game.
- Fixed: The specialaction list was not copied properly when transferred
  from the defaultinfo.
- Fixed: The defaultinfo for MAPINFO wasn't cleared fully after MAPINFO
  parsing was completed.
- Made Doom-format linedef translators a map property so that it's easier
  to define replacements or extensions.


SVN r843 (trunk)
This commit is contained in:
Christoph Oelckers 2008-03-23 14:18:27 +00:00
commit 969cc1f6f9
7 changed files with 88 additions and 54 deletions

View file

@ -94,7 +94,8 @@ gameinfo_t HexenGameInfo =
GAME_Hexen,
150,
"F_SKY",
24*FRACUNIT
24*FRACUNIT,
"xlat/heretic.txt", // not really correct but this was used before.
};
gameinfo_t HexenDKGameInfo =
@ -122,7 +123,8 @@ gameinfo_t HexenDKGameInfo =
GAME_Hexen,
150,
"F_SKY",
24*FRACUNIT
24*FRACUNIT,
"xlat/heretic.txt", // not really correct but this was used before.
};
gameinfo_t HereticGameInfo =
@ -150,7 +152,8 @@ gameinfo_t HereticGameInfo =
GAME_Heretic,
150,
"F_SKY1",
24*FRACUNIT
24*FRACUNIT,
"xlat/heretic.txt",
};
gameinfo_t HereticSWGameInfo =
@ -178,7 +181,8 @@ gameinfo_t HereticSWGameInfo =
GAME_Heretic,
150,
"F_SKY1",
24*FRACUNIT
24*FRACUNIT,
"xlat/heretic.txt",
};
gameinfo_t SharewareGameInfo =
@ -206,7 +210,8 @@ gameinfo_t SharewareGameInfo =
GAME_Doom,
100,
"F_SKY1",
24*FRACUNIT
24*FRACUNIT,
"xlat/doom.txt",
};
gameinfo_t RegisteredGameInfo =
@ -234,7 +239,8 @@ gameinfo_t RegisteredGameInfo =
GAME_Doom,
100,
"F_SKY1",
24*FRACUNIT
24*FRACUNIT,
"xlat/doom.txt",
};
gameinfo_t RetailGameInfo =
@ -262,7 +268,8 @@ gameinfo_t RetailGameInfo =
GAME_Doom,
100,
"F_SKY1",
24*FRACUNIT
24*FRACUNIT,
"xlat/doom.txt",
};
gameinfo_t CommercialGameInfo =
@ -290,7 +297,8 @@ gameinfo_t CommercialGameInfo =
GAME_Doom,
100,
"F_SKY1",
24*FRACUNIT
24*FRACUNIT,
"xlat/doom.txt",
};
gameinfo_t StrifeGameInfo =
@ -318,7 +326,8 @@ gameinfo_t StrifeGameInfo =
GAME_Strife,
150,
"F_SKY001",
16*FRACUNIT
16*FRACUNIT,
"xlat/strife.txt",
};
gameinfo_t StrifeTeaserGameInfo =
@ -346,7 +355,8 @@ gameinfo_t StrifeTeaserGameInfo =
GAME_Strife,
150,
"F_SKY001",
16*FRACUNIT
16*FRACUNIT,
"xlat/strife.txt",
};
gameinfo_t StrifeTeaser2GameInfo =
@ -374,5 +384,6 @@ gameinfo_t StrifeTeaser2GameInfo =
GAME_Strife,
150,
"F_SKY001",
16*FRACUNIT
16*FRACUNIT,
"xlat/strife.txt",
};