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-09-28 21:20:56 +00:00
|
|
|
using CodeImp.DoomBuilder.Actions;
|
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
|
|
|
{
|
2008-11-27 13:42:18 +00:00
|
|
|
[EditMode(DisplayName = "Visual Mode",
|
|
|
|
SwitchAction = "visualmode", // Action name used to switch to this mode
|
2008-05-15 08:25:45 +00:00
|
|
|
ButtonImage = "VisualMode.png", // Image resource name for the button
|
2008-11-27 19:25:13 +00:00
|
|
|
ButtonOrder = 0, // Position of the button (lower is more to the left)
|
|
|
|
UseByDefault = true)]
|
2008-05-15 08:25:45 +00:00
|
|
|
|
|
|
|
public class BaseVisualMode : VisualMode
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public BaseVisualMode()
|
|
|
|
{
|
|
|
|
// Initialize
|
|
|
|
|
|
|
|
// We have no destructor
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disposer
|
|
|
|
public override void Dispose()
|
|
|
|
{
|
|
|
|
// Not already disposed?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
|
|
|
// Clean up
|
|
|
|
|
|
|
|
// Done
|
|
|
|
base.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2008-11-25 21:54:50 +00:00
|
|
|
// This creates a visual sector
|
|
|
|
protected override VisualSector CreateVisualSector(Sector s)
|
2008-09-28 21:20:56 +00:00
|
|
|
{
|
2008-11-25 21:54:50 +00:00
|
|
|
return new BaseVisualSector(s);
|
2008-09-28 21:20:56 +00:00
|
|
|
}
|
|
|
|
|
2008-05-15 08:25:45 +00:00
|
|
|
// This draws a frame
|
|
|
|
public override void OnRedrawDisplay()
|
|
|
|
{
|
|
|
|
// Start drawing
|
|
|
|
if(renderer.Start())
|
|
|
|
{
|
|
|
|
// Begin with geometry
|
|
|
|
renderer.StartGeometry();
|
|
|
|
|
2008-11-25 21:54:50 +00:00
|
|
|
// This renders all visible sectors
|
|
|
|
base.OnRedrawDisplay();
|
2008-05-15 08:25:45 +00:00
|
|
|
|
|
|
|
// Done rendering geometry
|
|
|
|
renderer.FinishGeometry();
|
|
|
|
|
|
|
|
// Present!
|
|
|
|
renderer.Finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|