Fix a few Coverity warnings. A bit of clean code in export_vrml.cpp.

This commit is contained in:
jean-pierre charras 2016-12-30 12:39:41 +01:00
parent aa27e9ff7e
commit dec2d6e8cc
7 changed files with 168 additions and 161 deletions

View File

@ -47,6 +47,7 @@ class VIEW_ITEM_DATA
{ {
public: public:
VIEW_ITEM_DATA() : VIEW_ITEM_DATA() :
m_view( nullptr ),
m_flags( KIGFX::VISIBLE ), m_flags( KIGFX::VISIBLE ),
m_requiredUpdate( KIGFX::NONE ), m_requiredUpdate( KIGFX::NONE ),
m_groups( nullptr ), m_groups( nullptr ),

View File

@ -916,15 +916,27 @@ void mpScaleX::recalculateTicks( wxDC& dc, mpWindow& w )
m_tickLabels.push_back( TickLabel( t ) ); m_tickLabels.push_back( TickLabel( t ) );
} }
// n0 = floor(minVvis / bestStep) * bestStep;
// end = n0 +
// n0 = floor( (w.GetPosX() ) / step ) * step ;
// printf("zeroOffset:%.3f tickjs : %d\n", zeroOffset, m_tickValues.size());
updateTickLabels( dc, w ); updateTickLabels( dc, w );
} }
mpScaleBase::mpScaleBase()
{
m_rangeSet = false;
m_nameFlags = mpALIGN_BORDER_BOTTOM;
// initialize these members mainly to avoid not initialized values
m_offset = 0.0;
m_scale = 1.0;
m_absVisibleMaxV = 0.0;
m_flags = 0; // Flag for axis alignment
m_ticks = true; // Flag to toggle between ticks or grid
m_minV = 0.0;
m_maxV = 0.0;
m_maxLabelHeight = 1;
m_maxLabelWidth = 1;
}
#if 0 #if 0
int mpScaleBase::getLabelDecimalDigits( int maxDigits ) int mpScaleBase::getLabelDecimalDigits( int maxDigits )
{ {
@ -2690,9 +2702,6 @@ void mpWindow::SetMPScrollbars( bool status )
bool mpWindow::UpdateBBox() bool mpWindow::UpdateBBox()
{ {
bool first = true;
m_minX = 0.0; m_minX = 0.0;
m_maxX = 1.0; m_maxX = 1.0;
m_minY = 0.0; m_minY = 0.0;
@ -2701,6 +2710,7 @@ bool mpWindow::UpdateBBox()
return true; return true;
#if 0 #if 0
bool first = true;
for( wxLayerList::iterator li = m_layers.begin(); li != m_layers.end(); li++ ) for( wxLayerList::iterator li = m_layers.begin(); li != m_layers.end(); li++ )
{ {
@ -2733,14 +2743,14 @@ bool mpWindow::UpdateBBox()
// node = node->GetNext(); // node = node->GetNext();
} }
#endif
#ifdef MATHPLOT_DO_LOGGING #ifdef MATHPLOT_DO_LOGGING
wxLogDebug( wxT( wxLogDebug( wxT(
"[mpWindow::UpdateBBox] Bounding box: Xmin = %f, Xmax = %f, Ymin = %f, YMax = %f" ), m_minX, m_maxX, m_minY, "[mpWindow::UpdateBBox] Bounding box: Xmin = %f, Xmax = %f, Ymin = %f, YMax = %f" ), m_minX, m_maxX, m_minY,
m_maxY ); m_maxY );
#endif // MATHPLOT_DO_LOGGING #endif // MATHPLOT_DO_LOGGING
return first == false; return first == false;
#endif
} }

View File

@ -1990,6 +1990,7 @@ SCH_LEGACY_PLUGIN_CACHE::SCH_LEGACY_PLUGIN_CACHE( const wxString& aFullPathAndFi
{ {
m_versionMajor = -1; m_versionMajor = -1;
m_versionMinor = -1; m_versionMinor = -1;
m_libType = LIBRARY_TYPE_EESCHEMA;
} }

View File

@ -690,7 +690,7 @@ protected:
class WXDLLIMPEXP_MATHPLOT mpScaleBase : public mpLayer class WXDLLIMPEXP_MATHPLOT mpScaleBase : public mpLayer
{ {
public: public:
mpScaleBase() { m_rangeSet = false; m_nameFlags = mpALIGN_BORDER_BOTTOM; }; mpScaleBase();
virtual ~mpScaleBase() {}; virtual ~mpScaleBase() {};
virtual bool IsHorizontal() = 0; virtual bool IsHorizontal() = 0;
@ -1587,7 +1587,6 @@ public:
double GetMaxY() override { return m_maxY; } double GetMaxY() override { return m_maxY; }
protected: protected:
int m_flags; // !< Holds label alignment
DECLARE_DYNAMIC_CLASS( mpFXYVector ) DECLARE_DYNAMIC_CLASS( mpFXYVector )
}; };

View File

@ -41,14 +41,9 @@
#include "class_zone.h" #include "class_zone.h"
#include "convert_to_biu.h" #include "convert_to_biu.h"
#include "drawtxt.h" #include "drawtxt.h"
#include "fctsys.h"
#include "kicad_string.h"
#include "kiway.h"
#include "macros.h" #include "macros.h"
#include "pcbnew.h"
#include "pgm_base.h" #include "pgm_base.h"
#include "plugins/3dapi/ifsg_all.h" #include "plugins/3dapi/ifsg_all.h"
#include "trigo.h"
#include "vrml_layer.h" #include "vrml_layer.h"
#include "wxPcbStruct.h" #include "wxPcbStruct.h"
#include "../../kicad/kicad.h" #include "../../kicad/kicad.h"
@ -145,47 +140,46 @@ static SGNODE* sgmaterial[VRML_COLOR_LAST] = { NULL };
class MODEL_VRML class MODEL_VRML
{ {
private: private:
double layer_z[LAYER_ID_COUNT]; double m_layer_z[LAYER_ID_COUNT];
int iMaxSeg; // max. sides to a small circle int m_iMaxSeg; // max. sides to a small circle
double arcMinLen, arcMaxLen; // min and max lengths of an arc chord double m_arcMinLen, m_arcMaxLen; // min and max lengths of an arc chord
public: public:
IFSG_TRANSFORM OutputPCB; IFSG_TRANSFORM m_OutputPCB;
VRML_LAYER holes; VRML_LAYER m_holes;
VRML_LAYER board; VRML_LAYER m_board;
VRML_LAYER top_copper; VRML_LAYER m_top_copper;
VRML_LAYER bot_copper; VRML_LAYER m_bot_copper;
VRML_LAYER top_silk; VRML_LAYER m_top_silk;
VRML_LAYER bot_silk; VRML_LAYER m_bot_silk;
VRML_LAYER top_tin; VRML_LAYER m_top_tin;
VRML_LAYER bot_tin; VRML_LAYER m_bot_tin;
VRML_LAYER plated_holes; VRML_LAYER m_plated_holes;
std::list< SGNODE* > components; std::list< SGNODE* > m_components;
bool plainPCB; bool m_plainPCB;
double minLineWidth; // minimum width of a VRML line segment double m_minLineWidth; // minimum width of a VRML line segment
int precision; // precision of output units
double tx; // global translation along X double m_tx; // global translation along X
double ty; // global translation along Y double m_ty; // global translation along Y
double board_thickness; // depth of the PCB double m_brd_thickness; // depth of the PCB
LAYER_NUM s_text_layer; LAYER_NUM m_text_layer;
int s_text_width; int m_text_width;
MODEL_VRML() : OutputPCB( (SGNODE*) NULL ) MODEL_VRML() : m_OutputPCB( (SGNODE*) NULL )
{ {
for( unsigned i = 0; i < DIM( layer_z ); ++i ) for( unsigned i = 0; i < DIM( m_layer_z ); ++i )
layer_z[i] = 0; m_layer_z[i] = 0;
holes.GetArcParams( iMaxSeg, arcMinLen, arcMaxLen ); m_holes.GetArcParams( m_iMaxSeg, m_arcMinLen, m_arcMaxLen );
// this default only makes sense if the output is in mm // this default only makes sense if the output is in mm
board_thickness = 1.6; m_brd_thickness = 1.6;
// pcb green // pcb green
colors[ VRML_COLOR_PCB ] = VRML_COLOR( .07, .3, .12, .01, .03, .01, colors[ VRML_COLOR_PCB ] = VRML_COLOR( .07, .3, .12, .01, .03, .01,
@ -200,10 +194,11 @@ public:
colors[ VRML_COLOR_TIN ] = VRML_COLOR( .749, .756, .761, .749, .756, .761, colors[ VRML_COLOR_TIN ] = VRML_COLOR( .749, .756, .761, .749, .756, .761,
0, 0, 0, 0.8, 0, 0.8 ); 0, 0, 0, 0.8, 0, 0.8 );
plainPCB = false; m_plainPCB = false;
SetOffset( 0.0, 0.0 ); SetOffset( 0.0, 0.0 );
s_text_layer = F_Cu; m_text_layer = F_Cu;
s_text_width = 1; m_text_width = 1;
m_minLineWidth = MIN_VRML_LINEWIDTH;
} }
~MODEL_VRML() ~MODEL_VRML()
@ -217,18 +212,18 @@ public:
sgmaterial[j] = NULL; sgmaterial[j] = NULL;
} }
if( !components.empty() ) if( !m_components.empty() )
{ {
IFSG_TRANSFORM tmp( false ); IFSG_TRANSFORM tmp( false );
for( auto i : components ) for( auto i : m_components )
{ {
tmp.Attach( i ); tmp.Attach( i );
tmp.SetParent( NULL ); tmp.SetParent( NULL );
} }
components.clear(); m_components.clear();
OutputPCB.Destroy(); m_OutputPCB.Destroy();
} }
} }
@ -239,31 +234,31 @@ public:
void SetOffset( double aXoff, double aYoff ) void SetOffset( double aXoff, double aYoff )
{ {
tx = aXoff; m_tx = aXoff;
ty = -aYoff; m_ty = -aYoff;
holes.SetVertexOffsets( aXoff, aYoff ); m_holes.SetVertexOffsets( aXoff, aYoff );
board.SetVertexOffsets( aXoff, aYoff ); m_board.SetVertexOffsets( aXoff, aYoff );
top_copper.SetVertexOffsets( aXoff, aYoff ); m_top_copper.SetVertexOffsets( aXoff, aYoff );
bot_copper.SetVertexOffsets( aXoff, aYoff ); m_bot_copper.SetVertexOffsets( aXoff, aYoff );
top_silk.SetVertexOffsets( aXoff, aYoff ); m_top_silk.SetVertexOffsets( aXoff, aYoff );
bot_silk.SetVertexOffsets( aXoff, aYoff ); m_bot_silk.SetVertexOffsets( aXoff, aYoff );
top_tin.SetVertexOffsets( aXoff, aYoff ); m_top_tin.SetVertexOffsets( aXoff, aYoff );
bot_tin.SetVertexOffsets( aXoff, aYoff ); m_bot_tin.SetVertexOffsets( aXoff, aYoff );
plated_holes.SetVertexOffsets( aXoff, aYoff ); m_plated_holes.SetVertexOffsets( aXoff, aYoff );
} }
double GetLayerZ( LAYER_NUM aLayer ) double GetLayerZ( LAYER_NUM aLayer )
{ {
if( unsigned( aLayer ) >= DIM( layer_z ) ) if( unsigned( aLayer ) >= DIM( m_layer_z ) )
return 0; return 0;
return layer_z[ aLayer ]; return m_layer_z[ aLayer ];
} }
void SetLayerZ( LAYER_NUM aLayer, double aValue ) void SetLayerZ( LAYER_NUM aLayer, double aValue )
{ {
layer_z[aLayer] = aValue; m_layer_z[aLayer] = aValue;
} }
// set the scaling of the VRML world // set the scaling of the VRML world
@ -272,7 +267,7 @@ public:
if( aWorldScale < 0.001 || aWorldScale > 10.0 ) if( aWorldScale < 0.001 || aWorldScale > 10.0 )
throw( std::runtime_error( "WorldScale out of range (valid range is 0.001 to 10.0)" ) ); throw( std::runtime_error( "WorldScale out of range (valid range is 0.001 to 10.0)" ) );
OutputPCB.SetScale( aWorldScale * 2.54 ); m_OutputPCB.SetScale( aWorldScale * 2.54 );
WORLD_SCALE = aWorldScale * 2.54; WORLD_SCALE = aWorldScale * 2.54;
return true; return true;
@ -292,19 +287,19 @@ static bool GetLayer( MODEL_VRML& aModel, LAYER_NUM layer, VRML_LAYER** vlayer )
switch( layer ) switch( layer )
{ {
case B_Cu: case B_Cu:
*vlayer = &aModel.bot_copper; *vlayer = &aModel.m_bot_copper;
break; break;
case F_Cu: case F_Cu:
*vlayer = &aModel.top_copper; *vlayer = &aModel.m_top_copper;
break; break;
case B_SilkS: case B_SilkS:
*vlayer = &aModel.bot_silk; *vlayer = &aModel.m_bot_silk;
break; break;
case F_SilkS: case F_SilkS:
*vlayer = &aModel.top_silk; *vlayer = &aModel.m_top_silk;
break; break;
default: default:
@ -423,140 +418,140 @@ static void write_triangle_bag( std::ofstream& aOut_file, VRML_COLOR& aColor,
static void write_layers( MODEL_VRML& aModel, BOARD* aPcb, const char* aFileName ) static void write_layers( MODEL_VRML& aModel, BOARD* aPcb, const char* aFileName )
{ {
// VRML_LAYER board; // VRML_LAYER board;
aModel.board.Tesselate( &aModel.holes ); aModel.m_board.Tesselate( &aModel.m_holes );
double brdz = aModel.board_thickness / 2.0 double brdz = aModel.m_brd_thickness / 2.0
- ( Millimeter2iu( ART_OFFSET / 2.0 ) ) * BOARD_SCALE; - ( Millimeter2iu( ART_OFFSET / 2.0 ) ) * BOARD_SCALE;
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_PCB ), write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_PCB ),
&aModel.board, false, false, brdz, -brdz ); &aModel.m_board, false, false, brdz, -brdz );
} }
else else
{ {
create_vrml_shell( aModel.OutputPCB, VRML_COLOR_PCB, &aModel.board, brdz, -brdz ); create_vrml_shell( aModel.m_OutputPCB, VRML_COLOR_PCB, &aModel.m_board, brdz, -brdz );
} }
if( aModel.plainPCB ) if( aModel.m_plainPCB )
{ {
if( !USE_INLINES ) if( !USE_INLINES )
S3D::WriteVRML( aFileName, true, aModel.OutputPCB.GetRawPtr(), USE_DEFS, true ); S3D::WriteVRML( aFileName, true, aModel.m_OutputPCB.GetRawPtr(), USE_DEFS, true );
return; return;
} }
// VRML_LAYER top_copper; // VRML_LAYER m_top_copper;
aModel.top_copper.Tesselate( &aModel.holes ); aModel.m_top_copper.Tesselate( &aModel.m_holes );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TRACK ), write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TRACK ),
&aModel.top_copper, true, true, &aModel.m_top_copper, true, true,
aModel.GetLayerZ( F_Cu ), 0 ); aModel.GetLayerZ( F_Cu ), 0 );
} }
else else
{ {
create_vrml_plane( aModel.OutputPCB, VRML_COLOR_TRACK, &aModel.top_copper, create_vrml_plane( aModel.m_OutputPCB, VRML_COLOR_TRACK, &aModel.m_top_copper,
aModel.GetLayerZ( F_Cu ), true ); aModel.GetLayerZ( F_Cu ), true );
} }
// VRML_LAYER top_tin; // VRML_LAYER m_top_tin;
aModel.top_tin.Tesselate( &aModel.holes ); aModel.m_top_tin.Tesselate( &aModel.m_holes );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TIN ), write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TIN ),
&aModel.top_tin, true, true, &aModel.m_top_tin, true, true,
aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE, aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE,
0 ); 0 );
} }
else else
{ {
create_vrml_plane( aModel.OutputPCB, VRML_COLOR_TIN, &aModel.top_tin, create_vrml_plane( aModel.m_OutputPCB, VRML_COLOR_TIN, &aModel.m_top_tin,
aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE, aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE,
true ); true );
} }
// VRML_LAYER bot_copper; // VRML_LAYER m_bot_copper;
aModel.bot_copper.Tesselate( &aModel.holes ); aModel.m_bot_copper.Tesselate( &aModel.m_holes );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TRACK ), write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TRACK ),
&aModel.bot_copper, true, false, &aModel.m_bot_copper, true, false,
aModel.GetLayerZ( B_Cu ), 0 ); aModel.GetLayerZ( B_Cu ), 0 );
} }
else else
{ {
create_vrml_plane( aModel.OutputPCB, VRML_COLOR_TRACK, &aModel.bot_copper, create_vrml_plane( aModel.m_OutputPCB, VRML_COLOR_TRACK, &aModel.m_bot_copper,
aModel.GetLayerZ( B_Cu ), false ); aModel.GetLayerZ( B_Cu ), false );
} }
// VRML_LAYER bot_tin; // VRML_LAYER m_bot_tin;
aModel.bot_tin.Tesselate( &aModel.holes ); aModel.m_bot_tin.Tesselate( &aModel.m_holes );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TIN ), write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TIN ),
&aModel.bot_tin, true, false, &aModel.m_bot_tin, true, false,
aModel.GetLayerZ( B_Cu ) aModel.GetLayerZ( B_Cu )
- Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE, - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE,
0 ); 0 );
} }
else else
{ {
create_vrml_plane( aModel.OutputPCB, VRML_COLOR_TIN, &aModel.bot_tin, create_vrml_plane( aModel.m_OutputPCB, VRML_COLOR_TIN, &aModel.m_bot_tin,
aModel.GetLayerZ( B_Cu ) - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE, aModel.GetLayerZ( B_Cu ) - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE,
false ); false );
} }
// VRML_LAYER PTH; // VRML_LAYER PTH;
aModel.plated_holes.Tesselate( NULL, true ); aModel.m_plated_holes.Tesselate( NULL, true );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TIN ), write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_TIN ),
&aModel.plated_holes, false, false, &aModel.m_plated_holes, false, false,
aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE, aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE,
aModel.GetLayerZ( B_Cu ) - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE ); aModel.GetLayerZ( B_Cu ) - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE );
} }
else else
{ {
create_vrml_shell( aModel.OutputPCB, VRML_COLOR_TIN, &aModel.plated_holes, create_vrml_shell( aModel.m_OutputPCB, VRML_COLOR_TIN, &aModel.m_plated_holes,
aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE, aModel.GetLayerZ( F_Cu ) + Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE,
aModel.GetLayerZ( B_Cu ) - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE ); aModel.GetLayerZ( B_Cu ) - Millimeter2iu( ART_OFFSET / 2.0 ) * BOARD_SCALE );
} }
// VRML_LAYER top_silk; // VRML_LAYER m_top_silk;
aModel.top_silk.Tesselate( &aModel.holes ); aModel.m_top_silk.Tesselate( &aModel.m_holes );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_SILK ), &aModel.top_silk, write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_SILK ), &aModel.m_top_silk,
true, true, aModel.GetLayerZ( F_SilkS ), 0 ); true, true, aModel.GetLayerZ( F_SilkS ), 0 );
} }
else else
{ {
create_vrml_plane( aModel.OutputPCB, VRML_COLOR_SILK, &aModel.top_silk, create_vrml_plane( aModel.m_OutputPCB, VRML_COLOR_SILK, &aModel.m_top_silk,
aModel.GetLayerZ( F_SilkS ), true ); aModel.GetLayerZ( F_SilkS ), true );
} }
// VRML_LAYER bot_silk; // VRML_LAYER m_bot_silk;
aModel.bot_silk.Tesselate( &aModel.holes ); aModel.m_bot_silk.Tesselate( &aModel.m_holes );
if( USE_INLINES ) if( USE_INLINES )
{ {
write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_SILK ), &aModel.bot_silk, write_triangle_bag( output_file, aModel.GetColor( VRML_COLOR_SILK ), &aModel.m_bot_silk,
true, false, aModel.GetLayerZ( B_SilkS ), 0 ); true, false, aModel.GetLayerZ( B_SilkS ), 0 );
} }
else else
{ {
create_vrml_plane( aModel.OutputPCB, VRML_COLOR_SILK, &aModel.bot_silk, create_vrml_plane( aModel.m_OutputPCB, VRML_COLOR_SILK, &aModel.m_bot_silk,
aModel.GetLayerZ( B_SilkS ), false ); aModel.GetLayerZ( B_SilkS ), false );
} }
if( !USE_INLINES ) if( !USE_INLINES )
S3D::WriteVRML( aFileName, true, aModel.OutputPCB.GetRawPtr(), true, true ); S3D::WriteVRML( aFileName, true, aModel.m_OutputPCB.GetRawPtr(), true, true );
} }
@ -565,8 +560,8 @@ static void compute_layer_Zs( MODEL_VRML& aModel, BOARD* pcb )
int copper_layers = pcb->GetCopperLayerCount(); int copper_layers = pcb->GetCopperLayerCount();
// We call it 'layer' thickness, but it's the whole board thickness! // We call it 'layer' thickness, but it's the whole board thickness!
aModel.board_thickness = pcb->GetDesignSettings().GetBoardThickness() * BOARD_SCALE; aModel.m_brd_thickness = pcb->GetDesignSettings().GetBoardThickness() * BOARD_SCALE;
double half_thickness = aModel.board_thickness / 2; double half_thickness = aModel.m_brd_thickness / 2;
// Compute each layer's Z value, more or less like the 3d view // Compute each layer's Z value, more or less like the 3d view
for( LSEQ seq = LSET::AllCuMask().Seq(); seq; ++seq ) for( LSEQ seq = LSET::AllCuMask().Seq(); seq; ++seq )
@ -574,7 +569,7 @@ static void compute_layer_Zs( MODEL_VRML& aModel, BOARD* pcb )
LAYER_ID i = *seq; LAYER_ID i = *seq;
if( i < copper_layers ) if( i < copper_layers )
aModel.SetLayerZ( i, half_thickness - aModel.board_thickness * i / (copper_layers - 1) ); aModel.SetLayerZ( i, half_thickness - aModel.m_brd_thickness * i / (copper_layers - 1) );
else else
aModel.SetLayerZ( i, - half_thickness ); // bottom layer aModel.SetLayerZ( i, - half_thickness ); // bottom layer
} }
@ -607,8 +602,8 @@ static void export_vrml_line( MODEL_VRML& aModel, LAYER_NUM layer,
if( !GetLayer( aModel, layer, &vlayer ) ) if( !GetLayer( aModel, layer, &vlayer ) )
return; return;
if( width < aModel.minLineWidth) if( width < aModel.m_minLineWidth)
width = aModel.minLineWidth; width = aModel.m_minLineWidth;
starty = -starty; starty = -starty;
endy = -endy; endy = -endy;
@ -632,8 +627,8 @@ static void export_vrml_circle( MODEL_VRML& aModel, LAYER_NUM layer,
if( !GetLayer( aModel, layer, &vlayer ) ) if( !GetLayer( aModel, layer, &vlayer ) )
return; return;
if( width < aModel.minLineWidth ) if( width < aModel.m_minLineWidth )
width = aModel.minLineWidth; width = aModel.m_minLineWidth;
starty = -starty; starty = -starty;
endy = -endy; endy = -endy;
@ -664,8 +659,8 @@ static void export_vrml_arc( MODEL_VRML& aModel, LAYER_NUM layer,
if( !GetLayer( aModel, layer, &vlayer ) ) if( !GetLayer( aModel, layer, &vlayer ) )
return; return;
if( width < aModel.minLineWidth ) if( width < aModel.m_minLineWidth )
width = aModel.minLineWidth; width = aModel.m_minLineWidth;
centery = -centery; centery = -centery;
arc_starty = -arc_starty; arc_starty = -arc_starty;
@ -719,20 +714,20 @@ static void export_vrml_drawsegment( MODEL_VRML& aModel, DRAWSEGMENT* drawseg )
* for coupling the vrml_text_callback with the common parameters */ * for coupling the vrml_text_callback with the common parameters */
static void vrml_text_callback( int x0, int y0, int xf, int yf ) static void vrml_text_callback( int x0, int y0, int xf, int yf )
{ {
LAYER_NUM s_text_layer = model_vrml->s_text_layer; LAYER_NUM m_text_layer = model_vrml->m_text_layer;
int s_text_width = model_vrml->s_text_width; int m_text_width = model_vrml->m_text_width;
export_vrml_line( *model_vrml, s_text_layer, export_vrml_line( *model_vrml, m_text_layer,
x0 * BOARD_SCALE, y0 * BOARD_SCALE, x0 * BOARD_SCALE, y0 * BOARD_SCALE,
xf * BOARD_SCALE, yf * BOARD_SCALE, xf * BOARD_SCALE, yf * BOARD_SCALE,
s_text_width * BOARD_SCALE ); m_text_width * BOARD_SCALE );
} }
static void export_vrml_pcbtext( MODEL_VRML& aModel, TEXTE_PCB* text ) static void export_vrml_pcbtext( MODEL_VRML& aModel, TEXTE_PCB* text )
{ {
model_vrml->s_text_layer = text->GetLayer(); model_vrml->m_text_layer = text->GetLayer();
model_vrml->s_text_width = text->GetThickness(); model_vrml->m_text_width = text->GetThickness();
wxSize size = text->GetSize(); wxSize size = text->GetSize();
@ -800,14 +795,14 @@ static void export_vrml_drawings( MODEL_VRML& aModel, BOARD* pcb )
// board edges and cutouts // board edges and cutouts
static void export_vrml_board( MODEL_VRML& aModel, BOARD* pcb ) static void export_vrml_board( MODEL_VRML& aModel, BOARD* aPcb )
{ {
SHAPE_POLY_SET bufferPcbOutlines; // stores the board main outlines SHAPE_POLY_SET bufferPcbOutlines; // stores the board main outlines
SHAPE_POLY_SET allLayerHoles; // Contains through holes, calculated only once SHAPE_POLY_SET allLayerHoles; // Contains through holes, calculated only once
// Build a polygon from edge cut items // Build a polygon from edge cut items
wxString msg; wxString msg;
if( !pcb->GetBoardPolygonOutlines( bufferPcbOutlines, allLayerHoles, &msg ) ) if( !aPcb->GetBoardPolygonOutlines( bufferPcbOutlines, allLayerHoles, &msg ) )
{ {
msg << "\n\n" << msg << "\n\n" <<
_( "Unable to calculate the board outlines; fall back to using the board boundary box." ); _( "Unable to calculate the board outlines; fall back to using the board boundary box." );
@ -820,23 +815,23 @@ static void export_vrml_board( MODEL_VRML& aModel, BOARD* pcb )
{ {
const SHAPE_LINE_CHAIN& outline = bufferPcbOutlines.COutline( i ); const SHAPE_LINE_CHAIN& outline = bufferPcbOutlines.COutline( i );
seg = aModel.board.NewContour(); seg = aModel.m_board.NewContour();
for( int j = 0; j < outline.PointCount(); j++ ) for( int j = 0; j < outline.PointCount(); j++ )
{ {
aModel.board.AddVertex( seg, (double)outline.CPoint(j).x * BOARD_SCALE, aModel.m_board.AddVertex( seg, (double)outline.CPoint(j).x * BOARD_SCALE,
-((double)outline.CPoint(j).y * BOARD_SCALE ) ); -((double)outline.CPoint(j).y * BOARD_SCALE ) );
} }
aModel.board.EnsureWinding( seg, false ); aModel.m_board.EnsureWinding( seg, false );
} }
for( int i = 0; i < allLayerHoles.OutlineCount(); i++ ) for( int i = 0; i < allLayerHoles.OutlineCount(); i++ )
{ {
const SHAPE_LINE_CHAIN& outline = allLayerHoles.COutline( i ); const SHAPE_LINE_CHAIN& outline = allLayerHoles.COutline( i );
seg = aModel.holes.NewContour(); seg = aModel.m_holes.NewContour();
if( seg < 0 ) if( seg < 0 )
{ {
@ -849,12 +844,12 @@ static void export_vrml_board( MODEL_VRML& aModel, BOARD* pcb )
for( int j = 0; j < outline.PointCount(); j++ ) for( int j = 0; j < outline.PointCount(); j++ )
{ {
aModel.holes.AddVertex( seg, (double)outline.CPoint(j).x * BOARD_SCALE, aModel.m_holes.AddVertex( seg, (double)outline.CPoint(j).x * BOARD_SCALE,
-((double)outline.CPoint(j).y * BOARD_SCALE ) ); -((double)outline.CPoint(j).y * BOARD_SCALE ) );
} }
aModel.holes.EnsureWinding( seg, true ); aModel.m_holes.EnsureWinding( seg, true );
} }
} }
@ -872,27 +867,27 @@ static void export_round_padstack( MODEL_VRML& aModel, BOARD* pcb,
thru = false; thru = false;
if( thru && hole > 0 ) if( thru && hole > 0 )
aModel.holes.AddCircle( x, -y, hole, true ); aModel.m_holes.AddCircle( x, -y, hole, true );
if( aModel.plainPCB ) if( aModel.m_plainPCB )
return; return;
while( 1 ) while( 1 )
{ {
if( layer == B_Cu ) if( layer == B_Cu )
{ {
aModel.bot_copper.AddCircle( x, -y, r ); aModel.m_bot_copper.AddCircle( x, -y, r );
if( hole > 0 && !thru ) if( hole > 0 && !thru )
aModel.bot_copper.AddCircle( x, -y, hole, true ); aModel.m_bot_copper.AddCircle( x, -y, hole, true );
} }
else if( layer == F_Cu ) else if( layer == F_Cu )
{ {
aModel.top_copper.AddCircle( x, -y, r ); aModel.m_top_copper.AddCircle( x, -y, r );
if( hole > 0 && !thru ) if( hole > 0 && !thru )
aModel.top_copper.AddCircle( x, -y, hole, true ); aModel.m_top_copper.AddCircle( x, -y, hole, true );
} }
@ -904,23 +899,23 @@ static void export_round_padstack( MODEL_VRML& aModel, BOARD* pcb,
} }
static void export_vrml_via( MODEL_VRML& aModel, BOARD* pcb, const VIA* via ) static void export_vrml_via( MODEL_VRML& aModel, BOARD* aPcb, const VIA* aVia )
{ {
double x, y, r, hole; double x, y, r, hole;
LAYER_ID top_layer, bottom_layer; LAYER_ID top_layer, bottom_layer;
hole = via->GetDrillValue() * BOARD_SCALE / 2.0; hole = aVia->GetDrillValue() * BOARD_SCALE / 2.0;
r = via->GetWidth() * BOARD_SCALE / 2.0; r = aVia->GetWidth() * BOARD_SCALE / 2.0;
x = via->GetStart().x * BOARD_SCALE; x = aVia->GetStart().x * BOARD_SCALE;
y = via->GetStart().y * BOARD_SCALE; y = aVia->GetStart().y * BOARD_SCALE;
via->LayerPair( &top_layer, &bottom_layer ); aVia->LayerPair( &top_layer, &bottom_layer );
// do not render a buried via // do not render a buried via
if( top_layer != F_Cu && bottom_layer != B_Cu ) if( top_layer != F_Cu && bottom_layer != B_Cu )
return; return;
// Export the via padstack // Export the via padstack
export_round_padstack( aModel, pcb, x, y, r, bottom_layer, top_layer, hole ); export_round_padstack( aModel, aPcb, x, y, r, bottom_layer, top_layer, hole );
} }
@ -933,7 +928,7 @@ static void export_vrml_tracks( MODEL_VRML& aModel, BOARD* pcb )
export_vrml_via( aModel, pcb, (const VIA*) track ); export_vrml_via( aModel, pcb, (const VIA*) track );
} }
else if( ( track->GetLayer() == B_Cu || track->GetLayer() == F_Cu ) else if( ( track->GetLayer() == B_Cu || track->GetLayer() == F_Cu )
&& !aModel.plainPCB ) && !aModel.m_plainPCB )
export_vrml_line( aModel, track->GetLayer(), export_vrml_line( aModel, track->GetLayer(),
track->GetStart().x * BOARD_SCALE, track->GetStart().x * BOARD_SCALE,
track->GetStart().y * BOARD_SCALE, track->GetStart().y * BOARD_SCALE,
@ -993,8 +988,8 @@ static void export_vrml_text_module( TEXTE_MODULE* module )
if( module->IsMirrored() ) if( module->IsMirrored() )
size.x = -size.x; // Text is mirrored size.x = -size.x; // Text is mirrored
model_vrml->s_text_layer = module->GetLayer(); model_vrml->m_text_layer = module->GetLayer();
model_vrml->s_text_width = module->GetThickness(); model_vrml->m_text_width = module->GetThickness();
DrawGraphicText( NULL, NULL, module->GetTextPosition(), BLACK, DrawGraphicText( NULL, NULL, module->GetTextPosition(), BLACK,
module->GetShownText(), module->GetDrawRotation(), size, module->GetShownText(), module->GetDrawRotation(), size,
@ -1156,7 +1151,7 @@ static void export_vrml_padshape( MODEL_VRML& aModel, VRML_LAYER* aTinLayer, D_P
} }
static void export_vrml_pad( MODEL_VRML& aModel, BOARD* pcb, D_PAD* aPad ) static void export_vrml_pad( MODEL_VRML& aModel, BOARD* aPcb, D_PAD* aPad )
{ {
double hole_drill_w = (double) aPad->GetDrillSize().x * BOARD_SCALE / 2.0; double hole_drill_w = (double) aPad->GetDrillSize().x * BOARD_SCALE / 2.0;
double hole_drill_h = (double) aPad->GetDrillSize().y * BOARD_SCALE / 2.0; double hole_drill_h = (double) aPad->GetDrillSize().y * BOARD_SCALE / 2.0;
@ -1170,7 +1165,7 @@ static void export_vrml_pad( MODEL_VRML& aModel, BOARD* pcb, D_PAD* aPad )
bool pth = false; bool pth = false;
if( ( aPad->GetAttribute() != PAD_ATTRIB_HOLE_NOT_PLATED ) if( ( aPad->GetAttribute() != PAD_ATTRIB_HOLE_NOT_PLATED )
&& !aModel.plainPCB ) && !aModel.m_plainPCB )
pth = true; pth = true;
if( aPad->GetDrillShape() == PAD_DRILL_SHAPE_OBLONG ) if( aPad->GetDrillShape() == PAD_DRILL_SHAPE_OBLONG )
@ -1179,17 +1174,17 @@ static void export_vrml_pad( MODEL_VRML& aModel, BOARD* pcb, D_PAD* aPad )
if( pth ) if( pth )
{ {
aModel.holes.AddSlot( hole_x, -hole_y, hole_drill_w * 2.0 + PLATE_OFFSET, aModel.m_holes.AddSlot( hole_x, -hole_y, hole_drill_w * 2.0 + PLATE_OFFSET,
hole_drill_h * 2.0 + PLATE_OFFSET, hole_drill_h * 2.0 + PLATE_OFFSET,
aPad->GetOrientation()/10.0, true, true ); aPad->GetOrientation()/10.0, true, true );
aModel.plated_holes.AddSlot( hole_x, -hole_y, aModel.m_plated_holes.AddSlot( hole_x, -hole_y,
hole_drill_w * 2.0, hole_drill_h * 2.0, hole_drill_w * 2.0, hole_drill_h * 2.0,
aPad->GetOrientation()/10.0, true, false ); aPad->GetOrientation()/10.0, true, false );
} }
else else
{ {
aModel.holes.AddSlot( hole_x, -hole_y, hole_drill_w * 2.0, hole_drill_h * 2.0, aModel.m_holes.AddSlot( hole_x, -hole_y, hole_drill_w * 2.0, hole_drill_h * 2.0,
aPad->GetOrientation()/10.0, true, false ); aPad->GetOrientation()/10.0, true, false );
} }
@ -1200,18 +1195,18 @@ static void export_vrml_pad( MODEL_VRML& aModel, BOARD* pcb, D_PAD* aPad )
if( pth ) if( pth )
{ {
aModel.holes.AddCircle( hole_x, -hole_y, hole_drill + PLATE_OFFSET, true, true ); aModel.m_holes.AddCircle( hole_x, -hole_y, hole_drill + PLATE_OFFSET, true, true );
aModel.plated_holes.AddCircle( hole_x, -hole_y, hole_drill, true, false ); aModel.m_plated_holes.AddCircle( hole_x, -hole_y, hole_drill, true, false );
} }
else else
{ {
aModel.holes.AddCircle( hole_x, -hole_y, hole_drill, true, false ); aModel.m_holes.AddCircle( hole_x, -hole_y, hole_drill, true, false );
} }
} }
} }
if( aModel.plainPCB ) if( aModel.m_plainPCB )
return; return;
// The pad proper, on the selected layers // The pad proper, on the selected layers
@ -1219,12 +1214,12 @@ static void export_vrml_pad( MODEL_VRML& aModel, BOARD* pcb, D_PAD* aPad )
if( layer_mask[B_Cu] ) if( layer_mask[B_Cu] )
{ {
export_vrml_padshape( aModel, &aModel.bot_tin, aPad ); export_vrml_padshape( aModel, &aModel.m_bot_tin, aPad );
} }
if( layer_mask[F_Cu] ) if( layer_mask[F_Cu] )
{ {
export_vrml_padshape( aModel, &aModel.top_tin, aPad ); export_vrml_padshape( aModel, &aModel.m_top_tin, aPad );
} }
} }
@ -1272,7 +1267,7 @@ static void compose_quat( double q1[4], double q2[4], double qr[4] )
static void export_vrml_module( MODEL_VRML& aModel, BOARD* aPcb, MODULE* aModule ) static void export_vrml_module( MODEL_VRML& aModel, BOARD* aPcb, MODULE* aModule )
{ {
if( !aModel.plainPCB ) if( !aModel.m_plainPCB )
{ {
// Reference and value // Reference and value
if( aModule->Reference().IsVisible() ) if( aModule->Reference().IsVisible() )
@ -1367,8 +1362,8 @@ static void export_vrml_module( MODEL_VRML& aModel, BOARD* aPcb, MODULE* aModule
RotatePoint( &offsetx, &offsety, aModule->GetOrientation() ); RotatePoint( &offsetx, &offsety, aModule->GetOrientation() );
SGPOINT trans; SGPOINT trans;
trans.x = ( offsetx + aModule->GetPosition().x ) * BOARD_SCALE + aModel.tx; trans.x = ( offsetx + aModule->GetPosition().x ) * BOARD_SCALE + aModel.m_tx;
trans.y = -(offsety + aModule->GetPosition().y) * BOARD_SCALE - aModel.ty; trans.y = -(offsety + aModule->GetPosition().y) * BOARD_SCALE - aModel.m_ty;
trans.z = (offsetz * BOARD_SCALE ) + aModel.GetLayerZ( aModule->GetLayer() ); trans.z = (offsetz * BOARD_SCALE ) + aModel.GetLayerZ( aModule->GetLayer() );
if( USE_INLINES ) if( USE_INLINES )
@ -1449,7 +1444,7 @@ static void export_vrml_module( MODEL_VRML& aModel, BOARD* aPcb, MODULE* aModule
} }
else else
{ {
IFSG_TRANSFORM* modelShape = new IFSG_TRANSFORM( aModel.OutputPCB.GetRawPtr() ); IFSG_TRANSFORM* modelShape = new IFSG_TRANSFORM( aModel.m_OutputPCB.GetRawPtr() );
// only write a rotation if it is >= 0.1 deg // only write a rotation if it is >= 0.1 deg
if( std::abs( rot[3] ) > 0.0001745 ) if( std::abs( rot[3] ) > 0.0001745 )
@ -1460,7 +1455,7 @@ static void export_vrml_module( MODEL_VRML& aModel, BOARD* aPcb, MODULE* aModule
if( NULL == S3D::GetSGNodeParent( mod3d ) ) if( NULL == S3D::GetSGNodeParent( mod3d ) )
{ {
aModel.components.push_back( mod3d ); aModel.m_components.push_back( mod3d );
modelShape->AddChildNode( mod3d ); modelShape->AddChildNode( mod3d );
} }
else else
@ -1506,7 +1501,7 @@ bool PCB_EDIT_FRAME::ExportVRML_File( const wxString& aFullFileName, double aMMt
} }
// plain PCB or else PCB with copper and silkscreen // plain PCB or else PCB with copper and silkscreen
model3d.plainPCB = aUsePlainPCB; model3d.m_plainPCB = aUsePlainPCB;
// locale switch for C numeric output // locale switch for C numeric output
LOCALE_IO* toggle = NULL; LOCALE_IO* toggle = NULL;
@ -1823,5 +1818,4 @@ static void create_vrml_shell( IFSG_TRANSFORM& PcbOutput, VRML_COLOR_INDEX color
coordIdx.AddIndex( (int)sidx ); coordIdx.AddIndex( (int)sidx );
++sidx; ++sidx;
} }
} }

View File

@ -61,6 +61,7 @@ DXF2BRD_CONVERTER::DXF2BRD_CONVERTER() : DRW_Interface()
m_version = 0; m_version = 0;
m_defaultThickness = 0.1; m_defaultThickness = 0.1;
m_brdLayer = Dwgs_User; m_brdLayer = Dwgs_User;
m_useModuleItems = true;
} }

View File

@ -78,6 +78,7 @@ ROUTER::ROUTER()
m_showInterSteps = false; m_showInterSteps = false;
m_snapshotIter = 0; m_snapshotIter = 0;
m_violation = false; m_violation = false;
m_iface = nullptr;
} }