kicad/3d-viewer/3d_read_mesh.cpp

118 lines
3.1 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras@wanadoo.fr
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-2011 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 3d_read_mesh.cpp
*/
2007-05-06 16:03:28 +00:00
#include <fctsys.h>
#include <common.h>
#include <macros.h>
#include <kicad_string.h>
#include <appl_wxstruct.h>
2007-05-06 16:03:28 +00:00
#include <3d_viewer.h>
#include <info3d_visu.h>
#include "3d_struct.h"
#include "modelparsers.h"
// Imported function:
extern void Set_Object_Data( std::vector< S3D_VERTEX >& aVertices, double aBiuTo3DUnits );
2007-05-06 16:03:28 +00:00
S3D_MODEL_PARSER* S3D_MODEL_PARSER::Create( S3D_MASTER* aMaster,
const wxString aExtension )
{
if ( aExtension == wxT( "x3d" ) )
{
return new X3D_MODEL_PARSER( aMaster );
}
else if ( aExtension == wxT( "wrl" ) )
{
return new VRML_MODEL_PARSER( aMaster );
}
else
{
return NULL;
}
}
2007-05-06 16:03:28 +00:00
int S3D_MASTER::ReadData()
2007-05-06 16:03:28 +00:00
{
2008-01-01 07:53:29 +00:00
if( m_Shape3DName.IsEmpty() )
{
return 1;
}
// Expand any environment variables embedded in footprint's m_Shape3DName field.
wxString filename = wxExpandEnvVars( m_Shape3DName );
#ifdef __WINDOWS__
filename.Replace( wxT( "/" ), wxT( "\\" ) );
#else
filename.Replace( wxT( "\\" ), wxT( "/" ) );
#endif
if( !wxFileName::FileExists( filename ) )
2011-09-17 15:31:21 +00:00
{
wxLogDebug( wxT( "3D shape '%s' not found, even tried '%s' after env var substitution." ),
GetChars( m_Shape3DName ),
GetChars( filename )
);
return -1;
}
wxFileName fn( filename );
wxString extension = fn.GetExt();
S3D_MODEL_PARSER* parser = S3D_MODEL_PARSER::Create( this, extension );
if( parser )
2008-01-01 07:53:29 +00:00
{
parser->Load( filename );
delete parser;
2008-01-01 07:53:29 +00:00
return 0;
}
else
2008-01-01 07:53:29 +00:00
{
wxLogDebug( wxT( "Unknown file type '%s'" ), GetChars( extension ) );
2008-01-01 07:53:29 +00:00
}
2011-09-17 15:31:21 +00:00
2008-01-01 07:53:29 +00:00
return -1;
2007-05-06 16:03:28 +00:00
}
int STRUCT_3D_SHAPE::ReadData( FILE* file, int* LineNum )
2007-05-06 16:03:28 +00:00
{
2008-01-01 07:53:29 +00:00
char line[512];
2007-05-06 16:03:28 +00:00
2008-01-01 07:53:29 +00:00
while( GetLine( file, line, LineNum, 512 ) )
{
}
2007-05-06 16:03:28 +00:00
2008-01-01 07:53:29 +00:00
return -1;
2007-05-06 16:03:28 +00:00
}