/****************************************************************/ /* Routines for automatic displacement and rotation of modules. */ /****************************************************************/ #include #include "fctsys.h" #include "gr_basic.h" #include "common.h" #include "class_drawpanel.h" #include "confirm.h" #include "kicad_string.h" #include "pcbnew.h" #include "wxPcbStruct.h" #include "autorout.h" #include "cell.h" #include "pcbnew_id.h" #include "protos.h" #include "kicad_device_context.h" typedef enum { FIXE_MODULE, FREE_MODULE, FIXE_ALL_MODULES, FREE_ALL_MODULES } SelectFixeFct; static bool sortModulesbySize( MODULE* ref, MODULE* compare ); wxString ModulesMaskSelection = wxT( "*" ); /* Called on events (popup menus) relative to automove and autoplace footprints */ void WinEDA_PcbFrame::AutoPlace( wxCommandEvent& event ) { int id = event.GetId(); bool on_state; if( m_HToolBar == NULL ) return; INSTALL_UNBUFFERED_DC( dc, DrawPanel ); switch( id ) { case ID_TOOLBARH_PCB_MODE_MODULE: on_state = m_HToolBar->GetToolState( ID_TOOLBARH_PCB_MODE_MODULE ); if( on_state ) { m_HToolBar->ToggleTool( ID_TOOLBARH_PCB_MODE_TRACKS, FALSE ); m_HTOOL_current_state = ID_TOOLBARH_PCB_MODE_MODULE; } else m_HTOOL_current_state = 0; return; case ID_TOOLBARH_PCB_MODE_TRACKS: on_state = m_HToolBar->GetToolState( ID_TOOLBARH_PCB_MODE_TRACKS ); if( on_state ) { m_HToolBar->ToggleTool( ID_TOOLBARH_PCB_MODE_MODULE, FALSE ); m_HTOOL_current_state = ID_TOOLBARH_PCB_MODE_TRACKS; } else m_HTOOL_current_state = 0; return; case ID_POPUP_PCB_AUTOROUTE_SELECT_LAYERS: return; case ID_POPUP_PCB_AUTOPLACE_FIXE_MODULE: FixeModule( (MODULE*) GetScreen()->GetCurItem(), TRUE ); return; case ID_POPUP_PCB_AUTOPLACE_FREE_MODULE: FixeModule( (MODULE*) GetScreen()->GetCurItem(), FALSE ); return; case ID_POPUP_PCB_AUTOPLACE_FREE_ALL_MODULES: FixeModule( NULL, FALSE ); return; case ID_POPUP_PCB_AUTOPLACE_FIXE_ALL_MODULES: FixeModule( NULL, TRUE ); return; case ID_POPUP_CANCEL_CURRENT_COMMAND: if( DrawPanel->ManageCurseur && DrawPanel->ForceCloseManageCurseur ) { DrawPanel->ForceCloseManageCurseur( DrawPanel, &dc ); } break; default: // Abort a current command (if any) DrawPanel->UnManageCursor( 0, wxCURSOR_ARROW ); break; } /* Erase ratsnest if needed */ if( GetBoard()->IsElementVisible(RATSNEST_VISIBLE) ) DrawGeneralRatsnest( &dc ); GetBoard()->m_Status_Pcb |= DO_NOT_SHOW_GENERAL_RASTNEST; switch( id ) { case ID_POPUP_PCB_AUTOPLACE_CURRENT_MODULE: AutoPlaceModule( (MODULE*) GetScreen()->GetCurItem(), PLACE_1_MODULE, &dc ); break; case ID_POPUP_PCB_AUTOPLACE_ALL_MODULES: AutoPlaceModule( NULL, PLACE_ALL, &dc ); break; case ID_POPUP_PCB_AUTOPLACE_NEW_MODULES: AutoPlaceModule( NULL, PLACE_OUT_OF_BOARD, &dc ); break; case ID_POPUP_PCB_AUTOPLACE_NEXT_MODULE: AutoPlaceModule( NULL, PLACE_INCREMENTAL, &dc ); break; case ID_POPUP_PCB_AUTOMOVE_ALL_MODULES: AutoMoveModulesOnPcb( FALSE ); break; case ID_POPUP_PCB_AUTOMOVE_NEW_MODULES: AutoMoveModulesOnPcb( TRUE ); break; case ID_POPUP_PCB_AUTOROUTE_ALL_MODULES: Autoroute( &dc, ROUTE_ALL ); break; case ID_POPUP_PCB_AUTOROUTE_MODULE: Autoroute( &dc, ROUTE_MODULE ); break; case ID_POPUP_PCB_AUTOROUTE_PAD: Autoroute( &dc, ROUTE_PAD ); break; case ID_POPUP_PCB_AUTOROUTE_NET: Autoroute( &dc, ROUTE_NET ); break; case ID_POPUP_PCB_AUTOROUTE_RESET_UNROUTED: Reset_Noroutable( &dc ); break; default: DisplayError( this, wxT( "AutoPlace command error" ) ); break; } GetBoard()->m_Status_Pcb &= ~DO_NOT_SHOW_GENERAL_RASTNEST; Compile_Ratsnest( &dc, true ); } /* Function to move components in a rectangular area format 4 / 3, * starting from the mouse cursor * The components with the FIXED status set are not moved */ void WinEDA_PcbFrame::AutoMoveModulesOnPcb( bool PlaceModulesHorsPcb ) { std::vector moduleList; wxPoint start, current; int Ymax_size, Xsize_allowed; int pas_grille = (int) GetScreen()->GetGridSize().x; bool edgesExists; double surface; if( GetBoard()->m_Modules == NULL ) { DisplayError( this, _( "No modules found!" ) ); return; } /* Confirmation */ if( !IsOK( this, _( "Move modules?" ) ) ) return; edgesExists = SetBoardBoundaryBoxFromEdgesOnly(); if( PlaceModulesHorsPcb && !edgesExists ) { DisplayError( this, _( "Could not automatically place modules. No board outlines detected." ) ); return; } // Build sorted footprints list (sort by decreasing size ) MODULE* Module = GetBoard()->m_Modules; for( ; Module != NULL; Module = Module->Next() ) { Module->Set_Rectangle_Encadrement(); Module->SetRectangleExinscrit(); moduleList.push_back(Module); } sort( moduleList.begin(), moduleList.end(), sortModulesbySize ); /* to move modules outside the board, the cursor is placed below * the current board, to avoid placing components in board area. */ if( PlaceModulesHorsPcb && edgesExists ) { if( GetScreen()->m_Curseur.y < (GetBoard()->m_BoundaryBox.GetBottom() + 2000) ) GetScreen()->m_Curseur.y = GetBoard()->m_BoundaryBox.GetBottom() + 2000; } /* calculate the area needed by footprints */ surface = 0.0; for( unsigned ii = 0; ii < moduleList.size(); ii++ ) { Module = moduleList[ii]; if( PlaceModulesHorsPcb && edgesExists ) { if( GetBoard()->m_BoundaryBox.Contains( Module->m_Pos ) ) continue; } surface += Module->m_Surface; } Xsize_allowed = (int) ( sqrt( surface ) * 4.0 / 3.0 ); start = current = GetScreen()->m_Curseur; Ymax_size = 0; for( unsigned ii = 0; ii < moduleList.size(); ii++ ) { Module = moduleList[ii]; if( Module->IsLocked() ) continue; if( PlaceModulesHorsPcb && edgesExists ) { if( GetBoard()->m_BoundaryBox.Contains( Module->m_Pos ) ) continue; } if( current.x > (Xsize_allowed + start.x) ) { current.x = start.x; current.y += Ymax_size + pas_grille; Ymax_size = 0; } GetScreen()->m_Curseur.x = current.x + Module->m_Pos.x - Module->m_RealBoundaryBox.GetX(); GetScreen()->m_Curseur.y = current.y + Module->m_Pos.y - Module->m_RealBoundaryBox.GetY(); Ymax_size = MAX( Ymax_size, Module->m_RealBoundaryBox.GetHeight() ); PutOnGrid( &GetScreen()->m_Curseur ); Place_Module( Module, NULL, true ); current.x += Module->m_RealBoundaryBox.GetWidth() + pas_grille; } DrawPanel->Refresh(); } /* Update (TRUE or FALSE) FIXED attribute on the module Module * or all the modules if Module == NULL */ void WinEDA_PcbFrame::FixeModule( MODULE* Module, bool Fixe ) { if( Module ) { Module->SetLocked( Fixe ); Module->DisplayInfo( this ); OnModify(); } else { Module = GetBoard()->m_Modules; for( ; Module != NULL; Module = Module->Next() ) { if( WildCompareString( ModulesMaskSelection, Module->m_Reference->m_Text ) ) { Module->SetLocked( Fixe ); OnModify(); } } } } static bool sortModulesbySize( MODULE* ref, MODULE* compare ) { return compare->m_Surface < ref->m_Surface; }