UltimateZoneBuilder/Source/General/MapManager.cs

1089 lines
33 KiB
C#
Raw Normal View History

2007-06-14 23:31:57 +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 System.Text;
using System.Windows.Forms;
using System.IO;
using System.Reflection;
2008-01-02 21:49:43 +00:00
using System.Diagnostics;
using CodeImp.DoomBuilder.Windows;
2007-06-14 23:31:57 +00:00
using CodeImp.DoomBuilder.IO;
using CodeImp.DoomBuilder.Map;
2007-06-15 18:30:55 +00:00
using CodeImp.DoomBuilder.Editing;
using CodeImp.DoomBuilder.Rendering;
2007-10-05 11:17:58 +00:00
using CodeImp.DoomBuilder.Data;
using CodeImp.DoomBuilder.Actions;
using CodeImp.DoomBuilder.Config;
2008-01-02 21:49:43 +00:00
using CodeImp.DoomBuilder.Plugins;
2007-06-14 23:31:57 +00:00
#endregion
namespace CodeImp.DoomBuilder
{
2008-01-02 21:49:43 +00:00
public class MapManager
2007-06-14 23:31:57 +00:00
{
#region ================== Constants
// Map header name in temporary file
2007-06-24 18:56:43 +00:00
private const string TEMP_MAP_HEADER = "TEMPMAP";
private const string BUILD_MAP_HEADER = "MAP01";
2007-10-14 15:44:55 +00:00
public const string CONFIG_MAP_HEADER = "~MAP";
2007-06-24 18:56:43 +00:00
// Save modes
public const int SAVE_NORMAL = 0;
public const int SAVE_AS = 1;
public const int SAVE_INTO = 2;
public const int SAVE_TEST = 3;
2007-06-14 23:31:57 +00:00
#endregion
#region ================== Variables
// Status
private bool changed;
// Map information
private string filetitle;
private string filepathname;
private string temppath;
private bool cancelmodechange;
// Main objects
2007-10-05 11:17:58 +00:00
private MapSet map;
private MapSetIO io;
2007-06-14 23:31:57 +00:00
private MapOptions options;
2007-09-27 22:55:03 +00:00
private ConfigurationInfo configinfo;
private GameConfiguration config;
2007-10-05 11:17:58 +00:00
private DataManager data;
2007-06-15 18:30:55 +00:00
private EditMode mode;
2007-12-26 00:31:32 +00:00
private EditMode newmode;
private D3DDevice graphics;
private Renderer2D renderer2d;
private Renderer3D renderer3d;
2007-06-24 18:56:43 +00:00
private WAD tempwad;
2007-11-10 19:24:52 +00:00
private GridSetup grid;
2007-11-12 22:43:01 +00:00
private UndoManager undoredo;
private Launcher launcher;
private ThingsFilter thingsfilter;
2007-06-15 18:30:55 +00:00
2007-06-14 23:31:57 +00:00
// Disposing
private bool isdisposed = false;
#endregion
#region ================== Properties
public string FilePathName { get { return filepathname; } }
public string FileTitle { get { return filetitle; } }
public string TempPath { get { return temppath; } }
public bool CancelModeChange { get { return cancelmodechange; } set { cancelmodechange |= value; } }
2008-01-02 21:49:43 +00:00
internal MapOptions Options { get { return options; } }
2007-10-05 11:17:58 +00:00
public MapSet Map { get { return map; } }
2007-06-15 18:30:55 +00:00
public EditMode Mode { get { return mode; } }
2007-12-26 00:31:32 +00:00
public EditMode NewMode { get { return newmode; } }
2007-10-07 22:21:47 +00:00
public DataManager Data { get { return data; } }
2007-10-14 21:31:45 +00:00
public bool IsChanged { get { return changed; } set { changed |= value; } }
2007-06-14 23:31:57 +00:00
public bool IsDisposed { get { return isdisposed; } }
2008-01-02 21:49:43 +00:00
internal D3DDevice Graphics { get { return graphics; } }
public IRenderer2D Renderer2D { get { return renderer2d; } }
public IRenderer3D Renderer3D { get { return renderer3d; } }
2007-10-24 17:25:03 +00:00
public GameConfiguration Config { get { return config; } }
internal ConfigurationInfo ConfigSettings { get { return configinfo; } }
2007-11-10 19:24:52 +00:00
public GridSetup Grid { get { return grid; } }
2007-11-12 22:43:01 +00:00
public UndoManager UndoRedo { get { return undoredo; } }
public IMapSetIO FormatInterface { get { return io; } }
internal Launcher Launcher { get { return launcher; } }
public ThingsFilter ThingsFilter { get { return thingsfilter; } }
2007-11-12 22:43:01 +00:00
2007-06-14 23:31:57 +00:00
#endregion
#region ================== Constructor / Disposer
2007-06-26 08:47:19 +00:00
// Constructor
2008-01-02 21:49:43 +00:00
internal MapManager()
2007-06-14 23:31:57 +00:00
{
// We have no destructor
GC.SuppressFinalize(this);
// Create temporary path
temppath = General.MakeTempDirname();
Directory.CreateDirectory(temppath);
General.WriteLogLine("Temporary directory: " + temppath);
2007-10-20 12:34:27 +00:00
// Basic objects
2007-11-10 19:24:52 +00:00
grid = new GridSetup();
2007-11-12 22:43:01 +00:00
undoredo = new UndoManager();
launcher = new Launcher(this);
thingsfilter = new NullThingsFilter();
2007-06-14 23:31:57 +00:00
}
2008-01-02 21:49:43 +00:00
// Disposer
internal void Dispose()
2007-06-14 23:31:57 +00:00
{
// Not already disposed?
if(!isdisposed)
{
2007-10-20 19:50:03 +00:00
// Change to no mode
2008-01-02 21:49:43 +00:00
ChangeMode((EditMode)null);
2007-10-20 19:50:03 +00:00
2007-10-14 21:31:45 +00:00
// Unbind any methods
General.Actions.UnbindMethods(this);
2007-10-14 21:31:45 +00:00
2007-06-14 23:31:57 +00:00
// Dispose
if(launcher != null) launcher.Dispose();
if(undoredo != null) undoredo.Dispose();
2007-10-05 11:17:58 +00:00
General.WriteLogLine("Unloading data resources...");
2007-11-10 01:58:08 +00:00
if(data != null) data.Dispose();
2007-10-05 11:17:58 +00:00
General.WriteLogLine("Closing temporary file...");
2007-11-10 01:58:08 +00:00
if(tempwad != null) tempwad.Dispose();
2007-10-05 11:17:58 +00:00
General.WriteLogLine("Unloading map data...");
2007-11-10 01:58:08 +00:00
if(map != null) map.Dispose();
2007-10-05 11:17:58 +00:00
General.WriteLogLine("Stopping graphics device...");
2007-11-10 01:58:08 +00:00
if(renderer2d != null) renderer2d.Dispose();
if(renderer3d != null) renderer3d.Dispose();
if(graphics != null) graphics.Dispose();
2007-10-20 12:34:27 +00:00
2007-06-24 18:56:43 +00:00
// Remove temp file
General.WriteLogLine("Removing temporary directory...");
try { Directory.Delete(temppath, true); } catch(Exception e)
{
General.WriteLogLine(e.GetType().Name + ": " + e.Message);
General.WriteLogLine("Failed to remove temporary directory!");
}
2007-06-24 18:56:43 +00:00
// We may spend some time to clean things up here
GC.Collect();
2007-06-14 23:31:57 +00:00
// Done
isdisposed = true;
}
}
#endregion
2007-10-14 15:44:55 +00:00
#region ================== New / Open
2007-06-15 18:30:55 +00:00
// Initializes for a new map
2008-01-02 21:49:43 +00:00
internal bool InitializeNewMap(MapOptions options)
2007-06-15 18:30:55 +00:00
{
2007-10-05 10:00:15 +00:00
string tempfile;
2007-06-15 18:30:55 +00:00
// Apply settings
this.filetitle = "unnamed.wad";
this.filepathname = "";
this.changed = false;
this.options = options;
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Creating new map '" + options.CurrentName + "' with configuration '" + options.ConfigFile + "'");
// Initiate graphics
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Initializing graphics device...");
graphics = new D3DDevice(General.MainWindow.Display);
if(!graphics.Initialize()) return false;
// Create renderers
renderer2d = new Renderer2D(graphics);
renderer3d = new Renderer3D(graphics);
// Load game configuration
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Loading game configuration...");
2007-09-27 22:55:03 +00:00
configinfo = General.GetConfigurationInfo(options.ConfigFile);
config = new GameConfiguration(General.LoadGameConfiguration(options.ConfigFile));
2008-01-02 21:49:43 +00:00
General.Plugins.GameConfigurationChanged();
// Create map data
2007-10-05 11:17:58 +00:00
map = new MapSet();
2007-06-26 08:47:19 +00:00
// Create temp wadfile
tempfile = General.MakeTempFilename(temppath);
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Creating temporary file: " + tempfile);
tempwad = new WAD(tempfile);
// Read the map from temp file
General.WriteLogLine("Initializing map format interface " + config.FormatInterface + "...");
io = MapSetIO.Create(config.FormatInterface, tempwad, this);
2007-06-26 08:47:19 +00:00
2007-10-14 17:48:15 +00:00
// Create required lumps
General.WriteLogLine("Creating map data structures...");
tempwad.Insert(TEMP_MAP_HEADER, 0, 0);
io.Write(map, TEMP_MAP_HEADER, 1);
CreateRequiredLumps(tempwad, TEMP_MAP_HEADER);
// Update structures
map.Update();
thingsfilter.Update();
2007-10-05 11:17:58 +00:00
// Load data manager
General.WriteLogLine("Loading data resources...");
data = new DataManager();
data.Load(configinfo.Resources, options.Resources);
2007-10-14 21:31:45 +00:00
// Bind any methods
General.Actions.BindMethods(this);
2007-10-14 21:31:45 +00:00
2007-06-15 18:30:55 +00:00
// Set default mode
2008-01-02 21:49:43 +00:00
ChangeMode("VerticesMode");
2008-05-05 14:59:14 +00:00
ClassicMode cmode = (mode as ClassicMode);
cmode.SetZoom(0.5f);
2007-06-15 18:30:55 +00:00
// Success
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Map creation done");
2007-06-15 18:30:55 +00:00
return true;
}
2007-06-16 19:53:51 +00:00
// Initializes for an existing map
2008-01-02 21:49:43 +00:00
internal bool InitializeOpenMap(string filepathname, MapOptions options)
2007-06-16 19:53:51 +00:00
{
2007-06-24 18:56:43 +00:00
WAD mapwad;
2007-10-05 10:00:15 +00:00
string tempfile;
2007-10-05 11:17:58 +00:00
DataLocation maplocation;
2007-06-24 18:56:43 +00:00
2007-06-16 19:53:51 +00:00
// Apply settings
this.filetitle = Path.GetFileName(filepathname);
this.filepathname = filepathname;
this.changed = false;
this.options = options;
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Opening map '" + options.CurrentName + "' with configuration '" + options.ConfigFile + "'");
// Initiate graphics
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Initializing graphics device...");
graphics = new D3DDevice(General.MainWindow.Display);
if(!graphics.Initialize()) return false;
// Create renderers
renderer2d = new Renderer2D(graphics);
renderer3d = new Renderer3D(graphics);
2008-01-02 21:49:43 +00:00
// Load game configuration
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Loading game configuration...");
configinfo = General.GetConfigurationInfo(options.ConfigFile);
config = new GameConfiguration(General.LoadGameConfiguration(options.ConfigFile));
2008-01-02 21:49:43 +00:00
General.Plugins.GameConfigurationChanged();
// Create map data
2007-10-05 11:17:58 +00:00
map = new MapSet();
2007-06-24 18:56:43 +00:00
// Create temp wadfile
tempfile = General.MakeTempFilename(temppath);
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Creating temporary file: " + tempfile);
tempwad = new WAD(tempfile);
2007-06-24 18:56:43 +00:00
// Now open the map file
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Opening source file: " + filepathname);
2007-06-24 18:56:43 +00:00
mapwad = new WAD(filepathname, true);
// Copy the map lumps to the temp file
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Copying map lumps to temporary file...");
2007-06-24 18:56:43 +00:00
CopyLumpsByType(mapwad, options.CurrentName, tempwad, TEMP_MAP_HEADER,
true, true, true, true);
// Close the map file
mapwad.Dispose();
// Read the map from temp file
General.WriteLogLine("Initializing map format interface " + config.FormatInterface + "...");
io = MapSetIO.Create(config.FormatInterface, tempwad, this);
General.WriteLogLine("Reading map data structures from file...");
2007-11-10 01:58:08 +00:00
try { map = io.Read(map, TEMP_MAP_HEADER); }
catch(Exception e)
2007-11-10 01:58:08 +00:00
{
General.WriteLogLine("ERROR: " + e.GetType().Name + ": " + e.Message);
2007-11-10 01:58:08 +00:00
General.ShowErrorMessage("Unable to read the map data structures with the specified configuration.", MessageBoxButtons.OK);
return false;
}
2007-06-16 19:53:51 +00:00
// Update structures
2007-10-05 11:17:58 +00:00
map.Update();
thingsfilter.Update();
2007-10-05 11:17:58 +00:00
// Load data manager
General.WriteLogLine("Loading data resources...");
data = new DataManager();
maplocation = new DataLocation(DataLocation.RESOURCE_WAD, filepathname, false, false);
data.Load(configinfo.Resources, options.Resources, maplocation);
2007-10-14 21:31:45 +00:00
// Bind any methods
General.Actions.BindMethods(this);
2007-10-14 21:31:45 +00:00
2007-06-16 19:53:51 +00:00
// Set default mode
2008-01-02 21:49:43 +00:00
ChangeMode("VerticesMode");
2007-06-16 19:53:51 +00:00
// Center map in screen
if(General.Map.Mode is ClassicMode) (General.Map.Mode as ClassicMode).CenterInScreen();
2007-06-16 19:53:51 +00:00
// Success
2007-10-05 10:00:15 +00:00
General.WriteLogLine("Map loading done");
2007-06-16 19:53:51 +00:00
return true;
}
2007-06-15 18:30:55 +00:00
#endregion
#region ================== Save
// Initializes for an existing map
2008-01-02 21:49:43 +00:00
internal bool SaveMap(string newfilepathname, int savemode)
{
MapSet outputset;
2007-10-14 21:31:45 +00:00
string nodebuildername, oldstatus, settingsfile;
Configuration mapsettings;
2007-10-14 15:44:55 +00:00
WAD targetwad;
int index;
2007-10-14 17:48:15 +00:00
bool includenodes;
2007-10-14 21:35:49 +00:00
string origmapname;
2007-10-14 17:48:15 +00:00
General.WriteLogLine("Saving map to file: " + newfilepathname);
// Make a copy of the map data
outputset = map.Clone();
// Do we need sidedefs compression?
if(map.Sidedefs.Count > io.MaxSidedefs)
{
// Compress sidedefs
outputset.CompressSidedefs();
// Check if it still doesnt fit
if(map.Sidedefs.Count > io.MaxSidedefs)
{
// Problem! Can't save the map like this!
General.ShowErrorMessage("Unable to save the map: There are too many unique sidedefs!", MessageBoxButtons.OK);
return false;
}
}
// TODO: Check for more limitations
// Write to temporary file
General.WriteLogLine("Writing map data structures to file...");
2007-10-14 15:44:55 +00:00
index = tempwad.FindLumpIndex(TEMP_MAP_HEADER);
if(index == -1) index = 0;
io.Write(outputset, TEMP_MAP_HEADER, index);
// Get the corresponding nodebuilder
if(savemode == SAVE_TEST) nodebuildername = configinfo.NodebuilderTest;
else nodebuildername = configinfo.NodebuilderSave;
// Build the nodes
2007-10-14 18:11:03 +00:00
oldstatus = General.MainWindow.GetCurrentSatus();
General.MainWindow.DisplayStatus("Building map nodes...");
if((nodebuildername != null) && (nodebuildername != ""))
2007-10-14 18:11:03 +00:00
includenodes = BuildNodes(nodebuildername, true);
2007-10-14 17:48:15 +00:00
else
includenodes = false;
2007-10-14 18:11:03 +00:00
General.MainWindow.DisplayStatus(oldstatus);
// Suspend data resources
data.Suspend();
2007-10-15 05:08:39 +00:00
try
2007-10-14 17:48:15 +00:00
{
2007-10-15 05:08:39 +00:00
// Except when saving INTO another file,
// kill the target file if it is different from source file
if((savemode != SAVE_INTO) && (newfilepathname != filepathname))
{
// Kill target file
if(File.Exists(newfilepathname)) File.Delete(newfilepathname);
// Kill .dbs settings file
settingsfile = newfilepathname.Substring(0, newfilepathname.Length - 4) + ".dbs";
if(File.Exists(settingsfile)) File.Delete(settingsfile);
}
2007-10-14 21:31:45 +00:00
2007-10-15 05:08:39 +00:00
// On Save AS we have to copy the previous file to the new file
if((savemode == SAVE_AS) && (filepathname != ""))
{
// Copy if original file still exists
if(File.Exists(filepathname)) File.Copy(filepathname, newfilepathname, true);
}
// Open the target file
targetwad = new WAD(newfilepathname);
2007-10-14 17:48:15 +00:00
}
2007-10-15 05:08:39 +00:00
catch(IOException)
2007-10-14 15:44:55 +00:00
{
2007-10-15 05:08:39 +00:00
General.ShowErrorMessage("IO Error while writing target file: " + newfilepathname + ". Please make sure the location is accessible and not in use by another program.", MessageBoxButtons.OK);
data.Resume();
General.WriteLogLine("Map saving failed");
return false;
}
catch(UnauthorizedAccessException)
{
General.ShowErrorMessage("Error while accessing target file: " + newfilepathname + ". Please make sure the location is accessible and not in use by another program.", MessageBoxButtons.OK);
data.Resume();
General.WriteLogLine("Map saving failed");
return false;
2007-10-14 15:44:55 +00:00
}
2007-10-14 21:35:49 +00:00
// Determine original map name
if(options.PreviousName != "") origmapname = options.PreviousName;
else origmapname = options.CurrentName;
2007-10-14 15:44:55 +00:00
// Copy map lumps to target file
2007-10-14 21:35:49 +00:00
CopyLumpsByType(tempwad, TEMP_MAP_HEADER, targetwad, origmapname, true, true, includenodes, true);
2007-10-14 15:44:55 +00:00
// Was the map lump name renamed?
if((options.PreviousName != options.CurrentName) &&
(options.PreviousName != ""))
{
General.WriteLogLine("Renaming map lump name from " + options.PreviousName + " to " + options.CurrentName);
// Find the map header in target
index = targetwad.FindLumpIndex(options.PreviousName);
if(index > -1)
{
// Rename the map lump name
targetwad.Lumps[index].Rename(options.CurrentName);
options.PreviousName = "";
}
else
{
// Houston, we've got a problem!
General.ShowErrorMessage("Error renaming map lump name: the original map lump could not be found!", MessageBoxButtons.OK);
options.CurrentName = options.PreviousName;
options.PreviousName = "";
}
}
// Done with the target file
targetwad.Dispose();
// Resume data resources
data.Resume();
2007-10-14 21:31:45 +00:00
try
{
// Open or create the map settings
settingsfile = newfilepathname.Substring(0, newfilepathname.Length - 4) + ".dbs";
if(File.Exists(settingsfile))
mapsettings = new Configuration(settingsfile, true);
else
mapsettings = new Configuration(true);
// Write settings
mapsettings.WriteSetting("type", "Doom Builder Map Settings Configuration");
mapsettings.WriteSetting("gameconfig", options.ConfigFile);
options.Resources.WriteToConfig(mapsettings, "maps." + options.CurrentName + ".resources");
// Save settings
mapsettings.SaveConfiguration(settingsfile);
}
catch(Exception e)
{
// Warning only
General.WriteLogLine("WARNING: " + e.GetType().Name + ": " + e.Message);
General.WriteLogLine("WARNING: Could not write the map settings configuration file!");
}
// Was the map saved in a different file? And not for testing purpose?
if((savemode != SAVE_TEST) && (newfilepathname != filepathname))
{
// Keep new filename
filepathname = newfilepathname;
filetitle = Path.GetFileName(filepathname);
// Changes saved
changed = false;
// Reload resources
ReloadResources();
}
// Success!
2007-10-14 17:48:15 +00:00
General.WriteLogLine("Map saving done");
return true;
}
#endregion
#region ================== Nodebuild
// This builds the nodes in the temproary file with the given configuration name
2007-10-14 18:11:03 +00:00
private bool BuildNodes(string nodebuildername, bool failaswarning)
{
NodebuilderInfo nodebuilder;
string tempfile1, tempfile2;
bool lumpnodebuild, lumpallowempty, lumpscomplete;
WAD buildwad;
int srcindex;
2007-10-14 18:11:03 +00:00
// Find the nodebuilder
nodebuilder = General.GetNodebuilderByName(nodebuildername);
if(nodebuilder == null)
{
// Problem! Can't find that nodebuilder!
2007-10-14 18:11:03 +00:00
General.ShowWarningMessage("Unable to build the nodes: The configured nodebuilder cannot be found.\nPlease check your game configuration settings!", MessageBoxButtons.OK);
return false;
}
else
{
// Make a temporary file for the nodebuilder
tempfile1 = General.MakeTempFilename(temppath);
General.WriteLogLine("Creating temporary build file: " + tempfile1);
buildwad = new WAD(tempfile1);
// Copy lumps to buildwad
General.WriteLogLine("Copying map lumps to temporary build file...");
CopyLumpsByType(tempwad, TEMP_MAP_HEADER, buildwad, BUILD_MAP_HEADER, true, false, false, true);
// Close buildwad
buildwad.Dispose();
// Does the nodebuilder require an output file?
if(nodebuilder.HasSpecialOutputFile)
{
// Make a temporary output file for the nodebuilder
tempfile2 = General.MakeTempFilename(temppath);
General.WriteLogLine("Creating temporary output file: " + tempfile2);
}
else
{
// Output file is same as input file
tempfile2 = tempfile1;
}
// Run the nodebuilder
if(nodebuilder.Run(temppath, Path.GetFileName(tempfile1), Path.GetFileName(tempfile2)))
{
// Open the output file
buildwad = new WAD(tempfile2);
// Find the map header in source
srcindex = buildwad.FindLumpIndex(BUILD_MAP_HEADER);
if(srcindex > -1)
{
// Go for all the map lump names
lumpscomplete = true;
foreach(DictionaryEntry ml in config.MapLumpNames)
{
// Read lump settings from map config
lumpnodebuild = config.ReadSetting("maplumpnames." + ml.Key + ".nodebuild", false);
lumpallowempty = config.ReadSetting("maplumpnames." + ml.Key + ".allowempty", false);
// Check if this lump should exist
if(lumpnodebuild && !lumpallowempty)
{
// Find the lump in the source
if(buildwad.FindLump(ml.Key.ToString(), srcindex, srcindex + config.MapLumpNames.Count + 2) == null)
{
// Missing a lump!
lumpscomplete = false;
break;
}
}
}
}
else
{
// Cannot find header
lumpscomplete = false;
}
// Output lumps complete?
if(lumpscomplete)
{
// Copy nodebuilder lumps to temp file
General.WriteLogLine("Copying nodebuilder lumps to temporary file...");
CopyLumpsByType(buildwad, BUILD_MAP_HEADER, tempwad, TEMP_MAP_HEADER, false, false, true, false);
}
else
{
2007-10-14 18:11:03 +00:00
// Nodebuilder did not build the lumps!
if(failaswarning)
General.ShowWarningMessage("Unable to build the nodes: The nodebuilder failed to build the expected data structures.\nThe map will be saved without the nodes.", MessageBoxButtons.OK);
else
General.ShowErrorMessage("Unable to build the nodes: The nodebuilder failed to build the expected data structures.", MessageBoxButtons.OK);
}
// Done with the build wad
buildwad.Dispose();
// Remove temp files
General.WriteLogLine("Removing temporary files...");
if(File.Exists(tempfile1)) File.Delete(tempfile1);
if(File.Exists(tempfile2)) File.Delete(tempfile2);
return lumpscomplete;
}
else
{
// Remove temp files
General.WriteLogLine("Removing temporary files...");
if(File.Exists(tempfile1)) File.Delete(tempfile1);
if(File.Exists(tempfile2)) File.Delete(tempfile2);
return false;
}
}
}
#endregion
2007-10-14 15:44:55 +00:00
#region ================== Lumps
2007-06-15 18:30:55 +00:00
2007-10-14 17:48:15 +00:00
// This creates empty lumps for those required
private void CreateRequiredLumps(WAD target, string mapname)
{
int headerindex, insertindex, targetindex;
string lumpname;
bool lumprequired;
// Find the map header in target
headerindex = target.FindLumpIndex(mapname);
if(headerindex == -1)
{
// If this header doesnt exists in the target
// then insert at the end of the target
headerindex = target.Lumps.Count;
}
// Begin inserting at target header index
insertindex = headerindex;
// Go for all the map lump names
foreach(DictionaryEntry ml in config.MapLumpNames)
2007-10-14 17:48:15 +00:00
{
// Read lump settings from map config
lumprequired = config.ReadSetting("maplumpnames." + ml.Key + ".required", false);
// Check if this lump is required
if(lumprequired)
{
// Get the lump name
lumpname = ml.Key.ToString();
if(lumpname == CONFIG_MAP_HEADER) lumpname = mapname;
// Check if the lump is missing at the target
targetindex = FindSpecificLump(target, lumpname, headerindex, mapname, config.MapLumpNames);
2007-10-14 17:48:15 +00:00
if(targetindex == -1)
{
// Determine target index
insertindex++;
if(insertindex > target.Lumps.Count) insertindex = target.Lumps.Count;
// Create new, emtpy lump
General.WriteLogLine(lumpname + " is required! Created empty lump.");
target.Insert(lumpname, insertindex, 0);
}
else
{
// Move insert index
insertindex = targetindex;
}
}
}
}
2007-06-24 18:56:43 +00:00
// This copies specific map lumps from one WAD to another
private void CopyLumpsByType(WAD source, string sourcemapname,
WAD target, string targetmapname,
bool copyrequired, bool copyblindcopy,
bool copynodebuild, bool copyscript)
2007-06-15 18:30:55 +00:00
{
2007-06-24 18:56:43 +00:00
bool lumprequired, lumpblindcopy, lumpnodebuild;
2007-10-14 15:44:55 +00:00
string lumpscript, srclumpname, tgtlumpname;
int srcheaderindex, tgtheaderindex, targetindex, sourceindex, lumpindex;
2007-06-24 18:56:43 +00:00
Lump lump, newlump;
2007-06-15 18:30:55 +00:00
2007-06-24 18:56:43 +00:00
// Find the map header in target
2007-10-14 15:44:55 +00:00
tgtheaderindex = target.FindLumpIndex(targetmapname);
if(tgtheaderindex == -1)
{
// If this header doesnt exists in the target
// then insert at the end of the target
2007-10-14 15:44:55 +00:00
tgtheaderindex = target.Lumps.Count;
}
2007-10-14 15:44:55 +00:00
// Begin inserting at target header index
targetindex = tgtheaderindex;
2007-06-24 18:56:43 +00:00
// Find the map header in source
2007-10-14 15:44:55 +00:00
srcheaderindex = source.FindLumpIndex(sourcemapname);
if(srcheaderindex > -1)
2007-06-15 18:30:55 +00:00
{
2007-06-24 18:56:43 +00:00
// Copy the map header from source to target
2007-10-14 15:44:55 +00:00
//newlump = target.Insert(targetmapname, tgtindex++, source.Lumps[srcindex].Length);
//source.Lumps[srcindex].CopyTo(newlump);
2007-06-24 18:56:43 +00:00
// Go for all the map lump names
foreach(DictionaryEntry ml in config.MapLumpNames)
2007-06-24 18:56:43 +00:00
{
// Read lump settings from map config
lumprequired = config.ReadSetting("maplumpnames." + ml.Key + ".required", false);
lumpblindcopy = config.ReadSetting("maplumpnames." + ml.Key + ".blindcopy", false);
lumpnodebuild = config.ReadSetting("maplumpnames." + ml.Key + ".nodebuild", false);
lumpscript = config.ReadSetting("maplumpnames." + ml.Key + ".script", "");
// Check if this lump should be copied
if((lumprequired && copyrequired) || (lumpblindcopy && copyblindcopy) ||
(lumpnodebuild && copynodebuild) || ((lumpscript.Length != 0) && copyscript))
2007-06-24 18:56:43 +00:00
{
2007-10-14 15:44:55 +00:00
// Get the lump name
srclumpname = ml.Key.ToString();
tgtlumpname = ml.Key.ToString();
if(srclumpname == CONFIG_MAP_HEADER) srclumpname = sourcemapname;
if(tgtlumpname == CONFIG_MAP_HEADER) tgtlumpname = targetmapname;
2007-06-24 18:56:43 +00:00
// Find the lump in the source
sourceindex = FindSpecificLump(source, srclumpname, srcheaderindex, sourcemapname, config.MapLumpNames);
2007-10-14 15:44:55 +00:00
if(sourceindex > -1)
2007-06-24 18:56:43 +00:00
{
2007-10-14 15:44:55 +00:00
// Remove lump at target
lumpindex = RemoveSpecificLump(target, tgtlumpname, tgtheaderindex, targetmapname, config.MapLumpNames);
2007-10-14 15:44:55 +00:00
// Determine target index
// When original lump was found and removed then insert at that position
// otherwise insert after last insertion position
if(lumpindex > -1) targetindex = lumpindex; else targetindex++;
if(targetindex > target.Lumps.Count) targetindex = target.Lumps.Count;
2007-06-24 18:56:43 +00:00
// Copy the lump to the target
2007-10-14 15:44:55 +00:00
//General.WriteLogLine(srclumpname + " copying as " + tgtlumpname);
lump = source.Lumps[sourceindex];
newlump = target.Insert(tgtlumpname, targetindex, lump.Length);
2007-06-24 18:56:43 +00:00
lump.CopyTo(newlump);
}
2007-10-05 11:17:58 +00:00
else
{
General.WriteLogLine("WARNING: " + ml.Key.ToString() + " should be copied but was not found!");
}
2007-06-24 18:56:43 +00:00
}
}
2007-06-15 18:30:55 +00:00
}
2007-06-24 18:56:43 +00:00
}
2007-10-14 15:44:55 +00:00
// This finds a lump within the range of known lump names
// Returns -1 when the lump cannot be found
2008-01-02 21:49:43 +00:00
internal static int FindSpecificLump(WAD source, string lumpname, int mapheaderindex, string mapheadername, IDictionary maplumps)
2007-06-24 18:56:43 +00:00
{
2007-10-14 15:44:55 +00:00
// Use the configured map lump names to find the specific lump within range,
// because when an unknown lump is met, this search must stop.
2007-06-24 18:56:43 +00:00
2007-10-14 15:44:55 +00:00
// Go for all lumps in order to find the specified lump
for(int i = 0; i < maplumps.Count + 1; i++)
{
// Still within bounds?
if((mapheaderindex + i) < source.Lumps.Count)
2007-06-24 18:56:43 +00:00
{
2007-10-14 15:44:55 +00:00
// Check if this is a known lump name
if(maplumps.Contains(source.Lumps[mapheaderindex + i].Name) ||
(maplumps.Contains(CONFIG_MAP_HEADER) && (source.Lumps[mapheaderindex + i].Name == mapheadername)))
2007-06-24 18:56:43 +00:00
{
2007-10-14 15:44:55 +00:00
// Is this the lump we are looking for?
if(source.Lumps[mapheaderindex + i].Name == lumpname)
{
// Return this index
return mapheaderindex + i;
}
2007-06-24 18:56:43 +00:00
}
else
{
2007-10-14 15:44:55 +00:00
// Unknown lump hit, abort search
break;
2007-06-24 18:56:43 +00:00
}
}
2007-06-15 18:30:55 +00:00
}
2007-10-14 15:44:55 +00:00
// Nothing found
return -1;
}
// This removes a specific lump and returns the position where the lump was removed
// Returns -1 when the lump could not be found
2008-01-02 21:49:43 +00:00
internal static int RemoveSpecificLump(WAD source, string lumpname, int mapheaderindex, string mapheadername, IDictionary maplumps)
2007-10-14 15:44:55 +00:00
{
int lumpindex;
// Find the specific lump index
lumpindex = FindSpecificLump(source, lumpname, mapheaderindex, mapheadername, maplumps);
if(lumpindex > -1)
{
// Remove this lump
//General.WriteLogLine(lumpname + " removed");
source.RemoveAt(lumpindex);
}
else
{
// Lump not found
2007-10-14 17:48:15 +00:00
//General.WriteLogLine("WARNING: " + lumpname + " should be removed but was not found!");
2007-10-14 15:44:55 +00:00
}
// Return result
return lumpindex;
2007-06-24 18:56:43 +00:00
}
2007-10-14 15:44:55 +00:00
#endregion
2007-10-20 19:50:03 +00:00
#region ================== Editing Modes
/// <summary>
/// This cancels the current mode.
/// </summary>
[BeginAction("cancelmode")]
public void CancelMode()
{
// Let the mode know
mode.OnCancel();
}
/// <summary>
/// This accepts the changes in the current mode.
/// </summary>
[BeginAction("acceptmode")]
public void AcceptMode()
{
// Let the mode know
mode.OnAccept();
}
2007-11-10 01:58:08 +00:00
//
2007-10-20 19:50:03 +00:00
// This changes the editing mode.
// Order in which events occur for the old and new modes:
//
// - Constructor of new mode is called
// - Disengage of old mode is called
// ----- Mode switches -----
// - Engage of new mode is called
// - Dispose of old mode is called
//
2007-12-26 00:31:32 +00:00
public void ChangeMode(EditMode nextmode)
2007-10-20 19:50:03 +00:00
{
EditMode oldmode = mode;
2007-12-26 00:31:32 +00:00
newmode = nextmode;
cancelmodechange = false;
2007-12-26 00:31:32 +00:00
2007-10-20 19:50:03 +00:00
// Log info
if(newmode != null)
General.WriteLogLine("Switching edit mode to " + newmode.GetType().Name + "...");
else
General.WriteLogLine("Stopping edit mode...");
// Let the plugins know beforehand
General.Plugins.ModeChanges(oldmode, newmode);
2007-10-20 19:50:03 +00:00
// Change cancelled?
if(cancelmodechange)
{
General.WriteLogLine("Edit mode change cancelled.");
return;
}
2007-10-20 19:50:03 +00:00
// Disenagage old mode
if(oldmode != null) oldmode.OnDisengage();
2007-10-20 19:50:03 +00:00
// Change cancelled?
if(cancelmodechange)
{
General.WriteLogLine("Edit mode change cancelled.");
return;
}
// Reset cursor
General.Interface.SetCursor(Cursors.Default);
2007-10-20 19:50:03 +00:00
// Apply new mode
mode = newmode;
2008-01-02 21:49:43 +00:00
// Check appropriate button on interface
if(newmode != null)
General.MainWindow.CheckEditModeButton(newmode.EditModeButtonName);
else
General.MainWindow.CheckEditModeButton("");
2007-10-20 19:50:03 +00:00
// Engage new mode
if(newmode != null) newmode.OnEngage();
2007-10-20 19:50:03 +00:00
// Dispose old mode
2008-01-04 00:16:58 +00:00
if(oldmode != null) oldmode.Dispose();
2007-10-20 19:50:03 +00:00
2007-12-26 00:31:32 +00:00
// Done switching
newmode = null;
2007-10-20 19:50:03 +00:00
// Redraw the display
General.MainWindow.RedrawDisplay();
}
2008-01-02 21:49:43 +00:00
// This changes mode by class name and optionally with arguments
public void ChangeMode(string classname, params object[] args)
{
2008-01-02 21:49:43 +00:00
EditModeInfo emi = General.Plugins.GetEditModeInfo(classname);
if(emi != null) emi.SwitchToMode(args);
}
2007-10-20 19:50:03 +00:00
#endregion
2007-10-14 15:44:55 +00:00
#region ================== Methods
// This changes thing filter
internal void ChangeThingFilter(ThingsFilter newfilter)
{
// We have a special filter for null
if(newfilter == null) newfilter = new NullThingsFilter();
// Deactivate old filter
if(thingsfilter != null) thingsfilter.Deactivate();
// Change
thingsfilter = newfilter;
// Activate filter
thingsfilter.Activate();
// Redraw
General.MainWindow.RedrawDisplay();
}
2007-12-01 01:32:56 +00:00
// This clears the selection
[BeginAction("clearselection")]
2007-12-01 01:32:56 +00:00
public void ClearSelection()
{
// Clear selection
2007-12-01 18:29:58 +00:00
map.ClearAllSelected();
2007-12-01 01:32:56 +00:00
// Redraw
General.MainWindow.RedrawDisplay();
}
2007-11-12 22:43:01 +00:00
// This sets a new mapset for editing
2008-01-02 21:49:43 +00:00
internal void ChangeMapSet(MapSet newmap)
2007-11-12 22:43:01 +00:00
{
// Can't have a selection in an old map set
2007-12-01 18:29:58 +00:00
map.ClearAllSelected();
2007-11-12 22:43:01 +00:00
// Apply
map.Dispose();
map = newmap;
map.Update();
thingsfilter.Update();
2007-11-12 22:43:01 +00:00
}
2007-10-14 21:31:45 +00:00
// This reloads resources
[BeginAction("reloadresources")]
2008-01-02 21:49:43 +00:00
internal void ReloadResources()
2007-10-14 21:31:45 +00:00
{
DataLocation maplocation;
string oldstatus;
Cursor oldcursor;
// Keep old display info
oldstatus = General.MainWindow.GetCurrentSatus();
oldcursor = Cursor.Current;
// Show status
General.MainWindow.DisplayStatus("Reloading data resources...");
Cursor.Current = Cursors.WaitCursor;
2007-10-27 13:59:24 +00:00
// Clean up
data.Dispose();
data = null;
2008-02-24 21:52:18 +00:00
config = null;
configinfo = null;
2007-10-27 13:59:24 +00:00
GC.Collect();
2007-10-14 21:31:45 +00:00
// Reload game configuration
General.WriteLogLine("Reloading game configuration...");
configinfo = General.GetConfigurationInfo(options.ConfigFile);
config = new GameConfiguration(General.LoadGameConfiguration(options.ConfigFile));
2008-01-02 21:49:43 +00:00
General.Plugins.GameConfigurationChanged();
2007-10-14 21:31:45 +00:00
// Reload data resources
General.WriteLogLine("Reloading data resources...");
data = new DataManager();
maplocation = new DataLocation(DataLocation.RESOURCE_WAD, filepathname, false, false);
data.Load(configinfo.Resources, options.Resources, maplocation);
// Apply new settings to map elements
map.UpdateConfiguration();
2007-11-10 19:24:52 +00:00
// Re-link the background image
grid.LinkBackground();
// Inform all plugins that the resource are reloaded
General.Plugins.ReloadResources();
2007-10-14 21:31:45 +00:00
// Reset status
General.MainWindow.DisplayStatus(oldstatus);
Cursor.Current = oldcursor;
}
2007-10-20 19:50:03 +00:00
2007-10-14 21:31:45 +00:00
// Game Configuration action
[BeginAction("mapoptions")]
2008-01-02 21:49:43 +00:00
internal void ShowMapOptions()
2007-10-14 21:31:45 +00:00
{
// Cancel volatile mode, if any
General.CancelVolatileMode();
2007-10-14 21:31:45 +00:00
// Show map options dialog
MapOptionsForm optionsform = new MapOptionsForm(options);
if(optionsform.ShowDialog(General.MainWindow) == DialogResult.OK)
{
// Update interface
General.MainWindow.UpdateInterface();
2007-10-20 19:50:03 +00:00
2008-02-15 14:08:26 +00:00
// Stop data manager
data.Dispose();
// Apply new options
this.options = optionsform.Options;
// Load new game configuration
General.WriteLogLine("Loading game configuration...");
configinfo = General.GetConfigurationInfo(options.ConfigFile);
config = new GameConfiguration(General.LoadGameConfiguration(options.ConfigFile));
General.Plugins.GameConfigurationChanged();
// Setup new map format IO
General.WriteLogLine("Initializing map format interface " + config.FormatInterface + "...");
io = MapSetIO.Create(config.FormatInterface, tempwad, this);
// Create required lumps if they don't exist yet
CreateRequiredLumps(tempwad, TEMP_MAP_HEADER);
2008-05-15 09:43:19 +00:00
// Let the plugins know
General.Plugins.MapReconfigure();
2008-02-15 14:08:26 +00:00
2007-10-14 21:31:45 +00:00
// Reload resources
ReloadResources();
}
// Done
optionsform.Dispose();
}
2007-10-14 15:44:55 +00:00
// This shows the things filters setup
[BeginAction("thingsfilterssetup")]
internal void ShowThingsFiltersSetup()
{
// Show line edit dialog
ThingsFiltersForm f = new ThingsFiltersForm();
f.ShowDialog(General.MainWindow);
f.Dispose();
}
// This returns true is the given type matches
public bool IsType(Type t)
{
return io.GetType().Equals(t);
}
2007-06-14 23:31:57 +00:00
#endregion
}
}