KiCad PCB EDA Suite
Loading...
Searching...
No Matches
ar_matrix.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2012 Jean-Pierre Charras, [email protected]
5 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2011 Wayne Stambaugh <[email protected]>
7 *
8 * Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, you may find one here:
22 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
23 * or you may search the http://www.gnu.org website for the version 2 license,
24 * or you may write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 */
27
28
29#ifndef __AR_MATRIX_H
30#define __AR_MATRIX_H
31
32#include <layer_ids.h>
33#include <math/box2.h>
34
35class PCB_SHAPE;
36class PAD;
37class FOOTPRINT;
38
39#define AR_MAX_ROUTING_LAYERS_COUNT 2
40
41#define AR_SIDE_TOP 0
42#define AR_SIDE_BOTTOM 1
43
48{
49public:
50 typedef unsigned char MATRIX_CELL;
51 typedef int DIST_CELL;
52
54 {
60 };
61
62 AR_MATRIX();
63 ~AR_MATRIX();
64
65 void WriteCell( int aRow, int aCol, int aSide, MATRIX_CELL aCell )
66 {
67 ( *this.*m_opWriteCell )( aRow, aCol, aSide, aCell );
68 }
69
75 {
76 return m_BrdBox.GetOrigin();
77 }
78
87 bool ComputeMatrixSize( const BOX2I& aBoundingBox );
88
95
97
98 // Initialize WriteCell to make the aLogicOp
99 void SetCellOperation( CELL_OP aLogicOp );
100
101 // functions to read/write one cell ( point on grid routing matrix:
102 MATRIX_CELL GetCell( int aRow, int aCol, int aSide );
103 void SetCell( int aRow, int aCol, int aSide, MATRIX_CELL aCell );
104 void OrCell( int aRow, int aCol, int aSide, MATRIX_CELL aCell );
105 void XorCell( int aRow, int aCol, int aSide, MATRIX_CELL aCell );
106 void AndCell( int aRow, int aCol, int aSide, MATRIX_CELL aCell );
107 void AddCell( int aRow, int aCol, int aSide, MATRIX_CELL aCell );
108 DIST_CELL GetDist( int aRow, int aCol, int aSide );
109 void SetDist( int aRow, int aCol, int aSide, DIST_CELL );
110
111 void TraceSegmentPcb( PCB_SHAPE* aShape, int aColor, int aMargin, AR_MATRIX::CELL_OP op_logic );
112
113 void CreateKeepOutRectangle( int ux0, int uy0, int ux1, int uy1, int marge, int aKeepOut,
114 LSET aLayerMask );
115
116 void PlacePad( PAD* aPad, int color, int marge, AR_MATRIX::CELL_OP op_logic );
117
118 void TraceFilledRectangle( int ux0, int uy0, int ux1, int uy1, double angle, LSET aLayerMask,
119 int color, AR_MATRIX::CELL_OP op_logic );
120
121 void TraceFilledRectangle( int ux0, int uy0, int ux1, int uy1, LSET aLayerMask, int color,
122 AR_MATRIX::CELL_OP op_logic );
123
124private:
125 void drawSegmentQcq( int ux0, int uy0, int ux1, int uy1, int lg, int layer, int color,
126 CELL_OP op_logic );
127
128 void traceCircle( int ux0, int uy0, int ux1, int uy1, int lg, int layer, int color,
129 AR_MATRIX::CELL_OP op_logic );
130
131 void traceFilledCircle( int cx, int cy, int radius, LSET aLayerMask, int color,
132 AR_MATRIX::CELL_OP op_logic );
133
134 void traceArc( int ux0, int uy0, int ux1, int uy1, const EDA_ANGLE& arcAngle, int lg,
135 int layer, int color, AR_MATRIX::CELL_OP op_logic );
136
137public:
138 MATRIX_CELL* m_BoardSide[AR_MAX_ROUTING_LAYERS_COUNT]; // the image map of 2 board sides
139 DIST_CELL* m_DistSide[AR_MAX_ROUTING_LAYERS_COUNT]; // the image map of 2 board sides:
140 // distance to cells
141 int m_RoutingLayersCount; // Number of layers for autorouting (0 or 1)
142 int m_GridRouting; // Size of grid for autoplace/autoroute
143 BOX2I m_BrdBox; // Actual board bounding box
144 int m_Nrows, m_Ncols; // Matrix size
145 int m_MemSize; // Memory requirement, just for statistics
146 int m_RouteCount; // Number of routes
147
150
151private:
152 // a pointer to the current selected cell operation
153 void ( AR_MATRIX::*m_opWriteCell )( int aRow, int aCol, int aSide, MATRIX_CELL aCell );
154};
155
156#endif
int color
Definition: DXF_plotter.cpp:58
#define AR_MAX_ROUTING_LAYERS_COUNT
Definition: ar_matrix.h:39
Handle the matrix routing that describes the actual board.
Definition: ar_matrix.h:48
void UnInitRoutingMatrix()
Definition: ar_matrix.cpp:129
int m_Nrows
Definition: ar_matrix.h:144
unsigned char MATRIX_CELL
Definition: ar_matrix.h:50
BOX2I m_BrdBox
Definition: ar_matrix.h:143
void AddCell(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.cpp:225
void AndCell(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.cpp:214
void SetCellOperation(CELL_OP aLogicOp)
Definition: ar_matrix.cpp:154
void(AR_MATRIX::* m_opWriteCell)(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.h:153
void TraceSegmentPcb(PCB_SHAPE *aShape, int aColor, int aMargin, AR_MATRIX::CELL_OP op_logic)
Definition: ar_matrix.cpp:753
int m_RouteCount
Definition: ar_matrix.h:146
int DIST_CELL
Definition: ar_matrix.h:51
int m_RoutingLayersCount
Definition: ar_matrix.h:141
void SetCell(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.cpp:181
@ WRITE_OR_CELL
Definition: ar_matrix.h:56
@ WRITE_AND_CELL
Definition: ar_matrix.h:58
@ WRITE_XOR_CELL
Definition: ar_matrix.h:57
@ WRITE_CELL
Definition: ar_matrix.h:55
@ WRITE_ADD_CELL
Definition: ar_matrix.h:59
void XorCell(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.cpp:203
void SetDist(int aRow, int aCol, int aSide, DIST_CELL)
Definition: ar_matrix.cpp:245
int m_MemSize
Definition: ar_matrix.h:145
PCB_LAYER_ID m_routeLayerBottom
Definition: ar_matrix.h:149
int InitRoutingMatrix()
Initialize the data structures.
Definition: ar_matrix.cpp:92
MATRIX_CELL * m_BoardSide[AR_MAX_ROUTING_LAYERS_COUNT]
Definition: ar_matrix.h:138
void drawSegmentQcq(int ux0, int uy0, int ux1, int uy1, int lg, int layer, int color, CELL_OP op_logic)
Definition: ar_matrix.cpp:286
bool ComputeMatrixSize(const BOX2I &aBoundingBox)
Calculate the number of rows and columns of dimensions of aPcb for routing and automatic calculation ...
Definition: ar_matrix.cpp:62
void OrCell(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.cpp:192
int m_GridRouting
Definition: ar_matrix.h:142
void traceCircle(int ux0, int uy0, int ux1, int uy1, int lg, int layer, int color, AR_MATRIX::CELL_OP op_logic)
Definition: ar_matrix.cpp:401
DIST_CELL * m_DistSide[AR_MAX_ROUTING_LAYERS_COUNT]
Definition: ar_matrix.h:139
DIST_CELL GetDist(int aRow, int aCol, int aSide)
Definition: ar_matrix.cpp:235
MATRIX_CELL GetCell(int aRow, int aCol, int aSide)
Definition: ar_matrix.cpp:170
void traceArc(int ux0, int uy0, int ux1, int uy1, const EDA_ANGLE &arcAngle, int lg, int layer, int color, AR_MATRIX::CELL_OP op_logic)
Definition: ar_matrix.cpp:560
void traceFilledCircle(int cx, int cy, int radius, LSET aLayerMask, int color, AR_MATRIX::CELL_OP op_logic)
Definition: ar_matrix.cpp:439
VECTOR2I GetBrdCoordOrigin()
Definition: ar_matrix.h:74
void WriteCell(int aRow, int aCol, int aSide, MATRIX_CELL aCell)
Definition: ar_matrix.h:65
int m_Ncols
Definition: ar_matrix.h:144
void TraceFilledRectangle(int ux0, int uy0, int ux1, int uy1, double angle, LSET aLayerMask, int color, AR_MATRIX::CELL_OP op_logic)
Definition: ar_matrix.cpp:603
void CreateKeepOutRectangle(int ux0, int uy0, int ux1, int uy1, int marge, int aKeepOut, LSET aLayerMask)
Function CreateKeepOutRectangle builds the cost map: Cells ( in Dist map ) inside the rect x0,...
Definition: ar_matrix.cpp:795
void PlacePad(PAD *aPad, int color, int marge, AR_MATRIX::CELL_OP op_logic)
Definition: ar_matrix.cpp:900
PCB_LAYER_ID m_routeLayerTop
Definition: ar_matrix.h:148
const Vec & GetOrigin() const
Definition: box2.h:200
LSET is a set of PCB_LAYER_IDs.
Definition: layer_ids.h:575
Definition: pad.h:59
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60