2007-06-13 19:39:38 +00:00
|
|
|
/*************************************************************\
|
|
|
|
Doom Builder Game Configuration for Doom 2
|
|
|
|
\*************************************************************/
|
|
|
|
|
2009-03-05 19:12:40 +00:00
|
|
|
// This is required to prevent accidental use of a different configuration
|
2007-06-16 19:43:06 +00:00
|
|
|
type = "Doom Builder 2 Game Configuration";
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// This is the title to show for this game
|
|
|
|
game = "Doom 2";
|
|
|
|
|
2008-05-25 09:46:30 +00:00
|
|
|
// This is the simplified game engine/sourceport name
|
|
|
|
engine = "doom2";
|
|
|
|
|
2007-06-16 19:43:06 +00:00
|
|
|
// The format interface handles the map data format
|
|
|
|
formatinterface = "DoomMapSetIO";
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2008-05-05 15:14:57 +00:00
|
|
|
// Default lump name for new map
|
|
|
|
defaultlumpname = "MAP01";
|
|
|
|
|
2008-09-09 22:10:56 +00:00
|
|
|
// Default testing parameters
|
2009-01-15 06:16:26 +00:00
|
|
|
testparameters = "-iwad \"%WP\" -skill \"%S\" -file \"%AP\" \"%F\" -warp %L1 %L2 %NM";
|
2009-02-04 15:54:15 +00:00
|
|
|
testshortpaths = true;
|
2008-09-09 22:10:56 +00:00
|
|
|
|
2009-01-15 19:42:55 +00:00
|
|
|
// Default nodebuilder configurations
|
|
|
|
defaultsavecompiler = "zennode_normal";
|
|
|
|
defaulttestcompiler = "zennode_fast";
|
|
|
|
|
2008-09-09 22:10:56 +00:00
|
|
|
// Skill levels
|
|
|
|
skills
|
|
|
|
{
|
2009-07-30 18:10:57 +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 = true;
|
|
|
|
|
2007-10-20 12:34:27 +00:00
|
|
|
// Special linedefs
|
2008-06-11 05:02:48 +00:00
|
|
|
soundlinedefflag = 64; // See linedefflags
|
|
|
|
singlesidedflag = 1; // See linedefflags
|
|
|
|
doublesidedflag = 4; // See linedefflags
|
|
|
|
impassableflag = 1;
|
2008-10-17 09:39:07 +00:00
|
|
|
upperunpeggedflag = 8;
|
|
|
|
lowerunpeggedflag = 16;
|
|
|
|
|
|
|
|
// Door making
|
|
|
|
makedoortrack = "DOORTRAK";
|
|
|
|
makedooraction = 1; // See linedeftypes
|
2007-10-20 12:34:27 +00:00
|
|
|
|
2007-12-29 16:06:12 +00:00
|
|
|
// Generalized actions
|
2007-10-20 12:34:27 +00:00
|
|
|
generalizedlinedefs = false;
|
|
|
|
generalizedsectors = false;
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2007-12-29 16:06:12 +00:00
|
|
|
// Texture loading options
|
2007-10-20 12:34:27 +00:00
|
|
|
mixtexturesflats = false;
|
2007-10-07 22:21:47 +00:00
|
|
|
defaulttexturescale = 1.0f;
|
|
|
|
defaultflatscale = 1.0f;
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2009-07-29 18:14:14 +00:00
|
|
|
|
|
|
|
// Some common settings
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Common.cfg");
|
2009-07-29 18:14:14 +00:00
|
|
|
|
2007-06-13 19:39:38 +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-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "defaultthingflags");
|
2008-06-01 20:25:46 +00:00
|
|
|
}
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Texture sources
|
|
|
|
textures
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "textures");
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 23:32:44 +00:00
|
|
|
// Patch sources
|
|
|
|
patches
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "patches");
|
2009-01-22 23:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sprite sources
|
|
|
|
sprites
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "sprites");
|
2009-01-22 23:32:44 +00:00
|
|
|
}
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Flat sources
|
|
|
|
flats
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "flats");
|
2007-06-13 19:39:38 +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
|
|
|
|
{
|
2008-06-10 11:32:06 +00:00
|
|
|
TEXTMAP = 2;
|
|
|
|
ENDMAP = 2;
|
2007-06-13 19:39:38 +00:00
|
|
|
EXTENDED = 2;
|
|
|
|
BEHAVIOR = 2;
|
2009-07-29 13:17:29 +00:00
|
|
|
E1M1 = 2; E1M2 = 2; E1M3 = 2; E1M4 = 2; E1M5 = 2; E1M6 = 2; E1M7 = 2; E1M8 = 2; E1M9 = 2;
|
2007-06-13 19:39:38 +00:00
|
|
|
E2M1 = 2; E2M2 = 2; E2M3 = 2; E2M4 = 2; E2M5 = 2; E2M6 = 2; E2M7 = 2; E2M8 = 2; E2M9 = 2;
|
|
|
|
E3M1 = 2; E3M2 = 2; E3M3 = 2; E3M4 = 2; E3M5 = 2; E3M6 = 2; E3M7 = 2; E3M8 = 2; E3M9 = 2;
|
|
|
|
E4M1 = 2; E4M2 = 2; E4M3 = 2; E4M4 = 2; E4M5 = 2; E4M6 = 2; E4M7 = 2; E4M8 = 2; E4M9 = 2;
|
|
|
|
MAP01 = 1; MAP02 = 1; MAP03 = 1; MAP04 = 1; MAP05 = 1; MAP06 = 1; MAP07 = 1; MAP08 = 1; MAP09 = 1; MAP10 = 1;
|
|
|
|
MAP11 = 1; MAP12 = 1; MAP13 = 1; MAP14 = 1; MAP15 = 1; MAP16 = 1; MAP17 = 1; MAP18 = 1; MAP19 = 1; MAP20 = 1;
|
|
|
|
MAP21 = 1; MAP22 = 1; MAP23 = 1; MAP24 = 1; MAP25 = 1; MAP26 = 1; MAP27 = 1; MAP28 = 1; MAP29 = 1; MAP30 = 1;
|
|
|
|
MAP31 = 1; MAP32 = 1; MAP33 = 2; MAP34 = 2; MAP35 = 2; MAP36 = 2; MAP37 = 2; MAP38 = 2; MAP39 = 2; MAP40 = 2;
|
|
|
|
MAP41 = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
maplumpnames
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "doommaplumpnames");
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-29 13:17:29 +00:00
|
|
|
// Default sector brightness levels
|
2007-06-13 19:39:38 +00:00
|
|
|
sectorbrightness
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "sectorbrightness");
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
2009-07-29 13:17:29 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// SECTOR TYPES
|
|
|
|
sectortypes
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_sectors.cfg");
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
2009-07-29 13:17:29 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// LINEDEF FLAGS
|
|
|
|
linedefflags
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "linedefflags");
|
2009-07-29 13:17:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// LINEDEF ACTIVATIONS
|
|
|
|
linedefactivations
|
|
|
|
{
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
2009-07-29 13:17:29 +00:00
|
|
|
|
2008-12-31 14:08:40 +00:00
|
|
|
// Linedef flags UDMF translation table
|
|
|
|
// This is needed for copy/paste and prefabs to work properly
|
|
|
|
// When the UDMF field name is prefixed with ! it is inverted
|
|
|
|
linedefflagstranslation
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "linedefflagstranslation");
|
2008-12-31 14:08:40 +00:00
|
|
|
}
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
// LINEDEF TYPES
|
|
|
|
linedeftypes
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_linedefs.cfg");
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
2008-05-27 22:02:51 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// THING FLAGS
|
|
|
|
thingflags
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "thingflags");
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
|
2009-07-29 13:17:29 +00:00
|
|
|
|
2008-12-31 14:08:40 +00:00
|
|
|
// Thing flags UDMF translation table
|
|
|
|
// This is needed for copy/paste and prefabs to work properly
|
|
|
|
// When the UDMF field name is prefixed with ! it is inverted
|
|
|
|
thingflagstranslation
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "thingflagstranslation");
|
2008-12-31 14:08:40 +00:00
|
|
|
}
|
|
|
|
|
2009-07-29 13:17:29 +00:00
|
|
|
|
2009-07-29 18:14:14 +00:00
|
|
|
// Things flags masks
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "thingflagsmasks");
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
// THING TYPES
|
|
|
|
thingtypes
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_things.cfg");
|
|
|
|
include("Includes\\Doom2_things.cfg");
|
2007-10-09 18:13:09 +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-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_misc.cfg", "thingsfilters");
|
2009-01-05 15:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Default texture sets
|
|
|
|
// (these are not required, but usefull for new users)
|
|
|
|
texturesets
|
|
|
|
{
|
2009-07-30 18:10:57 +00:00
|
|
|
include("Includes\\Doom_texturesets.cfg");
|
2009-01-05 15:57:41 +00:00
|
|
|
}
|