2007-10-13 06:18:44 +00:00
|
|
|
/****************************************************/
|
|
|
|
/* AUTOROUT.H */
|
|
|
|
/****************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#ifndef AUTOROUT_H
|
|
|
|
#define AUTOROUT_H
|
|
|
|
|
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
#define TOP 0
|
2007-06-05 12:10:51 +00:00
|
|
|
#define BOTTOM 1
|
2007-10-13 06:18:44 +00:00
|
|
|
#define EMPTY 0
|
2007-06-05 12:10:51 +00:00
|
|
|
#define ILLEGAL -1
|
|
|
|
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
/* Autorouter commands. */
|
2007-10-13 06:18:44 +00:00
|
|
|
enum CommandOpt {
|
|
|
|
PLACE_ALL,
|
|
|
|
PLACE_OUT_OF_BOARD,
|
|
|
|
PLACE_INCREMENTAL,
|
|
|
|
PLACE_1_MODULE,
|
|
|
|
|
|
|
|
ROUTE_ALL,
|
|
|
|
ROUTE_NET,
|
|
|
|
ROUTE_MODULE,
|
|
|
|
ROUTE_PAD
|
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
extern int E_scale; /* Scaling factor of distance tables. */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
#define ONE_SIDE 0
|
2007-06-05 12:10:51 +00:00
|
|
|
#define TWO_SIDES 1
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
extern int Nb_Sides; /* Number of layers for autorouting (0 or 1) */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
#define FORCE_PADS 1 /* Force placement of pads for any Netcode */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/* board dimensions */
|
2009-04-05 20:49:15 +00:00
|
|
|
extern int Nrows;
|
|
|
|
extern int Ncols;
|
|
|
|
extern int Ntotal;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/* search statistics */
|
2009-04-05 20:49:15 +00:00
|
|
|
extern int OpenNodes; /* total number of nodes opened */
|
|
|
|
extern int ClosNodes; /* total number of nodes closed */
|
|
|
|
extern int MoveNodes; /* total number of nodes moved */
|
|
|
|
extern int MaxNodes; /* maximum number of nodes opened at one time */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
/* Structures useful to the generation of board as bitmap. */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
typedef char BoardCell;
|
2007-10-13 06:18:44 +00:00
|
|
|
typedef int DistCell;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-13 06:18:44 +00:00
|
|
|
class BOARDHEAD /* header of blocks of BoardCell */
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-10-13 06:18:44 +00:00
|
|
|
BoardCell* m_BoardSide[2]; /* ptr to block of memory: 2-sided board */
|
2009-11-12 15:43:38 +00:00
|
|
|
DistCell* m_DistSide[2]; /* ptr to block of memory: path distance to
|
|
|
|
* cells */
|
|
|
|
char* m_DirSide[2]; /* header of blocks of chars:pointers back to
|
|
|
|
* source */
|
2007-10-13 06:18:44 +00:00
|
|
|
bool m_InitBoardDone;
|
|
|
|
int m_Layers;
|
|
|
|
int m_Nrows, m_Ncols;
|
|
|
|
int m_MemSize;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
public:
|
2007-10-13 06:18:44 +00:00
|
|
|
BOARDHEAD();
|
|
|
|
~BOARDHEAD();
|
|
|
|
int InitBoard();
|
|
|
|
void UnInitBoard();
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
extern BOARDHEAD Board; /* 2-sided board */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
/* Constants used to trace the cells on the BOARD */
|
2007-10-13 06:18:44 +00:00
|
|
|
#define WRITE_CELL 0
|
|
|
|
#define WRITE_OR_CELL 1
|
2007-06-05 12:10:51 +00:00
|
|
|
#define WRITE_XOR_CELL 2
|
|
|
|
#define WRITE_AND_CELL 3
|
|
|
|
#define WRITE_ADD_CELL 4
|
|
|
|
|
|
|
|
|
|
|
|
#include "ar_protos.h"
|
|
|
|
|
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
#endif // AUTOROUT_H
|
|
|
|
|