2014-07-30 09:01:25 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-03-28 11:33:56 +00:00
|
|
|
* Copyright (C) 2014-2015 Mario Luzeiro <mrluzeiro@gmail.com>
|
2014-07-30 09:01:25 +00:00
|
|
|
* Copyright (C) 1992-2014 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 vrml_aux.h
|
2015-03-28 11:33:56 +00:00
|
|
|
* @brief auxiliar functions to parse VRML files
|
2014-07-30 09:01:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _VRML_AUX_H
|
|
|
|
#define _VRML_AUX_H
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <base_struct.h>
|
2015-03-29 10:59:53 +00:00
|
|
|
#define GLM_FORCE_RADIANS
|
2014-07-30 09:01:25 +00:00
|
|
|
#include <gal/opengl/glm/glm.hpp>
|
|
|
|
#include <vector>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <info3d_visu.h>
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
# ifdef __DARWIN__
|
|
|
|
# include <OpenGL/glu.h>
|
|
|
|
# else
|
|
|
|
# include <glu.h>
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# include <GL/glu.h>
|
|
|
|
#endif
|
|
|
|
#include <wx/glcanvas.h>
|
|
|
|
|
2015-03-28 11:33:56 +00:00
|
|
|
/**
|
|
|
|
* Function GetEpoxyThicknessBIU
|
|
|
|
* skip a VRML block and eventualy internal blocks until it find the close char
|
|
|
|
* @param File file to read from
|
|
|
|
* @param closeChar the expected close char of the block
|
|
|
|
* @return int - -1 if failed, 0 if OK
|
|
|
|
*/
|
|
|
|
int Read_NotImplemented( FILE* File, char closeChar);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ParseVertexList
|
|
|
|
* parse a vertex list
|
|
|
|
* @param File file to read from
|
|
|
|
* @param dst_vector destination vector list
|
|
|
|
* @return int - -1 if failed, 0 if OK
|
|
|
|
*/
|
|
|
|
int ParseVertexList( FILE* File, std::vector< glm::vec3 > &dst_vector);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ParseVertex
|
|
|
|
* parse a vertex
|
|
|
|
* @param File file to read from
|
|
|
|
* @param dst_vertex destination vector
|
2015-04-07 11:52:29 +00:00
|
|
|
* @return bool - return true if the 3 elements are read
|
2015-03-28 11:33:56 +00:00
|
|
|
*/
|
2015-04-07 11:52:29 +00:00
|
|
|
bool ParseVertex( FILE* File, glm::vec3 &dst_vertex );
|
2015-03-28 11:33:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ParseFloat
|
|
|
|
* parse a float value
|
2015-04-02 11:18:19 +00:00
|
|
|
* @param aFile file to read from
|
|
|
|
* @param aDstFloat destination float
|
|
|
|
* @param aDefaultValue = the default value, when the actual value cannot be read
|
|
|
|
* @return bool - Return true if the float was read without error
|
2015-03-28 11:33:56 +00:00
|
|
|
*/
|
2015-04-02 11:18:19 +00:00
|
|
|
bool ParseFloat( FILE* aFile, float *aDstFloat, float aDefaultValue );
|
2015-03-28 11:33:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetNextTag
|
|
|
|
* parse the next tag
|
|
|
|
* @param File file to read from
|
|
|
|
* @param tag destination pointer
|
|
|
|
* @param len max length of storage
|
|
|
|
* @return bool - true if succeeded, false if EOF
|
|
|
|
*/
|
2015-02-20 00:21:34 +00:00
|
|
|
bool GetNextTag( FILE* File, char* tag, size_t len );
|
2014-07-30 09:01:25 +00:00
|
|
|
|
2015-03-28 11:33:56 +00:00
|
|
|
/**
|
|
|
|
* Function GetString
|
|
|
|
* parse a string, it expects starting by " and end with "
|
|
|
|
* @param File file to read from
|
|
|
|
* @param aDstString destination pointer
|
|
|
|
* @param maxDstLen max length of storage
|
|
|
|
* @return bool - true if successful read the string, false if failed to get a string
|
|
|
|
*/
|
|
|
|
bool GetString( FILE* File, char* aDstString, size_t maxDstLen );
|
|
|
|
|
2014-07-30 09:01:25 +00:00
|
|
|
#endif
|