2009-04-19 18:07:22 +00:00
#region = = = = = = = = = = = = = = = = = = Copyright ( c ) 2007 Pascal vd Heiden
/ *
* Copyright ( c ) 2007 Pascal vd Heiden , www . codeimp . com
* This program is released under GNU General Public License
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* /
#endregion
#region = = = = = = = = = = = = = = = = = = Namespaces
using System ;
using System.Collections ;
using System.Collections.Generic ;
using System.Globalization ;
using CodeImp.DoomBuilder.IO ;
using CodeImp.DoomBuilder.Map ;
using CodeImp.DoomBuilder.Editing ;
2012-06-01 10:17:47 +00:00
using CodeImp.DoomBuilder.GZBuilder.Data ;
2014-11-25 11:52:01 +00:00
using CodeImp.DoomBuilder.Data ;
2012-06-01 10:17:47 +00:00
2009-04-19 18:07:22 +00:00
#endregion
namespace CodeImp.DoomBuilder.Config
{
public class GameConfiguration
{
#region = = = = = = = = = = = = = = = = = = Constants
#endregion
#region = = = = = = = = = = = = = = = = = = Variables
// Original configuration
2014-05-05 14:24:57 +00:00
private readonly Configuration cfg ;
2009-04-19 18:07:22 +00:00
// General settings
2014-05-05 14:24:57 +00:00
private readonly string configname ;
private readonly string enginename ;
private readonly float defaulttexturescale ;
private readonly float defaultflatscale ;
2015-10-23 12:01:27 +00:00
private readonly string defaultwalltexture ; //mxd
private readonly string defaultfloortexture ; //mxd
private readonly string defaultceilingtexture ; //mxd
2014-05-05 14:24:57 +00:00
private readonly bool scaledtextureoffsets ;
private readonly string defaultsavecompiler ;
private readonly string defaulttestcompiler ;
private readonly string formatinterface ;
private readonly string defaultLinedefActivation ; //mxd
private readonly string singlesidedflag ;
private readonly string doublesidedflag ;
private readonly string impassableflag ;
private readonly string upperunpeggedflag ;
private readonly string lowerunpeggedflag ;
private readonly bool mixtexturesflats ;
private readonly bool generalizedactions ;
private readonly bool generalizedeffects ;
private readonly int start3dmodethingtype ;
private readonly int linedefactivationsfilter ;
private readonly string testparameters ;
private readonly bool testshortpaths ;
private readonly string makedoortrack ;
private readonly string makedoordoor ; //mxd
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
private readonly string makedoorceil ; //mxd
2014-05-05 14:24:57 +00:00
private readonly int makedooraction ;
private readonly int makedooractivate ;
private readonly int [ ] makedoorargs ;
private readonly Dictionary < string , bool > makedoorflags ;
private readonly bool linetagindicatesectors ;
private readonly string decorategames ;
2015-05-23 21:40:21 +00:00
private string skyflatname ;
2014-05-05 14:24:57 +00:00
private readonly int maxtexturenamelength ;
2014-12-03 09:06:05 +00:00
private readonly bool longtexturenames ; //mxd
2014-05-05 14:24:57 +00:00
private readonly int leftboundary ;
private readonly int rightboundary ;
private readonly int topboundary ;
private readonly int bottomboundary ;
private readonly bool doomlightlevels ;
2014-12-05 14:33:31 +00:00
private readonly string actionspecialhelp ; //mxd
2015-03-17 12:28:42 +00:00
private readonly string thingclasshelp ; //mxd
2009-04-19 18:07:22 +00:00
// Skills
2014-05-05 14:24:57 +00:00
private readonly List < SkillInfo > skills ;
2009-04-19 18:07:22 +00:00
// Map lumps
2014-05-05 14:24:57 +00:00
private readonly Dictionary < string , MapLumpInfo > maplumps ;
Added, Visual mode, DECORATE: "Alpha" and "DefaultAlpha" properties are now supported.
Added, Visual mode, DECORATE: "RenderStyle" property is now partially supported.
Added, Visual mode, DECORATE: +BRIGHT flag is now supported.
Added, Visual mode, UDMF: "Alpha" thing property is now supported.
Added, Visual mode, UDMF: "RenderStyle" thing property is now partially supported.
Added, Visual mode, Hexen map format and UDMF: "Translucent" and "Invisible" thing flags are now supported.
Added, Game Configurations: added "alpha" and "renderstyle" Thing and Thing Category properties.
Fixed, Visual mode: blockmap was not updated when moving things using "Move Thing Left/Right/Forward/Backward" and "Move Thing to Cursor Location" actions.
DECORATE parser: added a warning when unable to find actor's parent class.
Internal: current map format can now be checked using "General.Map.UDMF", "General.Map.HEXEN" and "General.Map.DOOM" properties.
Updated documentation ("Game Configuration - Things Settings" page).
2015-09-28 14:57:48 +00:00
//mxd. Map format
private bool doommapformat ;
private bool hexenmapformat ;
private bool universalmapformat ;
2009-04-19 18:07:22 +00:00
2014-01-08 09:46:57 +00:00
// Texture/flat/voxel sources
2014-05-05 14:24:57 +00:00
private readonly IDictionary textureranges ;
private readonly IDictionary flatranges ;
private readonly IDictionary patchranges ;
private readonly IDictionary spriteranges ;
private readonly IDictionary colormapranges ;
private readonly IDictionary voxelranges ; //mxd
2009-04-19 18:07:22 +00:00
// Things
2014-05-05 14:24:57 +00:00
private readonly List < string > defaultthingflags ;
private readonly Dictionary < string , string > thingflags ;
private readonly List < ThingCategory > thingcategories ;
private readonly Dictionary < int , ThingTypeInfo > things ;
private readonly List < FlagTranslation > thingflagstranslation ;
2014-09-29 20:49:41 +00:00
private readonly Dictionary < string , Dictionary < string , ThingFlagsCompare > > thingflagscompare ; //mxd
2014-05-05 14:24:57 +00:00
private readonly Dictionary < string , string > thingrenderstyles ; //mxd
2009-04-19 18:07:22 +00:00
// Linedefs
2014-05-05 14:24:57 +00:00
private readonly Dictionary < string , string > linedefflags ;
private readonly List < string > sortedlinedefflags ;
private readonly Dictionary < int , LinedefActionInfo > linedefactions ;
private readonly List < LinedefActionInfo > sortedlinedefactions ;
private readonly List < LinedefActionCategory > actioncategories ;
private readonly List < LinedefActivateInfo > linedefactivates ;
private readonly List < GeneralizedCategory > genactioncategories ;
private readonly List < FlagTranslation > linedefflagstranslation ;
private readonly Dictionary < string , string > linedefrenderstyles ; //mxd
2013-07-19 15:30:58 +00:00
//mxd. Sidedefs
2014-05-05 14:24:57 +00:00
private readonly Dictionary < string , string > sidedefflags ; //mxd
2009-04-19 18:07:22 +00:00
// Sectors
2014-05-05 14:24:57 +00:00
private readonly Dictionary < string , string > sectorflags ; //mxd
private readonly Dictionary < int , SectorEffectInfo > sectoreffects ;
private readonly List < SectorEffectInfo > sortedsectoreffects ;
private readonly List < GeneralizedOption > geneffectoptions ;
private readonly StepsList brightnesslevels ;
private readonly Dictionary < string , string > sectorrenderstyles ; //mxd
2009-04-19 18:07:22 +00:00
// Universal fields
2014-05-05 14:24:57 +00:00
private readonly List < UniversalFieldInfo > linedeffields ;
private readonly List < UniversalFieldInfo > sectorfields ;
private readonly List < UniversalFieldInfo > sidedeffields ;
private readonly List < UniversalFieldInfo > thingfields ;
private readonly List < UniversalFieldInfo > vertexfields ;
2009-04-19 18:07:22 +00:00
// Enums
2014-05-05 14:24:57 +00:00
private readonly Dictionary < string , EnumList > enums ;
2009-04-19 18:07:22 +00:00
// Defaults
2014-05-05 14:24:57 +00:00
private readonly List < DefinedTextureSet > texturesets ;
private readonly List < ThingsFilter > thingfilters ;
2012-06-01 10:17:47 +00:00
2013-09-11 09:47:53 +00:00
//mxd. Holds base game type (doom, heretic, hexen or strife)
2014-05-05 14:24:57 +00:00
private readonly GameType gameType ;
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Properties
// General settings
public string Name { get { return configname ; } }
public string EngineName { get { return enginename ; } }
public string DefaultSaveCompiler { get { return defaultsavecompiler ; } }
public string DefaultTestCompiler { get { return defaulttestcompiler ; } }
public float DefaultTextureScale { get { return defaulttexturescale ; } }
public float DefaultFlatScale { get { return defaultflatscale ; } }
2015-10-23 12:01:27 +00:00
public string DefaultWallTexture { get { return defaultwalltexture ; } } //mxd
public string DefaultFloorTexture { get { return defaultfloortexture ; } } //mxd
public string DefaultCeilingTexture { get { return defaultceilingtexture ; } } //mxd
2010-01-02 20:54:35 +00:00
public bool ScaledTextureOffsets { get { return scaledtextureoffsets ; } }
2009-04-19 18:07:22 +00:00
public string FormatInterface { get { return formatinterface ; } }
2013-06-06 10:22:58 +00:00
public string DefaultLinedefActivationFlag { get { return defaultLinedefActivation ; } } //mxd
2009-04-19 18:07:22 +00:00
public string SingleSidedFlag { get { return singlesidedflag ; } }
public string DoubleSidedFlag { get { return doublesidedflag ; } }
public string ImpassableFlag { get { return impassableflag ; } }
public string UpperUnpeggedFlag { get { return upperunpeggedflag ; } }
public string LowerUnpeggedFlag { get { return lowerunpeggedflag ; } }
public bool MixTexturesFlats { get { return mixtexturesflats ; } }
public bool GeneralizedActions { get { return generalizedactions ; } }
public bool GeneralizedEffects { get { return generalizedeffects ; } }
public int Start3DModeThingType { get { return start3dmodethingtype ; } }
public int LinedefActivationsFilter { get { return linedefactivationsfilter ; } }
public string TestParameters { get { return testparameters ; } }
public bool TestShortPaths { get { return testshortpaths ; } }
public string MakeDoorTrack { get { return makedoortrack ; } }
2014-03-06 09:08:21 +00:00
public string MakeDoorDoor { get { return makedoordoor ; } } //mxd
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
public string MakeDoorCeiling { get { return makedoorceil ; } } //mxd
2009-04-19 18:07:22 +00:00
public int MakeDoorAction { get { return makedooraction ; } }
2012-04-14 12:22:19 +00:00
public int MakeDoorActivate { get { return makedooractivate ; } }
public Dictionary < string , bool > MakeDoorFlags { get { return makedoorflags ; } }
2009-04-19 18:07:22 +00:00
public int [ ] MakeDoorArgs { get { return makedoorargs ; } }
public bool LineTagIndicatesSectors { get { return linetagindicatesectors ; } }
public string DecorateGames { get { return decorategames ; } }
2015-05-23 21:40:21 +00:00
public string SkyFlatName { get { return skyflatname ; } internal set { skyflatname = value ; } } //mxd. Added setter
2014-05-19 13:33:38 +00:00
public int MaxTextureNameLength { get { return maxtexturenamelength ; } }
2014-12-03 09:06:05 +00:00
public bool UseLongTextureNames { get { return longtexturenames ; } } //mxd
2010-08-13 18:32:21 +00:00
public int LeftBoundary { get { return leftboundary ; } }
public int RightBoundary { get { return rightboundary ; } }
public int TopBoundary { get { return topboundary ; } }
public int BottomBoundary { get { return bottomboundary ; } }
2009-07-12 09:58:05 +00:00
public bool DoomLightLevels { get { return doomlightlevels ; } }
2014-12-05 14:33:31 +00:00
public string ActionSpecialHelp { get { return actionspecialhelp ; } } //mxd
2015-03-17 12:28:42 +00:00
public string ThingClassHelp { get { return thingclasshelp ; } } //mxd
2014-12-05 14:33:31 +00:00
2009-04-19 18:07:22 +00:00
// Skills
public List < SkillInfo > Skills { get { return skills ; } }
// Map lumps
public Dictionary < string , MapLumpInfo > MapLumps { get { return maplumps ; } }
Added, Visual mode, DECORATE: "Alpha" and "DefaultAlpha" properties are now supported.
Added, Visual mode, DECORATE: "RenderStyle" property is now partially supported.
Added, Visual mode, DECORATE: +BRIGHT flag is now supported.
Added, Visual mode, UDMF: "Alpha" thing property is now supported.
Added, Visual mode, UDMF: "RenderStyle" thing property is now partially supported.
Added, Visual mode, Hexen map format and UDMF: "Translucent" and "Invisible" thing flags are now supported.
Added, Game Configurations: added "alpha" and "renderstyle" Thing and Thing Category properties.
Fixed, Visual mode: blockmap was not updated when moving things using "Move Thing Left/Right/Forward/Backward" and "Move Thing to Cursor Location" actions.
DECORATE parser: added a warning when unable to find actor's parent class.
Internal: current map format can now be checked using "General.Map.UDMF", "General.Map.HEXEN" and "General.Map.DOOM" properties.
Updated documentation ("Game Configuration - Things Settings" page).
2015-09-28 14:57:48 +00:00
//mxd. Map format
public bool UDMF { get { return universalmapformat ; } }
public bool HEXEN { get { return hexenmapformat ; } }
public bool DOOM { get { return doommapformat ; } }
2014-01-08 09:46:57 +00:00
// Texture/flat/voxel sources
2009-04-19 18:07:22 +00:00
public IDictionary TextureRanges { get { return textureranges ; } }
public IDictionary FlatRanges { get { return flatranges ; } }
public IDictionary PatchRanges { get { return patchranges ; } }
public IDictionary SpriteRanges { get { return spriteranges ; } }
2009-05-12 09:50:08 +00:00
public IDictionary ColormapRanges { get { return colormapranges ; } }
2014-01-08 09:46:57 +00:00
public IDictionary VoxelRanges { get { return voxelranges ; } } //mxd
2009-04-19 18:07:22 +00:00
// Things
public ICollection < string > DefaultThingFlags { get { return defaultthingflags ; } }
public IDictionary < string , string > ThingFlags { get { return thingflags ; } }
public List < FlagTranslation > ThingFlagsTranslation { get { return thingflagstranslation ; } }
2014-09-29 20:49:41 +00:00
public Dictionary < string , Dictionary < string , ThingFlagsCompare > > ThingFlagsCompare { get { return thingflagscompare ; } } //mxd
2014-05-05 14:24:57 +00:00
public Dictionary < string , string > ThingRenderStyles { get { return thingrenderstyles ; } } //mxd
2009-04-19 18:07:22 +00:00
// Linedefs
public IDictionary < string , string > LinedefFlags { get { return linedefflags ; } }
2009-07-31 11:00:11 +00:00
public List < string > SortedLinedefFlags { get { return sortedlinedefflags ; } }
2009-04-19 18:07:22 +00:00
public IDictionary < int , LinedefActionInfo > LinedefActions { get { return linedefactions ; } }
public List < LinedefActionInfo > SortedLinedefActions { get { return sortedlinedefactions ; } }
public List < LinedefActionCategory > ActionCategories { get { return actioncategories ; } }
public List < LinedefActivateInfo > LinedefActivates { get { return linedefactivates ; } }
public List < GeneralizedCategory > GenActionCategories { get { return genactioncategories ; } }
public List < FlagTranslation > LinedefFlagsTranslation { get { return linedefflagstranslation ; } }
2014-05-05 14:24:57 +00:00
public Dictionary < string , string > LinedefRenderStyles { get { return linedefrenderstyles ; } } //mxd
2009-04-19 18:07:22 +00:00
2013-07-19 15:30:58 +00:00
//mxd. Sidedefs
public IDictionary < string , string > SidedefFlags { get { return sidedefflags ; } }
2009-04-19 18:07:22 +00:00
// Sectors
2013-07-19 15:30:58 +00:00
public IDictionary < string , string > SectorFlags { get { return sectorflags ; } } //mxd
2009-04-19 18:07:22 +00:00
public IDictionary < int , SectorEffectInfo > SectorEffects { get { return sectoreffects ; } }
public List < SectorEffectInfo > SortedSectorEffects { get { return sortedsectoreffects ; } }
public List < GeneralizedOption > GenEffectOptions { get { return geneffectoptions ; } }
2009-07-10 19:15:22 +00:00
public StepsList BrightnessLevels { get { return brightnesslevels ; } }
2014-05-05 14:24:57 +00:00
public Dictionary < string , string > SectorRenderStyles { get { return sectorrenderstyles ; } } //mxd
2009-04-19 18:07:22 +00:00
// Universal fields
public List < UniversalFieldInfo > LinedefFields { get { return linedeffields ; } }
public List < UniversalFieldInfo > SectorFields { get { return sectorfields ; } }
public List < UniversalFieldInfo > SidedefFields { get { return sidedeffields ; } }
public List < UniversalFieldInfo > ThingFields { get { return thingfields ; } }
public List < UniversalFieldInfo > VertexFields { get { return vertexfields ; } }
// Enums
public IDictionary < string , EnumList > Enums { get { return enums ; } }
// Defaults
internal List < DefinedTextureSet > TextureSets { get { return texturesets ; } }
2009-07-05 10:26:57 +00:00
public List < ThingsFilter > ThingsFilters { get { return thingfilters ; } }
2012-06-01 10:17:47 +00:00
2013-09-11 09:47:53 +00:00
//mxd
public GameType GameType { get { return gameType ; } }
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Constructor / Disposer
// Constructor
internal GameConfiguration ( Configuration cfg )
{
// Initialize
this . cfg = cfg ;
2014-02-26 14:11:06 +00:00
this . thingflags = new Dictionary < string , string > ( StringComparer . Ordinal ) ;
2009-04-19 18:07:22 +00:00
this . defaultthingflags = new List < string > ( ) ;
this . thingcategories = new List < ThingCategory > ( ) ;
this . things = new Dictionary < int , ThingTypeInfo > ( ) ;
2014-02-26 14:11:06 +00:00
this . linedefflags = new Dictionary < string , string > ( StringComparer . Ordinal ) ;
2009-07-31 11:00:11 +00:00
this . sortedlinedefflags = new List < string > ( ) ;
2009-04-19 18:07:22 +00:00
this . linedefactions = new Dictionary < int , LinedefActionInfo > ( ) ;
this . actioncategories = new List < LinedefActionCategory > ( ) ;
this . sortedlinedefactions = new List < LinedefActionInfo > ( ) ;
this . linedefactivates = new List < LinedefActivateInfo > ( ) ;
2014-02-26 14:11:06 +00:00
this . sidedefflags = new Dictionary < string , string > ( StringComparer . Ordinal ) ; //mxd
2009-04-19 18:07:22 +00:00
this . genactioncategories = new List < GeneralizedCategory > ( ) ;
2014-02-26 14:11:06 +00:00
this . sectorflags = new Dictionary < string , string > ( StringComparer . Ordinal ) ; //mxd
2009-04-19 18:07:22 +00:00
this . sectoreffects = new Dictionary < int , SectorEffectInfo > ( ) ;
this . sortedsectoreffects = new List < SectorEffectInfo > ( ) ;
this . geneffectoptions = new List < GeneralizedOption > ( ) ;
2014-02-26 14:11:06 +00:00
this . enums = new Dictionary < string , EnumList > ( StringComparer . Ordinal ) ;
2009-04-19 18:07:22 +00:00
this . skills = new List < SkillInfo > ( ) ;
this . texturesets = new List < DefinedTextureSet > ( ) ;
this . makedoorargs = new int [ Linedef . NUM_ARGS ] ;
2014-02-26 14:11:06 +00:00
this . maplumps = new Dictionary < string , MapLumpInfo > ( StringComparer . Ordinal ) ;
2009-04-19 18:07:22 +00:00
this . thingflagstranslation = new List < FlagTranslation > ( ) ;
this . linedefflagstranslation = new List < FlagTranslation > ( ) ;
this . thingfilters = new List < ThingsFilter > ( ) ;
2014-09-29 20:49:41 +00:00
this . thingflagscompare = new Dictionary < string , Dictionary < string , ThingFlagsCompare > > ( ) ; //mxd
2009-07-10 19:15:22 +00:00
this . brightnesslevels = new StepsList ( ) ;
2014-02-26 14:11:06 +00:00
this . makedoorflags = new Dictionary < string , bool > ( StringComparer . Ordinal ) ;
2014-05-05 14:24:57 +00:00
this . linedefrenderstyles = new Dictionary < string , string > ( StringComparer . Ordinal ) ; //mxd
this . sectorrenderstyles = new Dictionary < string , string > ( StringComparer . Ordinal ) ; //mxd
this . thingrenderstyles = new Dictionary < string , string > ( StringComparer . Ordinal ) ; //mxd
2009-04-19 18:07:22 +00:00
// Read general settings
configname = cfg . ReadSetting ( "game" , "<unnamed game>" ) ;
2012-06-01 10:17:47 +00:00
2013-09-11 09:47:53 +00:00
//mxd
int gt = ( cfg . ReadSetting ( "basegame" , ( int ) GameType . UNKNOWN ) ) ;
gameType = ( ( gt > - 1 & & gt < Gldefs . GLDEFS_LUMPS_PER_GAME . Length ) ? ( GameType ) gt : GameType . UNKNOWN ) ;
2012-06-01 10:17:47 +00:00
2009-04-19 18:07:22 +00:00
enginename = cfg . ReadSetting ( "engine" , "" ) ;
defaultsavecompiler = cfg . ReadSetting ( "defaultsavecompiler" , "" ) ;
defaulttestcompiler = cfg . ReadSetting ( "defaulttestcompiler" , "" ) ;
defaulttexturescale = cfg . ReadSetting ( "defaulttexturescale" , 1f ) ;
defaultflatscale = cfg . ReadSetting ( "defaultflatscale" , 1f ) ;
2015-10-23 12:01:27 +00:00
defaultwalltexture = cfg . ReadSetting ( "defaultwalltexture" , "STARTAN" ) ; //mxd
defaultfloortexture = cfg . ReadSetting ( "defaultfloortexture" , "FLOOR0_1" ) ; //mxd
defaultceilingtexture = cfg . ReadSetting ( "defaultceilingtexture" , "CEIL1_1" ) ; //mxd
2010-01-02 20:54:35 +00:00
scaledtextureoffsets = cfg . ReadSetting ( "scaledtextureoffsets" , true ) ;
2009-04-19 18:07:22 +00:00
formatinterface = cfg . ReadSetting ( "formatinterface" , "" ) ;
mixtexturesflats = cfg . ReadSetting ( "mixtexturesflats" , false ) ;
generalizedactions = cfg . ReadSetting ( "generalizedlinedefs" , false ) ;
generalizedeffects = cfg . ReadSetting ( "generalizedsectors" , false ) ;
start3dmodethingtype = cfg . ReadSetting ( "start3dmode" , 0 ) ;
linedefactivationsfilter = cfg . ReadSetting ( "linedefactivationsfilter" , 0 ) ;
testparameters = cfg . ReadSetting ( "testparameters" , "" ) ;
testshortpaths = cfg . ReadSetting ( "testshortpaths" , false ) ;
makedoortrack = cfg . ReadSetting ( "makedoortrack" , "-" ) ;
2014-03-06 09:08:21 +00:00
makedoordoor = cfg . ReadSetting ( "makedoordoor" , "-" ) ; //mxd
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
makedoorceil = cfg . ReadSetting ( "makedoorceil" , "-" ) ; //mxd
2009-04-19 18:07:22 +00:00
makedooraction = cfg . ReadSetting ( "makedooraction" , 0 ) ;
2012-04-14 12:22:19 +00:00
makedooractivate = cfg . ReadSetting ( "makedooractivate" , 0 ) ;
2009-04-19 18:07:22 +00:00
linetagindicatesectors = cfg . ReadSetting ( "linetagindicatesectors" , false ) ;
decorategames = cfg . ReadSetting ( "decorategames" , "" ) ;
2013-09-11 09:47:53 +00:00
skyflatname = cfg . ReadSetting ( "skyflatname" , "F_SKY1" ) ;
2010-08-13 18:32:21 +00:00
leftboundary = cfg . ReadSetting ( "leftboundary" , - 32768 ) ;
rightboundary = cfg . ReadSetting ( "rightboundary" , 32767 ) ;
topboundary = cfg . ReadSetting ( "topboundary" , 32767 ) ;
bottomboundary = cfg . ReadSetting ( "bottomboundary" , - 32768 ) ;
2009-07-12 09:58:05 +00:00
doomlightlevels = cfg . ReadSetting ( "doomlightlevels" , true ) ;
2014-12-05 14:33:31 +00:00
actionspecialhelp = cfg . ReadSetting ( "actionspecialhelp" , string . Empty ) ; //mxd
2015-03-17 12:28:42 +00:00
thingclasshelp = cfg . ReadSetting ( "thingclasshelp" , string . Empty ) ; //mxd
2013-06-06 10:22:58 +00:00
defaultLinedefActivation = cfg . ReadSetting ( "defaultlinedefactivation" , "" ) ; //mxd
2009-04-19 18:07:22 +00:00
for ( int i = 0 ; i < Linedef . NUM_ARGS ; i + + ) makedoorargs [ i ] = cfg . ReadSetting ( "makedoorarg" + i . ToString ( CultureInfo . InvariantCulture ) , 0 ) ;
2012-04-14 12:22:19 +00:00
Added, Visual mode, DECORATE: "Alpha" and "DefaultAlpha" properties are now supported.
Added, Visual mode, DECORATE: "RenderStyle" property is now partially supported.
Added, Visual mode, DECORATE: +BRIGHT flag is now supported.
Added, Visual mode, UDMF: "Alpha" thing property is now supported.
Added, Visual mode, UDMF: "RenderStyle" thing property is now partially supported.
Added, Visual mode, Hexen map format and UDMF: "Translucent" and "Invisible" thing flags are now supported.
Added, Game Configurations: added "alpha" and "renderstyle" Thing and Thing Category properties.
Fixed, Visual mode: blockmap was not updated when moving things using "Move Thing Left/Right/Forward/Backward" and "Move Thing to Cursor Location" actions.
DECORATE parser: added a warning when unable to find actor's parent class.
Internal: current map format can now be checked using "General.Map.UDMF", "General.Map.HEXEN" and "General.Map.DOOM" properties.
Updated documentation ("Game Configuration - Things Settings" page).
2015-09-28 14:57:48 +00:00
//mxd. Update map format flags
universalmapformat = ( formatinterface = = "UniversalMapSetIO" ) ;
hexenmapformat = ( formatinterface = = "HexenMapSetIO" ) ;
doommapformat = ( formatinterface = = "DoomMapSetIO" ) ;
2014-11-25 11:52:01 +00:00
//mxd. Texture names length
2014-12-03 09:06:05 +00:00
longtexturenames = cfg . ReadSetting ( "longtexturenames" , false ) ;
maxtexturenamelength = ( longtexturenames ? short . MaxValue : DataManager . CLASIC_IMAGE_NAME_LENGTH ) ;
2014-11-25 11:52:01 +00:00
2009-04-19 18:07:22 +00:00
// Flags have special (invariant culture) conversion
// because they are allowed to be written as integers in the configs
2014-03-05 12:26:09 +00:00
object obj = cfg . ReadSettingObject ( "singlesidedflag" , 0 ) ;
2009-04-19 18:07:22 +00:00
if ( obj is int ) singlesidedflag = ( ( int ) obj ) . ToString ( CultureInfo . InvariantCulture ) ; else singlesidedflag = obj . ToString ( ) ;
obj = cfg . ReadSettingObject ( "doublesidedflag" , 0 ) ;
if ( obj is int ) doublesidedflag = ( ( int ) obj ) . ToString ( CultureInfo . InvariantCulture ) ; else doublesidedflag = obj . ToString ( ) ;
obj = cfg . ReadSettingObject ( "impassableflag" , 0 ) ;
if ( obj is int ) impassableflag = ( ( int ) obj ) . ToString ( CultureInfo . InvariantCulture ) ; else impassableflag = obj . ToString ( ) ;
obj = cfg . ReadSettingObject ( "upperunpeggedflag" , 0 ) ;
if ( obj is int ) upperunpeggedflag = ( ( int ) obj ) . ToString ( CultureInfo . InvariantCulture ) ; else upperunpeggedflag = obj . ToString ( ) ;
obj = cfg . ReadSettingObject ( "lowerunpeggedflag" , 0 ) ;
if ( obj is int ) lowerunpeggedflag = ( ( int ) obj ) . ToString ( CultureInfo . InvariantCulture ) ; else lowerunpeggedflag = obj . ToString ( ) ;
// Get texture and flat sources
textureranges = cfg . ReadSetting ( "textures" , new Hashtable ( ) ) ;
flatranges = cfg . ReadSetting ( "flats" , new Hashtable ( ) ) ;
patchranges = cfg . ReadSetting ( "patches" , new Hashtable ( ) ) ;
spriteranges = cfg . ReadSetting ( "sprites" , new Hashtable ( ) ) ;
2009-05-12 09:50:08 +00:00
colormapranges = cfg . ReadSetting ( "colormaps" , new Hashtable ( ) ) ;
2014-01-08 09:46:57 +00:00
voxelranges = cfg . ReadSetting ( "voxels" , new Hashtable ( ) ) ; //mxd
2009-04-19 18:07:22 +00:00
// Map lumps
LoadMapLumps ( ) ;
// Skills
LoadSkills ( ) ;
// Enums
LoadEnums ( ) ;
// Things
LoadThingFlags ( ) ;
LoadDefaultThingFlags ( ) ;
LoadThingCategories ( ) ;
2014-05-05 14:24:57 +00:00
LoadStringDictionary ( thingrenderstyles , "thingrenderstyles" ) ; //mxd
2009-04-19 18:07:22 +00:00
// Linedefs
LoadLinedefFlags ( ) ;
LoadLinedefActions ( ) ;
LoadLinedefActivations ( ) ;
LoadLinedefGeneralizedActions ( ) ;
2014-05-05 14:24:57 +00:00
LoadStringDictionary ( linedefrenderstyles , "linedefrenderstyles" ) ; //mxd
2009-04-19 18:07:22 +00:00
2013-07-19 15:30:58 +00:00
//mxd. Sidedefs
2014-05-05 14:24:57 +00:00
LoadStringDictionary ( sidedefflags , "sidedefflags" ) ;
2013-07-19 15:30:58 +00:00
2009-04-19 18:07:22 +00:00
// Sectors
2014-05-05 14:24:57 +00:00
LoadStringDictionary ( sectorflags , "sectorflags" ) ; //mxd
2009-04-19 18:07:22 +00:00
LoadBrightnessLevels ( ) ;
LoadSectorEffects ( ) ;
LoadSectorGeneralizedEffects ( ) ;
2014-05-05 14:24:57 +00:00
LoadStringDictionary ( sectorrenderstyles , "sectorrenderstyles" ) ; //mxd
2009-04-19 18:07:22 +00:00
// Universal fields
linedeffields = LoadUniversalFields ( "linedef" ) ;
sectorfields = LoadUniversalFields ( "sector" ) ;
sidedeffields = LoadUniversalFields ( "sidedef" ) ;
thingfields = LoadUniversalFields ( "thing" ) ;
vertexfields = LoadUniversalFields ( "vertex" ) ;
// Defaults
LoadTextureSets ( ) ;
LoadThingFilters ( ) ;
2012-04-14 12:22:19 +00:00
// Make door flags
LoadMakeDoorFlags ( ) ;
2009-04-19 18:07:22 +00:00
}
// Destructor
~ GameConfiguration ( )
{
foreach ( ThingCategory tc in thingcategories ) tc . Dispose ( ) ;
foreach ( LinedefActionCategory ac in actioncategories ) ac . Dispose ( ) ;
2015-09-16 12:10:43 +00:00
foreach ( ThingsFilter tf in thingfilters ) tf . Dispose ( ) ; //mxd
2009-04-19 18:07:22 +00:00
}
#endregion
#region = = = = = = = = = = = = = = = = = = Loading
// This loads the map lumps
2014-12-03 23:15:26 +00:00
private void LoadMapLumps ( )
{
2009-04-19 18:07:22 +00:00
// Get map lumps list
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "maplumpnames" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Make map lumps
MapLumpInfo lumpinfo = new MapLumpInfo ( de . Key . ToString ( ) , cfg ) ;
maplumps . Add ( de . Key . ToString ( ) , lumpinfo ) ;
}
}
// This loads the enumerations
2014-12-03 23:15:26 +00:00
private void LoadEnums ( )
{
2009-04-19 18:07:22 +00:00
// Get enums list
2014-05-05 14:24:57 +00:00
IDictionary dic = cfg . ReadSetting ( "enums" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Make new enum
EnumList list = new EnumList ( de . Key . ToString ( ) , cfg ) ;
enums . Add ( de . Key . ToString ( ) , list ) ;
}
}
// This loads a universal fields list
private List < UniversalFieldInfo > LoadUniversalFields ( string elementname )
{
List < UniversalFieldInfo > list = new List < UniversalFieldInfo > ( ) ;
UniversalFieldInfo uf ;
2014-05-05 14:24:57 +00:00
2009-04-19 18:07:22 +00:00
// Get fields
2014-05-05 14:24:57 +00:00
IDictionary dic = cfg . ReadSetting ( "universalfields." + elementname , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
try
{
// Read the field info and add to list
uf = new UniversalFieldInfo ( elementname , de . Key . ToString ( ) , cfg , enums ) ;
list . Add ( uf ) ;
}
catch ( Exception )
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Unable to read universal field definition 'universalfields." + elementname + "." + de . Key + "' from game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
// Return result
return list ;
}
// Things and thing categories
private void LoadThingCategories ( )
{
ThingCategory thingcat ;
// Get thing categories
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "thingtypes" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
2009-08-01 07:45:12 +00:00
if ( de . Value is IDictionary )
2009-04-19 18:07:22 +00:00
{
2009-08-01 07:45:12 +00:00
// Make a category
2015-06-01 21:46:28 +00:00
thingcat = new ThingCategory ( cfg , null , de . Key . ToString ( ) , enums ) ;
2009-08-01 07:45:12 +00:00
Removed "Paste Properties Options" action.
Added "Paste Properties Special" actions in "Classic" and "Visual" categories. They work the same way as "Paste Special" action.
Added: "Copy Properties", "Paste Properties" and "Paste Properties Special" options are now shown in the Edit menu if current classic mode supports them.
Changed, Paste Properties Special window: only options relevant to current map format are now displayed.
Changed, Paste Properties Special window, UDMF: all UI-managed options are now available.
Fixed: MAPINFO parser was unable to process "include" directives.
Fixed, General interface: selection info was reset to "Nothing selected" after few seconds regardless of current selection.
Fixed, Visual mode: thing bounding boxes were not updated when changing things positions using Randomize mode.
Fixed, Visual mode: event lines were displayed at incorrect height when entering Visual mode for the first time.
Fixed, Texture Browser window: when MixTexturesFlats Game Configuration option is disabled, textures/flats are no longer shown in the Used group when flats/textures with the same names are used in the map.
Fixed(?): probably fixed an exception some users reported when trying to initialize a Classic mode after switching from Visual mode with "Sync cameras" option enabled.
Changed, Game configurations, Thing Categories: a block must have at least one thing category property to be recognized as a thing category.
Changed, Visplane Explorer: the plugin now outputs more info when it fails to initialize vpo.dll.
Cosmetic, Thing Edit window, Doom/Hexen map format: adjusted UI layout so thing flags control no longer displays scrollbars in Hexen map format.
Internal: merged methods from UDMFTools into UniFields, removed UDMFTools.
Updated Inno Setup script (added VC++ 2008 SP1 distributive).
Updated ZDoom_DECORATE.cfg (A_CheckBlock).
Updated documentation (added "System Requirements" page).
2015-10-09 12:38:12 +00:00
//mxd. Otherwise nesting problems might occure
if ( thingcat . IsValid )
{
// Add all things in category to the big list
AddThingsFromCategory ( thingcat ) ; //mxd
// Add category to list
thingcategories . Add ( thingcat ) ;
}
2009-08-01 07:45:12 +00:00
}
2009-04-19 18:07:22 +00:00
}
}
2015-06-01 21:46:28 +00:00
//mxd. This recursively adds all things from a ThingCategory and it's children
private void AddThingsFromCategory ( ThingCategory thingcat )
{
Removed "Paste Properties Options" action.
Added "Paste Properties Special" actions in "Classic" and "Visual" categories. They work the same way as "Paste Special" action.
Added: "Copy Properties", "Paste Properties" and "Paste Properties Special" options are now shown in the Edit menu if current classic mode supports them.
Changed, Paste Properties Special window: only options relevant to current map format are now displayed.
Changed, Paste Properties Special window, UDMF: all UI-managed options are now available.
Fixed: MAPINFO parser was unable to process "include" directives.
Fixed, General interface: selection info was reset to "Nothing selected" after few seconds regardless of current selection.
Fixed, Visual mode: thing bounding boxes were not updated when changing things positions using Randomize mode.
Fixed, Visual mode: event lines were displayed at incorrect height when entering Visual mode for the first time.
Fixed, Texture Browser window: when MixTexturesFlats Game Configuration option is disabled, textures/flats are no longer shown in the Used group when flats/textures with the same names are used in the map.
Fixed(?): probably fixed an exception some users reported when trying to initialize a Classic mode after switching from Visual mode with "Sync cameras" option enabled.
Changed, Game configurations, Thing Categories: a block must have at least one thing category property to be recognized as a thing category.
Changed, Visplane Explorer: the plugin now outputs more info when it fails to initialize vpo.dll.
Cosmetic, Thing Edit window, Doom/Hexen map format: adjusted UI layout so thing flags control no longer displays scrollbars in Hexen map format.
Internal: merged methods from UDMFTools into UniFields, removed UDMFTools.
Updated Inno Setup script (added VC++ 2008 SP1 distributive).
Updated ZDoom_DECORATE.cfg (A_CheckBlock).
Updated documentation (added "System Requirements" page).
2015-10-09 12:38:12 +00:00
if ( ! thingcat . IsValid ) return ;
2015-06-01 21:46:28 +00:00
// Add all things in category to the big list
foreach ( ThingTypeInfo t in thingcat . Things )
{
if ( ! things . ContainsKey ( t . Index ) )
things . Add ( t . Index , t ) ;
else
Removed "Paste Properties Options" action.
Added "Paste Properties Special" actions in "Classic" and "Visual" categories. They work the same way as "Paste Special" action.
Added: "Copy Properties", "Paste Properties" and "Paste Properties Special" options are now shown in the Edit menu if current classic mode supports them.
Changed, Paste Properties Special window: only options relevant to current map format are now displayed.
Changed, Paste Properties Special window, UDMF: all UI-managed options are now available.
Fixed: MAPINFO parser was unable to process "include" directives.
Fixed, General interface: selection info was reset to "Nothing selected" after few seconds regardless of current selection.
Fixed, Visual mode: thing bounding boxes were not updated when changing things positions using Randomize mode.
Fixed, Visual mode: event lines were displayed at incorrect height when entering Visual mode for the first time.
Fixed, Texture Browser window: when MixTexturesFlats Game Configuration option is disabled, textures/flats are no longer shown in the Used group when flats/textures with the same names are used in the map.
Fixed(?): probably fixed an exception some users reported when trying to initialize a Classic mode after switching from Visual mode with "Sync cameras" option enabled.
Changed, Game configurations, Thing Categories: a block must have at least one thing category property to be recognized as a thing category.
Changed, Visplane Explorer: the plugin now outputs more info when it fails to initialize vpo.dll.
Cosmetic, Thing Edit window, Doom/Hexen map format: adjusted UI layout so thing flags control no longer displays scrollbars in Hexen map format.
Internal: merged methods from UDMFTools into UniFields, removed UDMFTools.
Updated Inno Setup script (added VC++ 2008 SP1 distributive).
Updated ZDoom_DECORATE.cfg (A_CheckBlock).
Updated documentation (added "System Requirements" page).
2015-10-09 12:38:12 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Thing number " + t . Index + " is defined more than once (as '" + things [ t . Index ] . Title + "' and '" + t . Title + "') in the '" + this . Name + "' game configuration" ) ;
2015-06-01 21:46:28 +00:00
}
// Recursively add things from child categories
foreach ( ThingCategory c in thingcat . Children ) AddThingsFromCategory ( c ) ;
}
2009-04-19 18:07:22 +00:00
// Linedef flags
private void LoadLinedefFlags ( )
{
// Get linedef flags
2014-05-05 14:24:57 +00:00
LoadStringDictionary ( linedefflags , "linedefflags" ) ; //mxd
2009-07-31 11:00:11 +00:00
2009-04-19 18:07:22 +00:00
// Get translations
2014-05-05 14:24:57 +00:00
IDictionary dic = cfg . ReadSetting ( "linedefflagstranslation" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
linedefflagstranslation . Add ( new FlagTranslation ( de ) ) ;
2009-07-31 11:00:11 +00:00
// Sort flags?
MapSetIO io = MapSetIO . Create ( formatinterface ) ;
if ( io . HasNumericLinedefFlags )
{
// Make list for integers that we can sort
List < int > sortlist = new List < int > ( linedefflags . Count ) ;
foreach ( KeyValuePair < string , string > f in linedefflags )
{
int num ;
if ( int . TryParse ( f . Key , NumberStyles . Integer , CultureInfo . InvariantCulture , out num ) ) sortlist . Add ( num ) ;
}
// Sort
sortlist . Sort ( ) ;
// Make list of strings
foreach ( int i in sortlist )
sortedlinedefflags . Add ( i . ToString ( CultureInfo . InvariantCulture ) ) ;
}
// Sort the flags, because they must be compared highest first!
2009-04-19 18:07:22 +00:00
linedefflagstranslation . Sort ( ) ;
}
// Linedef actions and action categories
private void LoadLinedefActions ( )
{
2014-02-26 14:11:06 +00:00
Dictionary < string , LinedefActionCategory > cats = new Dictionary < string , LinedefActionCategory > ( StringComparer . Ordinal ) ;
2009-04-19 18:07:22 +00:00
LinedefActionInfo ai ;
LinedefActionCategory ac ;
int actionnumber ;
// Get linedef categories
2014-02-26 14:11:06 +00:00
IDictionary dic = cfg . ReadSetting ( "linedeftypes" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry cde in dic )
{
2009-08-01 07:45:12 +00:00
if ( cde . Value is IDictionary )
2009-04-19 18:07:22 +00:00
{
2009-08-01 07:45:12 +00:00
// Read category title
string cattitle = cfg . ReadSetting ( "linedeftypes." + cde . Key + ".title" , "" ) ;
// Make or get category
if ( cats . ContainsKey ( cde . Key . ToString ( ) ) )
ac = cats [ cde . Key . ToString ( ) ] ;
else
2009-04-19 18:07:22 +00:00
{
2009-08-01 07:45:12 +00:00
ac = new LinedefActionCategory ( cde . Key . ToString ( ) , cattitle ) ;
cats . Add ( cde . Key . ToString ( ) , ac ) ;
}
2009-04-19 18:07:22 +00:00
2009-08-01 07:45:12 +00:00
// Go for all line types in category
IDictionary catdic = cfg . ReadSetting ( "linedeftypes." + cde . Key , new Hashtable ( ) ) ;
foreach ( DictionaryEntry de in catdic )
{
// Check if the item key is numeric
if ( int . TryParse ( de . Key . ToString ( ) ,
NumberStyles . AllowLeadingWhite | NumberStyles . AllowTrailingWhite ,
CultureInfo . InvariantCulture , out actionnumber ) )
2009-04-19 18:07:22 +00:00
{
2009-08-01 07:45:12 +00:00
// Check if the item value is a structure
if ( de . Value is IDictionary )
{
// Make the line type
ai = new LinedefActionInfo ( actionnumber , cfg , cde . Key . ToString ( ) , enums ) ;
// Add action to category and sorted list
sortedlinedefactions . Add ( ai ) ;
linedefactions . Add ( actionnumber , ai ) ;
ac . Add ( ai ) ;
}
else
{
// Failure
if ( de . Value ! = null )
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'linedeftypes' contains invalid types in game configuration '" + this . Name + "'. All types must be expanded structures." ) ;
}
2009-04-19 18:07:22 +00:00
}
}
}
}
// Sort the actions list
sortedlinedefactions . Sort ( ) ;
// Copy categories to final list
actioncategories . Clear ( ) ;
actioncategories . AddRange ( cats . Values ) ;
// Sort the categories list
actioncategories . Sort ( ) ;
}
// Linedef activates
private void LoadLinedefActivations ( )
{
// Get linedef activations
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "linedefactivations" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Add to the list
linedefactivates . Add ( new LinedefActivateInfo ( de . Key . ToString ( ) , de . Value . ToString ( ) ) ) ;
}
2015-01-26 09:45:27 +00:00
//mxd. Sort only when activations are numeric
MapSetIO io = MapSetIO . Create ( formatinterface ) ;
if ( io . HasNumericLinedefActivations )
{
linedefactivates . Sort ( ) ;
}
2009-04-19 18:07:22 +00:00
}
// Linedef generalized actions
private void LoadLinedefGeneralizedActions ( )
{
// Get linedef activations
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "gen_linedeftypes" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Check for valid structure
if ( de . Value is IDictionary )
{
// Add category
genactioncategories . Add ( new GeneralizedCategory ( "gen_linedeftypes" , de . Key . ToString ( ) , cfg ) ) ;
}
else
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'gen_linedeftypes' contains invalid entries in game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
}
// Sector effects
private void LoadSectorEffects ( )
{
SectorEffectInfo si ;
int actionnumber ;
// Get sector effects
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "sectortypes" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Try paring the action number
if ( int . TryParse ( de . Key . ToString ( ) ,
NumberStyles . AllowLeadingWhite | NumberStyles . AllowTrailingWhite ,
CultureInfo . InvariantCulture , out actionnumber ) )
{
// Make effects
si = new SectorEffectInfo ( actionnumber , de . Value . ToString ( ) , true , false ) ;
// Add action to category and sorted list
sortedsectoreffects . Add ( si ) ;
sectoreffects . Add ( actionnumber , si ) ;
}
else
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'sectortypes' contains invalid keys in game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
// Sort the actions list
sortedsectoreffects . Sort ( ) ;
}
// Brightness levels
private void LoadBrightnessLevels ( )
{
int level ;
// Get brightness levels structure
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "sectorbrightness" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Try paring the level
if ( int . TryParse ( de . Key . ToString ( ) ,
NumberStyles . AllowLeadingWhite | NumberStyles . AllowTrailingWhite ,
CultureInfo . InvariantCulture , out level ) )
{
brightnesslevels . Add ( level ) ;
}
else
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'sectorbrightness' contains invalid keys in game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
// Sort the list
brightnesslevels . Sort ( ) ;
}
// Sector generalized effects
private void LoadSectorGeneralizedEffects ( )
{
// Get sector effects
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "gen_sectortypes" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Check for valid structure
if ( de . Value is IDictionary )
{
// Add option
geneffectoptions . Add ( new GeneralizedOption ( "gen_sectortypes" , "" , de . Key . ToString ( ) , de . Value as IDictionary ) ) ;
}
else
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'gen_sectortypes' contains invalid entries in game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
}
// Thing flags
private void LoadThingFlags ( )
{
2014-05-05 14:24:57 +00:00
// Get thing flags
LoadStringDictionary ( thingflags , "thingflags" ) ; //mxd
2009-04-19 18:07:22 +00:00
// Get translations
2014-05-05 14:24:57 +00:00
IDictionary dic = cfg . ReadSetting ( "thingflagstranslation" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
thingflagstranslation . Add ( new FlagTranslation ( de ) ) ;
2012-08-27 11:39:14 +00:00
// Get thing compare flag info (for the stuck thing error checker
2013-06-03 11:32:29 +00:00
dic = cfg . ReadSetting ( "thingflagscompare" , new Hashtable ( ) ) ;
2014-09-29 20:49:41 +00:00
foreach ( DictionaryEntry de in dic )
{
2013-06-03 11:32:29 +00:00
IDictionary gdic = cfg . ReadSetting ( "thingflagscompare." + de . Key , new Hashtable ( ) ) ;
2014-09-29 20:49:41 +00:00
foreach ( DictionaryEntry gde in gdic )
{
string group = de . Key . ToString ( ) ; //mxd
string flag = gde . Key . ToString ( ) ; //mxd
if ( ! thingflagscompare . ContainsKey ( group ) ) //mxd
thingflagscompare . Add ( group , new Dictionary < string , ThingFlagsCompare > ( ) ) ;
if ( ! thingflagscompare [ group ] . ContainsKey ( flag ) ) //mxd
thingflagscompare [ group ] . Add ( flag , new ThingFlagsCompare ( cfg , group , flag ) ) ;
2013-06-03 11:32:29 +00:00
}
}
2009-04-19 18:07:22 +00:00
2014-11-03 13:02:59 +00:00
//mxd. Integrity check
foreach ( KeyValuePair < string , Dictionary < string , ThingFlagsCompare > > group in thingflagscompare )
{
foreach ( KeyValuePair < string , ThingFlagsCompare > flaggrp in group . Value )
{
// Required group is missing?
if ( ! string . IsNullOrEmpty ( flaggrp . Value . RequiredGroup ) & & ! thingflagscompare . ContainsKey ( flaggrp . Value . RequiredGroup ) )
{
General . ErrorLogger . Add ( ErrorType . Warning , "thingflagscompare group '" + flaggrp . Value . RequiredGroup + "', required by flag '" + flaggrp . Key + "' does not exist!" ) ;
flaggrp . Value . RequiredGroup = string . Empty ;
}
// Ignored group is missing?
if ( ! string . IsNullOrEmpty ( flaggrp . Value . IgnoredGroup ) & & ! thingflagscompare . ContainsKey ( flaggrp . Value . IgnoredGroup ) )
{
General . ErrorLogger . Add ( ErrorType . Warning , "thingflagscompare group '" + flaggrp . Value . IgnoredGroup + "', ignored by flag '" + flaggrp . Key + "' does not exist!" ) ;
flaggrp . Value . IgnoredGroup = string . Empty ;
}
// Required flag is missing?
if ( ! string . IsNullOrEmpty ( flaggrp . Value . RequiredFlag ) & & ! group . Value . ContainsKey ( flaggrp . Value . RequiredFlag ) )
{
General . ErrorLogger . Add ( ErrorType . Warning , "thingflagscompare flag '" + flaggrp . Value . RequiredFlag + "', required by flag '" + flaggrp . Key + "' does not exist!" ) ;
flaggrp . Value . RequiredFlag = string . Empty ;
}
}
}
2009-04-19 18:07:22 +00:00
// Sort the translation flags, because they must be compared highest first!
thingflagstranslation . Sort ( ) ;
}
// Default thing flags
private void LoadDefaultThingFlags ( )
{
// Get linedef flags
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "defaultthingflags" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
// Check if flag exists
if ( thingflags . ContainsKey ( de . Key . ToString ( ) ) )
{
defaultthingflags . Add ( de . Key . ToString ( ) ) ;
}
else
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'defaultthingflags' contains unknown thing flags in game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
}
// Skills
private void LoadSkills ( )
{
// Get skills
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "skills" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
2014-02-21 14:42:12 +00:00
int num ;
2009-04-19 18:07:22 +00:00
if ( int . TryParse ( de . Key . ToString ( ) , out num ) )
{
skills . Add ( new SkillInfo ( num , de . Value . ToString ( ) ) ) ;
}
else
{
2009-05-10 16:02:08 +00:00
General . ErrorLogger . Add ( ErrorType . Warning , "Structure 'skills' contains invalid skill numbers in game configuration '" + this . Name + "'" ) ;
2009-04-19 18:07:22 +00:00
}
}
}
// Texture Sets
2014-12-03 23:15:26 +00:00
private void LoadTextureSets ( )
{
2009-04-19 18:07:22 +00:00
// Get sets
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "texturesets" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
2014-02-21 14:42:12 +00:00
DefinedTextureSet s = new DefinedTextureSet ( cfg , "texturesets." + de . Key ) ;
2009-04-19 18:07:22 +00:00
texturesets . Add ( s ) ;
}
}
// Thing Filters
private void LoadThingFilters ( )
{
// Get sets
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "thingsfilters" , new Hashtable ( ) ) ;
2009-04-19 18:07:22 +00:00
foreach ( DictionaryEntry de in dic )
{
2014-02-21 14:42:12 +00:00
ThingsFilter f = new ThingsFilter ( cfg , "thingsfilters." + de . Key ) ;
2009-04-19 18:07:22 +00:00
thingfilters . Add ( f ) ;
}
}
2012-04-14 12:22:19 +00:00
// Make door flags
private void LoadMakeDoorFlags ( )
{
2014-03-05 12:26:09 +00:00
IDictionary dic = cfg . ReadSetting ( "makedoorflags" , new Hashtable ( ) ) ;
2012-04-14 12:22:19 +00:00
foreach ( DictionaryEntry de in dic )
{
// Using minus will unset the flag
if ( de . Key . ToString ( ) [ 0 ] = = '-' )
{
makedoorflags [ de . Key . ToString ( ) . TrimStart ( '-' ) ] = false ;
}
else
{
makedoorflags [ de . Key . ToString ( ) ] = true ;
}
}
}
2014-05-05 14:24:57 +00:00
//mxd
2014-12-03 23:15:26 +00:00
private void LoadStringDictionary ( Dictionary < string , string > target , string settingname )
{
2014-05-05 14:24:57 +00:00
IDictionary dic = cfg . ReadSetting ( settingname , new Hashtable ( ) ) ;
foreach ( DictionaryEntry de in dic )
target . Add ( de . Key . ToString ( ) , de . Value . ToString ( ) ) ;
}
2009-04-19 18:07:22 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Methods
// ReadSetting
public string ReadSetting ( string setting , string defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public int ReadSetting ( string setting , int defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public float ReadSetting ( string setting , float defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public short ReadSetting ( string setting , short defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public long ReadSetting ( string setting , long defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public bool ReadSetting ( string setting , bool defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public byte ReadSetting ( string setting , byte defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
public IDictionary ReadSetting ( string setting , IDictionary defaultsetting ) { return cfg . ReadSetting ( setting , defaultsetting ) ; }
// This gets a list of things categories
internal List < ThingCategory > GetThingCategories ( )
{
return new List < ThingCategory > ( thingcategories ) ;
}
// This gets a list of things
internal Dictionary < int , ThingTypeInfo > GetThingTypes ( )
{
return new Dictionary < int , ThingTypeInfo > ( things ) ;
}
// This checks if an action is generalized or predefined
public static bool IsGeneralized ( int action , List < GeneralizedCategory > categories )
{
// Only actions above 0
if ( action > 0 )
{
// Go for all categories
foreach ( GeneralizedCategory ac in categories )
{
// Check if the action is within range of this category
if ( ( action > = ac . Offset ) & & ( action < ( ac . Offset + ac . Length ) ) ) return true ;
}
}
// Not generalized
return false ;
}
// This gets the generalized action category from action number
public GeneralizedCategory GetGeneralizedActionCategory ( int action )
{
// Only actions above 0
if ( action > 0 )
{
// Go for all categories
foreach ( GeneralizedCategory ac in genactioncategories )
{
// Check if the action is within range of this category
if ( ( action > = ac . Offset ) & & ( action < ( ac . Offset + ac . Length ) ) ) return ac ;
}
}
// Not generalized
return null ;
}
2014-09-04 12:34:26 +00:00
//mxd
public static bool IsGeneralizedSectorEffect ( int effect , IEnumerable < GeneralizedOption > options )
{
if ( effect = = 0 ) return false ;
foreach ( GeneralizedOption option in options )
{
foreach ( GeneralizedBit bit in option . Bits )
{
if ( bit . Index > 0 & & ( effect & bit . Index ) = = bit . Index ) return true ;
}
}
return false ;
}
//mxd
public string GetGeneralizedSectorEffectName ( int effect )
{
if ( effect = = 0 ) return "None" ;
string title = "Unknown" ;
int matches = 0 ;
foreach ( GeneralizedOption option in geneffectoptions )
{
foreach ( GeneralizedBit bit in option . Bits )
{
if ( bit . Index > 0 & & ( effect & bit . Index ) = = bit . Index )
{
title = option . Name + ": " + bit . Title ;
matches + + ;
2015-09-02 11:28:44 +00:00
break ;
2014-09-04 12:34:26 +00:00
}
}
}
return ( matches > 1 ? "Generalized (" + matches + " effects)" : title ) ;
}
2009-04-19 18:07:22 +00:00
// This checks if a specific edit mode class is listed
public bool IsEditModeSpecified ( string classname )
{
return cfg . SettingExists ( "editingmodes." + classname . ToString ( CultureInfo . InvariantCulture ) ) ;
}
// This returns information on a linedef type
public LinedefActionInfo GetLinedefActionInfo ( int action )
{
2015-10-23 12:01:27 +00:00
// No action?
if ( action = = 0 ) return new LinedefActionInfo ( 0 , "None" , true , false ) ;
2009-04-19 18:07:22 +00:00
// Known type?
2015-10-23 12:01:27 +00:00
if ( linedefactions . ContainsKey ( action ) ) return linedefactions [ action ] ;
// Generalized action?
if ( IsGeneralized ( action , genactioncategories ) )
2009-04-19 18:07:22 +00:00
return new LinedefActionInfo ( action , "Generalized (" + GetGeneralizedActionCategory ( action ) + ")" , true , true ) ;
2015-10-23 12:01:27 +00:00
// Unknown action...
return new LinedefActionInfo ( action , "Unknown" , false , false ) ;
2009-04-19 18:07:22 +00:00
}
// This returns information on a sector effect
public SectorEffectInfo GetSectorEffectInfo ( int effect )
{
2015-10-23 12:01:27 +00:00
// No effect?
if ( effect = = 0 ) return new SectorEffectInfo ( 0 , "None" , true , false ) ;
2009-04-19 18:07:22 +00:00
// Known type?
2015-10-23 12:01:27 +00:00
if ( sectoreffects . ContainsKey ( effect ) ) return sectoreffects [ effect ] ;
//mxd. Generalized sector effect?
if ( IsGeneralizedSectorEffect ( effect , geneffectoptions ) )
2014-09-04 12:34:26 +00:00
return new SectorEffectInfo ( effect , GetGeneralizedSectorEffectName ( effect ) , true , true ) ;
2015-10-23 12:01:27 +00:00
// Unknown sector effect...
return new SectorEffectInfo ( effect , "Unknown" , false , false ) ;
2009-04-19 18:07:22 +00:00
}
#endregion
}
}