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

246 lines
7.3 KiB
C++
Raw Normal View History

2016-01-07 07:03:07 +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 07:03:07 +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 <cmath>
#include <wx/log.h>
2016-01-07 07:03:07 +00:00
#include "vrml1_base.h"
#include "vrml1_shapehints.h"
#include "plugins/3dapi/ifsg_all.h"
WRL1SHAPEHINTS::WRL1SHAPEHINTS( NAMEREGISTER* aDictionary ) : WRL1NODE( aDictionary )
{
2021-03-10 23:54:49 +00:00
m_order = WRL1_ORDER::ORD_UNKNOWN;
2021-03-11 00:02:39 +00:00
m_Type = WRL1NODES::WRL1_SHAPEHINTS;
m_crease = 0.733f; // approx 42 degrees; this is larger than VRML spec.
2016-01-07 07:03:07 +00:00
}
WRL1SHAPEHINTS::WRL1SHAPEHINTS( NAMEREGISTER* aDictionary, WRL1NODE* aParent ) :
WRL1NODE( aDictionary )
{
2021-03-10 23:54:49 +00:00
m_order = WRL1_ORDER::ORD_UNKNOWN;
2021-03-11 00:02:39 +00:00
m_Type = WRL1NODES::WRL1_SHAPEHINTS;
m_crease = 0.733f; // approx 42 degrees; this is larger than VRML spec.
2016-01-07 07:03:07 +00:00
m_Parent = aParent;
2021-07-18 14:06:48 +00:00
if( nullptr != m_Parent )
2016-01-07 07:03:07 +00:00
m_Parent->AddChildNode( this );
}
WRL1SHAPEHINTS::~WRL1SHAPEHINTS()
{
2022-02-05 13:25:43 +00:00
wxLogTrace( traceVrmlPlugin, wxT( " * [INFO] Destroying ShapeHints node." ) );
2016-01-07 07:03:07 +00:00
}
bool WRL1SHAPEHINTS::AddRefNode( WRL1NODE* aNode )
{
// this node may not own or reference any other node
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( false, false, wxT( "AddRefNode is not applicable." ) );
2016-01-07 07:03:07 +00:00
}
bool WRL1SHAPEHINTS::AddChildNode( WRL1NODE* aNode )
{
// this node may not own or reference any other node
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( false, false, wxT( "AddChildNode is not applicable." ) );
2016-01-07 07:03:07 +00:00
}
bool WRL1SHAPEHINTS::Read( WRLPROC& proc, WRL1BASE* aTopNode )
{
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( aTopNode, false, wxT( "Invalid top node." ) );
2016-01-07 07:03:07 +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-07 07:03:07 +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.\n"
"%s" ),
__FILE__, __FUNCTION__, __LINE__, tok, proc.GetFilePosition(),
proc.GetError() );
2016-01-07 07:03:07 +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 07:03:07 +00:00
return false;
}
// expecting one of:
// vertexOrdering
// shapeType
// faceType
// creaseAngle
if( !glob.compare( "vertexOrdering" ) )
{
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 07:03:07 +00:00
return false;
}
if( !glob.compare( "UNKNOWN_ORDERING" ) )
2021-07-24 17:27:35 +00:00
{
2021-03-10 23:54:49 +00:00
m_order = WRL1_ORDER::ORD_UNKNOWN;
2021-07-24 17:27:35 +00:00
}
2016-01-07 07:03:07 +00:00
else if( !glob.compare( "CLOCKWISE" ) )
2021-07-24 17:27:35 +00:00
{
2021-03-10 23:54:49 +00:00
m_order = WRL1_ORDER::ORD_CLOCKWISE;
2021-07-24 17:27:35 +00:00
}
2016-01-07 07:03:07 +00:00
else if( !glob.compare( "COUNTERCLOCKWISE" ) )
2021-07-24 17:27:35 +00:00
{
2021-03-10 23:54:49 +00:00
m_order = WRL1_ORDER::ORD_CCW;
2021-07-24 17:27:35 +00:00
}
2016-01-07 07:03:07 +00:00
else
{
2021-07-24 17:27:35 +00:00
wxLogTrace( traceVrmlPlugin,
wxT( "%s:%s:%d\n"
" * [INFO] bad ShapeHints %s (invalid value '%s')\n"
" * [INFO] file: '%s'" ),
__FILE__, __FUNCTION__, __LINE__, proc.GetFilePosition(), glob,
proc.GetFileName() );
2016-01-07 07:03:07 +00:00
return false;
}
}
else if( !glob.compare( "shapeType" ) )
{
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 07:03:07 +00:00
return false;
}
// expected values:
// UNKNOWN_SHAPE_TYPE
// SOLID
}
else if( !glob.compare( "faceType" ) )
{
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 07:03:07 +00:00
return false;
}
// expected values:
// UNKNOWN_FACE_TYPE
// CONVEX
}
else if( !glob.compare( "creaseAngle" ) )
{
float tmp;
if( !proc.ReadSFFloat( tmp ) )
{
2021-07-24 17:27:35 +00:00
wxLogTrace( traceVrmlPlugin, wxT( "%s:%s:%d\n"
"%s" ),
__FILE__, __FUNCTION__, __LINE__ , proc.GetError() );
2016-01-07 07:03:07 +00:00
return false;
}
if( tmp < 0.0 )
tmp = 0.0f;
else if( tmp > M_PI )
tmp = static_cast<float>( M_PI );
m_crease = tmp;
2016-01-07 07:03:07 +00:00
}
else
{
2021-07-24 17:27:35 +00:00
wxLogTrace( traceVrmlPlugin,
wxT( "%s:%s:%d\n"
" * [INFO] bad ShapeHints %s (unexpected keyword '%s')\n"
" * [INFO] file: '%s'" ),
__FILE__, __FUNCTION__, __LINE__, proc.GetFilePosition(), glob,
proc.GetFileName() );
2016-01-07 07:03:07 +00:00
return false;
}
} // while( true ) -- reading contents of ShapeHints{}
return true;
}
2016-01-08 05:23:42 +00:00
SGNODE* WRL1SHAPEHINTS::TranslateToSG( SGNODE* aParent, WRL1STATUS* sp )
2016-01-07 07:03:07 +00:00
{
// note: this is not fully implemented since it is unlikely we shall
// ever make use of the fields shapeType, faceType, and creaseAngle
2021-07-24 17:27:35 +00:00
wxCHECK_MSG( sp, nullptr, wxT( "Invalid base data." ) );
2016-01-07 07:03:07 +00:00
2016-01-08 05:23:42 +00:00
sp->order = m_order;
2016-02-02 00:23:15 +00:00
sp->creaseLimit = cosf(m_crease);
if( sp->creaseLimit < 0.0 )
sp->creaseLimit = 0.0;
2016-01-08 05:23:42 +00:00
2021-07-18 14:06:48 +00:00
return nullptr;
2016-01-07 07:03:07 +00:00
}