2014-02-27 10:08:31 +00:00
|
|
|
/*************************************************************\
|
|
|
|
Doom Builder 2 Game Configuration for ZDoom-compatible port
|
|
|
|
\*************************************************************/
|
|
|
|
|
|
|
|
// This is required to prevent accidental use of a different configuration
|
|
|
|
type = "Doom Builder 2 Game Configuration";
|
|
|
|
|
|
|
|
// This is the title to show for this game
|
|
|
|
game = "Doom: Doom 2 (Doom format)";
|
|
|
|
|
|
|
|
// This is the simplified game engine/sourceport name
|
|
|
|
engine = "doom2";
|
|
|
|
|
2014-05-15 08:32:08 +00:00
|
|
|
// Should this configuration be initially available?
|
|
|
|
enabledbydefault = true;
|
|
|
|
|
2014-02-27 10:08:31 +00:00
|
|
|
// *******************************************************
|
|
|
|
// * *
|
|
|
|
// * Note: all the elements that could be factorized *
|
|
|
|
// * because they were common to ZDoom, GZDoom and *
|
|
|
|
// * Zandronum have been moved to ZDoom_common.cfg. *
|
|
|
|
// * *
|
|
|
|
// *******************************************************
|
|
|
|
|
|
|
|
// STANDARD DOOM SETTINGS
|
|
|
|
// Settings common to all games and all map formats
|
|
|
|
include("Includes\\Doom_common.cfg", "common");
|
|
|
|
|
|
|
|
// Settings common to Doom map format
|
|
|
|
include("Includes\\Doom_common.cfg", "mapformat_doom");
|
|
|
|
|
|
|
|
// Settings common to Doom games
|
|
|
|
include("Includes\\Game_Doom.cfg");
|
|
|
|
|
2021-08-14 09:40:09 +00:00
|
|
|
// Map name format for Doom 2.
|
|
|
|
mapnameformat = "MAPxy";
|
|
|
|
|
Game Configurations: added Vanilla Strife, Vanilla Heretic and Vanilla Hexen game configurations.
Added "makedoorceil" game configuration property. Works the same way as "makedoortrack" and "makedoordoor", but for ceilings of door sectors.
Changed, Game configurations: the editor no longer tries to load DECORATE/MODELDEF/VOXELDEF/GLDEFS/REVERBS lumps when "decorategames" setting is not specified / is set to empty string.
Changed, General interface: "Tools -> Reload MODELDEF/VOXELDEF" and "Tools -> Reload GLDEFS" menu items are no longer shown when current game configuration doesn't support DECORATE.
Fixed a crash when pasting linedef/thing properties in Hexen map format.
Fixed, Visual mode: Visual Thing resources were not fully unloaded when resetting D3D device leading to crash when switching to the editor from a DX-using game engine (like ZDoom) running in fullscreen.
Fixed: in some cases, when current game configuration supported multiple script compilers, it was possible to open/create a map or change map options without selecting any script compiler.
Fixed, New Map Options window: default map name was not updated when switching game configurations.
Fixed: copied map element properties were not reset after switching to another map.
Fixed: stored textures for "Make Door" action were not reset after switching to another map.
Fixed, Game Configurations window: currently selected test engine name was not updated when pasting test engines from another configuration.
Fixed, Game Configurations: all "Heretic in Doom map format" configurations were using Doom sector effects list.
Fixed, Game Configurations: all "Strife in Doom map format" configurations were using Doom sector effects list.
2015-10-21 13:35:42 +00:00
|
|
|
//mxd. No DECORATE support in vanilla
|
|
|
|
decorategames = "";
|
|
|
|
|
2014-02-27 10:08:31 +00:00
|
|
|
// Default thing filters
|
|
|
|
// (these are not required, just useful for new users)
|
|
|
|
thingsfilters
|
|
|
|
{
|
|
|
|
include("Includes\\Doom_misc.cfg", "thingsfilters");
|
|
|
|
}
|
|
|
|
|
|
|
|
// THING TYPES
|
|
|
|
// Each engine has its own additional thing types
|
|
|
|
// Order should always be 1: Game; 2: ZDoom/game; 3: ZDoom/zdoom
|
|
|
|
thingtypes
|
|
|
|
{
|
|
|
|
// Basic game actors
|
|
|
|
include("Includes\\Doom_things.cfg");
|
|
|
|
include("Includes\\Doom2_things.cfg");
|
|
|
|
}
|
|
|
|
|
|
|
|
// ENUMERATIONS
|
|
|
|
// Each engine has its own additional thing types
|
|
|
|
// These are enumerated lists for linedef types and UDMF fields.
|
|
|
|
enums
|
|
|
|
{
|
|
|
|
// Basic game enums
|
|
|
|
include("Includes\\Doom_misc.cfg", "enums");
|
|
|
|
}
|
2021-09-05 12:59:31 +00:00
|
|
|
|
|
|
|
// Dehacked data
|
|
|
|
dehacked
|
|
|
|
{
|
|
|
|
include("Includes\\Dehacked_Doom.cfg");
|
|
|
|
}
|