2016-01-05 08:29:28 +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 "vrml1_base.h"
|
|
|
|
#include "vrml1_coords.h"
|
|
|
|
|
|
|
|
|
|
|
|
WRL1COORDS::WRL1COORDS( NAMEREGISTER* aDictionary ) : WRL1NODE( aDictionary )
|
|
|
|
{
|
|
|
|
m_Type = WRL1_COORDINATE3;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL1COORDS::WRL1COORDS( NAMEREGISTER* aDictionary, WRL1NODE* aParent ) :
|
|
|
|
WRL1NODE( aDictionary )
|
|
|
|
{
|
|
|
|
m_Type = WRL1_COORDINATE3;
|
|
|
|
m_Parent = aParent;
|
|
|
|
|
|
|
|
if( NULL != m_Parent )
|
|
|
|
m_Parent->AddChildNode( this );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
WRL1COORDS::~WRL1COORDS()
|
|
|
|
{
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 2 )
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << " * [INFO] Destroying Coordinate3 node\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-05 08:29:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL1COORDS::AddRefNode( WRL1NODE* aNode )
|
|
|
|
{
|
|
|
|
// this node may not own or reference any other node
|
|
|
|
|
2016-01-05 08:35:15 +00:00
|
|
|
#ifdef DEBUG_VRML1
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [BUG] AddRefNode is not applicable\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL1COORDS::AddChildNode( WRL1NODE* aNode )
|
|
|
|
{
|
|
|
|
// this node may not own or reference any other node
|
|
|
|
|
2016-01-05 08:35:15 +00:00
|
|
|
#ifdef DEBUG_VRML1
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [BUG] AddChildNode is not applicable\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool WRL1COORDS::Read( WRLPROC& proc, WRL1BASE* aTopNode )
|
|
|
|
{
|
|
|
|
size_t line, column;
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
|
|
|
char tok = proc.Peek();
|
|
|
|
|
|
|
|
if( proc.eof() )
|
|
|
|
{
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
2016-01-05 08:29:28 +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-05 08:29:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( '{' != tok )
|
|
|
|
{
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
2016-01-05 08:29:28 +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;
|
|
|
|
|
|
|
|
if( proc.Peek() == '}' )
|
|
|
|
{
|
|
|
|
proc.Pop();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !proc.ReadName( glob ) )
|
|
|
|
{
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << proc.GetError() << "\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
|
|
|
// expecting 'point'
|
|
|
|
if( !glob.compare( "point" ) )
|
|
|
|
{
|
|
|
|
if( !proc.ReadMFVec3f( points ) )
|
|
|
|
{
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] invalid point set at line " << line << ", column ";
|
|
|
|
std::cerr << column << "\n";
|
|
|
|
std::cerr << " * [INFO] file: '" << proc.GetFileName() << "'\n";
|
|
|
|
std::cerr << " * [INFO] message: '" << proc.GetError() << "'\n";
|
|
|
|
#endif
|
2016-01-12 07:03:17 +00:00
|
|
|
|
2016-01-05 08:29:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad Coordinate at line " << line << ", column ";
|
|
|
|
std::cerr << column << "\n";
|
|
|
|
std::cerr << " * [INFO] file: '" << proc.GetFileName() << "'\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( proc.Peek() == '}' )
|
|
|
|
{
|
|
|
|
proc.Pop();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
proc.GetFilePosData( line, column );
|
|
|
|
|
2016-01-05 08:35:15 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
2016-01-05 08:29:28 +00:00
|
|
|
std::cerr << __FILE__ << ": " << __FUNCTION__ << ": " << __LINE__ << "\n";
|
|
|
|
std::cerr << " * [INFO] bad Coordinate at line " << line << ", column ";
|
|
|
|
std::cerr << column << " (no closing brace)\n";
|
|
|
|
std::cerr << " * [INFO] file: '" << proc.GetFileName() << "'\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WRL1COORDS::GetCoords( WRLVEC3F*& aCoordList, size_t& aListSize )
|
|
|
|
{
|
|
|
|
if( points.size() < 3 )
|
|
|
|
{
|
|
|
|
aCoordList = NULL;
|
|
|
|
aListSize = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aCoordList = &points[0];
|
|
|
|
aListSize = points.size();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-08 05:23:42 +00:00
|
|
|
SGNODE* WRL1COORDS::TranslateToSG( SGNODE* aParent, WRL1STATUS* sp )
|
2016-01-05 08:29:28 +00:00
|
|
|
{
|
2016-01-08 05:23:42 +00:00
|
|
|
if( NULL == sp )
|
2016-01-05 08:29:28 +00:00
|
|
|
{
|
2016-01-08 05:23:42 +00:00
|
|
|
#if defined( DEBUG_VRML1 ) && ( DEBUG_VRML1 > 1 )
|
|
|
|
std::cerr << " * [INFO] bad model: no base data given\n";
|
|
|
|
#endif
|
2016-01-05 08:29:28 +00:00
|
|
|
|
2016-01-08 05:23:42 +00:00
|
|
|
return NULL;
|
2016-01-05 08:29:28 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 05:23:42 +00:00
|
|
|
sp->coord = this;
|
|
|
|
|
2016-01-05 08:29:28 +00:00
|
|
|
return NULL;
|
|
|
|
}
|