2006-02-10 22:01:20 +00:00
|
|
|
/*
|
|
|
|
BobToolz plugin for GtkRadiant
|
|
|
|
Copyright (C) 2001 Gordon Biggans
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
// BobView.cpp: implementation of the DVisDrawer class.
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
#include "DVisDrawer.h"
|
|
|
|
|
|
|
|
#include "iglrender.h"
|
|
|
|
#include "math/matrix.h"
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
#include <list>
|
2006-02-10 22:01:20 +00:00
|
|
|
#include "str.h"
|
|
|
|
|
|
|
|
#include "DPoint.h"
|
|
|
|
#include "DWinding.h"
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
#include "funchandlers.h"
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Construction/Destruction
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DVisDrawer::DVisDrawer()
|
|
|
|
{
|
|
|
|
m_list = NULL;
|
2006-04-09 17:15:13 +00:00
|
|
|
|
|
|
|
constructShaders();
|
|
|
|
GlobalShaderCache().attachRenderable(*this);
|
2006-02-10 22:01:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DVisDrawer::~DVisDrawer()
|
|
|
|
{
|
2006-04-09 17:15:13 +00:00
|
|
|
GlobalShaderCache().detachRenderable(*this);
|
|
|
|
destroyShaders();
|
2006-02-10 22:01:20 +00:00
|
|
|
|
|
|
|
g_VisView = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Implementation
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
2006-04-09 17:15:13 +00:00
|
|
|
const char* g_state_solid = "$bobtoolz/visdrawer/solid";
|
|
|
|
const char* g_state_wireframe = "$bobtoolz/visdrawer/wireframe";
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
void DVisDrawer::constructShaders()
|
2006-02-10 22:01:20 +00:00
|
|
|
{
|
2006-04-09 17:15:13 +00:00
|
|
|
OpenGLState state;
|
|
|
|
GlobalOpenGLStateLibrary().getDefaultState(state);
|
|
|
|
state.m_state = RENDER_COLOURWRITE|RENDER_DEPTHWRITE|RENDER_COLOURCHANGE;
|
|
|
|
state.m_linewidth = 1;
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
GlobalOpenGLStateLibrary().insert(g_state_wireframe, state);
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
GlobalOpenGLStateLibrary().getDefaultState(state);
|
|
|
|
state.m_state = RENDER_FILL|RENDER_BLEND|RENDER_COLOURWRITE|RENDER_COLOURCHANGE|RENDER_SMOOTH|RENDER_DEPTHWRITE;
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
GlobalOpenGLStateLibrary().insert(g_state_solid, state);
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
m_shader_solid = GlobalShaderCache().capture(g_state_solid);
|
|
|
|
m_shader_wireframe = GlobalShaderCache().capture(g_state_wireframe);
|
|
|
|
}
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
void DVisDrawer::destroyShaders()
|
|
|
|
{
|
|
|
|
GlobalShaderCache().release(g_state_solid);
|
|
|
|
GlobalShaderCache().release(g_state_wireframe);
|
|
|
|
GlobalOpenGLStateLibrary().erase(g_state_solid);
|
|
|
|
GlobalOpenGLStateLibrary().erase(g_state_wireframe);
|
|
|
|
}
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
void DVisDrawer::render(RenderStateFlags state) const
|
|
|
|
{
|
2006-02-10 22:01:20 +00:00
|
|
|
//bleh
|
2006-04-09 17:15:13 +00:00
|
|
|
std::list<DWinding *>::const_iterator l=m_list->begin();
|
2006-02-10 22:01:20 +00:00
|
|
|
|
|
|
|
for(; l != m_list->end(); l++)
|
|
|
|
{
|
|
|
|
DWinding* w = *l;
|
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
glColor4f(w->clr[0], w->clr[1], w->clr[2], 0.5f);
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
glBegin(GL_POLYGON);
|
2006-02-10 22:01:20 +00:00
|
|
|
for(int i = 0; i < w->numpoints; i++) {
|
2006-04-09 17:15:13 +00:00
|
|
|
glVertex3f((w->p[i])[0], (w->p[i])[1], (w->p[i])[2]);
|
2006-02-10 22:01:20 +00:00
|
|
|
}
|
2006-04-09 17:15:13 +00:00
|
|
|
glEnd();
|
2006-02-10 22:01:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
void DVisDrawer::renderWireframe(Renderer& renderer, const VolumeTest& volume) const
|
2006-02-10 22:01:20 +00:00
|
|
|
{
|
|
|
|
if(!m_list)
|
|
|
|
return;
|
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
renderer.SetState(m_shader_wireframe, Renderer::eWireframeOnly);
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
renderer.addRenderable(*this, g_matrix4_identity);
|
2006-02-10 22:01:20 +00:00
|
|
|
}
|
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
void DVisDrawer::renderSolid(Renderer& renderer, const VolumeTest& volume) const
|
2006-02-10 22:01:20 +00:00
|
|
|
{
|
2006-04-09 17:15:13 +00:00
|
|
|
if(!m_list)
|
|
|
|
return;
|
2006-02-10 22:01:20 +00:00
|
|
|
|
2006-04-09 17:15:13 +00:00
|
|
|
renderer.SetState(m_shader_solid, Renderer::eWireframeOnly);
|
|
|
|
renderer.SetState(m_shader_solid, Renderer::eFullMaterials);
|
|
|
|
|
|
|
|
renderer.addRenderable(*this, g_matrix4_identity);
|
2006-02-10 22:01:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DVisDrawer::SetList(std::list<DWinding*> *pointList)
|
|
|
|
{
|
|
|
|
if(m_list)
|
|
|
|
ClearPoints();
|
|
|
|
|
|
|
|
m_list = pointList;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DVisDrawer::ClearPoints()
|
|
|
|
{
|
2006-04-09 17:15:13 +00:00
|
|
|
std::list<DWinding *>::const_iterator deadPoint=m_list->begin();
|
2006-02-10 22:01:20 +00:00
|
|
|
for(; deadPoint!=m_list->end(); deadPoint++)
|
|
|
|
delete *deadPoint;
|
|
|
|
m_list->clear();
|
|
|
|
}
|