2007-06-15 18:30:55 +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;
|
2007-06-15 22:38:42 +00:00
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
2007-06-15 18:30:55 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.Editing
|
|
|
|
{
|
|
|
|
internal class FrozenOverviewMode : ViewClassicMode
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public FrozenOverviewMode()
|
|
|
|
{
|
2007-06-24 18:56:43 +00:00
|
|
|
float left = float.MaxValue;
|
|
|
|
float top = float.MaxValue;
|
|
|
|
float right = float.MinValue;
|
|
|
|
float bottom = float.MinValue;
|
|
|
|
float scalew, scaleh, scale;
|
|
|
|
float width, height;
|
|
|
|
|
|
|
|
// Go for all vertices
|
|
|
|
foreach(Vertex v in General.Map.Data.Vertices)
|
|
|
|
{
|
|
|
|
// Adjust boundaries by vertices
|
|
|
|
if(v.Position.x < left) left = v.Position.x;
|
|
|
|
if(v.Position.x > right) right = v.Position.x;
|
|
|
|
if(v.Position.y < top) top = v.Position.y;
|
|
|
|
if(v.Position.y > bottom) bottom = v.Position.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate width/height
|
|
|
|
width = (right - left);
|
|
|
|
height = (bottom - top);
|
2007-06-15 18:30:55 +00:00
|
|
|
|
2007-06-24 18:56:43 +00:00
|
|
|
// Calculate scale to view map at
|
|
|
|
scalew = (float)General.Map.Graphics.RenderTarget.ClientSize.Width / (width * 1.1f);
|
|
|
|
scaleh = (float)General.Map.Graphics.RenderTarget.ClientSize.Height / (height * 1.1f);
|
|
|
|
if(scalew < scaleh) scale = scalew; else scale = scaleh;
|
|
|
|
|
|
|
|
// Change the view to see the whole map
|
|
|
|
renderer.ScaleView(scale);
|
|
|
|
renderer.PositionView(left + (right - left) * 0.5f, top + (bottom - top) * 0.5f);
|
2007-07-07 09:40:34 +00:00
|
|
|
General.Map.Data.Update();
|
2007-06-15 18:30:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Diposer
|
|
|
|
public override void Dispose()
|
|
|
|
{
|
|
|
|
// Not already disposed?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
|
|
|
// Clean up
|
|
|
|
|
|
|
|
// Dispose base
|
|
|
|
base.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2007-06-15 22:38:42 +00:00
|
|
|
// This redraws the display
|
|
|
|
public override void RedrawDisplay()
|
|
|
|
{
|
|
|
|
if(renderer.StartRendering())
|
|
|
|
{
|
2007-07-07 09:40:34 +00:00
|
|
|
renderer.RenderLinedefs(General.Map.Data, General.Map.Data.Linedefs);
|
|
|
|
renderer.RenderVertices(General.Map.Data, General.Map.Data.Vertices);
|
2007-06-15 22:38:42 +00:00
|
|
|
renderer.FinishRendering();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-15 18:30:55 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|