mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
5ca3cd46cb
- added error dialog when missing DirectX
106 lines
2.8 KiB
C#
106 lines
2.8 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 SlimDX.Direct3D9;
|
|
using SlimDX;
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
using System.Drawing.Imaging;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Rendering
|
|
{
|
|
internal sealed class World3DShader : D3DShader
|
|
{
|
|
#region ================== Variables
|
|
|
|
// Property handlers
|
|
private EffectHandle texture1;
|
|
private EffectHandle worldviewproj;
|
|
|
|
#endregion
|
|
|
|
#region ================== Properties
|
|
|
|
public Matrix WorldViewProj { set { if(manager.Enabled) effect.SetValue(worldviewproj, value); } }
|
|
public Texture Texture1 { set { if(manager.Enabled) effect.SetValue(texture1, value); } }
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
// Constructor
|
|
public World3DShader(ShaderManager manager) : base(manager)
|
|
{
|
|
// Load effect from file
|
|
effect = LoadEffect("world3d.fx");
|
|
|
|
// Get the property handlers from effect
|
|
if(effect != null)
|
|
{
|
|
worldviewproj = effect.GetParameter(null, "worldviewproj");
|
|
texture1 = effect.GetParameter(null, "texture1");
|
|
}
|
|
|
|
// Initialize world vertex declaration
|
|
VertexElement[] elements = new VertexElement[]
|
|
{
|
|
new VertexElement(0, 0, DeclarationType.Float3, DeclarationMethod.Default, DeclarationUsage.Position, 0),
|
|
new VertexElement(0, 12, DeclarationType.Color, DeclarationMethod.Default, DeclarationUsage.Color, 0),
|
|
new VertexElement(0, 16, DeclarationType.Float2, DeclarationMethod.Default, DeclarationUsage.TextureCoordinate, 0),
|
|
VertexElement.VertexDeclarationEnd
|
|
};
|
|
vertexdecl = new VertexDeclaration(General.Map.Graphics.Device, elements);
|
|
|
|
// We have no destructor
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
// Disposer
|
|
public override void Dispose()
|
|
{
|
|
// Not already disposed?
|
|
if(!isdisposed)
|
|
{
|
|
// Clean up
|
|
if(texture1 != null) texture1.Dispose();
|
|
if(worldviewproj != null) worldviewproj.Dispose();
|
|
|
|
// Done
|
|
base.Dispose();
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|