2007-10-21 22:41:46 +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;
|
2008-01-02 21:49:43 +00:00
|
|
|
using CodeImp.DoomBuilder.Editing;
|
2008-05-17 06:24:16 +00:00
|
|
|
using CodeImp.DoomBuilder.Controls;
|
2007-10-21 22:41:46 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-05-14 21:48:36 +00:00
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-01-04 00:16:58 +00:00
|
|
|
[EditMode(SwitchAction = "thingsmode", // Action name used to switch to this mode
|
|
|
|
ButtonDesc = "Things Mode", // Description on the button in toolbar/menu
|
|
|
|
ButtonImage = "ThingsMode.png", // Image resource name for the button
|
|
|
|
ButtonOrder = int.MinValue + 3)] // Position of the button (lower is more to the left)
|
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
public class ThingsMode : ClassicMode
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
2008-04-07 14:33:41 +00:00
|
|
|
public const float THING_HIGHLIGHT_RANGE = 10f;
|
2007-10-21 22:41:46 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
// Highlighted item
|
|
|
|
private Thing highlighted;
|
|
|
|
|
2008-05-16 21:08:36 +00:00
|
|
|
// Interface
|
|
|
|
private bool editpressed;
|
|
|
|
|
2007-10-21 22:41:46 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public ThingsMode()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-01-02 21:49:43 +00:00
|
|
|
// Disposer
|
2007-10-21 22:41:46 +00:00
|
|
|
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
|
2008-05-15 08:10:29 +00:00
|
|
|
public override void OnCancel()
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnCancel();
|
2007-11-07 21:14:27 +00:00
|
|
|
|
|
|
|
// Return to this mode
|
|
|
|
General.Map.ChangeMode(new ThingsMode());
|
|
|
|
}
|
|
|
|
|
2007-10-21 22:41:46 +00:00
|
|
|
// Mode engages
|
2008-05-15 08:10:29 +00:00
|
|
|
public override void OnEngage()
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnEngage();
|
2008-05-18 07:31:33 +00:00
|
|
|
renderer.SetPresentation(Presentation.Things);
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mode disengages
|
2008-05-15 08:10:29 +00:00
|
|
|
public override void OnDisengage()
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnDisengage();
|
2007-10-21 22:41:46 +00:00
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
// Hide highlight info
|
2008-01-02 21:49:43 +00:00
|
|
|
General.Interface.HideInfo();
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This redraws the display
|
2008-05-15 08:10:29 +00:00
|
|
|
public override void OnRedrawDisplay()
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-04-12 12:45:57 +00:00
|
|
|
// Render lines and vertices
|
|
|
|
if(renderer.StartPlotter(true))
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotLinedefSet(General.Map.Map.Linedefs);
|
|
|
|
renderer.PlotVerticesSet(General.Map.Map.Vertices);
|
2008-04-12 12:45:57 +00:00
|
|
|
renderer.Finish();
|
|
|
|
}
|
2007-10-21 22:41:46 +00:00
|
|
|
|
2008-04-12 12:45:57 +00:00
|
|
|
// Render things
|
|
|
|
if(renderer.StartThings(true))
|
|
|
|
{
|
|
|
|
renderer.RenderThingSet(General.Map.Map.Things);
|
2008-05-18 11:43:28 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
|
|
|
renderer.RenderThing(highlighted, General.Colors.Highlight);
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
2008-04-12 12:45:57 +00:00
|
|
|
|
2008-04-13 11:51:09 +00:00
|
|
|
// Selecting?
|
|
|
|
if(selecting)
|
|
|
|
{
|
|
|
|
// Render selection
|
|
|
|
if(renderer.StartOverlay(true))
|
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
RenderMultiSelection();
|
2008-04-13 11:51:09 +00:00
|
|
|
renderer.Finish();
|
|
|
|
}
|
|
|
|
}
|
2008-05-18 07:31:33 +00:00
|
|
|
|
2008-04-12 12:45:57 +00:00
|
|
|
renderer.Present();
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
2008-05-18 07:31:33 +00:00
|
|
|
|
2007-10-21 22:41:46 +00:00
|
|
|
// This highlights a new item
|
|
|
|
protected void Highlight(Thing t)
|
|
|
|
{
|
|
|
|
// Update display
|
2008-04-12 12:45:57 +00:00
|
|
|
if(renderer.StartThings(false))
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
|
|
|
// Undraw previous highlight
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2007-10-21 22:41:46 +00:00
|
|
|
renderer.RenderThing(highlighted, renderer.DetermineThingColor(highlighted));
|
|
|
|
|
|
|
|
// Set new highlight
|
|
|
|
highlighted = t;
|
|
|
|
|
|
|
|
// Render highlighted item
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2007-10-21 22:41:46 +00:00
|
|
|
renderer.RenderThing(highlighted, General.Colors.Highlight);
|
|
|
|
|
|
|
|
// Done
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2008-04-12 12:45:57 +00:00
|
|
|
renderer.Present();
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
2007-10-24 17:25:03 +00:00
|
|
|
|
|
|
|
// Show highlight info
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-01-02 21:49:43 +00:00
|
|
|
General.Interface.ShowThingInfo(highlighted);
|
2007-12-26 00:31:32 +00:00
|
|
|
else
|
2008-01-02 21:49:43 +00:00
|
|
|
General.Interface.HideInfo();
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Selection
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnSelect()
|
2008-04-13 11:51:09 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
// Item highlighted?
|
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-04-13 11:51:09 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
// Flip selection
|
|
|
|
highlighted.Selected = !highlighted.Selected;
|
|
|
|
|
|
|
|
// Update display
|
|
|
|
if(renderer.StartThings(false))
|
|
|
|
{
|
|
|
|
// Redraw highlight to show selection
|
|
|
|
renderer.RenderThing(highlighted, renderer.DetermineThingColor(highlighted));
|
|
|
|
renderer.Finish();
|
|
|
|
renderer.Present();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Start making a selection
|
|
|
|
StartMultiSelection();
|
2008-04-13 11:51:09 +00:00
|
|
|
}
|
|
|
|
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnSelect();
|
2008-04-13 11:51:09 +00:00
|
|
|
}
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// End selection
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnEndSelect()
|
2008-04-13 11:51:09 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
// Not ending from a multi-selection?
|
|
|
|
if(!selecting)
|
|
|
|
{
|
|
|
|
// Item highlighted?
|
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
|
|
|
{
|
|
|
|
// Update display
|
|
|
|
if(renderer.StartThings(false))
|
|
|
|
{
|
|
|
|
// Render highlighted item
|
|
|
|
renderer.RenderThing(highlighted, General.Colors.Highlight);
|
|
|
|
renderer.Finish();
|
|
|
|
renderer.Present();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-04-13 11:51:09 +00:00
|
|
|
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnEndSelect();
|
2008-04-27 12:07:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start editing
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnEdit()
|
2008-04-27 12:07:26 +00:00
|
|
|
{
|
|
|
|
// Item highlighted?
|
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-04-13 11:51:09 +00:00
|
|
|
{
|
2008-05-16 21:08:36 +00:00
|
|
|
// Edit pressed in this mode
|
|
|
|
editpressed = true;
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Highlighted item not selected?
|
|
|
|
if(!highlighted.Selected)
|
|
|
|
{
|
|
|
|
// Make this the only selection
|
|
|
|
General.Map.Map.ClearSelectedThings();
|
|
|
|
highlighted.Selected = true;
|
|
|
|
General.Interface.RedrawDisplay();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update display
|
|
|
|
if(renderer.StartThings(false))
|
|
|
|
{
|
|
|
|
// Redraw highlight to show selection
|
|
|
|
renderer.RenderThing(highlighted, renderer.DetermineThingColor(highlighted));
|
|
|
|
renderer.Finish();
|
|
|
|
renderer.Present();
|
|
|
|
}
|
2008-04-13 11:51:09 +00:00
|
|
|
}
|
2008-04-27 12:07:26 +00:00
|
|
|
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnEdit();
|
2008-04-27 12:07:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Done editing
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnEndEdit()
|
2008-04-27 12:07:26 +00:00
|
|
|
{
|
2008-05-16 21:08:36 +00:00
|
|
|
// Edit pressed in this mode?
|
|
|
|
if(editpressed)
|
2008-04-27 12:07:26 +00:00
|
|
|
{
|
2008-05-16 21:08:36 +00:00
|
|
|
// Anything selected?
|
|
|
|
ICollection<Thing> selected = General.Map.Map.GetSelectedThings(true);
|
|
|
|
if(selected.Count > 0)
|
|
|
|
{
|
|
|
|
// Show thing edit dialog
|
2008-05-17 17:43:57 +00:00
|
|
|
General.Interface.ShowEditThings(selected);
|
2008-04-27 12:07:26 +00:00
|
|
|
|
2008-05-16 21:08:36 +00:00
|
|
|
// When a single thing was selected, deselect it now
|
|
|
|
if(selected.Count == 1) General.Map.Map.ClearSelectedThings();
|
2008-04-27 12:07:26 +00:00
|
|
|
|
2008-05-16 21:08:36 +00:00
|
|
|
// Update entire display
|
|
|
|
General.Interface.RedrawDisplay();
|
|
|
|
}
|
2008-04-27 12:07:26 +00:00
|
|
|
}
|
|
|
|
|
2008-05-16 21:08:36 +00:00
|
|
|
editpressed = false;
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnEndEdit();
|
2008-04-13 11:51:09 +00:00
|
|
|
}
|
|
|
|
|
2007-10-21 22:41:46 +00:00
|
|
|
// Mouse moves
|
2008-05-15 08:10:29 +00:00
|
|
|
public override void OnMouseMove(MouseEventArgs e)
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnMouseMove(e);
|
2007-10-21 22:41:46 +00:00
|
|
|
|
2008-04-12 16:07:10 +00:00
|
|
|
// Not holding any buttons?
|
|
|
|
if(e.Button == MouseButtons.None)
|
|
|
|
{
|
|
|
|
// Find the nearest vertex within highlight range
|
|
|
|
Thing t = General.Map.Map.NearestThingSquareRange(mousemappos, THING_HIGHLIGHT_RANGE / renderer.Scale);
|
2007-10-21 22:41:46 +00:00
|
|
|
|
2008-04-12 16:07:10 +00:00
|
|
|
// Highlight if not the same
|
|
|
|
if(t != highlighted) Highlight(t);
|
|
|
|
}
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse leaves
|
2008-05-15 08:10:29 +00:00
|
|
|
public override void OnMouseLeave(EventArgs e)
|
2007-10-21 22:41:46 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnMouseLeave(e);
|
2007-10-21 22:41:46 +00:00
|
|
|
|
|
|
|
// Highlight nothing
|
|
|
|
Highlight(null);
|
|
|
|
}
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Mouse wants to drag
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnDragStart(MouseEventArgs e)
|
2007-12-26 00:31:32 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnDragStart(e);
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Edit button used?
|
|
|
|
if(General.Interface.CheckActionActive(null, "classicedit"))
|
2007-12-26 00:31:32 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
// Anything highlighted?
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
|
|
|
{
|
|
|
|
// Highlighted item not selected?
|
|
|
|
if(!highlighted.Selected)
|
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
// Select only this sector for dragging
|
2007-12-26 00:31:32 +00:00
|
|
|
General.Map.Map.ClearSelectedThings();
|
|
|
|
highlighted.Selected = true;
|
|
|
|
}
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Start dragging the selection
|
|
|
|
General.Map.ChangeMode(new DragThingsMode(new ThingsMode(), mousedownmappos));
|
2007-12-26 00:31:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// This is called wheh selection ends
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnEndMultiSelection()
|
2007-12-26 00:31:32 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
// Go for all things
|
|
|
|
foreach(Thing t in General.Map.Map.Things)
|
2007-12-26 00:31:32 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
t.Selected = ((t.Position.x >= selectionrect.Left) &&
|
|
|
|
(t.Position.y >= selectionrect.Top) &&
|
|
|
|
(t.Position.x <= selectionrect.Right) &&
|
|
|
|
(t.Position.y <= selectionrect.Bottom));
|
|
|
|
}
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnEndMultiSelection();
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Clear overlay
|
|
|
|
if(renderer.StartOverlay(true)) renderer.Finish();
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Redraw
|
|
|
|
General.Interface.RedrawDisplay();
|
2007-12-26 00:31:32 +00:00
|
|
|
}
|
2008-04-07 14:33:41 +00:00
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// This is called when the selection is updated
|
2008-05-15 08:10:29 +00:00
|
|
|
protected override void OnUpdateMultiSelection()
|
2008-04-07 14:33:41 +00:00
|
|
|
{
|
2008-05-15 08:10:29 +00:00
|
|
|
base.OnUpdateMultiSelection();
|
2008-04-07 14:33:41 +00:00
|
|
|
|
2008-04-27 12:07:26 +00:00
|
|
|
// Render selection
|
|
|
|
if(renderer.StartOverlay(true))
|
2008-04-07 14:33:41 +00:00
|
|
|
{
|
2008-04-27 12:07:26 +00:00
|
|
|
RenderMultiSelection();
|
|
|
|
renderer.Finish();
|
|
|
|
renderer.Present();
|
2008-04-07 14:33:41 +00:00
|
|
|
}
|
|
|
|
}
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2007-10-21 22:41:46 +00:00
|
|
|
#endregion
|
2008-05-17 06:24:16 +00:00
|
|
|
|
|
|
|
#region ================== Actions
|
|
|
|
|
|
|
|
[BeginAction("deleteitem", BaseAction = true)]
|
|
|
|
public void DeleteItem()
|
|
|
|
{
|
|
|
|
// Make list of selected things
|
|
|
|
ICollection<Thing> selected = General.Map.Map.GetSelectedThings(true);
|
|
|
|
if((selected.Count == 0) && (highlighted != null) && !highlighted.IsDisposed) selected.Add(highlighted);
|
|
|
|
|
|
|
|
// Anything to do?
|
|
|
|
if(selected.Count > 0)
|
|
|
|
{
|
|
|
|
// Make undo
|
|
|
|
if(selected.Count > 1)
|
|
|
|
General.Map.UndoRedo.CreateUndo("Delete " + selected.Count + " things", UndoGroup.None, 0);
|
|
|
|
else
|
|
|
|
General.Map.UndoRedo.CreateUndo("Delete thing", UndoGroup.None, 0);
|
|
|
|
|
|
|
|
// Dispose selected things
|
|
|
|
foreach(Thing t in selected) t.Dispose();
|
|
|
|
|
|
|
|
// Update cache values
|
2008-05-18 11:56:45 +00:00
|
|
|
General.Map.IsChanged = true;
|
2008-05-17 06:24:16 +00:00
|
|
|
General.Map.Map.Update();
|
|
|
|
|
|
|
|
// Invoke a new mousemove so that the highlighted item updates
|
|
|
|
MouseEventArgs e = new MouseEventArgs(MouseButtons.None, 0, (int)mousepos.x, (int)mousepos.y, 0);
|
|
|
|
OnMouseMove(e);
|
|
|
|
|
|
|
|
// Redraw screen
|
|
|
|
General.Interface.RedrawDisplay();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
2007-10-21 22:41:46 +00:00
|
|
|
}
|
|
|
|
}
|