#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;
using CodeImp.DoomBuilder.Data;
using CodeImp.DoomBuilder.Geometry;
using CodeImp.DoomBuilder.GZBuilder.Data; //mxd
using CodeImp.DoomBuilder.Map;
using CodeImp.DoomBuilder.Rendering;
using SlimDX;
#endregion
namespace CodeImp.DoomBuilder.VisualModes
{
public abstract class VisualGeometry : IVisualPickable
{
#region ================== Constants
public const float FOG_DENSITY_SCALER = -1.442692f / 256000f; //-1.442692f / 64000f; //mxd
#endregion
#region ================== Variables
// Texture
private ImageData texture;
// Vertices
private WorldVertex[] vertices;
private int triangles;
// Selected?
protected bool selected;
// Elements that this geometry is bound to
// Only the sector is required, sidedef is only for walls
private VisualSector sector;
private Sidedef sidedef;
///
/// Absolute intersecting coordinates are set during object picking. This is not set if the geometry is not bound to a sidedef.
///
protected Vector3D pickintersect;
///
/// Distance unit along the object picking ray is set during object picking. (0.0 is at camera, 1.0f is at far plane) This is not set if the geometry is not bound to a sidedef.
///
protected float pickrayu;
// Rendering
private RenderPass renderpass = RenderPass.Solid;
protected float fogfactor;
// Sector buffer info
private int vertexoffset;
//mxd
private Vector3D[] boundingBox;
protected VisualGeometryType geometrytype;
protected string partname; //UDMF part name
protected bool renderassky;
#endregion
#region ================== Properties
// Internal properties
public WorldVertex[] Vertices { get { return vertices; } } //mxd
internal int VertexOffset { get { return vertexoffset; } set { vertexoffset = value; } }
public int Triangles { get { return triangles; } }
//mxd
public Vector3D[] BoundingBox { get { return boundingBox; } }
public VisualGeometryType GeometryType { get { return geometrytype; } }
public float FogFactor { get { return fogfactor; } set { fogfactor = value; } }
public bool RenderAsSky { get { return renderassky; } }
///
/// Render pass in which this geometry must be rendered. Default is Solid.
///
public RenderPass RenderPass { get { return renderpass; } set { renderpass = value; } }
///
/// Image to use as texture on this geometry.
///
public ImageData Texture { get { return texture; } set { texture = value; } }
///
/// Returns the VisualSector this geometry has been added to.
///
public VisualSector Sector { get { return sector; } internal set { sector = value; } }
///
/// Returns the Sidedef that this geometry is created for. Null for geometry that is sector-wide.
///
public Sidedef Sidedef { get { return sidedef; } }
///
/// Selected or not? This is only used by the core to determine what color to draw it with.
///
public bool Selected { get { return selected; } set { selected = value; } }
#endregion
#region ================== Constructor / Destructor
///
/// This creates sector-global visual geometry. This geometry is always visible when any of the sector is visible.
///
protected VisualGeometry(VisualSector vs)
{
this.sector = vs;
this.geometrytype = VisualGeometryType.UNKNOWN; //mxd
}
///
/// This creates visual geometry that is bound to a sidedef. This geometry is only visible when the sidedef is visible. It is automatically back-face culled during rendering and automatically XY intersection tested as well as back-face culled during object picking.
///
protected VisualGeometry(VisualSector vs, Sidedef sd)
{
this.sector = vs;
this.sidedef = sd;
this.geometrytype = VisualGeometryType.UNKNOWN; //mxd
}
#endregion
#region ================== Methods
// This sets the vertices for this geometry
protected void SetVertices(ICollection verts)
{
// Copy vertices
if(verts != null) //mxd
{
vertices = new WorldVertex[verts.Count];
verts.CopyTo(vertices, 0);
triangles = vertices.Length / 3;
CalculateNormals(); //mxd
PerformAutoSelection(); //mxd
}
else
{
vertices = null;
triangles = 0;
}
if(sector != null) sector.NeedsUpdateGeo = true;
}
//mxd. Normals calculation algorithm taken from OpenGl wiki
private void CalculateNormals()
{
if(triangles == 0) return;
BoundingBoxSizes bbs = new BoundingBoxSizes(vertices[0]);
for(int i = 0; i < triangles; i++)
{
int startindex = i * 3;
WorldVertex p1 = vertices[startindex];
WorldVertex p2 = vertices[startindex + 1];
WorldVertex p3 = vertices[startindex + 2];
Vector3 U = new Vector3(p2.x - p1.x, p2.y - p1.y, p2.z - p1.z);
Vector3 V = new Vector3(p3.x - p1.x, p3.y - p1.y, p3.z - p1.z);
p1.nx = p2.nx = p3.nx = -(U.Y * V.Z - U.Z * V.Y);
p1.ny = p2.ny = p3.ny = -(U.Z * V.X - U.X * V.Z);
p1.nz = p2.nz = p3.nz = -(U.X * V.Y - U.Y * V.X);
vertices[startindex] = p1;
vertices[startindex + 1] = p2;
vertices[startindex + 2] = p3;
BoundingBoxTools.UpdateBoundingBoxSizes(ref bbs, p1);
BoundingBoxTools.UpdateBoundingBoxSizes(ref bbs, p2);
BoundingBoxTools.UpdateBoundingBoxSizes(ref bbs, p3);
}
boundingBox = BoundingBoxTools.CalculateBoundingPlane(bbs);
}
//mxd. Calculate fogdistance
//TODO: this doesn't match any GZDoom light mode...
//GZDoom: gl_renderstate.h, SetFog();
//GZDoom: gl_lightlevel.cpp gl_SetFog();
protected float CalculateFogFactor(int brightness) { return CalculateFogFactor(Sector.Sector.FogMode, brightness); }
public static float CalculateFogFactor(SectorFogMode mode, int brightness)
{
float density;
switch (mode)
{
case SectorFogMode.OUTSIDEFOGDENSITY:
density = General.Map.Data.MapInfo.OutsideFogDensity;
break;
case SectorFogMode.FOGDENSITY:
density = General.Map.Data.MapInfo.FogDensity;
break;
case SectorFogMode.FADE:
density = General.Clamp(255 - brightness, 30, 255) * 4;
break;
case SectorFogMode.CLASSIC:
density = General.Clamp(255 - brightness, 30, 255);
break;
case SectorFogMode.NONE:
density = 0f;
break;
default: throw new NotImplementedException("Unknown SectorFogMode!");
}
return density * FOG_DENSITY_SCALER;
}
//mxd. Used to get proper sector from 3d-floors
public virtual Sector GetControlSector()
{
return sector.Sector;
}
//mxd. Used to get proper linedef from 3d-floors
public virtual Linedef GetControlLinedef()
{
return sidedef.Line;
}
// This keeps the results for a sidedef intersection
internal void SetPickResults(Vector3D intersect, float u)
{
this.pickintersect = intersect;
this.pickrayu = u;
}
///
/// This is called when the geometry must be tested for line intersection. This should reject
/// as fast as possible to rule out all geometry that certainly does not touch the line.
///
public virtual bool PickFastReject(Vector3D from, Vector3D to, Vector3D dir)
{
return false;
}
///
/// This is called when the geometry must be tested for line intersection. This should perform
/// accurate hit detection and set u_ray to the position on the ray where this hits the geometry.
///
public virtual bool PickAccurate(Vector3D from, Vector3D to, Vector3D dir, ref float u_ray)
{
return false;
}
//mxd
protected abstract void PerformAutoSelection();
#endregion
}
//mxd
public enum VisualGeometryType
{
FLOOR,
CEILING,
WALL_UPPER,
WALL_MIDDLE,
WALL_MIDDLE_3D,
WALL_LOWER,
FOG_BOUNDARY,
UNKNOWN,
}
}