2009-04-19 18:07:22 +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.Data;
|
|
|
|
using CodeImp.DoomBuilder.Windows;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
|
|
|
using CodeImp.DoomBuilder.VisualModes;
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
{
|
|
|
|
internal abstract class BaseVisualGeometrySidedef : VisualGeometry, IVisualEventReceiver
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
private const float DRAG_ANGLE_TOLERANCE = 0.06f;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
protected BaseVisualMode mode;
|
|
|
|
|
2012-11-27 21:12:20 +00:00
|
|
|
protected Plane top;
|
|
|
|
protected Plane bottom;
|
2009-04-19 18:07:22 +00:00
|
|
|
protected long setuponloadedtexture;
|
|
|
|
|
|
|
|
// UV dragging
|
|
|
|
private float dragstartanglexy;
|
|
|
|
private float dragstartanglez;
|
|
|
|
private Vector3D dragorigin;
|
|
|
|
private Vector3D deltaxy;
|
|
|
|
private Vector3D deltaz;
|
|
|
|
private int startoffsetx;
|
|
|
|
private int startoffsety;
|
|
|
|
protected bool uvdragging;
|
2009-05-03 19:22:32 +00:00
|
|
|
private int prevoffsetx; // We have to provide delta offsets, but I don't
|
|
|
|
private int prevoffsety; // want to calculate with delta offsets to prevent
|
|
|
|
// inaccuracy in the dragging.
|
2009-04-19 18:07:22 +00:00
|
|
|
// Undo/redo
|
|
|
|
private int undoticket;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
public bool IsDraggingUV { get { return uvdragging; } }
|
|
|
|
new public BaseVisualSector Sector { get { return (BaseVisualSector)base.Sector; } }
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Destructor
|
|
|
|
|
|
|
|
// Constructor for sidedefs
|
|
|
|
public BaseVisualGeometrySidedef(BaseVisualMode mode, VisualSector vs, Sidedef sd) : base(vs, sd)
|
|
|
|
{
|
|
|
|
this.mode = mode;
|
|
|
|
this.deltaz = new Vector3D(0.0f, 0.0f, 1.0f);
|
|
|
|
this.deltaxy = (sd.Line.End.Position - sd.Line.Start.Position) * sd.Line.LengthInv;
|
|
|
|
if(!sd.IsFront) this.deltaxy = -this.deltaxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2012-11-27 21:12:20 +00:00
|
|
|
// This sets the renderstyle from linedef information and returns the alpha value or the vertices
|
|
|
|
protected byte SetLinedefRenderstyle(bool solidasmask)
|
|
|
|
{
|
|
|
|
byte alpha = 255;
|
|
|
|
|
|
|
|
// From TranslucentLine action
|
|
|
|
if(Sidedef.Line.Action == 208)
|
|
|
|
{
|
|
|
|
alpha = (byte)General.Clamp(Sidedef.Line.Args[1], 0, 255);
|
|
|
|
|
|
|
|
if(Sidedef.Line.Args[2] == 1)
|
|
|
|
this.RenderPass = RenderPass.Additive;
|
|
|
|
else if(alpha < 255)
|
|
|
|
this.RenderPass = RenderPass.Alpha;
|
|
|
|
else if(solidasmask)
|
|
|
|
this.RenderPass = RenderPass.Mask;
|
|
|
|
else
|
|
|
|
this.RenderPass = RenderPass.Solid;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// From UDMF field
|
|
|
|
string field = Sidedef.Line.Fields.GetValue("renderstyle", "translucent");
|
|
|
|
alpha = (byte)(Sidedef.Line.Fields.GetValue("alpha", 1.0f) * 255.0f);
|
|
|
|
|
|
|
|
if(field == "add")
|
|
|
|
this.RenderPass = RenderPass.Additive;
|
|
|
|
else if(alpha < 255)
|
|
|
|
this.RenderPass = RenderPass.Alpha;
|
|
|
|
else if(solidasmask)
|
|
|
|
this.RenderPass = RenderPass.Mask;
|
|
|
|
else
|
|
|
|
this.RenderPass = RenderPass.Solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
return alpha;
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// This performs a fast test in object picking
|
|
|
|
public override bool PickFastReject(Vector3D from, Vector3D to, Vector3D dir)
|
|
|
|
{
|
|
|
|
// Check if intersection point is between top and bottom
|
2012-11-27 21:12:20 +00:00
|
|
|
return (pickintersect.z >= bottom.GetZ(pickintersect)) && (pickintersect.z <= top.GetZ(pickintersect));
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// This performs an accurate test for object picking
|
|
|
|
public override bool PickAccurate(Vector3D from, Vector3D to, Vector3D dir, ref float u_ray)
|
|
|
|
{
|
|
|
|
// The fast reject pass is already as accurate as it gets,
|
|
|
|
// so we just return the intersection distance here
|
|
|
|
u_ray = pickrayu;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
// This creates vertices from a wall polygon and applies lighting
|
|
|
|
protected List<WorldVertex> CreatePolygonVertices(WallPolygon poly, TexturePlane tp, SectorData sd, int lightvalue, bool lightabsolute)
|
|
|
|
{
|
|
|
|
List<WallPolygon> polylist = new List<WallPolygon>(1);
|
|
|
|
polylist.Add(poly);
|
|
|
|
return CreatePolygonVertices(polylist, tp, sd, lightvalue, lightabsolute);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This creates vertices from a wall polygon and applies lighting
|
|
|
|
protected List<WorldVertex> CreatePolygonVertices(List<WallPolygon> poly, TexturePlane tp, SectorData sd, int lightvalue, bool lightabsolute)
|
|
|
|
{
|
|
|
|
List<WallPolygon> polygons = new List<WallPolygon>(poly);
|
|
|
|
List<WorldVertex> verts = new List<WorldVertex>();
|
|
|
|
|
|
|
|
// Go for all levels to build geometry
|
|
|
|
for(int i = sd.LightLevels.Count - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
SectorLevel l = sd.LightLevels[i];
|
|
|
|
|
|
|
|
if((l != sd.Floor) && (l != sd.Ceiling) && (l.type != SectorLevelType.Floor))
|
|
|
|
{
|
|
|
|
// Go for all polygons
|
|
|
|
int num = polygons.Count;
|
|
|
|
for(int pi = 0; pi < num; pi++)
|
|
|
|
{
|
|
|
|
// Split by plane
|
|
|
|
WallPolygon p = polygons[pi];
|
|
|
|
WallPolygon np = SplitPoly(ref p, l.plane, false);
|
|
|
|
if(np.Count > 0)
|
|
|
|
{
|
|
|
|
// Determine color
|
|
|
|
int lightlevel = lightabsolute ? lightvalue : l.brightnessbelow + lightvalue;
|
|
|
|
//mxd
|
|
|
|
//PixelColor wallbrightness = PixelColor.FromInt(mode.CalculateBrightness(lightlevel));
|
|
|
|
PixelColor wallbrightness = PixelColor.FromInt(mode.CalculateBrightness(lightlevel, Sidedef));
|
|
|
|
PixelColor wallcolor = PixelColor.Modulate(l.colorbelow, wallbrightness);
|
|
|
|
np.color = wallcolor.WithAlpha(255).ToInt();
|
|
|
|
|
|
|
|
if(p.Count == 0)
|
|
|
|
{
|
|
|
|
polygons[pi] = np;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
polygons[pi] = p;
|
|
|
|
polygons.Add(np);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
polygons[pi] = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go for all polygons to make geometry
|
|
|
|
foreach(WallPolygon p in polygons)
|
|
|
|
{
|
|
|
|
// Find texture coordinates for each vertex in the polygon
|
|
|
|
List<Vector2D> texc = new List<Vector2D>(p.Count);
|
|
|
|
foreach(Vector3D v in p)
|
|
|
|
texc.Add(tp.GetTextureCoordsAt(v));
|
|
|
|
|
|
|
|
// Now we create triangles from the polygon.
|
|
|
|
// The polygon is convex and clockwise, so this is a piece of cake.
|
|
|
|
if(p.Count >= 3)
|
|
|
|
{
|
|
|
|
for(int k = 1; k < (p.Count - 1); k++)
|
|
|
|
{
|
|
|
|
verts.Add(new WorldVertex(p[0], p.color, texc[0]));
|
|
|
|
verts.Add(new WorldVertex(p[k], p.color, texc[k]));
|
|
|
|
verts.Add(new WorldVertex(p[k + 1], p.color, texc[k + 1]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return verts;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This splits a polygon with a plane and returns the other part as a new polygon
|
|
|
|
// The polygon is expected to be convex and clockwise
|
|
|
|
protected WallPolygon SplitPoly(ref WallPolygon poly, Plane p, bool keepfront)
|
|
|
|
{
|
|
|
|
const float NEAR_ZERO = 0.01f;
|
|
|
|
WallPolygon front = new WallPolygon(poly.Count);
|
|
|
|
WallPolygon back = new WallPolygon(poly.Count);
|
|
|
|
poly.CopyProperties(front);
|
|
|
|
poly.CopyProperties(back);
|
|
|
|
|
|
|
|
if(poly.Count > 0)
|
|
|
|
{
|
|
|
|
// Go for all vertices to see which side they have to be on
|
|
|
|
Vector3D v1 = poly[poly.Count - 1];
|
|
|
|
float side1 = p.Distance(v1);
|
|
|
|
for(int i = 0; i < poly.Count; i++)
|
|
|
|
{
|
|
|
|
// Fetch vertex and determine side
|
|
|
|
Vector3D v2 = poly[i];
|
|
|
|
float side2 = p.Distance(v2);
|
|
|
|
|
|
|
|
// Front?
|
|
|
|
if(side2 > NEAR_ZERO)
|
|
|
|
{
|
|
|
|
if(side1 < -NEAR_ZERO)
|
|
|
|
{
|
|
|
|
// Split line with plane and insert the vertex
|
|
|
|
float u = 0.0f;
|
|
|
|
p.GetIntersection(v1, v2, ref u);
|
|
|
|
Vector3D v3 = v1 + (v2 - v1) * u;
|
|
|
|
front.Add(v3);
|
|
|
|
back.Add(v3);
|
|
|
|
}
|
|
|
|
|
|
|
|
front.Add(v2);
|
|
|
|
}
|
|
|
|
// Back?
|
|
|
|
else if(side2 < -NEAR_ZERO)
|
|
|
|
{
|
|
|
|
if(side1 > NEAR_ZERO)
|
|
|
|
{
|
|
|
|
// Split line with plane and insert the vertex
|
|
|
|
float u = 0.0f;
|
|
|
|
p.GetIntersection(v1, v2, ref u);
|
|
|
|
Vector3D v3 = v1 + (v2 - v1) * u;
|
|
|
|
front.Add(v3);
|
|
|
|
back.Add(v3);
|
|
|
|
}
|
|
|
|
|
|
|
|
back.Add(v2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// On the plane, add to both polygons
|
|
|
|
front.Add(v2);
|
|
|
|
back.Add(v2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next
|
|
|
|
v1 = v2;
|
|
|
|
side1 = side2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(keepfront)
|
|
|
|
{
|
|
|
|
poly = front;
|
|
|
|
return back;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
poly = back;
|
|
|
|
return front;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This crops a polygon with a plane and keeps only a certain part of the polygon
|
|
|
|
protected void CropPoly(ref WallPolygon poly, Plane p, bool keepfront)
|
|
|
|
{
|
|
|
|
const float NEAR_ZERO = 0.01f;
|
|
|
|
float sideswitch = keepfront ? 1 : -1;
|
|
|
|
WallPolygon newp = new WallPolygon(poly.Count);
|
|
|
|
poly.CopyProperties(newp);
|
|
|
|
|
|
|
|
if(poly.Count > 0)
|
|
|
|
{
|
|
|
|
// First split lines that cross the plane so that we have vertices on the plane where the lines cross
|
|
|
|
Vector3D v1 = poly[poly.Count - 1];
|
|
|
|
float side1 = p.Distance(v1) * sideswitch;
|
|
|
|
for(int i = 0; i < poly.Count; i++)
|
|
|
|
{
|
|
|
|
// Fetch vertex and determine side
|
|
|
|
Vector3D v2 = poly[i];
|
|
|
|
float side2 = p.Distance(v2) * sideswitch;
|
|
|
|
|
|
|
|
// Front?
|
|
|
|
if(side2 > NEAR_ZERO)
|
|
|
|
{
|
|
|
|
if(side1 < -NEAR_ZERO)
|
|
|
|
{
|
|
|
|
// Split line with plane and insert the vertex
|
|
|
|
float u = 0.0f;
|
|
|
|
p.GetIntersection(v1, v2, ref u);
|
|
|
|
Vector3D v3 = v1 + (v2 - v1) * u;
|
|
|
|
newp.Add(v3);
|
|
|
|
}
|
|
|
|
|
|
|
|
newp.Add(v2);
|
|
|
|
}
|
|
|
|
// Back?
|
|
|
|
else if(side2 < -NEAR_ZERO)
|
|
|
|
{
|
|
|
|
if(side1 > NEAR_ZERO)
|
|
|
|
{
|
|
|
|
// Split line with plane and insert the vertex
|
|
|
|
float u = 0.0f;
|
|
|
|
p.GetIntersection(v1, v2, ref u);
|
|
|
|
Vector3D v3 = v1 + (v2 - v1) * u;
|
|
|
|
newp.Add(v3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// On the plane
|
|
|
|
newp.Add(v2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next
|
|
|
|
v1 = v2;
|
|
|
|
side1 = side2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
poly = newp;
|
|
|
|
}
|
|
|
|
|
|
|
|
//mxd
|
|
|
|
protected float getRoundedTextureOffset(float oldValue, float offset, float scale) {
|
|
|
|
if(offset == 0f) return oldValue;
|
|
|
|
float result = (float)Math.Round(oldValue + (offset * scale));
|
|
|
|
if (result == oldValue) result += 1f * (offset < 0 ? -1 : 1);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Events
|
|
|
|
|
|
|
|
// Unused
|
|
|
|
public virtual void OnEditBegin() { }
|
|
|
|
protected virtual void SetTexture(string texturename) { }
|
|
|
|
public abstract bool Setup();
|
2012-11-27 21:12:20 +00:00
|
|
|
protected abstract void SetTextureOffsetX(int x);
|
|
|
|
protected abstract void SetTextureOffsetY(int y);
|
|
|
|
protected abstract void MoveTextureOffset(Point xy);
|
|
|
|
protected abstract Point GetTextureOffset();
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Insert middle texture
|
|
|
|
public virtual void OnInsert()
|
|
|
|
{
|
|
|
|
// No middle texture yet?
|
|
|
|
if(!Sidedef.MiddleRequired() && (string.IsNullOrEmpty(Sidedef.MiddleTexture) || (Sidedef.MiddleTexture[0] == '-')))
|
|
|
|
{
|
|
|
|
// Make it now
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Create middle texture");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Created middle texture.");
|
2009-04-19 18:07:22 +00:00
|
|
|
General.Settings.FindDefaultDrawSettings();
|
|
|
|
Sidedef.SetTextureMid(General.Settings.DefaultTexture);
|
|
|
|
|
|
|
|
// Update
|
2009-05-01 20:31:17 +00:00
|
|
|
Sector.Changed = true;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Other side as well
|
|
|
|
if(string.IsNullOrEmpty(Sidedef.Other.MiddleTexture) || (Sidedef.Other.MiddleTexture[0] == '-'))
|
|
|
|
{
|
|
|
|
Sidedef.Other.SetTextureMid(General.Settings.DefaultTexture);
|
|
|
|
|
|
|
|
// Update
|
|
|
|
VisualSector othersector = mode.GetVisualSector(Sidedef.Other.Sector);
|
2009-05-01 20:31:17 +00:00
|
|
|
if(othersector is BaseVisualSector) (othersector as BaseVisualSector).Changed = true;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete texture
|
|
|
|
public virtual void OnDelete()
|
|
|
|
{
|
|
|
|
// Remove texture
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Delete texture");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Deleted a texture.");
|
2009-04-19 18:07:22 +00:00
|
|
|
SetTexture("-");
|
|
|
|
|
|
|
|
// Update
|
2009-05-01 20:31:17 +00:00
|
|
|
Sector.Changed = true;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Processing
|
2012-07-12 22:34:12 +00:00
|
|
|
public virtual void OnProcess(float deltatime)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
|
|
|
// If the texture was not loaded, but is loaded now, then re-setup geometry
|
|
|
|
if(setuponloadedtexture != 0)
|
|
|
|
{
|
|
|
|
ImageData t = General.Map.Data.GetTextureImage(setuponloadedtexture);
|
|
|
|
if(t != null)
|
|
|
|
{
|
|
|
|
if(t.IsImageLoaded)
|
|
|
|
{
|
|
|
|
setuponloadedtexture = 0;
|
|
|
|
Setup();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change target height
|
|
|
|
public virtual void OnChangeTargetHeight(int amount)
|
|
|
|
{
|
|
|
|
switch(BuilderPlug.Me.ChangeHeightBySidedef)
|
|
|
|
{
|
|
|
|
// Change ceiling
|
|
|
|
case 1:
|
2009-05-03 19:22:32 +00:00
|
|
|
if(!this.Sector.Ceiling.Changed)
|
|
|
|
this.Sector.Ceiling.OnChangeTargetHeight(amount);
|
2009-04-19 18:07:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
// Change floor
|
|
|
|
case 2:
|
2009-05-03 19:22:32 +00:00
|
|
|
if(!this.Sector.Floor.Changed)
|
|
|
|
this.Sector.Floor.OnChangeTargetHeight(amount);
|
2009-04-19 18:07:22 +00:00
|
|
|
break;
|
2009-05-05 11:26:50 +00:00
|
|
|
|
|
|
|
// Change both
|
|
|
|
case 3:
|
|
|
|
if(!this.Sector.Floor.Changed)
|
|
|
|
this.Sector.Floor.OnChangeTargetHeight(amount);
|
|
|
|
if(!this.Sector.Ceiling.Changed)
|
|
|
|
this.Sector.Ceiling.OnChangeTargetHeight(amount);
|
|
|
|
break;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset texture offsets
|
|
|
|
public virtual void OnResetTextureOffset()
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Reset texture offsets");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Texture offsets reset.");
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Apply offsets
|
2012-11-27 21:12:20 +00:00
|
|
|
SetTextureOffsetX(0);
|
|
|
|
SetTextureOffsetY(0);
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Update sidedef geometry
|
|
|
|
VisualSidedefParts parts = Sector.GetSidedefParts(Sidedef);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Toggle upper-unpegged
|
|
|
|
public virtual void OnToggleUpperUnpegged()
|
|
|
|
{
|
2009-06-11 21:21:20 +00:00
|
|
|
if(this.Sidedef.Line.IsFlagSet(General.Map.Config.UpperUnpeggedFlag))
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
|
|
|
// Remove flag
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.ApplyUpperUnpegged(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add flag
|
|
|
|
mode.ApplyUpperUnpegged(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Toggle lower-unpegged
|
|
|
|
public virtual void OnToggleLowerUnpegged()
|
|
|
|
{
|
2009-06-11 21:21:20 +00:00
|
|
|
if(this.Sidedef.Line.IsFlagSet(General.Map.Config.LowerUnpeggedFlag))
|
2009-05-03 19:22:32 +00:00
|
|
|
{
|
|
|
|
// Remove flag
|
|
|
|
mode.ApplyLowerUnpegged(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add flag
|
|
|
|
mode.ApplyLowerUnpegged(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This sets the Upper Unpegged flag
|
|
|
|
public virtual void ApplyUpperUnpegged(bool set)
|
|
|
|
{
|
|
|
|
if(!set)
|
|
|
|
{
|
|
|
|
// Remove flag
|
|
|
|
mode.CreateUndo("Remove upper-unpegged setting");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Removed upper-unpegged setting.");
|
2009-06-11 21:21:20 +00:00
|
|
|
this.Sidedef.Line.SetFlag(General.Map.Config.UpperUnpeggedFlag, false);
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add flag
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Set upper-unpegged setting");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Set upper-unpegged setting.");
|
2009-06-11 21:21:20 +00:00
|
|
|
this.Sidedef.Line.SetFlag(General.Map.Config.UpperUnpeggedFlag, true);
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2009-05-03 19:22:32 +00:00
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Update sidedef geometry
|
|
|
|
VisualSidedefParts parts = Sector.GetSidedefParts(Sidedef);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
|
|
|
|
2009-04-27 17:32:23 +00:00
|
|
|
// Update other sidedef geometry
|
|
|
|
if(Sidedef.Other != null)
|
|
|
|
{
|
|
|
|
BaseVisualSector othersector = (BaseVisualSector)mode.GetVisualSector(Sidedef.Other.Sector);
|
|
|
|
parts = othersector.GetSidedefParts(Sidedef.Other);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-27 17:32:23 +00:00
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2009-05-03 19:22:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
// This sets the Lower Unpegged flag
|
|
|
|
public virtual void ApplyLowerUnpegged(bool set)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
if(!set)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
|
|
|
// Remove flag
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Remove lower-unpegged setting");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Removed lower-unpegged setting.");
|
2009-06-11 21:21:20 +00:00
|
|
|
this.Sidedef.Line.SetFlag(General.Map.Config.LowerUnpeggedFlag, false);
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add flag
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Set lower-unpegged setting");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Set lower-unpegged setting.");
|
2009-06-11 21:21:20 +00:00
|
|
|
this.Sidedef.Line.SetFlag(General.Map.Config.LowerUnpeggedFlag, true);
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2009-05-03 19:22:32 +00:00
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Update sidedef geometry
|
|
|
|
VisualSidedefParts parts = Sector.GetSidedefParts(Sidedef);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-27 17:32:23 +00:00
|
|
|
|
|
|
|
// Update other sidedef geometry
|
|
|
|
if(Sidedef.Other != null)
|
|
|
|
{
|
|
|
|
BaseVisualSector othersector = (BaseVisualSector)mode.GetVisualSector(Sidedef.Other.Sector);
|
|
|
|
parts = othersector.GetSidedefParts(Sidedef.Other);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-27 17:32:23 +00:00
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
2009-05-03 19:22:32 +00:00
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Flood-fill textures
|
|
|
|
public virtual void OnTextureFloodfill()
|
|
|
|
{
|
|
|
|
if(BuilderPlug.Me.CopiedTexture != null)
|
|
|
|
{
|
|
|
|
string oldtexture = GetTextureName();
|
|
|
|
long oldtexturelong = Lump.MakeLongName(oldtexture);
|
|
|
|
string newtexture = BuilderPlug.Me.CopiedTexture;
|
|
|
|
if(newtexture != oldtexture)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Flood-fill textures with " + newtexture);
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Flood-filled textures with " + newtexture + ".");
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
mode.Renderer.SetCrosshairBusy(true);
|
|
|
|
General.Interface.RedrawDisplay();
|
|
|
|
|
|
|
|
// Get the texture
|
|
|
|
ImageData newtextureimage = General.Map.Data.GetTextureImage(newtexture);
|
|
|
|
if(newtextureimage != null)
|
|
|
|
{
|
2009-06-12 09:44:38 +00:00
|
|
|
if(mode.IsSingleSelection)
|
|
|
|
{
|
|
|
|
// Clear all marks, this will align everything it can
|
|
|
|
General.Map.Map.ClearMarkedSidedefs(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Limit the alignment to selection only
|
|
|
|
General.Map.Map.ClearMarkedSidedefs(true);
|
|
|
|
List<Sidedef> sides = mode.GetSelectedSidedefs();
|
|
|
|
foreach(Sidedef sd in sides) sd.Marked = false;
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Do the alignment
|
2009-06-12 09:44:38 +00:00
|
|
|
Tools.FloodfillTextures(this.Sidedef, oldtexturelong, newtextureimage, false);
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Get the changed sidedefs
|
|
|
|
List<Sidedef> changes = General.Map.Map.GetMarkedSidedefs(true);
|
|
|
|
foreach(Sidedef sd in changes)
|
|
|
|
{
|
|
|
|
// Update the parts for this sidedef!
|
|
|
|
if(mode.VisualSectorExists(sd.Sector))
|
|
|
|
{
|
|
|
|
BaseVisualSector vs = (mode.GetVisualSector(sd.Sector) as BaseVisualSector);
|
|
|
|
VisualSidedefParts parts = vs.GetSidedefParts(sd);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
General.Map.Data.UpdateUsedTextures();
|
|
|
|
mode.Renderer.SetCrosshairBusy(false);
|
|
|
|
mode.ShowTargetInfo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Auto-align texture X offsets
|
|
|
|
public virtual void OnTextureAlign(bool alignx, bool aligny)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Auto-align textures");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Auto-aligned textures.");
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Make sure the texture is loaded (we need the texture size)
|
|
|
|
if(!base.Texture.IsImageLoaded) base.Texture.LoadImage();
|
|
|
|
|
2009-06-12 09:44:38 +00:00
|
|
|
if(mode.IsSingleSelection)
|
|
|
|
{
|
|
|
|
// Clear all marks, this will align everything it can
|
|
|
|
General.Map.Map.ClearMarkedSidedefs(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Limit the alignment to selection only
|
|
|
|
General.Map.Map.ClearMarkedSidedefs(true);
|
|
|
|
List<Sidedef> sides = mode.GetSelectedSidedefs();
|
|
|
|
foreach(Sidedef sd in sides) sd.Marked = false;
|
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
SidedefPart part;
|
|
|
|
if(this is VisualLower)
|
|
|
|
part = SidedefPart.Lower;
|
|
|
|
else if(this is VisualUpper)
|
|
|
|
part = SidedefPart.Upper;
|
|
|
|
else
|
|
|
|
part = SidedefPart.Middle;
|
2009-06-12 09:44:38 +00:00
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Do the alignment
|
2012-11-27 21:12:20 +00:00
|
|
|
Tools.AutoAlignTextures(this.Sidedef, part, base.Texture, alignx, aligny, false);
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Get the changed sidedefs
|
|
|
|
List<Sidedef> changes = General.Map.Map.GetMarkedSidedefs(true);
|
|
|
|
foreach(Sidedef sd in changes)
|
|
|
|
{
|
|
|
|
// Update the parts for this sidedef!
|
|
|
|
if(mode.VisualSectorExists(sd.Sector))
|
|
|
|
{
|
|
|
|
BaseVisualSector vs = (mode.GetVisualSector(sd.Sector) as BaseVisualSector);
|
|
|
|
VisualSidedefParts parts = vs.GetSidedefParts(sd);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select texture
|
|
|
|
public virtual void OnSelectTexture()
|
|
|
|
{
|
|
|
|
if(General.Interface.IsActiveWindow)
|
|
|
|
{
|
|
|
|
string oldtexture = GetTextureName();
|
|
|
|
string newtexture = General.Interface.BrowseTexture(General.Interface, oldtexture);
|
|
|
|
if(newtexture != oldtexture)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.ApplySelectTexture(newtexture, false);
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-05-03 19:22:32 +00:00
|
|
|
|
|
|
|
// Apply Texture
|
|
|
|
public virtual void ApplyTexture(string texture)
|
|
|
|
{
|
|
|
|
mode.CreateUndo("Change texture " + texture);
|
|
|
|
SetTexture(texture);
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Paste texture
|
|
|
|
public virtual void OnPasteTexture()
|
|
|
|
{
|
|
|
|
if(BuilderPlug.Me.CopiedTexture != null)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Paste texture " + BuilderPlug.Me.CopiedTexture);
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Pasted texture " + BuilderPlug.Me.CopiedTexture + ".");
|
2009-04-19 18:07:22 +00:00
|
|
|
SetTexture(BuilderPlug.Me.CopiedTexture);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paste texture offsets
|
|
|
|
public virtual void OnPasteTextureOffsets()
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Paste texture offsets");
|
2012-11-27 21:12:20 +00:00
|
|
|
SetTextureOffsetX(BuilderPlug.Me.CopiedOffsets.X);
|
|
|
|
SetTextureOffsetY(BuilderPlug.Me.CopiedOffsets.Y);
|
|
|
|
mode.SetActionResult("Pasted texture offsets " + BuilderPlug.Me.CopiedOffsets.X + ", " + BuilderPlug.Me.CopiedOffsets.Y + ".");
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Update sidedef geometry
|
|
|
|
VisualSidedefParts parts = Sector.GetSidedefParts(Sidedef);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy texture
|
|
|
|
public virtual void OnCopyTexture()
|
|
|
|
{
|
|
|
|
BuilderPlug.Me.CopiedTexture = GetTextureName();
|
|
|
|
if(General.Map.Config.MixTexturesFlats) BuilderPlug.Me.CopiedFlat = GetTextureName();
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Copied texture " + GetTextureName() + ".");
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy texture offsets
|
|
|
|
public virtual void OnCopyTextureOffsets()
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
BuilderPlug.Me.CopiedOffsets = GetTextureOffset();
|
|
|
|
mode.SetActionResult("Copied texture offsets " + BuilderPlug.Me.CopiedOffsets.X + ", " + BuilderPlug.Me.CopiedOffsets.Y + ".");
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy properties
|
|
|
|
public virtual void OnCopyProperties()
|
|
|
|
{
|
|
|
|
BuilderPlug.Me.CopiedSidedefProps = new SidedefProperties(Sidedef);
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Copied sidedef properties.");
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Paste properties
|
|
|
|
public virtual void OnPasteProperties()
|
|
|
|
{
|
|
|
|
if(BuilderPlug.Me.CopiedSidedefProps != null)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Paste sidedef properties");
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Pasted sidedef properties.");
|
2009-04-19 18:07:22 +00:00
|
|
|
BuilderPlug.Me.CopiedSidedefProps.Apply(Sidedef);
|
|
|
|
|
|
|
|
// Update sectors on both sides
|
|
|
|
BaseVisualSector front = (BaseVisualSector)mode.GetVisualSector(Sidedef.Sector);
|
2009-05-01 20:31:17 +00:00
|
|
|
if(front != null) front.Changed = true;
|
2009-04-19 18:07:22 +00:00
|
|
|
if(Sidedef.Other != null)
|
|
|
|
{
|
|
|
|
BaseVisualSector back = (BaseVisualSector)mode.GetVisualSector(Sidedef.Other.Sector);
|
2009-05-01 20:31:17 +00:00
|
|
|
if(back != null) back.Changed = true;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
mode.ShowTargetInfo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return texture name
|
|
|
|
public virtual string GetTextureName() { return ""; }
|
|
|
|
|
|
|
|
// Select button pressed
|
|
|
|
public virtual void OnSelectBegin()
|
|
|
|
{
|
2009-05-05 09:50:23 +00:00
|
|
|
mode.LockTarget();
|
2009-04-19 18:07:22 +00:00
|
|
|
dragstartanglexy = General.Map.VisualCamera.AngleXY;
|
|
|
|
dragstartanglez = General.Map.VisualCamera.AngleZ;
|
|
|
|
dragorigin = pickintersect;
|
2012-11-27 21:12:20 +00:00
|
|
|
startoffsetx = GetTextureOffset().X;
|
|
|
|
startoffsety = GetTextureOffset().Y;
|
|
|
|
prevoffsetx = GetTextureOffset().X;
|
|
|
|
prevoffsety = GetTextureOffset().Y;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Select button released
|
|
|
|
public virtual void OnSelectEnd()
|
|
|
|
{
|
2009-05-05 09:50:23 +00:00
|
|
|
mode.UnlockTarget();
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Was dragging?
|
|
|
|
if(uvdragging)
|
|
|
|
{
|
|
|
|
// Dragging stops now
|
|
|
|
uvdragging = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Add/remove selection
|
2009-07-07 11:29:56 +00:00
|
|
|
if(this.selected)
|
|
|
|
{
|
|
|
|
this.selected = false;
|
|
|
|
mode.RemoveSelectedObject(this);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.selected = true;
|
|
|
|
mode.AddSelectedObject(this);
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Edit button released
|
|
|
|
public virtual void OnEditEnd()
|
|
|
|
{
|
2010-08-14 18:07:38 +00:00
|
|
|
if(General.Interface.IsActiveWindow)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2010-08-14 18:07:38 +00:00
|
|
|
List<Linedef> linedefs = mode.GetSelectedLinedefs();
|
|
|
|
DialogResult result = General.Interface.ShowEditLinedefs(linedefs);
|
|
|
|
if(result == DialogResult.OK)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2010-08-14 18:07:38 +00:00
|
|
|
foreach(Linedef l in linedefs)
|
2009-05-03 19:22:32 +00:00
|
|
|
{
|
2010-08-14 18:07:38 +00:00
|
|
|
if(l.Front != null)
|
2009-05-03 19:22:32 +00:00
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
if(mode.VisualSectorExists(l.Front.Sector))
|
|
|
|
{
|
|
|
|
BaseVisualSector vs = (BaseVisualSector)mode.GetVisualSector(l.Front.Sector);
|
|
|
|
vs.UpdateSectorGeometry(false);
|
|
|
|
}
|
2010-08-14 18:07:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(l.Back != null)
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
if(mode.VisualSectorExists(l.Back.Sector))
|
|
|
|
{
|
|
|
|
BaseVisualSector vs = (BaseVisualSector)mode.GetVisualSector(l.Back.Sector);
|
|
|
|
vs.UpdateSectorGeometry(false);
|
|
|
|
}
|
2009-05-03 19:22:32 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
mode.RebuildElementData();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse moves
|
|
|
|
public virtual void OnMouseMove(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
// Dragging UV?
|
|
|
|
if(uvdragging)
|
|
|
|
{
|
|
|
|
UpdateDragUV();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Select button pressed?
|
|
|
|
if(General.Actions.CheckActionActive(General.ThisAssembly, "visualselect"))
|
|
|
|
{
|
|
|
|
// Check if tolerance is exceeded to start UV dragging
|
|
|
|
float deltaxy = General.Map.VisualCamera.AngleXY - dragstartanglexy;
|
|
|
|
float deltaz = General.Map.VisualCamera.AngleZ - dragstartanglez;
|
|
|
|
if((Math.Abs(deltaxy) + Math.Abs(deltaz)) > DRAG_ANGLE_TOLERANCE)
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
mode.PreAction(UndoGroup.TextureOffsetChange);
|
|
|
|
mode.CreateUndo("Change texture offsets");
|
|
|
|
|
|
|
|
// Start drag now
|
|
|
|
uvdragging = true;
|
|
|
|
mode.Renderer.ShowSelection = false;
|
|
|
|
mode.Renderer.ShowHighlight = false;
|
|
|
|
UpdateDragUV();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is called to update UV dragging
|
|
|
|
protected virtual void UpdateDragUV()
|
|
|
|
{
|
|
|
|
float u_ray;
|
|
|
|
|
|
|
|
// Calculate intersection position
|
|
|
|
Line2D ray = new Line2D(General.Map.VisualCamera.Position, General.Map.VisualCamera.Target);
|
|
|
|
Sidedef.Line.Line.GetIntersection(ray, out u_ray);
|
|
|
|
Vector3D intersect = General.Map.VisualCamera.Position + (General.Map.VisualCamera.Target - General.Map.VisualCamera.Position) * u_ray;
|
|
|
|
|
|
|
|
// Calculate offsets
|
|
|
|
Vector3D dragdelta = intersect - dragorigin;
|
|
|
|
Vector3D dragdeltaxy = dragdelta * deltaxy;
|
|
|
|
Vector3D dragdeltaz = dragdelta * deltaz;
|
|
|
|
float offsetx = dragdeltaxy.GetLength();
|
|
|
|
float offsety = dragdeltaz.GetLength();
|
|
|
|
if((Math.Sign(dragdeltaxy.x) < 0) || (Math.Sign(dragdeltaxy.y) < 0) || (Math.Sign(dragdeltaxy.z) < 0)) offsetx = -offsetx;
|
|
|
|
if((Math.Sign(dragdeltaz.x) < 0) || (Math.Sign(dragdeltaz.y) < 0) || (Math.Sign(dragdeltaz.z) < 0)) offsety = -offsety;
|
|
|
|
|
|
|
|
// Apply offsets
|
2009-05-03 19:22:32 +00:00
|
|
|
int newoffsetx = startoffsetx - (int)Math.Round(offsetx);
|
|
|
|
int newoffsety = startoffsety + (int)Math.Round(offsety);
|
|
|
|
mode.ApplyTextureOffsetChange(prevoffsetx - newoffsetx, prevoffsety - newoffsety);
|
|
|
|
prevoffsetx = newoffsetx;
|
|
|
|
prevoffsety = newoffsety;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
mode.ShowTargetInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sector brightness change
|
|
|
|
public virtual void OnChangeTargetBrightness(bool up)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
if(!Sector.Changed)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
// Change brightness
|
|
|
|
mode.CreateUndo("Change sector brightness", UndoGroup.SectorBrightnessChange, Sector.Sector.FixedIndex);
|
|
|
|
|
|
|
|
if(up)
|
|
|
|
Sector.Sector.Brightness = General.Map.Config.BrightnessLevels.GetNextHigher(Sector.Sector.Brightness);
|
|
|
|
else
|
|
|
|
Sector.Sector.Brightness = General.Map.Config.BrightnessLevels.GetNextLower(Sector.Sector.Brightness);
|
|
|
|
|
|
|
|
mode.SetActionResult("Changed sector brightness to " + Sector.Sector.Brightness + ".");
|
|
|
|
|
|
|
|
Sector.Sector.UpdateCache();
|
|
|
|
|
|
|
|
// Rebuild sector
|
2012-11-27 21:12:20 +00:00
|
|
|
Sector.UpdateSectorGeometry(false);
|
2009-05-03 19:22:32 +00:00
|
|
|
|
|
|
|
// Go for all things in this sector
|
|
|
|
foreach(Thing t in General.Map.Map.Things)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
if(t.Sector == Sector.Sector)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
if(mode.VisualThingExists(t))
|
|
|
|
{
|
|
|
|
// Update thing
|
|
|
|
BaseVisualThing vt = (mode.GetVisualThing(t) as BaseVisualThing);
|
|
|
|
vt.Changed = true;
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Texture offset change
|
|
|
|
public virtual void OnChangeTextureOffset(int horizontal, int vertical)
|
|
|
|
{
|
|
|
|
if((General.Map.UndoRedo.NextUndo == null) || (General.Map.UndoRedo.NextUndo.TicketID != undoticket))
|
2009-05-03 19:22:32 +00:00
|
|
|
undoticket = mode.CreateUndo("Change texture offsets");
|
2009-04-19 18:07:22 +00:00
|
|
|
|
2012-11-27 21:12:20 +00:00
|
|
|
//mxd
|
|
|
|
if (General.Map.UDMF) {
|
|
|
|
// Apply UDMF offsets
|
|
|
|
MoveTextureOffset(new Point(-horizontal, -vertical));
|
|
|
|
Point p = GetTextureOffset();
|
|
|
|
mode.SetActionResult("Changed texture offsets to " + p.X + ", " + p.Y + ".");
|
|
|
|
} else {
|
|
|
|
// Apply classic offsets
|
|
|
|
Sidedef.OffsetX -= horizontal;
|
|
|
|
Sidedef.OffsetY -= vertical;
|
|
|
|
mode.SetActionResult("Changed texture offsets to " + Sidedef.OffsetX + ", " + Sidedef.OffsetY + ".");
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Update sidedef geometry
|
|
|
|
VisualSidedefParts parts = Sector.GetSidedefParts(Sidedef);
|
2009-05-03 19:22:32 +00:00
|
|
|
parts.SetupAllParts();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|