2016-01-07 00:24:11 +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>
|
2021-07-18 14:06:48 +00:00
|
|
|
* Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2016-01-07 00:24:11 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2016-02-23 02:31:51 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <wx/log.h>
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
#include "vrml2_base.h"
|
|
|
|
#include "vrml2_pointset.h"
|
|
|
|
#include "vrml2_coords.h"
|
|
|
|
#include "vrml2_color.h"
|
|
|
|
#include "plugins/3dapi/ifsg_all.h"
|
|
|
|
|
|
|
|
|
|
|
|
WRL2POINTSET::WRL2POINTSET() : WRL2NODE()
|
|
|
|
{
|
|
|
|
setDefaults();
|
2021-03-10 23:49:09 +00:00
|
|
|
m_Type = WRL2NODES::WRL2_POINTSET;
|
2016-01-07 00:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL2POINTSET::WRL2POINTSET( WRL2NODE* aParent ) : WRL2NODE()
|
|
|
|
{
|
|
|
|
setDefaults();
|
2021-03-10 23:49:09 +00:00
|
|
|
m_Type = WRL2NODES::WRL2_POINTSET;
|
2016-01-07 00:24:11 +00:00
|
|
|
m_Parent = aParent;
|
|
|
|
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr != m_Parent )
|
2016-01-07 00:24:11 +00:00
|
|
|
m_Parent->AddChildNode( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL2POINTSET::~WRL2POINTSET()
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
2021-07-28 01:06:24 +00:00
|
|
|
wxT( " * [INFO] Destroying PointSet node with %zu children, %zu"
|
|
|
|
"references, and %zu back pointers." ),
|
2021-07-24 17:27:35 +00:00
|
|
|
m_Children.size(), m_Refs.size(), m_BackPointers.size() );
|
2016-01-07 00:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WRL2POINTSET::setDefaults( void )
|
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
color = nullptr;
|
|
|
|
coord = nullptr;
|
2016-01-07 00:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2POINTSET::checkNodeType( WRL2NODES aType )
|
|
|
|
{
|
|
|
|
// nodes must be one of:
|
|
|
|
// Color
|
|
|
|
// Coordinate
|
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
2021-03-10 23:49:09 +00:00
|
|
|
case WRL2NODES::WRL2_COLOR:
|
|
|
|
case WRL2NODES::WRL2_COORDINATE:
|
2016-01-07 00:24:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2POINTSET::isDangling( void )
|
|
|
|
{
|
|
|
|
// this node is dangling unless it has a parent of type WRL2_SHAPE
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr == m_Parent || m_Parent->GetNodeType() != WRL2NODES::WRL2_SHAPE )
|
2016-01-07 00:24:11 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2POINTSET::AddRefNode( WRL2NODE* aNode )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxCHECK_MSG( aNode, false, wxT( "Invalid node." ) );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
WRL2NODES type = aNode->GetNodeType();
|
|
|
|
|
|
|
|
if( !checkNodeType( type ) )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; unexpected child node '%s'." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__, aNode->GetNodeTypeName( type ) );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-10 23:49:09 +00:00
|
|
|
if( WRL2NODES::WRL2_COLOR == type )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr != color )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; multiple color nodes." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = aNode;
|
|
|
|
return WRL2NODE::AddRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
2021-03-10 23:49:09 +00:00
|
|
|
if( WRL2NODES::WRL2_COORDINATE == type )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr != coord )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; multiple coord nodes." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
coord = aNode;
|
|
|
|
return WRL2NODE::AddRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
return WRL2NODE::AddRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2POINTSET::AddChildNode( WRL2NODE* aNode )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxCHECK_MSG( aNode, false, wxT( "Invalid node." ) );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
WRL2NODES type = aNode->GetNodeType();
|
|
|
|
|
|
|
|
if( !checkNodeType( type ) )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; unexpected child node '%s'." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__, aNode->GetNodeTypeName( type ) );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-10 23:49:09 +00:00
|
|
|
if( WRL2NODES::WRL2_COLOR == type )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr != color )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; multiple color nodes." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
color = aNode;
|
|
|
|
return WRL2NODE::AddChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
2021-03-10 23:49:09 +00:00
|
|
|
if( WRL2NODES::WRL2_COORDINATE == type )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr != coord )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; multiple coord nodes." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
coord = aNode;
|
|
|
|
return WRL2NODE::AddChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
return WRL2NODE::AddChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2POINTSET::Read( WRLPROC& proc, WRL2BASE* aTopNode )
|
|
|
|
{
|
|
|
|
char tok = proc.Peek();
|
|
|
|
|
|
|
|
if( proc.eof() )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin, wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; unexpected eof %s." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__, proc.GetFilePosition() );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( '{' != tok )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] bad file format; expecting '{' but got '%s' %s." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__, tok, proc.GetFilePosition() );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.Pop();
|
|
|
|
std::string glob;
|
|
|
|
|
|
|
|
while( true )
|
|
|
|
{
|
|
|
|
if( proc.Peek() == '}' )
|
|
|
|
{
|
|
|
|
proc.Pop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !proc.ReadName( glob ) )
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin, wxT( "%s:%s:%d\n"
|
|
|
|
"%s" ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ , proc.GetError() );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// expecting one of:
|
|
|
|
// color
|
|
|
|
// coord
|
|
|
|
if( !glob.compare( "color" ) )
|
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( !aTopNode->ReadNode( proc, this, nullptr ) )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] could not read color node information." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( !glob.compare( "coord" ) )
|
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( !aTopNode->ReadNode( proc, this, nullptr ) )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] could not read coord node information." ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__ );
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-24 17:27:35 +00:00
|
|
|
wxLogTrace( traceVrmlPlugin,
|
|
|
|
wxT( "%s:%s:%d\n"
|
|
|
|
" * [INFO] invalid PointSet %s (no closing brace)\n"
|
|
|
|
" * [INFO] file: '%s'\n" ),
|
|
|
|
__FILE__, __FUNCTION__, __LINE__, proc.GetFilePosition(),
|
|
|
|
proc.GetFileName() );
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} // while( true ) -- reading contents of PointSet{}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-02 05:50:46 +00:00
|
|
|
SGNODE* WRL2POINTSET::TranslateToSG( SGNODE* aParent )
|
2016-01-07 00:24:11 +00:00
|
|
|
{
|
|
|
|
// note: there are no plans to support drawing of points
|
2021-07-18 14:06:48 +00:00
|
|
|
return nullptr;
|
2016-01-07 00:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WRL2POINTSET::unlinkChildNode( const WRL2NODE* aNode )
|
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr == aNode )
|
2016-01-07 00:24:11 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if( aNode->GetParent() == this )
|
|
|
|
{
|
|
|
|
if( aNode == color )
|
2021-07-18 14:06:48 +00:00
|
|
|
color = nullptr;
|
2016-01-07 00:24:11 +00:00
|
|
|
else if( aNode == coord )
|
2021-07-18 14:06:48 +00:00
|
|
|
coord = nullptr;
|
2016-01-07 00:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WRL2NODE::unlinkChildNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WRL2POINTSET::unlinkRefNode( const WRL2NODE* aNode )
|
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr == aNode )
|
2016-01-07 00:24:11 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if( aNode->GetParent() != this )
|
|
|
|
{
|
|
|
|
if( aNode == color )
|
2021-07-18 14:06:48 +00:00
|
|
|
color = nullptr;
|
2016-01-07 00:24:11 +00:00
|
|
|
else if( aNode == coord )
|
2021-07-18 14:06:48 +00:00
|
|
|
coord = nullptr;
|
2016-01-07 00:24:11 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WRL2NODE::unlinkRefNode( aNode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2POINTSET::HasColors( void )
|
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
if( nullptr == color )
|
2016-01-07 00:24:11 +00:00
|
|
|
return false;
|
|
|
|
|
2021-07-18 14:06:48 +00:00
|
|
|
return ( (WRL2COLOR*) color )->HasColors();
|
2016-01-07 00:24:11 +00:00
|
|
|
}
|