2007-10-20 19:50:03 +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;
|
|
|
|
using CodeImp.DoomBuilder.Interface;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.Editing
|
|
|
|
{
|
2007-10-24 17:25:03 +00:00
|
|
|
public class SectorsMode : ClassicMode
|
2007-10-20 19:50:03 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
// Highlighted item
|
|
|
|
private Sector highlighted;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public SectorsMode()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Diposer
|
|
|
|
public override void Dispose()
|
|
|
|
{
|
|
|
|
// Not already disposed?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
|
|
|
// Clean up
|
|
|
|
|
|
|
|
// Dispose base
|
|
|
|
base.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2007-11-07 21:14:27 +00:00
|
|
|
// Cancel mode
|
|
|
|
public override void Cancel()
|
|
|
|
{
|
|
|
|
base.Cancel();
|
|
|
|
|
|
|
|
// Return to this mode
|
|
|
|
General.Map.ChangeMode(new SectorsMode());
|
|
|
|
}
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// Mode engages
|
|
|
|
public override void Engage()
|
|
|
|
{
|
|
|
|
base.Engage();
|
|
|
|
|
|
|
|
// Check sectors button on main window
|
|
|
|
General.MainWindow.SetSectorsChecked(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mode disengages
|
|
|
|
public override void Disengage()
|
|
|
|
{
|
|
|
|
base.Disengage();
|
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
// Hide highlight info
|
|
|
|
General.MainWindow.HideInfo();
|
|
|
|
|
|
|
|
// Uncheck sectors button on main window
|
2007-10-20 19:50:03 +00:00
|
|
|
General.MainWindow.SetSectorsChecked(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This redraws the display
|
|
|
|
public unsafe override void RedrawDisplay()
|
|
|
|
{
|
|
|
|
// Start with a clear display
|
2007-11-21 12:50:56 +00:00
|
|
|
if(renderer.Start(true, true))
|
2007-10-20 19:50:03 +00:00
|
|
|
{
|
2007-10-21 22:41:46 +00:00
|
|
|
// Render things
|
|
|
|
renderer.SetThingsRenderOrder(false);
|
|
|
|
renderer.RenderThingSet(General.Map.Map.Things);
|
|
|
|
|
|
|
|
// Render lines and vertices
|
2007-10-21 04:07:36 +00:00
|
|
|
renderer.RenderLinedefSet(General.Map.Map.Linedefs);
|
|
|
|
renderer.RenderVerticesSet(General.Map.Map.Vertices);
|
2007-10-20 19:50:03 +00:00
|
|
|
|
|
|
|
// Render highlighted item
|
|
|
|
if(highlighted != null)
|
|
|
|
renderer.RenderSector(highlighted, General.Colors.Highlight);
|
|
|
|
|
|
|
|
// Done
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This highlights a new item
|
|
|
|
protected void Highlight(Sector s)
|
|
|
|
{
|
|
|
|
// Update display
|
2007-11-21 12:50:56 +00:00
|
|
|
if(renderer.Start(false, false))
|
2007-10-20 19:50:03 +00:00
|
|
|
{
|
|
|
|
// Undraw previous highlight
|
|
|
|
if(highlighted != null)
|
|
|
|
renderer.RenderSector(highlighted);
|
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
/*
|
|
|
|
// Undraw highlighted things
|
|
|
|
if(highlighted != null)
|
|
|
|
foreach(Thing t in highlighted.Things)
|
|
|
|
renderer.RenderThing(t, renderer.DetermineThingColor(t));
|
|
|
|
*/
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// Set new highlight
|
|
|
|
highlighted = s;
|
|
|
|
|
|
|
|
// Render highlighted item
|
|
|
|
if(highlighted != null)
|
|
|
|
renderer.RenderSector(highlighted, General.Colors.Highlight);
|
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
/*
|
|
|
|
// Render highlighted things
|
|
|
|
if(highlighted != null)
|
|
|
|
foreach(Thing t in highlighted.Things)
|
|
|
|
renderer.RenderThing(t, General.Colors.Highlight);
|
|
|
|
*/
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// Done
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
2007-10-24 17:25:03 +00:00
|
|
|
|
|
|
|
// Show highlight info
|
|
|
|
if(highlighted != null) General.MainWindow.ShowSectorInfo(highlighted);
|
|
|
|
else General.MainWindow.HideInfo();
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse moves
|
|
|
|
public override void MouseMove(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
base.MouseMove(e);
|
|
|
|
|
|
|
|
// Find the nearest linedef within highlight range
|
|
|
|
Linedef l = General.Map.Map.NearestLinedef(mousemappos);
|
|
|
|
|
|
|
|
// Check on which side of the linedef the mouse is
|
|
|
|
float side = l.SideOfLine(mousemappos);
|
|
|
|
if(side > 0)
|
|
|
|
{
|
|
|
|
// Is there a sidedef here?
|
|
|
|
if(l.Back != null)
|
|
|
|
{
|
|
|
|
// Highlight if not the same
|
|
|
|
if(l.Back.Sector != highlighted) Highlight(l.Back.Sector);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Highlight nothing
|
|
|
|
if(highlighted != null) Highlight(null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Is there a sidedef here?
|
|
|
|
if(l.Front != null)
|
|
|
|
{
|
|
|
|
// Highlight if not the same
|
|
|
|
if(l.Front.Sector != highlighted) Highlight(l.Front.Sector);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Highlight nothing
|
|
|
|
if(highlighted != null) Highlight(null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse leaves
|
|
|
|
public override void MouseLeave(EventArgs e)
|
|
|
|
{
|
|
|
|
base.MouseLeave(e);
|
|
|
|
|
|
|
|
// Highlight nothing
|
|
|
|
Highlight(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|