Sector Edit Form UDMF: fixed a bug where resetting a slope when the sectors doesn't have a slope resulted in a nonsensical sector height

This commit is contained in:
biwa 2021-04-09 19:48:38 +02:00
parent f1bf6a6803
commit 6b9565604d

View file

@ -1854,15 +1854,25 @@ namespace CodeImp.DoomBuilder.Windows
{
MakeUndo(); //mxd
Sector fs = General.GetByIndex(sectors, 0);
Plane p = new Plane(fs.CeilSlope, fs.CeilSlopeOffset);
if (fs.CeilSlope.IsNormalized())
{
fs.UpdateBBox();
Plane p = new Plane(fs.CeilSlope, fs.CeilSlopeOffset);
ceilingslopecontrol.SetOffset((int)Math.Round(p.GetZ(fs.BBox.X + fs.BBox.Width / 2, fs.BBox.Y + fs.BBox.Height / 2)), true);
}
else
ceilingslopecontrol.SetOffset(fs.CeilHeight, true);
foreach (Sector s in sectors)
{
if (s.CeilSlope.IsNormalized())
{
s.UpdateBBox();
p = new Plane(s.CeilSlope, s.CeilSlopeOffset);
Plane p = new Plane(s.CeilSlope, s.CeilSlopeOffset);
s.CeilHeight = (int)Math.Round(p.GetZ(s.BBox.X + s.BBox.Width / 2, s.BBox.Y + s.BBox.Height / 2));
}
s.CeilSlope = new Vector3D();
s.CeilSlopeOffset = double.NaN;
s.UpdateNeeded = true;
@ -1879,15 +1889,25 @@ namespace CodeImp.DoomBuilder.Windows
{
MakeUndo(); //mxd
Sector fs = General.GetByIndex(sectors, 0);
Plane p = new Plane(fs.FloorSlope, fs.FloorSlopeOffset);
if (fs.FloorSlope.IsNormalized())
{
fs.UpdateBBox();
Plane p = new Plane(fs.FloorSlope, fs.FloorSlopeOffset);
floorslopecontrol.SetOffset((int)Math.Round(p.GetZ(fs.BBox.X + fs.BBox.Width / 2, fs.BBox.Y + fs.BBox.Height / 2)), true);
}
else
floorslopecontrol.SetOffset(fs.FloorHeight, true);
foreach (Sector s in sectors)
{
if (s.FloorSlope.IsNormalized())
{
s.UpdateBBox();
p = new Plane(s.FloorSlope, s.FloorSlopeOffset);
Plane p = new Plane(s.FloorSlope, s.FloorSlopeOffset);
s.FloorHeight = (int)Math.Round(p.GetZ(s.BBox.X + s.BBox.Width / 2, s.BBox.Y + s.BBox.Height / 2));
}
s.FloorSlope = new Vector3D();
s.FloorSlopeOffset = double.NaN;
s.UpdateNeeded = true;