mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-28 14:42:16 +00:00
140 lines
3.3 KiB
C#
140 lines
3.3 KiB
C#
|
|
||
|
#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 System.Drawing;
|
||
|
using System.ComponentModel;
|
||
|
using CodeImp.DoomBuilder.Map;
|
||
|
using CodeImp.DoomBuilder.Geometry;
|
||
|
using System.Drawing.Imaging;
|
||
|
using CodeImp.DoomBuilder.Data;
|
||
|
using CodeImp.DoomBuilder.Editing;
|
||
|
using CodeImp.DoomBuilder.IO;
|
||
|
using CodeImp.DoomBuilder.Rendering;
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
namespace CodeImp.DoomBuilder.BuilderModes.Editing
|
||
|
{
|
||
|
internal class VisualMiddle : VisualGeometry
|
||
|
{
|
||
|
#region ================== Constants
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ================== Variables
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ================== Properties
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ================== Constructor / Disposer
|
||
|
|
||
|
// Constructor
|
||
|
public VisualMiddle(Sidedef s)
|
||
|
{
|
||
|
WorldVertex[] verts;
|
||
|
float geotop;
|
||
|
float geobottom;
|
||
|
float geoheight;
|
||
|
bool texturegiven;
|
||
|
bool texturerequired;
|
||
|
Vector2D v1, v2;
|
||
|
|
||
|
// Calculate size of this wall part
|
||
|
geotop = (float)s.Sector.CeilHeight;
|
||
|
geobottom = (float)s.Sector.FloorHeight;
|
||
|
geoheight = geotop - geobottom;
|
||
|
if(geoheight > 0.001f)
|
||
|
{
|
||
|
// Check texture status
|
||
|
texturegiven = ((s.MiddleTexture.Length > 0) && (s.MiddleTexture[0] != '-'));
|
||
|
texturerequired = s.MiddleRequired();
|
||
|
|
||
|
// Only create wall when middle texture is set or the wall requires a texture
|
||
|
if(texturegiven || texturerequired)
|
||
|
{
|
||
|
// Texture given?
|
||
|
if(texturegiven)
|
||
|
{
|
||
|
// Load texture
|
||
|
base.Texture = General.Map.Data.GetTextureImage(s.LongMiddleTexture);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// Use missing texture
|
||
|
base.Texture = General.Map.Data.MissingTexture3D;
|
||
|
}
|
||
|
|
||
|
// Get coordinates
|
||
|
if(s.IsFront)
|
||
|
{
|
||
|
v1 = s.Line.Start.Position;
|
||
|
v2 = s.Line.End.Position;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
v1 = s.Line.End.Position;
|
||
|
v2 = s.Line.Start.Position;
|
||
|
}
|
||
|
|
||
|
// Make vertices
|
||
|
verts = new WorldVertex[6];
|
||
|
verts[0] = new WorldVertex(v1.x, v1.y, geobottom, -1, 0.0f, 1.0f);
|
||
|
verts[1] = new WorldVertex(v1.x, v1.y, geotop, -1, 0.0f, 0.0f);
|
||
|
verts[2] = new WorldVertex(v2.x, v2.y, geotop, -1, 1.0f, 0.0f);
|
||
|
verts[3] = verts[0];
|
||
|
verts[4] = verts[2];
|
||
|
verts[5] = new WorldVertex(v2.x, v2.y, geobottom, -1, 1.0f, 1.0f);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// No geometry for invisible wall
|
||
|
verts = new WorldVertex[0];
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// No geometry for invisible wall
|
||
|
verts = new WorldVertex[0];
|
||
|
}
|
||
|
|
||
|
// Apply vertices
|
||
|
base.SetVertices(verts);
|
||
|
|
||
|
// We have no destructor
|
||
|
GC.SuppressFinalize(this);
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
#region ================== Methods
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|