2009-11-14 22:15:22 +00:00
|
|
|
/****************************************************/
|
|
|
|
/* PCB EDITOR: autorouting and "graphics" routines. */
|
|
|
|
/****************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "pcbnew.h"
|
|
|
|
#include "autorout.h"
|
2008-10-20 05:59:58 +00:00
|
|
|
#include "zones.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "trigo.h"
|
|
|
|
#include "cell.h"
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
int ToMatrixCoordinate( int aPhysicalCoordinate );
|
|
|
|
void TraceLignePcb( int x0,
|
|
|
|
int y0,
|
|
|
|
int x1,
|
|
|
|
int y1,
|
|
|
|
int layer,
|
|
|
|
int color );
|
|
|
|
void TraceArc( int ux0,
|
|
|
|
int uy0,
|
|
|
|
int ux1,
|
|
|
|
int uy1,
|
|
|
|
int ArcAngle,
|
|
|
|
int lg,
|
|
|
|
int layer,
|
|
|
|
int color,
|
|
|
|
int op_logique );
|
|
|
|
|
|
|
|
|
|
|
|
static void DrawSegmentQcq( int ux0,
|
|
|
|
int uy0,
|
|
|
|
int ux1,
|
|
|
|
int uy1,
|
|
|
|
int lg,
|
|
|
|
int layer,
|
|
|
|
int color,
|
|
|
|
int op_logique );
|
|
|
|
|
|
|
|
static void TraceFilledCercle( BOARD* Pcb,
|
|
|
|
int cx,
|
|
|
|
int cy,
|
|
|
|
int rayon,
|
|
|
|
int masque_layer,
|
|
|
|
int color,
|
|
|
|
int op_logique );
|
|
|
|
static void TraceCercle( int ux0, int uy0, int ux1, int uy1, int lg, int layer,
|
|
|
|
int color, int op_logique );
|
|
|
|
|
|
|
|
/* Macro call to update cell. */
|
|
|
|
#define OP_CELL( layer, dy, dx ) \
|
|
|
|
{ \
|
|
|
|
if( layer < 0 ) \
|
|
|
|
{ \
|
|
|
|
WriteCell( dy, dx, BOTTOM, color ); \
|
|
|
|
if( Nb_Sides ) \
|
|
|
|
WriteCell( dy, dx, TOP, color ); \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
if( layer == Route_Layer_BOTTOM ) \
|
|
|
|
WriteCell( dy, dx, BOTTOM, color ); \
|
|
|
|
if( Nb_Sides ) \
|
|
|
|
if( layer == Route_Layer_TOP ) \
|
|
|
|
WriteCell( dy, dx, TOP, color ); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-12 10:31:32 +00:00
|
|
|
/** Function ToMatrixCoordinate
|
|
|
|
* compute the coordinate in the routing matrix from the real (board) value
|
|
|
|
* @param aPhysicalCoordinate = value to convert
|
|
|
|
* @return the coordinate relative to the matrix
|
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
int ToMatrixCoordinate( int aPhysicalCoordinate )
|
2008-09-12 10:31:32 +00:00
|
|
|
{
|
|
|
|
return aPhysicalCoordinate / g_GridRoutingSize;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
/* Initialize a color value, the cells included in the board edge of the
|
|
|
|
* pad surface by pt_pad, with the margin reserved for isolation and the
|
|
|
|
* half width of the runway
|
|
|
|
* Parameters:
|
|
|
|
* Pt_pad: pointer to the description of the pad
|
|
|
|
* color: mask write in cells
|
|
|
|
* margin: add a value to the radius or half the score pad
|
|
|
|
* op_logique: type of writing in the cell (WRITE, OR)
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void Place_1_Pad_Board( BOARD* Pcb,
|
|
|
|
D_PAD* pt_pad,
|
|
|
|
int color,
|
|
|
|
int marge,
|
|
|
|
int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int dx, dy;
|
|
|
|
wxPoint shape_pos = pt_pad->ReturnShapePos();;
|
|
|
|
|
|
|
|
dx = pt_pad->m_Size.x / 2; dx += marge;
|
|
|
|
|
2008-01-05 17:30:56 +00:00
|
|
|
if( pt_pad->m_PadShape == PAD_CIRCLE )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
TraceFilledCercle( Pcb, shape_pos.x, shape_pos.y, dx,
|
|
|
|
pt_pad->m_Masque_Layer, color, op_logique );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dy = pt_pad->m_Size.y / 2; dy += marge;
|
|
|
|
|
2008-01-05 17:30:56 +00:00
|
|
|
if( pt_pad->m_PadShape == PAD_TRAPEZOID )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
dx += abs( pt_pad->m_DeltaSize.y ) / 2;
|
|
|
|
dy += abs( pt_pad->m_DeltaSize.x ) / 2;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( pt_pad->m_Orient % 900 ) == 0 ) /* The pad is a rectangle
|
|
|
|
* horizontally or vertically. */
|
|
|
|
{
|
|
|
|
/* Orientation turned 90 deg. */
|
|
|
|
if( ( pt_pad->m_Orient == 900 ) || ( pt_pad->m_Orient == 2700 ) )
|
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
EXCHG( dx, dy );
|
|
|
|
}
|
|
|
|
|
|
|
|
TraceFilledRectangle( Pcb, shape_pos.x - dx, shape_pos.y - dy,
|
|
|
|
shape_pos.x + dx, shape_pos.y + dy,
|
|
|
|
pt_pad->m_Masque_Layer, color, op_logique );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TraceFilledRectangle( Pcb, shape_pos.x - dx, shape_pos.y - dy,
|
|
|
|
shape_pos.x + dx, shape_pos.y + dy,
|
|
|
|
(int) pt_pad->m_Orient,
|
|
|
|
pt_pad->m_Masque_Layer, color, op_logique );
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Initialize a color value, the cells included in the board rea of the
|
|
|
|
* circle center cx, cy.
|
|
|
|
* Parameters:
|
|
|
|
* radius: a value add to the radius or half the score pad
|
|
|
|
* masque_layer: layer occupied
|
|
|
|
* color: mask write in cells
|
|
|
|
* op_logique: type of writing in the cell (WRITE, OR)
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceFilledCercle( BOARD* Pcb,
|
|
|
|
int cx,
|
|
|
|
int cy,
|
|
|
|
int rayon,
|
|
|
|
int masque_layer,
|
|
|
|
int color,
|
|
|
|
int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int row, col;
|
|
|
|
int ux0, uy0, ux1, uy1;
|
|
|
|
int row_max, col_max, row_min, col_min;
|
|
|
|
int trace = 0;
|
|
|
|
float fdistmin, fdistx, fdisty;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
void (* WriteCell)( int, int, int, BoardCell );
|
2007-08-23 04:28:46 +00:00
|
|
|
int tstwrite = 0;
|
|
|
|
int distmin;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Determine occupied layer. */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Single routing layer on bitmap and BOTTOM
|
|
|
|
* Route_Layer_B = Route_Layer_A */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( masque_layer & g_TabOneLayerMask[Route_Layer_BOTTOM] )
|
2009-11-14 22:15:22 +00:00
|
|
|
trace = 1; /* Trace on BOTTOM */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( masque_layer & g_TabOneLayerMask[Route_Layer_TOP] )
|
|
|
|
if( Nb_Sides )
|
2009-11-14 22:15:22 +00:00
|
|
|
trace |= 2; /* Trace on TOP */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( trace == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch( op_logique )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case WRITE_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = SetCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_OR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = OrCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_XOR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = XorCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_AND_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AndCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_ADD_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AddCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
cx -= Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
cy -= Pcb->m_BoundaryBox.m_Pos.y;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
distmin = rayon;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Calculate the bounding rectangle of the circle. */
|
|
|
|
ux0 = cx - rayon;
|
|
|
|
uy0 = cy - rayon;
|
|
|
|
ux1 = cx + rayon;
|
|
|
|
uy1 = cy + rayon;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Calculate limit coordinates of cells belonging to the rectangle. */
|
2007-08-23 04:28:46 +00:00
|
|
|
row_max = uy1 / g_GridRoutingSize;
|
|
|
|
col_max = ux1 / g_GridRoutingSize;
|
2009-11-14 22:15:22 +00:00
|
|
|
row_min = uy0 / g_GridRoutingSize; // if (uy0 > row_min*g_GridRoutingSize
|
|
|
|
// ) row_min++;
|
|
|
|
col_min = ux0 / g_GridRoutingSize; // if (ux0 > col_min*g_GridRoutingSize
|
|
|
|
// ) col_min++;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( row_min < 0 )
|
|
|
|
row_min = 0;
|
|
|
|
if( row_max >= (Nrows - 1) )
|
|
|
|
row_max = Nrows - 1;
|
|
|
|
if( col_min < 0 )
|
|
|
|
col_min = 0;
|
|
|
|
if( col_max >= (Ncols - 1) )
|
|
|
|
col_max = Ncols - 1;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Calculate coordinate limits of cell belonging to the rectangle. */
|
2007-08-23 04:28:46 +00:00
|
|
|
if( row_min > row_max )
|
|
|
|
row_max = row_min;
|
|
|
|
if( col_min > col_max )
|
|
|
|
col_max = col_min;
|
|
|
|
|
|
|
|
fdistmin = (float) distmin * distmin;
|
|
|
|
|
|
|
|
for( row = row_min; row <= row_max; row++ )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
fdisty = (float) ( cy - ( row * g_GridRoutingSize ) );
|
2007-08-23 04:28:46 +00:00
|
|
|
fdisty *= fdisty;
|
|
|
|
for( col = col_min; col <= col_max; col++ )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
fdistx = (float) ( cx - ( col * g_GridRoutingSize ) );
|
2007-08-23 04:28:46 +00:00
|
|
|
fdistx *= fdistx;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( fdistmin <= ( fdistx + fdisty ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( trace & 1 )
|
|
|
|
WriteCell( row, col, BOTTOM, color );
|
|
|
|
if( trace & 2 )
|
|
|
|
WriteCell( row, col, TOP, color );
|
|
|
|
tstwrite = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( tstwrite )
|
|
|
|
return;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* If no cell has been written, it affects the 4 neighboring diagonal
|
|
|
|
* (Adverse event: pad off grid in the center of the 4 neighboring
|
|
|
|
* diagonal) */
|
2007-08-23 04:28:46 +00:00
|
|
|
distmin = g_GridRoutingSize / 2 + 1;
|
2009-11-14 22:15:22 +00:00
|
|
|
fdistmin = ( (float) distmin * distmin ) * 2; /* Distance to center point
|
|
|
|
* diagonally */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
for( row = row_min; row <= row_max; row++ )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
fdisty = (float) ( cy - ( row * g_GridRoutingSize ) );
|
2007-08-23 04:28:46 +00:00
|
|
|
fdisty *= fdisty;
|
|
|
|
for( col = col_min; col <= col_max; col++ )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
fdistx = (float) ( cx - ( col * g_GridRoutingSize ) );
|
2007-08-23 04:28:46 +00:00
|
|
|
fdistx *= fdistx;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( fdistmin <= ( fdistx + fdisty ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( trace & 1 )
|
|
|
|
WriteCell( row, col, BOTTOM, color );
|
|
|
|
if( trace & 2 )
|
|
|
|
WriteCell( row, col, TOP, color );
|
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Draws a segment of track on the BOARD.
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceSegmentPcb( BOARD* Pcb,
|
|
|
|
TRACK* pt_segm,
|
|
|
|
int color,
|
|
|
|
int marge,
|
|
|
|
int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int demi_pas, demi_largeur;
|
|
|
|
int ux0, uy0, ux1, uy1;
|
|
|
|
|
|
|
|
|
|
|
|
demi_pas = g_GridRoutingSize / 2;
|
2009-11-14 22:15:22 +00:00
|
|
|
demi_largeur = ( pt_segm->m_Width / 2 ) + marge;
|
|
|
|
/* Calculate the bounding rectangle of the segment (if H, V or Via) */
|
2007-08-23 04:28:46 +00:00
|
|
|
ux0 = pt_segm->m_Start.x - Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
uy0 = pt_segm->m_Start.y - Pcb->m_BoundaryBox.m_Pos.y;
|
|
|
|
ux1 = pt_segm->m_End.x - Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
uy1 = pt_segm->m_End.y - Pcb->m_BoundaryBox.m_Pos.y;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Test if VIA (filled circle was drawn) */
|
2008-12-04 04:28:11 +00:00
|
|
|
if( pt_segm->Type() == TYPE_VIA )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2008-12-04 04:28:11 +00:00
|
|
|
int mask_layer = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( pt_segm->IsOnLayer( Route_Layer_BOTTOM ) )
|
2008-12-04 04:28:11 +00:00
|
|
|
mask_layer = 1 << Route_Layer_BOTTOM;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( pt_segm->IsOnLayer( Route_Layer_TOP ) )
|
2008-12-04 04:28:11 +00:00
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
if( mask_layer == 0 )
|
2008-12-04 04:28:11 +00:00
|
|
|
mask_layer = 1 << Route_Layer_TOP;
|
2009-11-14 22:15:22 +00:00
|
|
|
else
|
|
|
|
mask_layer = -1;
|
2008-12-04 04:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( color == VIA_IMPOSSIBLE )
|
|
|
|
mask_layer = -1;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( mask_layer )
|
|
|
|
TraceFilledCercle( Pcb, pt_segm->m_Start.x, pt_segm->m_Start.y,
|
|
|
|
demi_largeur, mask_layer, color, op_logique );
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-03-05 14:57:24 +00:00
|
|
|
int layer = pt_segm->GetLayer();
|
|
|
|
if( color == VIA_IMPOSSIBLE )
|
|
|
|
layer = -1;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* The segment is here a straight line or a circle or an arc.: */
|
2007-08-23 04:28:46 +00:00
|
|
|
if( pt_segm->m_Shape == S_CIRCLE )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
TraceCercle( ux0, uy0, ux1, uy1, demi_largeur, layer, color,
|
|
|
|
op_logique );
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pt_segm->m_Shape == S_ARC )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
TraceArc( ux0, uy0, ux1, uy1, pt_segm->m_Param, demi_largeur, layer,
|
|
|
|
color, op_logique );
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* The segment is here a line segment. */
|
|
|
|
if( ( ux0 != ux1 ) && ( uy0 != uy1 ) ) // Segment tilts.
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
DrawSegmentQcq( ux0, uy0, ux1, uy1, demi_largeur, layer, color,
|
|
|
|
op_logique );
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
// The segment is horizontal or vertical.
|
|
|
|
// DrawHVSegment(ux0,uy0,ux1,uy1,demi_largeur,layer,color,op_logique);
|
|
|
|
// F4EXB 051018-01
|
|
|
|
DrawSegmentQcq( ux0, uy0, ux1, uy1, demi_largeur, layer, color,
|
|
|
|
op_logique ); // F4EXB 051018-01
|
|
|
|
return; // F4EXB 051018-01
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Draws a line, if layer = -1 on all layers
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceLignePcb( int x0,
|
|
|
|
int y0,
|
|
|
|
int x1,
|
|
|
|
int y1,
|
|
|
|
int layer,
|
|
|
|
int color,
|
|
|
|
int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int dx, dy, lim;
|
|
|
|
int cumul, inc, il, delta;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
void (* WriteCell)( int, int, int, BoardCell );
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
switch( op_logique )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case WRITE_CELL:
|
|
|
|
WriteCell = SetCell; break;
|
|
|
|
|
|
|
|
case WRITE_OR_CELL:
|
|
|
|
WriteCell = OrCell; break;
|
|
|
|
|
|
|
|
case WRITE_XOR_CELL:
|
|
|
|
WriteCell = XorCell; break;
|
|
|
|
|
|
|
|
case WRITE_AND_CELL:
|
|
|
|
WriteCell = AndCell; break;
|
|
|
|
|
|
|
|
case WRITE_ADD_CELL:
|
|
|
|
WriteCell = AddCell; break;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( x0 == x1 ) // Vertical.
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
if( y1 < y0 )
|
|
|
|
EXCHG( y0, y1 );
|
2009-11-14 22:15:22 +00:00
|
|
|
dy = y0 / g_GridRoutingSize;
|
2008-09-12 10:31:32 +00:00
|
|
|
lim = y1 / g_GridRoutingSize;
|
2009-11-14 22:15:22 +00:00
|
|
|
dx = x0 / g_GridRoutingSize;
|
|
|
|
/* Clipping limits of board. */
|
|
|
|
if( ( dx < 0 ) || ( dx >= Ncols ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
if( dy < 0 )
|
|
|
|
dy = 0;
|
|
|
|
if( lim >= Nrows )
|
|
|
|
lim = Nrows - 1;
|
|
|
|
for( ; dy <= lim; dy++ )
|
|
|
|
{
|
|
|
|
OP_CELL( layer, dy, dx );
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( y0 == y1 ) // Horizontal
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
if( x1 < x0 )
|
|
|
|
EXCHG( x0, x1 );
|
2009-11-14 22:15:22 +00:00
|
|
|
dx = x0 / g_GridRoutingSize;
|
2008-09-12 10:31:32 +00:00
|
|
|
lim = x1 / g_GridRoutingSize;
|
2009-11-14 22:15:22 +00:00
|
|
|
dy = y0 / g_GridRoutingSize;
|
|
|
|
/* Clipping limits of board. */
|
|
|
|
if( ( dy < 0 ) || ( dy >= Nrows ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
return;
|
|
|
|
if( dx < 0 )
|
|
|
|
dx = 0;
|
|
|
|
if( lim >= Ncols )
|
|
|
|
lim = Ncols - 1;
|
|
|
|
for( ; dx <= lim; dx++ )
|
|
|
|
{
|
|
|
|
OP_CELL( layer, dy, dx );
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Here is some perspective: using the algorithm LUCAS. */
|
|
|
|
if( abs( x1 - x0 ) >= abs( y1 - y0 ) ) /* segment slightly inclined/ */
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
if( x1 < x0 )
|
|
|
|
{
|
|
|
|
EXCHG( x1, x0 ); EXCHG( y1, y0 );
|
|
|
|
}
|
|
|
|
|
2008-09-12 10:31:32 +00:00
|
|
|
dx = x0 / g_GridRoutingSize;
|
|
|
|
lim = x1 / g_GridRoutingSize;
|
2007-08-23 04:28:46 +00:00
|
|
|
dy = y0 / g_GridRoutingSize;
|
|
|
|
inc = 1; if( y1 < y0 )
|
|
|
|
inc = -1;
|
2009-11-14 22:15:22 +00:00
|
|
|
il = lim - dx; cumul = il / 2;
|
|
|
|
delta = abs( y1 - y0 ) / g_GridRoutingSize;
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
for( ; dx <= lim; )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( dx >= 0 ) && ( dy >= 0 )
|
|
|
|
&& ( dx < Ncols ) && ( dy < Nrows ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
OP_CELL( layer, dy, dx );
|
|
|
|
}
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
dx++;
|
|
|
|
cumul += delta;
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
if( cumul > il )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
cumul -= il;
|
|
|
|
dy += inc;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( y1 < y0 )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
EXCHG( x1, x0 );
|
|
|
|
EXCHG( y1, y0 );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2008-09-12 10:31:32 +00:00
|
|
|
dy = y0 / g_GridRoutingSize;
|
|
|
|
lim = y1 / g_GridRoutingSize;
|
2007-08-23 04:28:46 +00:00
|
|
|
dx = x0 / g_GridRoutingSize;
|
2009-11-14 22:15:22 +00:00
|
|
|
inc = 1;
|
|
|
|
if( x1 < x0 )
|
2007-08-23 04:28:46 +00:00
|
|
|
inc = -1;
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
il = lim - dy; cumul = il / 2;
|
|
|
|
delta = abs( x1 - x0 ) / g_GridRoutingSize;
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
for( ; dy <= lim; )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( dx >= 0 ) && ( dy >= 0 )
|
|
|
|
&& ( dx < Ncols ) && ( dy < Nrows ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
OP_CELL( layer, dy, dx );
|
|
|
|
}
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
dy++;
|
|
|
|
cumul += delta;
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
if( cumul > il )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
cumul -= il;
|
|
|
|
dx += inc;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Overloaded functions.
|
2008-10-29 15:26:53 +00:00
|
|
|
*
|
2009-11-14 22:15:22 +00:00
|
|
|
* Uses the color value of all cells included in the board coordinate of
|
|
|
|
* the rectangle ux0, uy0 (top left corner)
|
|
|
|
* A UX1, UY1 (bottom right corner)
|
|
|
|
* The rectangle is horizontal (or vertical)
|
|
|
|
* Contact PCBs.
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceFilledRectangle( BOARD* Pcb, int ux0, int uy0, int ux1, int uy1,
|
|
|
|
int masque_layer, int color, int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int row, col;
|
|
|
|
int row_min, row_max, col_min, col_max;
|
|
|
|
int trace = 0;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
void (* WriteCell)( int, int, int, BoardCell );
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( masque_layer & g_TabOneLayerMask[Route_Layer_BOTTOM] )
|
2009-11-14 22:15:22 +00:00
|
|
|
trace = 1; /* Trace on BOTTOM */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( masque_layer & g_TabOneLayerMask[Route_Layer_TOP] ) && Nb_Sides )
|
|
|
|
trace |= 2; /* Trace on TOP */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( trace == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch( op_logique )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case WRITE_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = SetCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_OR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = OrCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_XOR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = XorCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_AND_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AndCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_ADD_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AddCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
ux0 -= Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
uy0 -= Pcb->m_BoundaryBox.m_Pos.y;
|
|
|
|
ux1 -= Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
uy1 -= Pcb->m_BoundaryBox.m_Pos.y;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Calculating limits coord cells belonging to the rectangle. */
|
2007-08-23 04:28:46 +00:00
|
|
|
row_max = uy1 / g_GridRoutingSize;
|
|
|
|
col_max = ux1 / g_GridRoutingSize;
|
2009-11-14 22:15:22 +00:00
|
|
|
row_min = uy0 / g_GridRoutingSize;
|
|
|
|
if( uy0 > row_min * g_GridRoutingSize )
|
2007-08-23 04:28:46 +00:00
|
|
|
row_min++;
|
2009-11-14 22:15:22 +00:00
|
|
|
col_min = ux0 / g_GridRoutingSize;
|
|
|
|
if( ux0 > col_min * g_GridRoutingSize )
|
2007-08-23 04:28:46 +00:00
|
|
|
col_min++;
|
|
|
|
|
|
|
|
if( row_min < 0 )
|
|
|
|
row_min = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( row_max >= ( Nrows - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
row_max = Nrows - 1;
|
|
|
|
if( col_min < 0 )
|
|
|
|
col_min = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( col_max >= ( Ncols - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
col_max = Ncols - 1;
|
|
|
|
|
|
|
|
for( row = row_min; row <= row_max; row++ )
|
|
|
|
{
|
|
|
|
for( col = col_min; col <= col_max; col++ )
|
|
|
|
{
|
|
|
|
if( trace & 1 )
|
|
|
|
WriteCell( row, col, BOTTOM, color );
|
|
|
|
if( trace & 2 )
|
|
|
|
WriteCell( row, col, TOP, color );
|
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Overloaded functions.
|
2008-10-29 15:26:53 +00:00
|
|
|
*
|
2009-11-14 22:15:22 +00:00
|
|
|
* Uses the color value of all cells included in the board coordinate of the
|
|
|
|
* rectangle ux0, uy0 (top right corner)
|
|
|
|
* a UX1, UY1 (lower left corner)
|
|
|
|
* the rectangle is the value of turning angle (in degrees 0.1)
|
|
|
|
* contact PCBs.
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceFilledRectangle( BOARD* Pcb, int ux0, int uy0, int ux1, int uy1,
|
|
|
|
int angle, int masque_layer, int color,
|
|
|
|
int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int row, col;
|
2009-11-14 22:15:22 +00:00
|
|
|
int cx, cy; /* Center of rectangle */
|
|
|
|
int rayon; /* Radius of the circle */
|
2007-08-23 04:28:46 +00:00
|
|
|
int row_min, row_max, col_min, col_max;
|
|
|
|
int rotrow, rotcol;
|
|
|
|
int trace = 0;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
void (* WriteCell)( int, int, int, BoardCell );
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( masque_layer & g_TabOneLayerMask[Route_Layer_BOTTOM] )
|
2009-11-14 22:15:22 +00:00
|
|
|
trace = 1; /* Trace on BOTTOM */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( masque_layer & g_TabOneLayerMask[Route_Layer_TOP] )
|
|
|
|
if( Nb_Sides )
|
2009-11-14 22:15:22 +00:00
|
|
|
trace |= 2; /* Trace on TOP */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( trace == 0 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch( op_logique )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case WRITE_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = SetCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_OR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = OrCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_XOR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = XorCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_AND_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AndCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_ADD_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AddCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
ux0 -= Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
uy0 -= Pcb->m_BoundaryBox.m_Pos.y;
|
|
|
|
ux1 -= Pcb->m_BoundaryBox.m_Pos.x;
|
|
|
|
uy1 -= Pcb->m_BoundaryBox.m_Pos.y;
|
|
|
|
|
|
|
|
cx = (ux0 + ux1) / 2;
|
|
|
|
cy = (uy0 + uy1) / 2;
|
|
|
|
rayon = (int) sqrt( (double) ( cx - ux0 ) * ( cx - ux0 )
|
|
|
|
+ (double) ( cy - uy0 ) * ( cy - uy0 ) );
|
|
|
|
|
|
|
|
/* Calculating coordinate limits belonging to the rectangle. */
|
|
|
|
row_max = ( cy + rayon ) / g_GridRoutingSize;
|
|
|
|
col_max = ( cx + rayon ) / g_GridRoutingSize;
|
|
|
|
row_min = ( cy - rayon ) / g_GridRoutingSize;
|
|
|
|
if( uy0 > row_min * g_GridRoutingSize )
|
2007-08-23 04:28:46 +00:00
|
|
|
row_min++;
|
2009-11-14 22:15:22 +00:00
|
|
|
col_min = ( cx - rayon ) / g_GridRoutingSize;
|
|
|
|
if( ux0 > col_min * g_GridRoutingSize )
|
2007-08-23 04:28:46 +00:00
|
|
|
col_min++;
|
|
|
|
|
|
|
|
if( row_min < 0 )
|
|
|
|
row_min = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( row_max >= ( Nrows - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
row_max = Nrows - 1;
|
|
|
|
if( col_min < 0 )
|
|
|
|
col_min = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( col_max >= ( Ncols - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
col_max = Ncols - 1;
|
|
|
|
|
|
|
|
for( row = row_min; row <= row_max; row++ )
|
|
|
|
{
|
|
|
|
for( col = col_min; col <= col_max; col++ )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
rotrow = row * g_GridRoutingSize;
|
|
|
|
rotcol = col * g_GridRoutingSize;
|
2007-08-23 04:28:46 +00:00
|
|
|
RotatePoint( &rotcol, &rotrow, cx, cy, -angle );
|
|
|
|
if( rotrow <= uy0 )
|
|
|
|
continue;
|
|
|
|
if( rotrow >= uy1 )
|
|
|
|
continue;
|
|
|
|
if( rotcol <= ux0 )
|
|
|
|
continue;
|
|
|
|
if( rotcol >= ux1 )
|
|
|
|
continue;
|
|
|
|
if( trace & 1 )
|
|
|
|
WriteCell( row, col, BOTTOM, color );
|
|
|
|
if( trace & 2 )
|
|
|
|
WriteCell( row, col, TOP, color );
|
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Fills all cells BOARD contained in the segment
|
|
|
|
* half-width lg, org ux, ux end y0, y1 is set to color.
|
|
|
|
* coordinates in PCB units (0.1 million) relating to the origin
|
|
|
|
* pt_pcb-> m_PcbBox.m_Xmin, Y's board.
|
|
|
|
*/
|
2007-08-23 04:28:46 +00:00
|
|
|
void DrawSegmentQcq( int ux0, int uy0, int ux1, int uy1, int lg, int layer,
|
|
|
|
int color, int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int row, col;
|
|
|
|
int inc;
|
|
|
|
int row_max, col_max, row_min, col_min;
|
|
|
|
int demi_pas;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
void (* WriteCell)( int, int, int, BoardCell );
|
2007-08-23 04:28:46 +00:00
|
|
|
int angle;
|
|
|
|
int cx, cy, dx, dy;
|
|
|
|
|
|
|
|
switch( op_logique )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case WRITE_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = SetCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_OR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = OrCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_XOR_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = XorCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_AND_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AndCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
case WRITE_ADD_CELL:
|
2009-11-14 22:15:22 +00:00
|
|
|
WriteCell = AddCell;
|
|
|
|
break;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Make coordinate ux1 tj > ux0 to simplify calculations */
|
2007-08-23 04:28:46 +00:00
|
|
|
if( ux1 < ux0 )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
EXCHG( ux1, ux0 );
|
|
|
|
EXCHG( uy1, uy0 );
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Calculating the incrementing the Y axis */
|
|
|
|
inc = 1;
|
|
|
|
if( uy1 < uy0 )
|
2007-08-23 04:28:46 +00:00
|
|
|
inc = -1;
|
|
|
|
|
|
|
|
demi_pas = g_GridRoutingSize / 2;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
col_min = ( ux0 - lg ) / g_GridRoutingSize;
|
2007-08-23 04:28:46 +00:00
|
|
|
if( col_min < 0 )
|
|
|
|
col_min = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
col_max = ( ux1 + lg + demi_pas ) / g_GridRoutingSize;
|
|
|
|
if( col_max > ( Ncols - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
col_max = Ncols - 1;
|
|
|
|
|
|
|
|
if( inc > 0 )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
row_min = ( uy0 - lg ) / g_GridRoutingSize;
|
|
|
|
row_max = ( uy1 + lg + demi_pas ) / g_GridRoutingSize;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
row_min = ( uy1 - lg ) / g_GridRoutingSize;
|
|
|
|
row_max = ( uy0 + lg + demi_pas ) / g_GridRoutingSize;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( row_min < 0 )
|
|
|
|
row_min = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( row_min > ( Nrows - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
row_min = Nrows - 1;
|
|
|
|
if( row_max < 0 )
|
|
|
|
row_max = 0;
|
2009-11-14 22:15:22 +00:00
|
|
|
if( row_max > ( Nrows - 1 ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
row_max = Nrows - 1;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
dx = ux1 - ux0;
|
|
|
|
dy = uy1 - uy0;
|
2007-08-23 04:28:46 +00:00
|
|
|
|
|
|
|
if( dx )
|
2009-11-14 22:15:22 +00:00
|
|
|
angle = (int) ( atan2( (double) dy, (double) dx ) * 1800 / M_PI );
|
2007-08-23 04:28:46 +00:00
|
|
|
else
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
angle = 900;
|
|
|
|
if( dy < 0 )
|
2007-08-23 04:28:46 +00:00
|
|
|
angle = -900;
|
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
RotatePoint( &dx, &dy, angle ); /* dx = length, dy = 0 */
|
2007-08-23 04:28:46 +00:00
|
|
|
for( col = col_min; col <= col_max; col++ )
|
|
|
|
{
|
|
|
|
int cxr;
|
2009-11-14 22:15:22 +00:00
|
|
|
cxr = ( col * g_GridRoutingSize ) - ux0;
|
|
|
|
for( row = row_min; row <= row_max; row++ )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
cy = (row * g_GridRoutingSize) - uy0;
|
|
|
|
cx = cxr;
|
|
|
|
RotatePoint( &cx, &cy, angle );
|
|
|
|
if( abs( cy ) > lg )
|
2009-11-14 22:15:22 +00:00
|
|
|
continue; /* The point is too far on the Y axis. */
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* This point a test is close to the segment: the position
|
|
|
|
* along the X axis must be tested.
|
|
|
|
*/
|
|
|
|
if( ( cx >= 0 ) && ( cx <= dx ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
|
|
|
OP_CELL( layer, row, col );
|
|
|
|
continue;
|
|
|
|
}
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Examination of extremities are rounded. */
|
|
|
|
if( ( cx < 0 ) && ( cx >= -lg ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( ( cx * cx ) + ( cy * cy ) ) <= ( lg * lg ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
OP_CELL( layer, row, col );
|
|
|
|
continue;
|
|
|
|
}
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( cx > dx ) && ( cx <= ( dx + lg ) ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
if( ( ( ( cx - dx ) * ( cx - dx ) ) + ( cy * cy ) )
|
|
|
|
<= ( lg * lg ) )
|
2007-08-23 04:28:46 +00:00
|
|
|
OP_CELL( layer, row, col );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Fills all cells BOARD contained in the circle
|
|
|
|
* half-width lg center ux, ux through y0, y1 is set to color.
|
|
|
|
* coord in PCB units (0.1 million) relating to the origin
|
|
|
|
* pt_pcb-> m_PcbBox.m_Xmin, Y's board.
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceCercle( int ux0, int uy0, int ux1, int uy1, int lg, int layer,
|
|
|
|
int color, int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int rayon, nb_segm;
|
2009-11-14 22:15:22 +00:00
|
|
|
int x0, y0, // Starting point of the current segment trace.
|
|
|
|
x1, y1; // End point.
|
2007-08-23 04:28:46 +00:00
|
|
|
int ii;
|
|
|
|
int angle;
|
|
|
|
|
|
|
|
rayon = (int) hypot( (double) (ux1 - ux0), (double) (uy1 - uy0) );
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
x0 = x1 = rayon;
|
|
|
|
y0 = y1 = 0;
|
2007-08-23 04:28:46 +00:00
|
|
|
if( lg < 1 )
|
|
|
|
lg = 1;
|
2009-11-14 22:15:22 +00:00
|
|
|
nb_segm = ( 2 * rayon ) / lg;
|
2007-08-23 04:28:46 +00:00
|
|
|
if( nb_segm < 5 )
|
|
|
|
nb_segm = 5;
|
|
|
|
if( nb_segm > 100 )
|
|
|
|
nb_segm = 100;
|
|
|
|
for( ii = 1; ii < nb_segm; ii++ )
|
|
|
|
{
|
|
|
|
angle = (3600 * ii) / nb_segm;
|
2009-11-14 22:15:22 +00:00
|
|
|
x1 = (int) ( rayon * fcosinus[angle] );
|
|
|
|
y1 = (int) ( rayon * fsinus[angle] );
|
|
|
|
DrawSegmentQcq( x0 + ux0, y0 + uy0, x1 + ux0, y1 + uy0, lg,
|
|
|
|
layer, color, op_logique );
|
|
|
|
x0 = x1;
|
|
|
|
y0 = y1;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
DrawSegmentQcq( x1 + ux0, y1 + uy0, ux0 + rayon, uy0, lg, layer,
|
|
|
|
color, op_logique );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
/* Fills all cells BOARD contained in the arc of "L" angle
|
|
|
|
* half-width lg ux center, starting in ux y0, y1 is set to color.
|
|
|
|
* coord in PCB units (0.1 million) relating to the origin
|
|
|
|
* Pt_pcb->m_PcbBox.m_Xmin, Y's board.
|
2007-08-23 04:28:46 +00:00
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void TraceArc( int ux0, int uy0, int ux1, int uy1, int ArcAngle, int lg,
|
|
|
|
int layer, int color, int op_logique )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-23 04:28:46 +00:00
|
|
|
int rayon, nb_segm;
|
2009-11-14 22:15:22 +00:00
|
|
|
int x0, y0, // Starting point of the current segment trace
|
|
|
|
x1, y1; // End point
|
2007-08-23 04:28:46 +00:00
|
|
|
int ii;
|
|
|
|
int angle, StAngle;
|
|
|
|
|
|
|
|
|
|
|
|
rayon = (int) hypot( (double) (ux1 - ux0), (double) (uy1 - uy0) );
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
x0 = ux1 - ux0;
|
|
|
|
y0 = uy1 - uy0;
|
2007-08-23 04:28:46 +00:00
|
|
|
StAngle = ArcTangente( uy1 - uy0, ux1 - ux0 );
|
|
|
|
if( lg < 1 )
|
|
|
|
lg = 1;
|
2009-11-14 22:15:22 +00:00
|
|
|
nb_segm = ( 2 * rayon ) / lg;
|
2007-08-23 04:28:46 +00:00
|
|
|
nb_segm = ( nb_segm * abs( ArcAngle ) ) / 3600;
|
|
|
|
if( nb_segm < 5 )
|
|
|
|
nb_segm = 5;
|
|
|
|
if( nb_segm > 100 )
|
|
|
|
nb_segm = 100;
|
|
|
|
|
|
|
|
for( ii = 1; ii <= nb_segm; ii++ )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
angle = ( ArcAngle * ii ) / nb_segm;
|
2007-08-23 04:28:46 +00:00
|
|
|
angle += StAngle;
|
|
|
|
|
|
|
|
while( angle >= 3600 )
|
|
|
|
angle -= 3600;
|
|
|
|
|
|
|
|
while( angle < 0 )
|
|
|
|
angle += 3600;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
x1 = (int) ( rayon * fcosinus[angle] );
|
|
|
|
y1 = (int) ( rayon * fsinus[angle] );
|
|
|
|
DrawSegmentQcq( x0 + ux0, y0 + uy0, x1 + ux0, y1 + uy0, lg, layer,
|
|
|
|
color, op_logique );
|
|
|
|
x0 = x1;
|
|
|
|
y0 = y1;
|
2007-08-23 04:28:46 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
// DrawSegmentQcq(x1+ux0,y1+uy0, ux0+rayon, uy0,lg,layer, color,
|
|
|
|
// op_logique);
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|