2008-05-15 08:25:45 +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-05-29 11:54:45 +00:00
|
|
|
using CodeImp.DoomBuilder.Windows;
|
2008-05-15 08:25:45 +00:00
|
|
|
using CodeImp.DoomBuilder.IO;
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
2008-11-19 16:18:36 +00:00
|
|
|
using CodeImp.DoomBuilder.VisualModes;
|
2008-05-15 08:25:45 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-11-27 13:42:18 +00:00
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
2008-05-15 08:25:45 +00:00
|
|
|
{
|
|
|
|
internal class BaseVisualSector : VisualSector
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public BaseVisualSector(Sector s) : base(s)
|
|
|
|
{
|
|
|
|
// Initialize
|
|
|
|
Rebuild();
|
|
|
|
|
|
|
|
// We have no destructor
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disposer
|
|
|
|
public override void Dispose()
|
|
|
|
{
|
|
|
|
// Not already disposed?
|
|
|
|
if(!IsDisposed)
|
|
|
|
{
|
|
|
|
// Clean up
|
|
|
|
|
|
|
|
// Dispose base
|
|
|
|
base.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
|
|
|
// This (re)builds the visual sector, calculating all geometry from scratch
|
|
|
|
public void Rebuild()
|
|
|
|
{
|
|
|
|
// Forget old geometry
|
|
|
|
base.ClearGeometry();
|
|
|
|
|
2008-11-30 20:46:39 +00:00
|
|
|
// Create floor
|
2008-12-05 15:38:50 +00:00
|
|
|
VisualFloor vf = new VisualFloor(this);
|
|
|
|
if(vf.Setup()) base.AddGeometry(vf);
|
2008-11-30 20:46:39 +00:00
|
|
|
|
|
|
|
// Create ceiling
|
2008-12-05 15:38:50 +00:00
|
|
|
VisualCeiling vc = new VisualCeiling(this);
|
|
|
|
if(vc.Setup()) base.AddGeometry(vc);
|
2008-05-15 08:25:45 +00:00
|
|
|
|
|
|
|
// Go for all sidedefs
|
|
|
|
foreach(Sidedef sd in base.Sector.Sidedefs)
|
|
|
|
{
|
2008-11-30 20:46:39 +00:00
|
|
|
// Doublesided or singlesided?
|
2008-05-15 08:25:45 +00:00
|
|
|
if(sd.Other != null)
|
|
|
|
{
|
2008-11-30 20:46:39 +00:00
|
|
|
// Create upper part
|
2008-12-05 15:38:50 +00:00
|
|
|
VisualUpper vu = new VisualUpper(this, sd);
|
2008-11-30 20:46:39 +00:00
|
|
|
if(vu.Setup()) base.AddGeometry(vu);
|
|
|
|
|
|
|
|
// Create lower part
|
2008-12-05 15:38:50 +00:00
|
|
|
VisualLower vl = new VisualLower(this, sd);
|
2008-11-30 20:46:39 +00:00
|
|
|
if(vl.Setup()) base.AddGeometry(vl);
|
|
|
|
|
|
|
|
// Create middle part
|
2008-12-05 15:38:50 +00:00
|
|
|
VisualMiddleDouble vm = new VisualMiddleDouble(this, sd);
|
2008-11-30 20:46:39 +00:00
|
|
|
if(vm.Setup()) base.AddGeometry(vm);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Create middle part
|
2008-12-05 15:38:50 +00:00
|
|
|
VisualMiddleSingle vm = new VisualMiddleSingle(this, sd);
|
2008-11-30 20:46:39 +00:00
|
|
|
if(vm.Setup()) base.AddGeometry(vm);
|
2008-05-15 08:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|