kicad/plugins/3d/vrml/v1/vrml1_separator.cpp

157 lines
4.5 KiB
C++
Raw Normal View History

2016-01-05 05:38:53 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2015-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-05 05:38:53 +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>
#include <sstream>
#include <wx/log.h>
2016-01-05 05:38:53 +00:00
#include "vrml1_base.h"
#include "vrml1_separator.h"
#include "plugins/3dapi/ifsg_all.h"
WRL1SEPARATOR::WRL1SEPARATOR( NAMEREGISTER* aDictionary ) : WRL1NODE( aDictionary )
{
2021-03-11 00:02:39 +00:00
m_Type = WRL1NODES::WRL1_SEPARATOR;
2016-01-05 05:38:53 +00:00
}
WRL1SEPARATOR::WRL1SEPARATOR( NAMEREGISTER* aDictionary, WRL1NODE* aParent ) :
WRL1NODE( aDictionary )
{
2021-03-11 00:02:39 +00:00
m_Type = WRL1NODES::WRL1_SEPARATOR;
2016-01-05 05:38:53 +00:00
m_Parent = aParent;
2021-07-18 14:06:48 +00:00
if( nullptr != m_Parent )
2016-01-05 05:38:53 +00:00
m_Parent->AddChildNode( this );
}
WRL1SEPARATOR::~WRL1SEPARATOR()
{
2021-07-24 17:27:35 +00:00
wxLogTrace( traceVrmlPlugin,
wxT( " * [INFO] Destroying Separator with %zu children %zu references, and %zu "
2021-07-24 17:27:35 +00:00
"back pointers." ),
m_Children.size(), m_Refs.size(), m_BackPointers.size() );
2016-01-05 05:38:53 +00:00
}
bool WRL1SEPARATOR::Read( WRLPROC& proc, WRL1BASE* aTopNode )
{
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( aTopNode, false, wxT( "Invalid top node." ) );
2016-01-05 05:38:53 +00:00
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-05 05:38:53 +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-05 05:38:53 +00:00
return false;
}
proc.Pop();
while( true )
{
if( proc.Peek() == '}' )
{
proc.Pop();
break;
}
2021-07-18 14:06:48 +00:00
if( !aTopNode->ReadNode( proc, this, nullptr ) )
2016-01-05 05:38:53 +00:00
{
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-05 05:38:53 +00:00
return false;
}
if( proc.Peek() == ',' )
proc.Pop();
} // while( true ) -- reading contents of Separator{}
return true;
}
2016-01-08 05:23:42 +00:00
SGNODE* WRL1SEPARATOR::TranslateToSG( SGNODE* aParent, WRL1STATUS* sp )
2016-01-05 05:38:53 +00:00
{
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( m_Parent, nullptr, wxT( "Separator has no parent." ) );
2016-01-05 07:55:54 +00:00
2021-07-24 17:27:35 +00:00
wxLogTrace( traceVrmlPlugin,
wxT( " * [INFO] Translating Separator with %zu children, %zu references, and "
"%zu back pointers (%zu total items)." ),
2021-07-24 17:27:35 +00:00
m_Children.size(), m_Refs.size(), m_BackPointers.size(), m_Items.size() );
2021-07-18 14:06:48 +00:00
if( sp != nullptr )
2016-01-08 05:23:42 +00:00
m_current = *sp;
else
m_current.Init();
2016-01-05 05:38:53 +00:00
S3D::SGTYPES ptype = S3D::GetSGNodeType( aParent );
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( aParent && ( ptype == S3D::SGTYPE_TRANSFORM ), nullptr,
wxString::Format( wxT( "Separator does not have a Transform parent (parent "
"ID: %d)." ), ptype ) );
2016-01-05 05:38:53 +00:00
IFSG_TRANSFORM txNode( aParent );
bool hasContent = false;
2016-01-05 05:38:53 +00:00
std::list< WRL1NODE* >::iterator sI = m_Items.begin();
std::list< WRL1NODE* >::iterator eI = m_Items.end();
2016-01-05 05:38:53 +00:00
SGNODE* node = txNode.GetRawPtr();
2016-01-05 05:38:53 +00:00
while( sI != eI )
2016-01-05 05:38:53 +00:00
{
2021-07-18 14:06:48 +00:00
if( nullptr != (*sI)->TranslateToSG( node, &m_current ) )
hasContent = true;
2016-01-05 05:38:53 +00:00
++sI;
2016-01-05 05:38:53 +00:00
}
if( !hasContent )
2016-01-05 05:38:53 +00:00
{
txNode.Destroy();
2021-07-18 14:06:48 +00:00
return nullptr;
2016-01-05 05:38:53 +00:00
}
return node;
2016-01-05 05:38:53 +00:00
}