#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.Controls; using CodeImp.DoomBuilder.Geometry; using System.Drawing; #endregion namespace CodeImp.DoomBuilder.Editing { internal class ViewClassicMode : EditMode { #region ================== Constants #endregion #region ================== Variables // Graphics protected Renderer2D renderer; // Mouse status protected Vector2D mousepos; protected Vector2D mousemappos; protected bool mouseinside; #endregion #region ================== Properties #endregion #region ================== Constructor / Disposer // Constructor public ViewClassicMode() { // Initialize this.renderer = graphics.Renderer2D; } // Diposer public override void Dispose() { // Not already disposed? if(!isdisposed) { // Clean up // Dispose base base.Dispose(); } } #endregion #region ================== Scroll / Zoom // This scrolls the view north [Action(Action.SCROLLNORTH)] public void ScrollNorth() { // Scroll ScrollBy(0f, 100f / renderer.Scale); } // This scrolls the view south [Action(Action.SCROLLSOUTH)] public void ScrollSouth() { // Scroll ScrollBy(0f, -100f / renderer.Scale); } // This scrolls the view west [Action(Action.SCROLLWEST)] public void ScrollWest() { // Scroll ScrollBy(-100f / renderer.Scale, 0f); } // This scrolls the view east [Action(Action.SCROLLEAST)] public void ScrollEast() { // Scroll ScrollBy(100f / renderer.Scale, 0f); } // This zooms in [Action(Action.ZOOMIN)] public void ZoomIn() { // Zoom ZoomBy(1.2f); } // This zooms out [Action(Action.ZOOMOUT)] public void ZoomOut() { // Zoom ZoomBy(0.8f); } // This scrolls anywhere private void ScrollBy(float deltax, float deltay) { // Scroll now renderer.PositionView(renderer.OffsetX + deltax, renderer.OffsetY + deltay); RedrawDisplay(); // Determine new unprojected mouse coordinates mousemappos = renderer.GetMapCoordinates(mousepos); General.MainWindow.UpdateCoordinates(mousemappos); } // This zooms private void ZoomBy(float deltaz) { Vector2D zoompos, clientsize, diff; float newscale; // This will be the new zoom scale newscale = renderer.Scale * deltaz; // Get the dimensions of the display clientsize = new Vector2D(graphics.RenderTarget.ClientSize.Width, graphics.RenderTarget.ClientSize.Height); // When mouse is inside display if(mouseinside) { // Zoom into or from mouse position zoompos = (mousepos / clientsize) - new Vector2D(0.5f, 0.5f); } else { // Zoom into or from center zoompos = new Vector2D(0f, 0f); } // Calculate view position difference diff = ((clientsize / newscale) - (clientsize / renderer.Scale)) * zoompos; // Zoom now renderer.PositionView(renderer.OffsetX - diff.x, renderer.OffsetY + diff.y); renderer.ScaleView(newscale); General.Map.Data.Update(); RedrawDisplay(); // Determine new unprojected mouse coordinates mousemappos = renderer.GetMapCoordinates(mousepos); General.MainWindow.UpdateCoordinates(mousemappos); } #endregion #region ================== Mouse input // Mouse leaves the display public override void MouseLeave(EventArgs e) { // Mouse is outside the display mouseinside = false; mousepos = new Vector2D(float.NaN, float.NaN); mousemappos = mousepos; // Determine new unprojected mouse coordinates General.MainWindow.UpdateCoordinates(mousemappos); // Let the base class know base.MouseLeave(e); } // Mouse moved inside the display public override void MouseMove(MouseEventArgs e) { // Record last position mouseinside = true; mousepos = new Vector2D(e.X, e.Y); mousemappos = renderer.GetMapCoordinates(mousepos); // Update labels in main window General.MainWindow.UpdateCoordinates(mousemappos); // Let the base class know base.MouseMove(e); } #endregion } }