KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ar_autoplacer.cpp File Reference
#include <confirm.h>
#include <pcb_edit_frame.h>
#include <widgets/msgpanel.h>
#include <board.h>
#include <footprint.h>
#include <pcb_shape.h>
#include <pad.h>
#include <board_commit.h>
#include <connectivity/connectivity_data.h>
#include <progress_reporter.h>
#include "ar_autoplacer.h"
#include "ar_matrix.h"
#include <memory>
#include <ratsnest/ratsnest_data.h>

Go to the source code of this file.

Macros

#define AR_GAIN   16
 
#define AR_KEEPOUT_MARGIN   500
 
#define AR_ABORT_PLACEMENT   -1
 
#define STEP_AR_MM   1.0
 
#define CELL_IS_EMPTY   0x00
 
#define CELL_IS_HOLE   0x01 /* a conducting hole or obstacle */
 
#define CELL_IS_MODULE   0x02 /* auto placement occupied by a footprint */
 
#define CELL_IS_EDGE   0x20 /* Area and auto-placement: limiting cell contour (Board, Zone) */
 
#define CELL_IS_FRIEND   0x40 /* Area and auto-placement: cell part of the net */
 
#define CELL_IS_ZONE   0x80 /* Area and auto-placement: cell available */
 

Functions

static bool sortFootprintsByComplexity (FOOTPRINT *ref, FOOTPRINT *compare)
 
static bool sortFootprintsByRatsnestSize (FOOTPRINT *ref, FOOTPRINT *compare)
 

Macro Definition Documentation

◆ AR_ABORT_PLACEMENT

#define AR_ABORT_PLACEMENT   -1

Definition at line 46 of file ar_autoplacer.cpp.

◆ AR_GAIN

#define AR_GAIN   16

Definition at line 44 of file ar_autoplacer.cpp.

◆ AR_KEEPOUT_MARGIN

#define AR_KEEPOUT_MARGIN   500

Definition at line 45 of file ar_autoplacer.cpp.

◆ CELL_IS_EDGE

#define CELL_IS_EDGE   0x20 /* Area and auto-placement: limiting cell contour (Board, Zone) */

Definition at line 54 of file ar_autoplacer.cpp.

◆ CELL_IS_EMPTY

#define CELL_IS_EMPTY   0x00

Definition at line 51 of file ar_autoplacer.cpp.

◆ CELL_IS_FRIEND

#define CELL_IS_FRIEND   0x40 /* Area and auto-placement: cell part of the net */

Definition at line 55 of file ar_autoplacer.cpp.

◆ CELL_IS_HOLE

#define CELL_IS_HOLE   0x01 /* a conducting hole or obstacle */

Definition at line 52 of file ar_autoplacer.cpp.

◆ CELL_IS_MODULE

#define CELL_IS_MODULE   0x02 /* auto placement occupied by a footprint */

Definition at line 53 of file ar_autoplacer.cpp.

◆ CELL_IS_ZONE

#define CELL_IS_ZONE   0x80 /* Area and auto-placement: cell available */

Definition at line 56 of file ar_autoplacer.cpp.

◆ STEP_AR_MM

#define STEP_AR_MM   1.0

Definition at line 48 of file ar_autoplacer.cpp.

Function Documentation

◆ sortFootprintsByComplexity()

static bool sortFootprintsByComplexity ( FOOTPRINT ref,
FOOTPRINT compare 
)
static

Definition at line 714 of file ar_autoplacer.cpp.

References FOOTPRINT::GetArea(), and FOOTPRINT::GetPadCount().

Referenced by AR_AUTOPLACER::pickFootprint().

◆ sortFootprintsByRatsnestSize()

static bool sortFootprintsByRatsnestSize ( FOOTPRINT ref,
FOOTPRINT compare 
)
static

Definition at line 725 of file ar_autoplacer.cpp.

References FOOTPRINT::GetArea(), and FOOTPRINT::GetFlag().

Referenced by AR_AUTOPLACER::pickFootprint().