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>
|
2016-02-23 02:31:51 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <wx/log.h>
|
2016-01-01 05:05:14 +00:00
|
|
|
|
|
|
|
#include "vrml2_base.h"
|
|
|
|
#include "vrml2_norms.h"
|
|
|
|
|
|
|
|
|
|
|
|
WRL2NORMS::WRL2NORMS() : WRL2NODE()
|
|
|
|
{
|
2021-03-10 23:49:09 +00:00
|
|
|
m_Type = WRL2NODES::WRL2_NORMAL;
|
2016-01-01 05:05:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL2NORMS::WRL2NORMS( WRL2NODE* aParent ) : WRL2NODE()
|
|
|
|
{
|
2021-03-10 23:49:09 +00:00
|
|
|
m_Type = WRL2NODES::WRL2_NORMAL;
|
2016-01-01 05:05:14 +00:00
|
|
|
m_Parent = aParent;
|
|
|
|
|
|
|
|
if( NULL != m_Parent )
|
|
|
|
m_Parent->AddChildNode( this );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL2NORMS::~WRL2NORMS()
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 3 )
|
2016-02-23 02:31:51 +00:00
|
|
|
wxLogTrace( MASK_VRML, " * [INFO] Destroying Normal node\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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2NORMS::isDangling( void )
|
|
|
|
{
|
|
|
|
// this node is dangling unless it has a parent of type WRL2_INDEXEDFACESET
|
|
|
|
|
2021-03-10 23:49:09 +00:00
|
|
|
if( NULL == m_Parent || m_Parent->GetNodeType() != WRL2NODES::WRL2_INDEXEDFACESET )
|
2016-01-01 05:05:14 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2NORMS::AddRefNode( WRL2NODE* aNode )
|
|
|
|
{
|
|
|
|
// this node may not own or reference any other node
|
|
|
|
|
2016-01-02 03:41:54 +00:00
|
|
|
#ifdef DEBUG_VRML2
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [BUG] AddRefNode is not applicable";
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2NORMS::AddChildNode( WRL2NODE* aNode )
|
|
|
|
{
|
|
|
|
// this node may not own or reference any other node
|
|
|
|
|
2016-01-02 03:41:54 +00:00
|
|
|
#ifdef DEBUG_VRML2
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [BUG] AddChildNode is not applicable";
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL2NORMS::Read( WRLPROC& proc, WRL2BASE* aTopNode )
|
|
|
|
{
|
|
|
|
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-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [INFO] bad file format; unexpected eof at line ";
|
|
|
|
ostr<< line << ", column " << column;
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( '{' != tok )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< proc.GetError() << "\n";
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [INFO] bad file format; expecting '{' but got '" << tok;
|
|
|
|
ostr << "' at line " << line << ", column " << column;
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.Pop();
|
|
|
|
std::string glob;
|
|
|
|
|
|
|
|
if( proc.Peek() == '}' )
|
|
|
|
{
|
|
|
|
proc.Pop();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !proc.ReadName( glob ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< proc.GetError();
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
|
|
|
// expecting 'vector'
|
|
|
|
if( !glob.compare( "vector" ) )
|
|
|
|
{
|
|
|
|
if( !proc.ReadMFVec3f( vectors ) )
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [INFO] invalid vector set at line " << line << ", column ";
|
|
|
|
ostr<< column << "\n";
|
|
|
|
ostr<< " * [INFO] file: '" << proc.GetFileName() << "'\n";
|
|
|
|
ostr<< " * [INFO] message: '" << proc.GetError() << "'";
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [INFO] bad Normal at line " << line << ", column ";
|
|
|
|
ostr<< column << "\n";
|
|
|
|
ostr<< " * [INFO] file: '" << proc.GetFileName() << "'";
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( proc.Peek() == '}' )
|
|
|
|
{
|
|
|
|
proc.Pop();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
2016-01-02 22:57:41 +00:00
|
|
|
#if defined( DEBUG_VRML2 ) && ( DEBUG_VRML2 > 1 )
|
2016-02-23 02:31:51 +00:00
|
|
|
do {
|
|
|
|
std::ostringstream ostr;
|
|
|
|
ostr<< __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
ostr<< " * [INFO] bad Normal at line " << line << ", column ";
|
|
|
|
ostr<< column << " (no closing brace)\n";
|
|
|
|
ostr<< " * [INFO] file: '" << proc.GetFileName() << "'";
|
|
|
|
wxLogTrace( MASK_VRML, "%s\n", ostr.str().c_str() );
|
|
|
|
} while( 0 );
|
2016-01-01 05:05:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-01-01 07:55:43 +00:00
|
|
|
|
|
|
|
|
2016-02-02 05:50:46 +00:00
|
|
|
SGNODE* WRL2NORMS::TranslateToSG( SGNODE* aParent )
|
2016-01-01 07:55:43 +00:00
|
|
|
{
|
2016-01-02 01:21:02 +00:00
|
|
|
// any data manipulation must be performed by the parent node
|
2016-01-01 07:55:43 +00:00
|
|
|
return NULL;
|
|
|
|
}
|