kicad/3d-viewer/3d_frame.cpp

459 lines
11 KiB
C++
Raw Normal View History

2007-05-06 16:03:28 +00:00
/////////////////////////////////////////////////////////////////////////////
// Name: 3d_frame.cpp
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation
#pragma interface
#endif
#include "fctsys.h"
#include "appl_wxstruct.h"
2007-05-06 16:03:28 +00:00
#if !wxUSE_GLCANVAS
#error Please set wxUSE_GLCANVAS to 1 in setup.h.
#endif
#include "bitmaps.h"
#include "3d_viewer.h"
#include "trackball.h"
#include <wx/colordlg.h>
2009-11-02 22:24:55 +00:00
#include <wxstruct.h>
Info_3D_Visu g_Parm_3D_Visu;
double g_Draw3d_dx;
double g_Draw3d_dy;
double ZBottom;
double ZTop;
double DataScale3D; // 3D conversion units.
2007-05-06 16:03:28 +00:00
2008-03-21 19:25:41 +00:00
BEGIN_EVENT_TABLE( WinEDA3D_DrawFrame, wxFrame )
EVT_ACTIVATE( WinEDA3D_DrawFrame::OnActivate )
2009-01-07 15:59:49 +00:00
EVT_TOOL_RANGE( ID_ZOOM_IN, ID_ZOOM_PAGE, WinEDA3D_DrawFrame::Process_Zoom )
EVT_TOOL_RANGE( ID_START_COMMAND_3D, ID_END_COMMAND_3D,
WinEDA3D_DrawFrame::Process_Special_Functions )
EVT_MENU( wxID_EXIT, WinEDA3D_DrawFrame::Exit3DFrame )
EVT_MENU( ID_MENU_SCREENCOPY_PNG,
WinEDA3D_DrawFrame::Process_Special_Functions )
EVT_MENU( ID_MENU_SCREENCOPY_JPEG,
WinEDA3D_DrawFrame::Process_Special_Functions )
EVT_CLOSE( WinEDA3D_DrawFrame::OnCloseWindow )
2007-05-06 16:03:28 +00:00
END_EVENT_TABLE()
2008-03-21 19:25:41 +00:00
WinEDA3D_DrawFrame::WinEDA3D_DrawFrame( WinEDA_BasePcbFrame* parent,
const wxString& title,
long style ) :
wxFrame( parent, DISPLAY3D_FRAME, title, wxPoint( -1, -1 ),
wxSize( -1, -1 ), style )
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
m_FrameName = wxT( "Frame3D" );
m_Canvas = NULL;
m_Parent = parent;
m_HToolBar = NULL;
m_VToolBar = NULL;
m_InternalUnits = 10000; // Internal units = 1/10000 inch
m_reloadRequest = false;
2008-03-21 19:25:41 +00:00
// Give it an icon
SetIcon( wxICON( icon_w3d ) );
GetSettings();
SetSize( m_FramePos.x, m_FramePos.y, m_FrameSize.x, m_FrameSize.y );
// Create the status line
static const int dims[5] = { -1, 100, 100, 100, 140 };
2008-03-21 19:25:41 +00:00
CreateStatusBar( 5 );
SetStatusWidths( 5, dims );
2008-03-21 19:25:41 +00:00
ReCreateMenuBar();
ReCreateHToolbar();
// ReCreateAuxiliaryToolbar();
2008-03-21 19:25:41 +00:00
ReCreateVToolbar();
// Make a Pcb3D_GLCanvas
m_Canvas = new Pcb3D_GLCanvas( this );
m_auimgr.SetManagedWindow( this );
2009-11-02 22:24:55 +00:00
wxAuiPaneInfo horiz;
horiz.Gripper( false );
horiz.DockFixed( true );
horiz.Movable( false );
horiz.Floatable( false );
horiz.CloseButton( false );
horiz.CaptionVisible( false );
wxAuiPaneInfo vert( horiz );
vert.TopDockable( false ).BottomDockable( false );
horiz.LeftDockable( false ).RightDockable( false );
m_auimgr.AddPane( m_HToolBar,
wxAuiPaneInfo( horiz ).Name( wxT( "m_HToolBar" ) ).Top() );
m_auimgr.AddPane( m_Canvas,
wxAuiPaneInfo().Name( wxT( "DrawFrame" ) ).CentrePane() );
2009-11-02 22:24:55 +00:00
m_auimgr.Update();
2007-05-06 16:03:28 +00:00
}
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::Exit3DFrame( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
Close( TRUE );
2007-05-06 16:03:28 +00:00
}
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::OnCloseWindow( wxCloseEvent& Event )
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
SaveSettings();
if( m_Parent )
{
m_Parent->m_Draw3DFrame = NULL;
}
2007-05-06 16:03:28 +00:00
Destroy();
}
void WinEDA3D_DrawFrame::GetSettings()
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
wxString text;
wxConfig* config = wxGetApp().m_EDA_Config; // Current config used by
// application
2008-03-21 19:25:41 +00:00
if( config )
2008-03-21 19:25:41 +00:00
{
text = m_FrameName + wxT( "Pos_x" );
config->Read( text, &m_FramePos.x );
2008-03-21 19:25:41 +00:00
text = m_FrameName + wxT( "Pos_y" );
config->Read( text, &m_FramePos.y );
2008-03-21 19:25:41 +00:00
text = m_FrameName + wxT( "Size_x" );
config->Read( text, &m_FrameSize.x, 600 );
2008-03-21 19:25:41 +00:00
text = m_FrameName + wxT( "Size_y" );
config->Read( text, &m_FrameSize.y, 400 );
config->Read( wxT( "BgColor_Red" ),
&g_Parm_3D_Visu.m_BgColor.m_Red, 0.0 );
config->Read( wxT( "BgColor_Green" ),
&g_Parm_3D_Visu.m_BgColor.m_Green, 0.0 );
config->Read( wxT( "BgColor_Blue" ),
&g_Parm_3D_Visu.m_BgColor.m_Blue, 0.0 );
2008-03-21 19:25:41 +00:00
}
#if defined( __WXMAC__ )
2008-03-21 19:25:41 +00:00
// for macOSX, the window must be below system (macOSX) toolbar
if( m_FramePos.y < 20 )
m_FramePos.y = 20;
2007-05-06 16:03:28 +00:00
#endif
}
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::SaveSettings()
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
wxString text;
wxConfig* Config = wxGetApp().m_EDA_Config; // Current config used by
// application
2008-03-21 19:25:41 +00:00
if( !Config )
return;
Config->Write( wxT( "BgColor_Red" ), g_Parm_3D_Visu.m_BgColor.m_Red );
Config->Write( wxT( "BgColor_Green" ), g_Parm_3D_Visu.m_BgColor.m_Green );
Config->Write( wxT( "BgColor_Blue" ), g_Parm_3D_Visu.m_BgColor.m_Blue );
if( IsIconized() )
return;
m_FrameSize = GetSize();
m_FramePos = GetPosition();
text = m_FrameName + wxT( "Pos_x" );
Config->Write( text, (long) m_FramePos.x );
text = m_FrameName + wxT( "Pos_y" );
Config->Write( text, (long) m_FramePos.y );
text = m_FrameName + wxT( "Size_x" );
Config->Write( text, (long) m_FrameSize.x );
text = m_FrameName + wxT( "Size_y" );
Config->Write( text, (long) m_FrameSize.y );
2007-05-06 16:03:28 +00:00
}
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::Process_Zoom( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
int ii;
switch( event.GetId() )
{
2009-01-07 15:59:49 +00:00
case ID_ZOOM_PAGE:
2008-03-21 19:25:41 +00:00
for( ii = 0; ii < 4; ii++ )
g_Parm_3D_Visu.m_Rot[ii] = 0.0;
g_Parm_3D_Visu.m_Zoom = 1.0;
g_Draw3d_dx = g_Draw3d_dy = 0;
trackball( g_Parm_3D_Visu.m_Quat, 0.0, 0.0, 0.0, 0.0 );
break;
2009-01-07 15:59:49 +00:00
case ID_ZOOM_IN:
2008-03-21 19:25:41 +00:00
g_Parm_3D_Visu.m_Zoom /= 1.2;
if( g_Parm_3D_Visu.m_Zoom <= 0.01 )
g_Parm_3D_Visu.m_Zoom = 0.01;
break;
2009-01-07 15:59:49 +00:00
case ID_ZOOM_OUT:
2008-03-21 19:25:41 +00:00
g_Parm_3D_Visu.m_Zoom *= 1.2;
break;
2009-01-07 15:59:49 +00:00
case ID_ZOOM_REDRAW:
2008-03-21 19:25:41 +00:00
break;
default:
return;
2007-05-06 16:03:28 +00:00
}
2008-03-21 19:25:41 +00:00
m_Canvas->Refresh( FALSE );
m_Canvas->DisplayStatus();
2008-03-21 19:25:41 +00:00
}
2007-05-06 16:03:28 +00:00
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::OnLeftClick( wxDC* DC, const wxPoint& MousePos )
2007-05-06 16:03:28 +00:00
{
}
void WinEDA3D_DrawFrame::OnRightClick( const wxPoint& MousePos,
wxMenu* PopMenu )
2007-05-06 16:03:28 +00:00
{
}
2008-03-21 19:25:41 +00:00
int WinEDA3D_DrawFrame::BestZoom()
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
return 1;
2007-05-06 16:03:28 +00:00
}
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::RedrawActiveWindow( wxDC* DC, bool EraseBg )
2007-05-06 16:03:28 +00:00
{
}
2008-03-21 19:25:41 +00:00
void WinEDA3D_DrawFrame::Process_Special_Functions( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
#define ROT_ANGLE 10.0
2008-03-21 19:25:41 +00:00
switch( event.GetId() )
{
case ID_RELOAD3D_BOARD:
NewDisplay();
return;
2008-03-21 19:25:41 +00:00
break;
case ID_ROTATE3D_X_POS:
g_Parm_3D_Visu.m_ROTX += ROT_ANGLE;
break;
case ID_ROTATE3D_X_NEG:
g_Parm_3D_Visu.m_ROTX -= ROT_ANGLE;
break;
case ID_ROTATE3D_Y_POS:
g_Parm_3D_Visu.m_ROTY += ROT_ANGLE;
break;
case ID_ROTATE3D_Y_NEG:
g_Parm_3D_Visu.m_ROTY -= ROT_ANGLE;
break;
case ID_ROTATE3D_Z_POS:
g_Parm_3D_Visu.m_ROTZ += ROT_ANGLE;
break;
case ID_ROTATE3D_Z_NEG:
g_Parm_3D_Visu.m_ROTZ -= ROT_ANGLE;
break;
case ID_MOVE3D_LEFT:
m_Canvas->SetView3D( WXK_LEFT );
return;
case ID_MOVE3D_RIGHT:
m_Canvas->SetView3D( WXK_RIGHT );
return;
case ID_MOVE3D_UP:
m_Canvas->SetView3D( WXK_UP );
return;
case ID_MOVE3D_DOWN:
m_Canvas->SetView3D( WXK_DOWN );
return;
case ID_TOOL_SCREENCOPY_TOCLIBBOARD:
case ID_MENU_SCREENCOPY_PNG:
case ID_MENU_SCREENCOPY_JPEG:
m_Canvas->TakeScreenshot( event );
break;
case ID_MENU3D_BGCOLOR_SELECTION:
Set3DBgColor();
return;
case ID_MENU3D_AXIS_ONOFF:
Set3DAxisOnOff();
return;
case ID_MENU3D_MODULE_ONOFF:
Set3DModuleOnOff();
return;
case ID_MENU3D_ZONE_ONOFF:
Set3DZoneOnOff();
return;
case ID_MENU3D_COMMENTS_ONOFF:
Set3DCommentsOnOff();
return;
case ID_MENU3D_DRAWINGS_ONOFF:
Set3DDrawingsOnOff();
return;
case ID_MENU3D_ECO1_ONOFF:
Set3DEco1OnOff();
return;
case ID_MENU3D_ECO2_ONOFF:
Set3DEco2OnOff();
return;
2008-03-21 19:25:41 +00:00
default:
wxMessageBox( wxT( "WinEDA3D_DrawFrame::Process_Special_Functions() \
error: unknown command" ) );
2008-03-21 19:25:41 +00:00
return;
2007-05-06 16:03:28 +00:00
}
2008-03-21 19:25:41 +00:00
m_Canvas->Refresh( true );
m_Canvas->DisplayStatus();
2007-05-06 16:03:28 +00:00
}
void WinEDA3D_DrawFrame::NewDisplay()
2007-05-06 16:03:28 +00:00
{
m_reloadRequest = false;
2008-03-21 19:25:41 +00:00
m_Canvas->ClearLists();
2008-07-21 13:44:01 +00:00
m_Canvas->CreateDrawGL_List();
// m_Canvas->InitGL();
m_Canvas->Refresh( true );
m_Canvas->DisplayStatus();
2007-05-06 16:03:28 +00:00
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::OnActivate( wxActivateEvent& event )
{
// Reload data if 3D frame shows a footprint,
// because it can be changed since last frame activation
if( m_reloadRequest )
NewDisplay();
event.Skip(); // required under wxMAC
}
2007-05-06 16:03:28 +00:00
/* called to set the background color of the 3D scene
2008-03-21 19:25:41 +00:00
*/
void WinEDA3D_DrawFrame::Set3DBgColor()
2007-05-06 16:03:28 +00:00
{
2008-03-21 19:25:41 +00:00
S3D_Color color;
wxColour newcolor, oldcolor;
oldcolor.Set( wxRound( g_Parm_3D_Visu.m_BgColor.m_Red * 255 ),
wxRound( g_Parm_3D_Visu.m_BgColor.m_Green * 255 ),
wxRound( g_Parm_3D_Visu.m_BgColor.m_Blue * 255 ) );
2008-03-21 19:25:41 +00:00
newcolor = wxGetColourFromUser( this, oldcolor );
if( newcolor != oldcolor )
{
g_Parm_3D_Visu.m_BgColor.m_Red = (double) newcolor.Red() / 255.0;
g_Parm_3D_Visu.m_BgColor.m_Green = (double) newcolor.Green() / 255.0;
g_Parm_3D_Visu.m_BgColor.m_Blue = (double) newcolor.Blue() / 255.0;
NewDisplay();
}
2007-05-06 16:03:28 +00:00
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::Set3DAxisOnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DAxis )
g_Parm_3D_Visu.m_Draw3DAxis = FALSE;
else
g_Parm_3D_Visu.m_Draw3DAxis = TRUE;
NewDisplay();
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::Set3DModuleOnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DModule )
g_Parm_3D_Visu.m_Draw3DModule = FALSE;
else
g_Parm_3D_Visu.m_Draw3DModule = TRUE;
NewDisplay();
}
void WinEDA3D_DrawFrame::Set3DZoneOnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DZone )
g_Parm_3D_Visu.m_Draw3DZone = FALSE;
else
g_Parm_3D_Visu.m_Draw3DZone = TRUE;
NewDisplay();
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::Set3DCommentsOnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DComments )
g_Parm_3D_Visu.m_Draw3DComments = FALSE;
else
g_Parm_3D_Visu.m_Draw3DComments = TRUE;
NewDisplay();
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::Set3DDrawingsOnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DDrawings )
g_Parm_3D_Visu.m_Draw3DDrawings = FALSE;
else
g_Parm_3D_Visu.m_Draw3DDrawings = TRUE;
NewDisplay();
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::Set3DEco1OnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DEco1 )
g_Parm_3D_Visu.m_Draw3DEco1 = FALSE;
else
g_Parm_3D_Visu.m_Draw3DEco1 = TRUE;
NewDisplay();
}
2008-10-26 19:09:20 +00:00
void WinEDA3D_DrawFrame::Set3DEco2OnOff()
{
2008-10-26 19:09:20 +00:00
if( g_Parm_3D_Visu.m_Draw3DEco2 )
g_Parm_3D_Visu.m_Draw3DEco2 = FALSE;
else
g_Parm_3D_Visu.m_Draw3DEco2 = TRUE;
NewDisplay();
}