2016-01-01 05:05:14 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Cirilo Bernardo <cirilo.bernardo@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include "vrml2_base.h"
|
|
|
|
#include "vrml2_appearance.h"
|
2016-01-02 01:21:02 +00:00
|
|
|
#include "plugins/3dapi/ifsg_all.h"
|
2016-01-01 05:05:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
WRL2APPEARANCE::WRL2APPEARANCE() : WRL2NODE()
|
|
|
|
{
|
|
|
|
material = NULL;
|
|
|
|
texture = NULL;
|
|
|
|
textureTransform = NULL;
|
|
|
|
m_Type = WRL2_APPEARANCE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL2APPEARANCE::WRL2APPEARANCE( WRL2NODE* aParent ) : WRL2NODE()
|
|
|
|
{
|
|
|
|
material = NULL;
|
|
|
|
texture = NULL;
|
|
|
|
textureTransform = NULL;
|
|
|
|
m_Type = WRL2_APPEARANCE;
|
|
|
|
m_Parent = aParent;
|
|
|
|
|
|
|
|
if( NULL != m_Parent )
|
|
|
|
m_Parent->AddChildNode( this );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL2APPEARANCE::~WRL2APPEARANCE()
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 2 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << " * [INFO] Destroying Appearance with " << m_Children.size();
|
|
|
|
std::cerr << " children, " << m_Refs.size() << " references and ";
|
|
|
|
std::cerr << m_BackPointers.size() << " backpointers\n";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2APPEARANCE::checkNodeType( WRL2NODES aType )
|
|
|
|
{
|
|
|
|
switch( aType )
|
|
|
|
{
|
|
|
|
case WRL2_MATERIAL:
|
|
|
|
case WRL2_IMAGETEXTURE:
|
|
|
|
case WRL2_PIXELTEXTURE:
|
|
|
|
case WRL2_MOVIETEXTURE:
|
|
|
|
case WRL2_TEXTURETRANSFORM:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2APPEARANCE::isDangling( void )
|
|
|
|
{
|
|
|
|
// this node is dangling unless it has a parent of type WRL2_SHAPE
|
|
|
|
|
|
|
|
if( NULL == m_Parent || m_Parent->GetNodeType() != WRL2_SHAPE )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2APPEARANCE::AddRefNode( WRL2NODE* aNode )
|
|
|
|
{
|
|
|
|
if( NULL == aNode )
|
|
|
|
{
|
2016-01-02 03:41:54 +00:00
|
|
|
#ifdef DEBUG_VRML2
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [BUG] NULL passed for aNode\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
WRL2NODES type = aNode->GetNodeType();
|
|
|
|
|
|
|
|
if( !checkNodeType( type ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; unexpected child node '";
|
|
|
|
std::cerr << aNode->GetNodeTypeName( type ) << "'\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( WRL2_MATERIAL == type )
|
|
|
|
{
|
|
|
|
if( NULL != material )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; multiple material nodes\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
material = aNode;
|
|
|
|
return WRL2NODE::AddRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( WRL2_TEXTURETRANSFORM == type )
|
|
|
|
{
|
|
|
|
if( NULL != textureTransform )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; multiple textureTransform nodes\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
textureTransform = aNode;
|
|
|
|
return WRL2NODE::AddRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( NULL != texture )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
2016-01-12 07:03:17 +00:00
|
|
|
std::cerr << " * [INFO] bad file format; multiple texture nodes\n";
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
texture = aNode;
|
|
|
|
return WRL2NODE::AddRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2APPEARANCE::AddChildNode( WRL2NODE* aNode )
|
|
|
|
{
|
|
|
|
if( NULL == aNode )
|
|
|
|
{
|
2016-01-02 03:41:54 +00:00
|
|
|
#ifdef DEBUG_VRML2
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [BUG] NULL passed for aNode\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
WRL2NODES type = aNode->GetNodeType();
|
|
|
|
|
|
|
|
if( !checkNodeType( type ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; unexpected child node '";
|
|
|
|
std::cerr << aNode->GetNodeTypeName( type ) << "'\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( WRL2_MATERIAL == type )
|
|
|
|
{
|
|
|
|
if( NULL != material )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; multiple material nodes\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
material = aNode;
|
|
|
|
return WRL2NODE::AddChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( WRL2_TEXTURETRANSFORM == type )
|
|
|
|
{
|
|
|
|
if( NULL != textureTransform )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; multiple textureTransform nodes\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
textureTransform = aNode;
|
|
|
|
return WRL2NODE::AddChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( NULL != texture )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
2016-01-02 22:57:41 +00:00
|
|
|
std::cerr << " * [INFO] bad file format; multiple texture nodes\n";
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
texture = aNode;
|
|
|
|
return WRL2NODE::AddChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2APPEARANCE::Read( WRLPROC& proc, WRL2BASE* aTopNode )
|
|
|
|
{
|
|
|
|
if( NULL == aTopNode )
|
|
|
|
{
|
2016-01-02 03:41:54 +00:00
|
|
|
#ifdef DEBUG_VRML2
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [BUG] aTopNode is NULL\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t line, column;
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
|
|
|
char tok = proc.Peek();
|
|
|
|
|
|
|
|
if( proc.eof() )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; unexpected eof at line ";
|
|
|
|
std::cerr << line << ", column " << column << "\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( '{' != tok )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << proc.GetError() << "\n";
|
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad file format; expecting '{' but got '" << tok;
|
|
|
|
std::cerr << "' at line " << line << ", column " << column << "\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.Pop();
|
|
|
|
std::string glob;
|
|
|
|
|
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( proc.Peek() == '}' )
|
|
|
|
{
|
|
|
|
proc.Pop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !proc.ReadName( glob ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << proc.GetError() << "\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// expecting one of:
|
|
|
|
// material
|
|
|
|
// texture
|
|
|
|
// textureTransform
|
|
|
|
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
|
|
|
if( !glob.compare( "material" ) )
|
|
|
|
{
|
|
|
|
if( !aTopNode->ReadNode( proc, this, NULL ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] could not read material information\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( !glob.compare( "texture" ) )
|
|
|
|
{
|
|
|
|
if( !aTopNode->ReadNode( proc, this, NULL ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] could not read texture information\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( !glob.compare( "textureTransform" ) )
|
|
|
|
{
|
|
|
|
if( !aTopNode->ReadNode( proc, this, NULL ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] could not read textureTransform information\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-01 05:05:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-01-01 05:05:14 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad Appearance at line " << line << ", column ";
|
|
|
|
std::cerr << column << "\n";
|
|
|
|
std::cerr << " * [INFO] file: '" << proc.GetFileName() << "'\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} // while( true ) -- reading contents of Appearance{}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-01-01 07:55:43 +00:00
|
|
|
|
|
|
|
|
2016-02-02 05:50:46 +00:00
|
|
|
SGNODE* WRL2APPEARANCE::TranslateToSG( SGNODE* aParent )
|
2016-01-01 07:55:43 +00:00
|
|
|
{
|
2016-01-02 01:21:02 +00:00
|
|
|
if( NULL == material && NULL == texture )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
S3D::SGTYPES ptype = S3D::GetSGNodeType( aParent );
|
|
|
|
|
|
|
|
if( NULL != aParent && ptype != S3D::SGTYPE_SHAPE )
|
|
|
|
{
|
2016-01-02 03:41:54 +00:00
|
|
|
#ifdef DEBUG_VRML2
|
2016-01-02 01:21:02 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [BUG] Appearance does not have a Shape parent (parent ID: ";
|
|
|
|
std::cerr << ptype << ")\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-01-07 04:43:32 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 2 )
|
|
|
|
std::cerr << " * [INFO] Translating Appearance with " << m_Children.size();
|
|
|
|
std::cerr << " children, " << m_Refs.size() << " references and ";
|
|
|
|
std::cerr << m_BackPointers.size() << " backpointers\n";
|
|
|
|
#endif
|
|
|
|
|
2016-01-02 01:21:02 +00:00
|
|
|
if( m_sgNode )
|
|
|
|
{
|
2016-01-04 07:10:15 +00:00
|
|
|
if( NULL != aParent )
|
2016-01-02 01:21:02 +00:00
|
|
|
{
|
2016-01-04 07:10:15 +00:00
|
|
|
if( NULL == S3D::GetSGNodeParent( m_sgNode )
|
|
|
|
&& !S3D::AddSGNodeChild( aParent, m_sgNode ) )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else if( aParent != S3D::GetSGNodeParent( m_sgNode )
|
|
|
|
&& !S3D::AddSGNodeRef( aParent, m_sgNode ) )
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-01-02 01:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return m_sgNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( NULL != texture )
|
|
|
|
{
|
|
|
|
// use a default gray appearance
|
|
|
|
IFSG_APPEARANCE matNode( aParent );
|
|
|
|
matNode.SetEmissive( 0.0, 0.0, 0.0 );
|
|
|
|
matNode.SetSpecular( 0.65, 0.65, 0.65 );
|
|
|
|
matNode.SetDiffuse( 0.65, 0.65, 0.65 );
|
2016-02-06 21:41:27 +00:00
|
|
|
// default ambient
|
2016-01-02 01:21:02 +00:00
|
|
|
matNode.SetShininess( 0.2 );
|
|
|
|
matNode.SetTransparency( 0.0 );
|
|
|
|
m_sgNode = matNode.GetRawPtr();
|
|
|
|
|
|
|
|
return m_sgNode;
|
|
|
|
}
|
|
|
|
|
2016-02-02 05:50:46 +00:00
|
|
|
m_sgNode = material->TranslateToSG( aParent );
|
2016-01-02 01:21:02 +00:00
|
|
|
|
|
|
|
return m_sgNode;
|
2016-01-01 07:55:43 +00:00
|
|
|
}
|
2016-01-03 03:55:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
void WRL2APPEARANCE::unlinkChildNode( const WRL2NODE* aNode )
|
|
|
|
{
|
|
|
|
if( NULL == aNode )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( aNode->GetParent() == this )
|
|
|
|
{
|
|
|
|
if( aNode == material )
|
|
|
|
material = NULL;
|
|
|
|
else if( aNode == texture )
|
|
|
|
texture = NULL;
|
|
|
|
else if( aNode == textureTransform )
|
|
|
|
textureTransform = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WRL2NODE::unlinkChildNode( aNode );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WRL2APPEARANCE::unlinkRefNode( const WRL2NODE* aNode )
|
|
|
|
{
|
|
|
|
if( NULL == aNode )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( aNode->GetParent() != this )
|
|
|
|
{
|
|
|
|
if( aNode == material )
|
|
|
|
material = NULL;
|
|
|
|
else if( aNode == texture )
|
|
|
|
texture = NULL;
|
|
|
|
else if( aNode == textureTransform )
|
|
|
|
textureTransform = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WRL2NODE::unlinkRefNode( aNode );
|
|
|
|
return;
|
|
|
|
}
|