2016-07-19 17:35:25 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015-2016 Mario Luzeiro <mrluzeiro@ua.pt>
|
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file citemlayercsg2d.cpp
|
|
|
|
* @brief
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "citemlayercsg2d.h"
|
|
|
|
#include "3d_fastmath.h"
|
|
|
|
#include <wx/debug.h>
|
|
|
|
|
2019-12-30 13:01:06 +00:00
|
|
|
CITEMLAYERCSG2D::CITEMLAYERCSG2D( const COBJECT2D* aObjectA,
|
|
|
|
std::vector<const COBJECT2D*>* aObjectB, const COBJECT2D* aObjectC,
|
|
|
|
const BOARD_ITEM& aBoardItem )
|
|
|
|
: COBJECT2D( OBJECT2D_TYPE::CSG, aBoardItem ),
|
|
|
|
m_objectA( aObjectA ),
|
|
|
|
m_objectB( aObjectB ),
|
|
|
|
m_objectC( aObjectC )
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
wxASSERT( aObjectA );
|
|
|
|
|
|
|
|
m_bbox.Reset();
|
|
|
|
m_bbox.Set( aObjectA->GetBBox() );
|
|
|
|
m_bbox.ScaleNextUp();
|
|
|
|
m_centroid = m_bbox.GetCenter();
|
|
|
|
|
|
|
|
wxASSERT( m_bbox.IsInitialized() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CITEMLAYERCSG2D::~CITEMLAYERCSG2D()
|
|
|
|
{
|
|
|
|
if( ((void*)m_objectB != CSGITEM_EMPTY) &&
|
|
|
|
((void*)m_objectB != CSGITEM_FULL) )
|
|
|
|
{
|
|
|
|
delete m_objectB;
|
|
|
|
m_objectB = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CITEMLAYERCSG2D::Intersects( const CBBOX2D &aBBox ) const
|
|
|
|
{
|
|
|
|
return m_bbox.Intersects( aBBox );
|
|
|
|
// !TODO: improove this implementation
|
|
|
|
//return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CITEMLAYERCSG2D::Overlaps( const CBBOX2D &aBBox ) const
|
|
|
|
{
|
|
|
|
// NOT IMPLEMENTED
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Based on ideas and implementation by Nick Chapman
|
|
|
|
// http://homepages.paradise.net.nz/nickamy/raytracer/raytracer.htm
|
|
|
|
bool CITEMLAYERCSG2D::Intersect( const RAYSEG2D &aSegRay,
|
|
|
|
float *aOutT,
|
|
|
|
SFVEC2F *aNormalOut ) const
|
|
|
|
{
|
|
|
|
wxASSERT( aOutT );
|
|
|
|
wxASSERT( aNormalOut );
|
|
|
|
|
2019-12-30 13:01:06 +00:00
|
|
|
if( m_objectA->GetObjectType() == OBJECT2D_TYPE::DUMMYBLOCK )
|
2016-07-19 17:35:25 +00:00
|
|
|
return false;
|
|
|
|
|
2020-10-31 23:31:55 +00:00
|
|
|
SFVEC2F currentRayPos = aSegRay.m_Start;
|
2016-07-19 17:35:25 +00:00
|
|
|
SFVEC2F currentNormal;
|
2020-10-29 12:48:45 +00:00
|
|
|
RAYSEG2D currentRay = aSegRay;
|
2016-07-19 17:35:25 +00:00
|
|
|
|
2020-10-31 23:31:55 +00:00
|
|
|
if( !m_objectA->IsPointInside( aSegRay.m_Start ) )
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
//move ray point to start of main object
|
2020-10-31 23:31:55 +00:00
|
|
|
float tmpRayDist;
|
|
|
|
if( !m_objectA->Intersect( aSegRay, &tmpRayDist, ¤tNormal ) )
|
2016-07-19 17:35:25 +00:00
|
|
|
return false;
|
|
|
|
|
2020-10-31 23:31:55 +00:00
|
|
|
currentRayPos = aSegRay.atNormalized( tmpRayDist + 0.003f );
|
2020-10-29 12:48:45 +00:00
|
|
|
|
|
|
|
currentRay = RAYSEG2D( currentRayPos, aSegRay.m_End );
|
2016-07-19 17:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//wxASSERT( (currentRayDist >= 0.0f) && (currentRayDist <= 1.0f) );
|
|
|
|
|
|
|
|
|
|
|
|
// move through the union of subtracted regions
|
|
|
|
if( m_objectB )
|
|
|
|
{
|
2020-10-31 23:31:55 +00:00
|
|
|
for( unsigned int l = 0; l < ( m_objectB->size() * 2 ); ++l )
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
2020-10-31 23:31:55 +00:00
|
|
|
bool wasCrossedSubVol = false;
|
2016-07-19 17:35:25 +00:00
|
|
|
|
|
|
|
//check against all subbed objects
|
|
|
|
for( unsigned int i = 0; i < m_objectB->size(); ++i )
|
|
|
|
{
|
2020-11-01 08:10:08 +00:00
|
|
|
if( ( (const COBJECT2D *)( *m_objectB)[i] )->IsPointInside( currentRayPos ) )
|
2016-07-19 17:35:25 +00:00
|
|
|
{
|
|
|
|
// ray point is inside a subtracted region, so move it to the end of the
|
|
|
|
// subtracted region
|
|
|
|
float hitDist;
|
2020-10-29 12:48:45 +00:00
|
|
|
SFVEC2F tmpNormal;
|
2020-11-01 08:10:08 +00:00
|
|
|
if( !( (const COBJECT2D *)( *m_objectB)[i] )->Intersect( currentRay,
|
|
|
|
&hitDist,
|
|
|
|
&tmpNormal ) )
|
2016-07-19 17:35:25 +00:00
|
|
|
return false; // ray hit main object but did not leave subtracted volume
|
|
|
|
|
|
|
|
wxASSERT( hitDist <= 1.0f );
|
|
|
|
|
2020-10-31 23:31:55 +00:00
|
|
|
if( hitDist > FLT_EPSILON )
|
2020-10-29 12:48:45 +00:00
|
|
|
{
|
2020-10-31 23:31:55 +00:00
|
|
|
wasCrossedSubVol = true;
|
2016-07-19 17:35:25 +00:00
|
|
|
|
2020-10-29 12:48:45 +00:00
|
|
|
currentRayPos = currentRay.atNormalized( glm::min( hitDist + 0.0001f, 1.0f ) );
|
2016-07-19 17:35:25 +00:00
|
|
|
|
2020-10-29 12:48:45 +00:00
|
|
|
currentRay = RAYSEG2D( currentRayPos, aSegRay.m_End );
|
2016-07-19 17:35:25 +00:00
|
|
|
|
2020-10-29 12:48:45 +00:00
|
|
|
currentNormal = tmpNormal * -1.0f;
|
2016-07-19 17:35:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-31 23:31:55 +00:00
|
|
|
if( !wasCrossedSubVol )
|
2016-07-19 17:35:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aNormalOut = currentNormal;
|
2020-10-31 23:31:55 +00:00
|
|
|
*aOutT = glm::min( glm::max( glm::length( currentRayPos - aSegRay.m_Start ) / aSegRay.m_Length, 0.0f ), 1.0f );
|
2016-07-19 17:35:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INTERSECTION_RESULT CITEMLAYERCSG2D::IsBBoxInside( const CBBOX2D &aBBox ) const
|
|
|
|
{
|
|
|
|
|
|
|
|
// !TODO:
|
|
|
|
|
2019-12-30 13:01:06 +00:00
|
|
|
return INTERSECTION_RESULT::MISSES;
|
2016-07-19 17:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CITEMLAYERCSG2D::IsPointInside( const SFVEC2F &aPoint ) const
|
|
|
|
{
|
|
|
|
// Perform the operation (A - B) /\ C
|
|
|
|
|
|
|
|
if( m_objectA->IsPointInside( aPoint ) )
|
|
|
|
{
|
|
|
|
|
|
|
|
if( m_objectB != CSGITEM_EMPTY)
|
|
|
|
for( unsigned int i = 0; i< m_objectB->size(); i++ )
|
|
|
|
{
|
|
|
|
if( (*m_objectB)[i]->IsPointInside( aPoint ) )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// !TODO: not yet implemented
|
|
|
|
//if( m_objectC && m_objectC != CSGITEM_FULL )
|
|
|
|
// return m_objectC->IsPointInside( aPoint );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|