2011-11-10 15:55:05 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2012-08-21 10:45:54 +00:00
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2011-11-10 15:55:05 +00:00
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-09-17 15:31:21 +00:00
|
|
|
/**
|
|
|
|
* @file 3d_viewer.h
|
|
|
|
*/
|
2011-11-10 15:55:05 +00:00
|
|
|
|
2009-05-06 11:55:36 +00:00
|
|
|
#ifndef __3D_VIEWER_H__
|
|
|
|
#define __3D_VIEWER_H__
|
|
|
|
|
2012-08-26 13:59:55 +00:00
|
|
|
#include <wxBasePcbFrame.h> // for m_auimanager member.
|
2012-08-11 12:52:13 +00:00
|
|
|
#include <layers_id_colors_and_visibility.h> // Layers id definitions
|
2012-08-26 13:59:55 +00:00
|
|
|
#include <PolyLine.h> // fot CPolyPt
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
#if !wxUSE_GLCANVAS
|
|
|
|
#error Please set wxUSE_GLCANVAS to 1 in setup.h.
|
|
|
|
#endif
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <wx/glcanvas.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
# ifdef __DARWIN__
|
|
|
|
# include <OpenGL/glu.h>
|
|
|
|
# else
|
|
|
|
# include <glu.h>
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# include <GL/glu.h>
|
|
|
|
#endif
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <3d_struct.h>
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
class BOARD_DESIGN_SETTINGS;
|
|
|
|
class TRACK;
|
|
|
|
class TEXTE_PCB;
|
|
|
|
class DRAWSEGMENT;
|
|
|
|
class ZONE_CONTAINER;
|
|
|
|
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
#define KICAD_DEFAULT_3D_DRAWFRAME_STYLE wxDEFAULT_FRAME_STYLE | wxWANTS_CHARS
|
2008-10-26 17:39:17 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
#define LIB3D_PATH wxT( "packages3d" )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-03 15:09:39 +00:00
|
|
|
class EDA_3D_FRAME;
|
2012-08-21 10:45:54 +00:00
|
|
|
class S3D_VERTEX;
|
2007-06-05 12:10:51 +00:00
|
|
|
class SEGVIA;
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-17 15:31:21 +00:00
|
|
|
class EDA_3D_CANVAS : public wxGLCanvas
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
private:
|
2012-02-25 19:55:40 +00:00
|
|
|
bool m_init;
|
|
|
|
GLuint m_gllist;
|
2010-10-04 12:58:07 +00:00
|
|
|
/// Tracks whether to use Orthographic or Perspective projection
|
2012-02-25 19:55:40 +00:00
|
|
|
// TODO: Does this belong here, or in EDA_3D_FRAME ???
|
|
|
|
bool m_ortho;
|
|
|
|
wxGLContext* m_glRC;
|
|
|
|
wxRealPoint m_draw3dOffset; // offset to draw the 3 mesh.
|
|
|
|
double m_ZBottom; // position of the back layer
|
|
|
|
double m_ZTop; // position of the front layer
|
2011-08-03 15:09:39 +00:00
|
|
|
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
public:
|
2011-09-17 15:31:21 +00:00
|
|
|
EDA_3D_CANVAS( EDA_3D_FRAME* parent, int* attribList = 0 );
|
|
|
|
~EDA_3D_CANVAS();
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2012-02-25 19:55:40 +00:00
|
|
|
EDA_3D_FRAME* Parent() { return (EDA_3D_FRAME*)GetParent(); }
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
void ClearLists();
|
|
|
|
|
2012-02-25 19:55:40 +00:00
|
|
|
// Event functions:
|
2009-11-04 20:46:53 +00:00
|
|
|
void OnPaint( wxPaintEvent& event );
|
|
|
|
void OnEraseBackground( wxEraseEvent& event );
|
|
|
|
void OnChar( wxKeyEvent& event );
|
2010-01-11 14:44:49 +00:00
|
|
|
void OnMouseWheel( wxMouseEvent& event );
|
|
|
|
void OnMouseMove( wxMouseEvent& event );
|
2009-11-04 20:46:53 +00:00
|
|
|
void OnRightClick( wxMouseEvent& event );
|
|
|
|
void OnPopUpMenu( wxCommandEvent& event );
|
|
|
|
void TakeScreenshot( wxCommandEvent& event );
|
2012-02-25 19:55:40 +00:00
|
|
|
void OnEnterWindow( wxMouseEvent& event );
|
|
|
|
|
|
|
|
// Display functions
|
|
|
|
GLuint DisplayCubeforTest(); // Just a test function
|
2009-11-04 20:46:53 +00:00
|
|
|
void SetView3D( int keycode );
|
|
|
|
void DisplayStatus();
|
|
|
|
void Redraw( bool finish = false );
|
|
|
|
void Render();
|
2011-11-10 15:55:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function CreateDrawGL_List
|
|
|
|
* creates the OpenGL draw list items.
|
|
|
|
*/
|
2009-04-05 20:49:15 +00:00
|
|
|
GLuint CreateDrawGL_List();
|
2009-11-04 20:46:53 +00:00
|
|
|
void InitGL();
|
|
|
|
void SetLights();
|
2012-02-25 19:55:40 +00:00
|
|
|
void SetOffset(double aPosX, double aPosY)
|
|
|
|
{
|
|
|
|
m_draw3dOffset.x = aPosX;
|
|
|
|
m_draw3dOffset.y = aPosY;
|
|
|
|
}
|
2012-08-11 12:52:13 +00:00
|
|
|
|
|
|
|
void DrawGrid( double aGriSizeMM );
|
|
|
|
|
2012-08-21 10:45:54 +00:00
|
|
|
/**
|
|
|
|
* Function Draw3D_Track
|
|
|
|
* @param aTrack = the aTrack to draw
|
|
|
|
*/
|
|
|
|
void Draw3D_Track( TRACK* aTrack );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Draw3D_Via
|
|
|
|
* draws 3D via as a cylinder and filled circles.
|
|
|
|
*/
|
|
|
|
void Draw3D_Via( SEGVIA* via );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Draw3D_DrawSegment
|
|
|
|
* draws a 3D segment (line, arc or circle).
|
|
|
|
*/
|
|
|
|
void Draw3D_DrawSegment( DRAWSEGMENT* segment );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Draw3D_Zone
|
|
|
|
* draw all solid areas in aZone
|
|
|
|
* @param aZone = the zone to draw
|
|
|
|
*/
|
|
|
|
void Draw3D_Zone( ZONE_CONTAINER* aZone );
|
2011-08-03 15:09:39 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/**
|
|
|
|
* Function Draw3D_DrawText
|
|
|
|
* draws 3D segments to create text objects.
|
|
|
|
* When DrawGraphicText is called to draw a text to an OpenGL DC
|
|
|
|
* it calls Draw3dTextSegm to each segment to draw.
|
|
|
|
* 2 parameters used by Draw3D_FilledSegment are not handled by DrawGraphicText
|
|
|
|
* but are used in Draw3D_FilledSegment().
|
|
|
|
* they are 2 local variables. This is an ugly, but trivial code.
|
|
|
|
* Using DrawGraphicText to draw all texts ensure texts have the same shape
|
|
|
|
* in all contexts
|
|
|
|
*/
|
2009-11-04 20:46:53 +00:00
|
|
|
void Draw3D_DrawText( TEXTE_PCB* text );
|
2010-11-12 15:17:10 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/// Toggles orthographic projection on and off
|
2010-10-04 12:58:07 +00:00
|
|
|
void ToggleOrtho(){ m_ortho = !m_ortho ; Refresh(true);};
|
2011-08-03 15:09:39 +00:00
|
|
|
|
2010-10-04 12:58:07 +00:00
|
|
|
/// Returns the orthographic projection flag
|
|
|
|
bool ModeIsOrtho() { return m_ortho ;};
|
2010-11-12 15:17:10 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
//int Get3DLayerEnable(int act_layer);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-08-03 15:09:39 +00:00
|
|
|
class EDA_3D_FRAME : public wxFrame
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2010-05-01 12:46:33 +00:00
|
|
|
private:
|
2012-02-25 19:55:40 +00:00
|
|
|
wxString m_FrameName; // name used for writing and reading setup. It is "Frame3D"
|
2011-09-17 15:31:21 +00:00
|
|
|
EDA_3D_CANVAS* m_Canvas;
|
2011-12-16 13:32:23 +00:00
|
|
|
wxAuiToolBar* m_HToolBar;
|
|
|
|
wxAuiToolBar* m_VToolBar;
|
2011-04-13 19:30:27 +00:00
|
|
|
wxPoint m_FramePos;
|
|
|
|
wxSize m_FrameSize;
|
|
|
|
wxAuiManager m_auimgr;
|
|
|
|
bool m_reloadRequest;
|
2012-08-29 16:59:50 +00:00
|
|
|
wxString m_defaultFileName; /// Filename to propose for screenshot
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
public:
|
2011-08-03 15:09:39 +00:00
|
|
|
EDA_3D_FRAME( PCB_BASE_FRAME* parent, const wxString& title,
|
|
|
|
long style = KICAD_DEFAULT_3D_DRAWFRAME_STYLE );
|
|
|
|
~EDA_3D_FRAME()
|
2010-05-01 12:46:33 +00:00
|
|
|
{
|
|
|
|
m_auimgr.UnInit();
|
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-02-25 19:55:40 +00:00
|
|
|
PCB_BASE_FRAME* Parent() { return (PCB_BASE_FRAME*)GetParent(); }
|
2011-08-03 15:09:39 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function ReloadRequest
|
2010-05-01 12:46:33 +00:00
|
|
|
* must be called when reloading data from Pcbnew is needed
|
2011-09-17 15:31:21 +00:00
|
|
|
* mainly after edition of the board or footprint being displayed.
|
2010-10-04 12:58:07 +00:00
|
|
|
* mainly for the module editor.
|
2010-05-01 12:46:33 +00:00
|
|
|
*/
|
|
|
|
void ReloadRequest( )
|
|
|
|
{
|
|
|
|
m_reloadRequest = true;
|
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2012-08-11 12:52:13 +00:00
|
|
|
/**
|
|
|
|
* Function NewDisplay
|
|
|
|
* Rebuild the display list.
|
|
|
|
* must be called when 3D opengl data is modified
|
|
|
|
*/
|
|
|
|
void NewDisplay();
|
|
|
|
|
2012-08-29 16:59:50 +00:00
|
|
|
void SetDefaultFileName(const wxString &aFn) { m_defaultFileName = aFn; }
|
|
|
|
const wxString &GetDefaultFileName() const { return m_defaultFileName; }
|
2012-08-11 12:52:13 +00:00
|
|
|
private:
|
|
|
|
void Exit3DFrame( wxCommandEvent& event );
|
|
|
|
void OnCloseWindow( wxCloseEvent& Event );
|
|
|
|
void ReCreateMenuBar();
|
|
|
|
void ReCreateHToolbar();
|
|
|
|
void ReCreateVToolbar();
|
|
|
|
void SetToolbars();
|
|
|
|
void GetSettings();
|
|
|
|
void SaveSettings();
|
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
void OnLeftClick( wxDC* DC, const wxPoint& MousePos );
|
|
|
|
void OnRightClick( const wxPoint& MousePos, wxMenu* PopMenu );
|
|
|
|
void OnKeyEvent( wxKeyEvent& event );
|
2011-07-05 12:46:14 +00:00
|
|
|
double BestZoom();
|
2009-11-04 20:46:53 +00:00
|
|
|
void RedrawActiveWindow( wxDC* DC, bool EraseBg );
|
|
|
|
void Process_Special_Functions( wxCommandEvent& event );
|
2012-08-11 12:52:13 +00:00
|
|
|
void On3DGridSelection( wxCommandEvent& event );
|
2009-11-04 20:46:53 +00:00
|
|
|
void Process_Zoom( wxCommandEvent& event );
|
2010-04-29 09:06:01 +00:00
|
|
|
void OnActivate( wxActivateEvent& event );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
void Set3DBgColor();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2009-05-06 11:55:36 +00:00
|
|
|
#endif /* __3D_VIEWER_H__ */
|