2008-05-31 19:31:45 +00:00
|
|
|
/*************************************************************\
|
|
|
|
Doom Builder Game Configuration for (Hexen format)
|
|
|
|
\*************************************************************/
|
|
|
|
|
2009-03-05 19:12:40 +00:00
|
|
|
// This is required to prevent accidental use of a different configuration
|
2008-05-31 19:31:45 +00:00
|
|
|
type = "Doom Builder 2 Game Configuration";
|
|
|
|
|
|
|
|
// This is the title to show for this game
|
|
|
|
game = "ZDoom (Doom in UDMF format)";
|
|
|
|
|
|
|
|
// This is the simplified game engine/sourceport name
|
|
|
|
engine = "zdoom";
|
|
|
|
|
|
|
|
// The format interface handles the map data format
|
2008-06-01 20:25:46 +00:00
|
|
|
formatinterface = "UniversalMapSetIO";
|
2008-05-31 19:31:45 +00:00
|
|
|
|
|
|
|
// Default lump name for new map
|
|
|
|
defaultlumpname = "MAP01";
|
|
|
|
|
2008-09-09 22:10:56 +00:00
|
|
|
// Default testing parameters
|
2008-09-26 05:53:34 +00:00
|
|
|
testparameters = "-iwad \"%WP\" -skill \"%S\" -file \"%AP\" \"%F\" +map %L %NM";
|
2008-09-09 22:10:56 +00:00
|
|
|
|
2009-01-15 19:42:55 +00:00
|
|
|
// Default nodebuilder configurations
|
|
|
|
defaultsavecompiler = "zdbsp_normal";
|
|
|
|
defaulttestcompiler = "zdbsp_fast";
|
|
|
|
|
2009-01-22 15:10:41 +00:00
|
|
|
// Decorate actors to include depending on actor game property
|
|
|
|
decorategames = "doom";
|
|
|
|
|
2008-09-09 22:10:56 +00:00
|
|
|
// Skill levels
|
|
|
|
skills
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "skills");
|
2008-09-09 22:10:56 +00:00
|
|
|
}
|
|
|
|
|
2009-01-07 16:05:17 +00:00
|
|
|
// When this is set to true, sectors with the same tag will light up when a line is highlighted
|
|
|
|
linetagindicatesectors = false;
|
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
// Special linedefs
|
|
|
|
// See linedefflags
|
2008-06-02 04:55:51 +00:00
|
|
|
soundlinedefflag = "blocksound";
|
|
|
|
singlesidedflag = "blocking";
|
|
|
|
doublesidedflag = "twosided";
|
|
|
|
impassableflag = "blocking";
|
2008-10-17 09:39:07 +00:00
|
|
|
upperunpeggedflag = "dontpegtop";
|
|
|
|
lowerunpeggedflag = "dontpegbottom";
|
|
|
|
|
|
|
|
// Door making
|
|
|
|
makedoortrack = "DOORTRAK";
|
|
|
|
makedooraction = 202; // See linedeftypes
|
2008-10-19 09:42:18 +00:00
|
|
|
makedoorarg0 = 0;
|
|
|
|
makedoorarg1 = 16;
|
|
|
|
makedoorarg2 = 0;
|
|
|
|
makedoorarg3 = 3;
|
|
|
|
makedoorarg4 = 0;
|
2008-05-31 19:31:45 +00:00
|
|
|
|
|
|
|
// Generalized actions
|
|
|
|
generalizedlinedefs = false;
|
|
|
|
generalizedsectors = true;
|
|
|
|
|
|
|
|
// Texture loading options
|
|
|
|
mixtexturesflats = true;
|
|
|
|
defaulttexturescale = 1.0f;
|
|
|
|
defaultflatscale = 1.0f;
|
2010-01-02 20:54:35 +00:00
|
|
|
scaledtextureoffsets = true;
|
2008-05-31 19:31:45 +00:00
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
|
|
|
// Some common settings
|
|
|
|
include("Includes\\Common.cfg");
|
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
|
|
|
|
// Default flags for first new thing
|
2008-06-10 11:32:06 +00:00
|
|
|
defaultthingflags
|
2008-06-01 20:25:46 +00:00
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\ZDoom_misc.cfg", "defaultthingflags_udmf");
|
2008-06-01 20:25:46 +00:00
|
|
|
}
|
2008-05-31 19:31:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Texture sources
|
|
|
|
textures
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "textures");
|
2009-08-03 06:36:03 +00:00
|
|
|
include("Includes\\ZDoom_misc.cfg", "textures");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 23:32:44 +00:00
|
|
|
// Patch sources
|
|
|
|
patches
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "patches");
|
2009-01-22 23:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sprite sources
|
|
|
|
sprites
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "sprites");
|
2009-01-22 23:32:44 +00:00
|
|
|
}
|
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
// Flat sources
|
|
|
|
flats
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "flats");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-05-12 09:50:08 +00:00
|
|
|
// Colormap sources
|
|
|
|
colormaps
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Boom_misc.cfg", "colormaps");
|
2009-05-12 09:50:08 +00:00
|
|
|
}
|
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
GAME DETECT PATTERN
|
|
|
|
Used to guess the game for which a WAD file is made.
|
|
|
|
|
|
|
|
1 = One of these lumps must exist
|
|
|
|
2 = None of these lumps must exist
|
|
|
|
3 = All of these lumps must exist
|
|
|
|
*/
|
|
|
|
gamedetect
|
|
|
|
{
|
|
|
|
TEXTMAP = 3;
|
|
|
|
ENDMAP = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
maplumpnames
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\UDMF_misc.cfg", "udmfmaplumpnames_begin");
|
|
|
|
include("Includes\\ZDoom_misc.cfg", "udmfmaplumpnames");
|
|
|
|
include("Includes\\UDMF_misc.cfg", "udmfmaplumpnames_end");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
universalfields
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\ZDoom_misc.cfg", "universalfields");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// DEFAULT SECTOR BRIGHTNESS LEVELS
|
|
|
|
sectorbrightness
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\ZDoom_misc.cfg", "sectorbrightness");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
|
|
|
// Generalized sector types
|
|
|
|
gen_sectortypes
|
2008-05-31 19:31:45 +00:00
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\ZDoom_generalized.cfg", "gen_sectortypes");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
|
|
|
// SECTOR TYPES
|
|
|
|
sectortypes
|
2008-05-31 19:31:45 +00:00
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_sectors.cfg");
|
|
|
|
include("Includes\\ZDoom_sectors.cfg", "doom");
|
|
|
|
include("Includes\\ZDoom_sectors.cfg", "hexen");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
// LINEDEF FLAGS
|
|
|
|
linedefflags
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\UDMF_misc.cfg", "linedefflags");
|
|
|
|
include("Includes\\ZDoom_misc.cfg", "linedefflags_udmf");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
// LINEDEF ACTIVATIONS
|
|
|
|
linedefactivations
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\UDMF_misc.cfg", "linedefactivations");
|
|
|
|
include("Includes\\ZDoom_misc.cfg", "linedefactivations_udmf");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
2008-05-31 19:31:45 +00:00
|
|
|
// LINEDEF TYPES
|
|
|
|
linedeftypes
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Hexen_linedefs.cfg");
|
|
|
|
include("Includes\\ZDoom_linedefs.cfg", "hexen");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// THING FLAGS
|
|
|
|
thingflags
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\UDMF_misc.cfg", "thingflags");
|
|
|
|
include("Includes\\ZDoom_misc.cfg", "thingflags_udmf");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
|
|
|
// Things flags masks
|
|
|
|
include("Includes\\Hexen_misc.cfg", "thingflagsmasks");
|
2008-05-31 19:31:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
// THING TYPES
|
|
|
|
thingtypes
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_things.cfg");
|
|
|
|
include("Includes\\Doom2_things.cfg");
|
|
|
|
include("Includes\\Boom_things.cfg");
|
|
|
|
include("Includes\\ZDoom_things.cfg", "doom");
|
|
|
|
include("Includes\\ZDoom_things.cfg", "hexen");
|
2009-07-31 14:53:41 +00:00
|
|
|
include("Includes\\ZDoom_things.cfg", "zdoom");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ENUMERATIONS
|
|
|
|
// These are enumerated lists for linedef types and UDMF fields.
|
|
|
|
enums
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "enums");
|
|
|
|
include("Includes\\ZDoom_misc.cfg", "enums");
|
2008-05-31 19:31:45 +00:00
|
|
|
}
|
2009-01-05 15:57:41 +00:00
|
|
|
|
2009-07-31 13:54:36 +00:00
|
|
|
|
2009-01-05 15:57:41 +00:00
|
|
|
// Default thing filters
|
|
|
|
// (these are not required, just usefull for new users)
|
|
|
|
thingsfilters
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\ZDoom_misc.cfg", "thingsfilters_udmf");
|
2009-01-05 15:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Default texture sets
|
|
|
|
// (these are not required, but usefull for new users)
|
|
|
|
texturesets
|
|
|
|
{
|
2009-07-31 13:54:36 +00:00
|
|
|
include("Includes\\Doom_texturesets.cfg");
|
2009-01-05 15:57:41 +00:00
|
|
|
}
|