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.Generic;
|
2012-11-27 21:12:20 +00:00
|
|
|
using System.Collections.ObjectModel;
|
2009-04-19 18:07:22 +00:00
|
|
|
using System.Drawing;
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
2012-11-27 21:12:20 +00:00
|
|
|
using CodeImp.DoomBuilder.Types;
|
2009-04-19 18:07:22 +00:00
|
|
|
using CodeImp.DoomBuilder.VisualModes;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
{
|
|
|
|
internal sealed class VisualCeiling : BaseVisualGeometrySector
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
2013-03-18 13:52:27 +00:00
|
|
|
public bool innerSide; //mxd
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Setup
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public VisualCeiling(BaseVisualMode mode, VisualSector vs) : base(mode, vs)
|
|
|
|
{
|
2012-06-26 08:54:25 +00:00
|
|
|
//mxd
|
|
|
|
geoType = VisualGeometryType.CEILING;
|
2013-03-18 13:52:27 +00:00
|
|
|
|
|
|
|
//mxd
|
|
|
|
if(mode.UseSelectionFromClassicMode && vs != null && vs.Sector.Selected && (General.Map.ViewMode == ViewMode.CeilingTextures || General.Map.ViewMode == ViewMode.Normal)) {
|
|
|
|
this.selected = true;
|
|
|
|
mode.AddSelectedObject(this);
|
|
|
|
}
|
2012-06-26 08:54:25 +00:00
|
|
|
|
|
|
|
// We have no destructor
|
2009-04-19 18:07:22 +00:00
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This builds the geometry. Returns false when no geometry created.
|
2013-03-18 13:52:27 +00:00
|
|
|
public override bool Setup(SectorLevel level, Effect3DFloor extrafloor) {
|
|
|
|
return Setup(level, extrafloor, innerSide);
|
|
|
|
}
|
|
|
|
|
|
|
|
//mxd
|
|
|
|
public bool Setup(SectorLevel level, Effect3DFloor extrafloor, bool innerSide)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
|
|
|
WorldVertex[] verts;
|
2012-11-27 21:12:20 +00:00
|
|
|
Sector s = level.sector;
|
|
|
|
Vector2D texscale;
|
2013-03-18 13:52:27 +00:00
|
|
|
this.innerSide = innerSide; //mxd
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
base.Setup(level, extrafloor);
|
|
|
|
|
|
|
|
// Fetch ZDoom fields
|
|
|
|
float rotate = Angle2D.DegToRad(s.Fields.GetValue("rotationceiling", 0.0f));
|
|
|
|
Vector2D offset = new Vector2D(s.Fields.GetValue("xpanningceiling", 0.0f),
|
|
|
|
s.Fields.GetValue("ypanningceiling", 0.0f));
|
|
|
|
Vector2D scale = new Vector2D(s.Fields.GetValue("xscaleceiling", 1.0f),
|
|
|
|
s.Fields.GetValue("yscaleceiling", 1.0f));
|
2009-04-19 18:07:22 +00:00
|
|
|
|
2013-03-18 13:52:27 +00:00
|
|
|
//Load ceiling texture
|
|
|
|
if((s.CeilTexture.Length > 0) && (s.CeilTexture[0] != '-')) {
|
|
|
|
base.Texture = General.Map.Data.GetFlatImage(s.LongCeilTexture);
|
|
|
|
if(base.Texture == null) {
|
|
|
|
base.Texture = General.Map.Data.MissingTexture3D;
|
2009-04-19 18:07:22 +00:00
|
|
|
setuponloadedtexture = s.LongCeilTexture;
|
2013-03-18 13:52:27 +00:00
|
|
|
} else {
|
|
|
|
if(!base.Texture.IsImageLoaded) {
|
|
|
|
setuponloadedtexture = s.LongCeilTexture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Use missing texture
|
|
|
|
base.Texture = General.Map.Data.MissingTexture3D;
|
|
|
|
setuponloadedtexture = 0;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
// Determine texture scale
|
|
|
|
if(base.Texture.IsImageLoaded)
|
|
|
|
texscale = new Vector2D(1.0f / base.Texture.ScaledWidth, 1.0f / base.Texture.ScaledHeight);
|
|
|
|
else
|
|
|
|
texscale = new Vector2D(1.0f / 64.0f, 1.0f / 64.0f);
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Make vertices
|
2012-11-27 21:12:20 +00:00
|
|
|
ReadOnlyCollection<Vector2D> triverts = base.Sector.Sector.Triangles.Vertices;
|
|
|
|
verts = new WorldVertex[triverts.Count];
|
|
|
|
for(int i = 0; i < triverts.Count; i++)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
// Color shading
|
|
|
|
PixelColor c = PixelColor.FromInt(level.color);
|
|
|
|
verts[i].c = c.WithAlpha((byte)General.Clamp(level.alpha, 0, 255)).ToInt();
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
// Vertex coordinates
|
2012-11-27 21:12:20 +00:00
|
|
|
verts[i].x = triverts[i].x;
|
|
|
|
verts[i].y = triverts[i].y;
|
2013-03-18 13:52:27 +00:00
|
|
|
verts[i].z = level.plane.GetZ(triverts[i]);
|
2009-04-19 18:07:22 +00:00
|
|
|
|
2012-11-27 21:12:20 +00:00
|
|
|
// Texture coordinates
|
|
|
|
Vector2D pos = triverts[i];
|
|
|
|
pos = pos.GetRotated(rotate);
|
|
|
|
pos.y = -pos.y;
|
|
|
|
pos = (pos + offset) * scale * texscale;
|
|
|
|
verts[i].u = pos.x;
|
|
|
|
verts[i].v = pos.y;
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// The sector triangulation created clockwise triangles that
|
|
|
|
// are right up for the floor. For the ceiling we must flip
|
|
|
|
// the triangles upside down.
|
2013-03-18 13:52:27 +00:00
|
|
|
if(extrafloor == null || extrafloor.VavoomType || innerSide)
|
2012-11-27 21:12:20 +00:00
|
|
|
SwapTriangleVertices(verts);
|
|
|
|
|
|
|
|
// Determine render pass
|
|
|
|
if(extrafloor != null)
|
|
|
|
{
|
2013-03-18 13:52:27 +00:00
|
|
|
if ((extrafloor.Linedef.Args[2] & (int)Effect3DFloor.Flags.RenderAdditive) != 0) //mxd
|
|
|
|
this.RenderPass = RenderPass.Additive;
|
|
|
|
else if (level.alpha < 255)
|
2012-11-27 21:12:20 +00:00
|
|
|
this.RenderPass = RenderPass.Alpha;
|
|
|
|
else
|
|
|
|
this.RenderPass = RenderPass.Mask;
|
|
|
|
}
|
|
|
|
else
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
this.RenderPass = RenderPass.Solid;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Apply vertices
|
|
|
|
base.SetVertices(verts);
|
|
|
|
return (verts.Length > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2012-11-27 21:12:20 +00:00
|
|
|
// Return texture coordinates
|
|
|
|
protected override Point GetTextureOffset()
|
|
|
|
{
|
|
|
|
Point p = new Point();
|
|
|
|
p.X = (int)Sector.Sector.Fields.GetValue("xpanningceiling", 0.0f);
|
|
|
|
p.Y = (int)Sector.Sector.Fields.GetValue("ypanningceiling", 0.0f);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move texture coordinates
|
|
|
|
protected override void MoveTextureOffset(Point xy)
|
|
|
|
{
|
|
|
|
//mxd
|
|
|
|
Sector s = GetControlSector();
|
|
|
|
s.Fields.BeforeFieldsChange();
|
|
|
|
float oldx = s.Fields.GetValue("xpanningceiling", 0.0f);
|
|
|
|
float oldy = s.Fields.GetValue("ypanningceiling", 0.0f);
|
|
|
|
s.Fields["xpanningceiling"] = new UniValue(UniversalType.Float, oldx + (float)xy.X);
|
|
|
|
s.Fields["ypanningceiling"] = new UniValue(UniversalType.Float, oldy + (float)xy.Y);
|
|
|
|
s.UpdateNeeded = true;
|
|
|
|
}
|
|
|
|
|
2013-04-16 12:52:40 +00:00
|
|
|
//mxd
|
|
|
|
public override void OnResetTextureOffset() {
|
|
|
|
if(!General.Map.UDMF) return;
|
|
|
|
|
|
|
|
mode.CreateUndo("Reset texture offsets");
|
|
|
|
mode.SetActionResult("Texture offsets reset.");
|
|
|
|
|
|
|
|
if(Sector.Sector.Fields.ContainsKey("xpanningceiling")) {
|
|
|
|
Sector.Sector.Fields.Remove("xpanningceiling");
|
|
|
|
Sector.Sector.UpdateNeeded = true;
|
|
|
|
}
|
|
|
|
if(Sector.Sector.Fields.ContainsKey("ypanningceiling")) {
|
|
|
|
Sector.Sector.Fields.Remove("ypanningceiling");
|
|
|
|
Sector.Sector.UpdateNeeded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Sector.Sector.UpdateNeeded)
|
|
|
|
Sector.UpdateSectorGeometry(false);
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// Paste texture
|
|
|
|
public override void OnPasteTexture()
|
|
|
|
{
|
|
|
|
if(BuilderPlug.Me.CopiedFlat != null)
|
|
|
|
{
|
2009-05-03 19:22:32 +00:00
|
|
|
mode.CreateUndo("Paste ceiling " + BuilderPlug.Me.CopiedFlat);
|
2009-05-02 14:59:05 +00:00
|
|
|
mode.SetActionResult("Pasted flat " + BuilderPlug.Me.CopiedFlat + " on ceiling.");
|
2009-04-19 18:07:22 +00:00
|
|
|
SetTexture(BuilderPlug.Me.CopiedFlat);
|
|
|
|
this.Setup();
|
2013-03-18 13:52:27 +00:00
|
|
|
|
|
|
|
//mxd. 3D floors may need updating...
|
|
|
|
onTextureChanged();
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
// Call to change the height
|
|
|
|
public override void OnChangeTargetHeight(int amount)
|
|
|
|
{
|
|
|
|
// Only do this when not done yet in this call
|
|
|
|
// Because we may be able to select the same 3D floor multiple times through multiple sectors
|
|
|
|
SectorData sd = mode.GetSectorData(level.sector);
|
|
|
|
if(!sd.CeilingChanged)
|
|
|
|
{
|
|
|
|
sd.CeilingChanged = true;
|
|
|
|
base.OnChangeTargetHeight(amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// This changes the height
|
|
|
|
protected override void ChangeHeight(int amount)
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
mode.CreateUndo("Change ceiling height", UndoGroup.CeilingHeightChange, level.sector.FixedIndex);
|
|
|
|
level.sector.CeilHeight += amount;
|
|
|
|
mode.SetActionResult("Changed ceiling height to " + level.sector.CeilHeight + ".");
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
//mxd. Sector brightness change
|
|
|
|
public override void OnChangeTargetBrightness(bool up) {
|
|
|
|
if (level != null && level.sector != Sector.Sector) {
|
|
|
|
int index = -1;
|
|
|
|
for (int i = 0; i < Sector.ExtraCeilings.Count; i++) {
|
|
|
|
if (Sector.ExtraCeilings[i] == this) {
|
|
|
|
index = i + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index > -1 && index < Sector.ExtraCeilings.Count) {
|
2013-03-18 13:52:27 +00:00
|
|
|
((BaseVisualSector)mode.GetVisualSector(Sector.ExtraCeilings[index].level.sector)).Floor.OnChangeTargetBrightness(up);
|
2012-11-27 21:12:20 +00:00
|
|
|
} else {
|
|
|
|
base.OnChangeTargetBrightness(up);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//if a map is not in UDMF format, or this ceiling is part of 3D-floor...
|
|
|
|
if(!General.Map.UDMF || Sector.Sector != level.sector) {
|
|
|
|
base.OnChangeTargetBrightness(up);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int light = Sector.Sector.Fields.GetValue("lightceiling", 0);
|
|
|
|
bool absolute = Sector.Sector.Fields.GetValue("lightceilingabsolute", false);
|
|
|
|
int newLight = 0;
|
|
|
|
|
|
|
|
if(up)
|
|
|
|
newLight = General.Map.Config.BrightnessLevels.GetNextHigher(light, absolute);
|
|
|
|
else
|
|
|
|
newLight = General.Map.Config.BrightnessLevels.GetNextLower(light, absolute);
|
|
|
|
|
|
|
|
if(newLight == light) return;
|
|
|
|
|
|
|
|
//create undo
|
|
|
|
mode.CreateUndo("Change ceiling brightness", UndoGroup.SurfaceBrightnessChange, Sector.Sector.FixedIndex);
|
|
|
|
Sector.Sector.Fields.BeforeFieldsChange();
|
|
|
|
|
|
|
|
//apply changes
|
|
|
|
Sector.Sector.Fields["lightceiling"] = new UniValue(UniversalType.Integer, newLight);
|
|
|
|
mode.SetActionResult("Changed ceiling brightness to " + newLight + ".");
|
|
|
|
Sector.Sector.UpdateCache();
|
|
|
|
|
|
|
|
//rebuild sector
|
|
|
|
Sector.UpdateSectorGeometry(false);
|
|
|
|
}
|
|
|
|
}
|
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)
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
// Check if our ray starts at the correct side of the plane
|
2013-03-18 13:52:27 +00:00
|
|
|
if((innerSide && level.plane.Distance(from) < 0.0f) || (!innerSide && level.plane.Distance(from) > 0.0f)) //mxd
|
|
|
|
//if(level.plane.Distance(from) > 0.0f)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
// Calculate the intersection
|
|
|
|
if(level.plane.GetIntersection(from, to, ref pickrayu))
|
|
|
|
{
|
|
|
|
if(pickrayu > 0.0f)
|
|
|
|
{
|
|
|
|
pickintersect = from + (to - from) * pickrayu;
|
|
|
|
|
|
|
|
// Intersection point within bbox?
|
|
|
|
RectangleF bbox = Sector.Sector.BBox;
|
|
|
|
return ((pickintersect.x >= bbox.Left) && (pickintersect.x <= bbox.Right) &&
|
|
|
|
(pickintersect.y >= bbox.Top) && (pickintersect.y <= bbox.Bottom));
|
|
|
|
}
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
2012-11-27 21:12:20 +00:00
|
|
|
|
|
|
|
return false;
|
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)
|
|
|
|
{
|
|
|
|
u_ray = pickrayu;
|
|
|
|
|
|
|
|
// Check on which side of the nearest sidedef we are
|
|
|
|
Sidedef sd = MapSet.NearestSidedef(Sector.Sector.Sidedefs, pickintersect);
|
|
|
|
float side = sd.Line.SideOfLine(pickintersect);
|
|
|
|
return (((side <= 0.0f) && sd.IsFront) || ((side > 0.0f) && !sd.IsFront));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return texture name
|
|
|
|
public override string GetTextureName()
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
return level.sector.CeilTexture;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This changes the texture
|
|
|
|
protected override void SetTexture(string texturename)
|
|
|
|
{
|
2012-11-27 21:12:20 +00:00
|
|
|
level.sector.SetCeilTexture(texturename);
|
2009-04-19 18:07:22 +00:00
|
|
|
General.Map.Data.UpdateUsedTextures();
|
|
|
|
}
|
2013-04-01 11:06:01 +00:00
|
|
|
|
|
|
|
//mxd
|
|
|
|
public override void SelectNeighbours(bool select, bool withSameTexture, bool withSameHeight) {
|
|
|
|
if(!withSameTexture && !withSameHeight) return;
|
|
|
|
|
|
|
|
if(select && !selected) {
|
|
|
|
selected = true;
|
|
|
|
mode.AddSelectedObject(this);
|
|
|
|
} else if(!select && selected) {
|
|
|
|
selected = false;
|
|
|
|
mode.RemoveSelectedObject(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Sector> neighbours = new List<Sector>();
|
|
|
|
|
|
|
|
//collect neighbour sectors
|
|
|
|
foreach(Sidedef side in level.sector.Sidedefs) {
|
|
|
|
if(side.Other != null && side.Other.Sector != level.sector && !neighbours.Contains(side.Other.Sector)) {
|
|
|
|
bool add = false;
|
|
|
|
|
|
|
|
if(withSameTexture && side.Other.Sector.CeilTexture == level.sector.CeilTexture) {
|
|
|
|
add = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(withSameHeight) {
|
|
|
|
add = ((withSameTexture && add) || !withSameTexture) && side.Other.Sector.CeilHeight == level.sector.CeilHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(add) neighbours.Add(side.Other.Sector);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//(de)select neighbour sectors
|
|
|
|
foreach(Sector s in neighbours) {
|
|
|
|
BaseVisualSector vs = mode.GetVisualSector(s) as BaseVisualSector;
|
|
|
|
if((select && !vs.Ceiling.Selected) || (!select && vs.Ceiling.Selected))
|
|
|
|
vs.Ceiling.SelectNeighbours(select, withSameTexture, withSameHeight);
|
|
|
|
}
|
|
|
|
}
|
2013-04-26 12:32:51 +00:00
|
|
|
|
|
|
|
//mxd
|
|
|
|
public void AlignTexture(bool alignx, bool aligny) {
|
|
|
|
if(!General.Map.UDMF) return;
|
|
|
|
|
|
|
|
float slopeAngle = level.plane.Normal.GetAngleZ() - Angle2D.PIHALF;
|
|
|
|
|
|
|
|
if(slopeAngle == 0) return; //it's a horizontal plane
|
|
|
|
|
|
|
|
//find slope source linedef
|
|
|
|
Linedef slopeSource = null;
|
|
|
|
bool isFront = false;
|
|
|
|
|
|
|
|
foreach(Sidedef side in Sector.Sector.Sidedefs) {
|
|
|
|
if(side.Line.Action == 181) {
|
|
|
|
if(side.Line.Args[1] == 1 && side.Line.Front != null && side.Line.Front == side) {
|
|
|
|
slopeSource = side.Line;
|
|
|
|
isFront = true;
|
|
|
|
break;
|
|
|
|
} else if(side.Line.Args[1] == 2 && side.Line.Back != null && side.Line.Back == side) {
|
|
|
|
slopeSource = side.Line;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(slopeSource == null) return;
|
|
|
|
|
|
|
|
Sector.Sector.Fields.BeforeFieldsChange();
|
|
|
|
|
|
|
|
//match rotation
|
|
|
|
float sourceAngle = (float)Math.Round(General.ClampAngle(isFront ? -Angle2D.RadToDeg(slopeSource.Angle) + 90 : -Angle2D.RadToDeg(slopeSource.Angle) - 90), 1);
|
|
|
|
|
|
|
|
if((isFront && slopeSource.Front.Sector.CeilHeight < slopeSource.Back.Sector.CeilHeight) ||
|
|
|
|
(!isFront && slopeSource.Front.Sector.CeilHeight > slopeSource.Back.Sector.CeilHeight)) {
|
|
|
|
sourceAngle = General.ClampAngle(sourceAngle + 180);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(sourceAngle != 0) {
|
|
|
|
if(!Sector.Sector.Fields.ContainsKey("rotationceiling"))
|
|
|
|
Sector.Sector.Fields.Add("rotationceiling", new UniValue(UniversalType.Float, sourceAngle));
|
|
|
|
else
|
|
|
|
Sector.Sector.Fields["rotationceiling"].Value = sourceAngle;
|
|
|
|
} else if(Sector.Sector.Fields.ContainsKey("rotationceiling")) {
|
|
|
|
Sector.Sector.Fields.Remove("rotationceiling");
|
|
|
|
}
|
|
|
|
|
|
|
|
//update scaleY
|
|
|
|
float scaleX = Sector.Sector.Fields.GetValue("xscaleceiling", 1.0f);
|
|
|
|
float scaleY = (float)Math.Round(scaleX * (1 / (float)Math.Cos(slopeAngle)), 2);
|
|
|
|
|
|
|
|
if(aligny) {
|
|
|
|
if(Sector.Sector.Fields.ContainsKey("yscaleceiling"))
|
|
|
|
Sector.Sector.Fields["yscaleceiling"].Value = scaleY;
|
|
|
|
else
|
|
|
|
Sector.Sector.Fields.Add("yscaleceiling", new UniValue(UniversalType.Float, scaleY));
|
|
|
|
}
|
|
|
|
|
|
|
|
//update texture offsets
|
|
|
|
Vector2D offset;
|
|
|
|
if((isFront && slopeSource.Front.Sector.CeilHeight > slopeSource.Back.Sector.CeilHeight) ||
|
|
|
|
(!isFront && slopeSource.Front.Sector.CeilHeight < slopeSource.Back.Sector.CeilHeight)) {
|
|
|
|
offset = slopeSource.End.Position;
|
|
|
|
} else {
|
|
|
|
offset = slopeSource.Start.Position;
|
|
|
|
}
|
|
|
|
|
|
|
|
offset = offset.GetRotated(Angle2D.DegToRad(sourceAngle));
|
|
|
|
|
|
|
|
if(alignx) {
|
|
|
|
if(Texture != null) offset.x %= Texture.Width / scaleX;
|
|
|
|
|
|
|
|
if(Sector.Sector.Fields.ContainsKey("xpanningceiling"))
|
|
|
|
Sector.Sector.Fields["xpanningceiling"].Value = (float)Math.Round(-offset.x);
|
|
|
|
else
|
|
|
|
Sector.Sector.Fields.Add("xpanningceiling", new UniValue(UniversalType.Float, (float)Math.Round(-offset.x)));
|
|
|
|
}
|
|
|
|
|
|
|
|
if(aligny) {
|
|
|
|
if(Texture != null) offset.y %= Texture.Height / scaleY;
|
|
|
|
|
|
|
|
if(Sector.Sector.Fields.ContainsKey("ypanningceiling"))
|
|
|
|
Sector.Sector.Fields["ypanningceiling"].Value = (float)Math.Round(offset.y);
|
|
|
|
else
|
|
|
|
Sector.Sector.Fields.Add("ypanningceiling", new UniValue(UniversalType.Float, (float)Math.Round(offset.y)));
|
|
|
|
}
|
|
|
|
|
|
|
|
//update geometry
|
|
|
|
Sector.UpdateSectorGeometry(false);
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|