kicad/common/drawtxt.cpp

401 lines
12 KiB
C++
Raw Normal View History

2008-01-19 20:34:10 +00:00
/*************************************************/
/* drawtxt.cpp : Function to draw and plot texts */
/*************************************************/
#include "fctsys.h"
#include "gr_basic.h"
#include "common.h"
#include "plot_common.h"
#include "trigo.h"
#include "macros.h"
#ifndef DEFAULT_SIZE_TEXT
#define DEFAULT_SIZE_TEXT 50
#endif
#define EDA_DRAWBASE
#include "grfonte.h"
/* fonctions locales : */
/****************************************************************************************************/
void DrawGraphicText( WinEDA_DrawPanel* aPanel, wxDC* DC,
const wxPoint& aPos, EDA_Colors aColor, const wxString& aText,
int aOrient, const wxSize& aSize,
enum GRTextHorizJustifyType aH_justify,
enum GRTextVertJustifyType aV_justify,
int aWidth, bool aItalic,
void (* aCallback) (int x0, int y0, int xf, int yf))
/****************************************************************************************************/
/** Function DrawGraphicText
* Draw a graphic text (like module texts)
* Draw a graphic text (like module texts)
* @param aPanel = the current DrawPanel
* @param aPos = text position (according to h_justify, v_justify)
* @param aColor (enum EDA_Colors) = text color
* @param aText = text to draw
* @param aOrient = angle in 0.1 degree
* @param aSize = text size (size.x or size.y can be < 0 for mirrored texts)
* @param aH_justify = horizontal justification (Left, center, right)
* @param aV_justify = vertical justification (bottom, center, top)
* @param aWidth = line width (pen width) (default = 0)
* if width < 0 : draw segments in sketch mode, width = abs(width)
* @param aItalic = true to simulate an italic font
* @param aCallback() = function called (if non null) to draw each segment.
* used only to draw 3D texts
2008-01-19 20:34:10 +00:00
*/
{
int ii, kk, char_count, AsciiCode, endcar;
int x0, y0;
2008-01-19 20:34:10 +00:00
int zoom;
int size_h, size_v, pitch;
2008-01-19 20:34:10 +00:00
SH_CODE f_cod, plume = 'U';
const SH_CODE* ptcar;
int ptr;
int ux0, uy0, dx, dy; // Draw coordinate for segments to draw. also used in some other calculation
int cX, cY; // Texte center
int ox, oy; // Draw coordinates for the current char
int coord[100]; // Buffer coordinate used to draw polylines (char shapes)
bool sketch_mode = false;
2008-01-19 20:34:10 +00:00
if ( aPanel )
zoom = aPanel->GetZoom();
else
zoom = 1;
2008-01-19 20:34:10 +00:00
size_h = aSize.x;
size_v = aSize.y;
2008-01-19 20:34:10 +00:00
if( aWidth < 0 )
2008-01-19 20:34:10 +00:00
{
aWidth = -aWidth;
2008-01-19 20:34:10 +00:00
sketch_mode = TRUE;
}
2008-03-22 05:55:06 +00:00
kk = 0;
2008-01-19 20:34:10 +00:00
ptr = 0; /* ptr = text index */
char_count = aText.Len();
if( char_count == 0 )
2008-01-19 20:34:10 +00:00
return;
pitch = (10 * size_h ) / 9; // this is the pitch between chars
if ( pitch > 0 )
pitch += ABS(aWidth);
else
pitch -= ABS(aWidth);
ox = cX = aPos.x;
oy = cY = aPos.y;
2008-01-19 20:34:10 +00:00
/* Do not draw the text if out of draw area! */
if( aPanel )
2008-01-19 20:34:10 +00:00
{
int xm, ym, ll, xc, yc;
int textsize = ABS( pitch );
ll = (textsize * char_count) / zoom;
2008-03-22 05:55:06 +00:00
2008-01-19 20:34:10 +00:00
xc = GRMapX( cX );
yc = GRMapY( cY );
2008-03-22 05:55:06 +00:00
x0 = aPanel->m_ClipBox.GetX() - ll;
y0 = aPanel->m_ClipBox.GetY() - ll;
xm = aPanel->m_ClipBox.GetRight() + ll;
ym = aPanel->m_ClipBox.GetBottom() + ll;
2008-03-22 05:55:06 +00:00
2008-01-19 20:34:10 +00:00
if( xc < x0 )
return;
if( yc < y0 )
return;
if( xc > xm )
return;
if( yc > ym )
return;
}
/* Compute the position ux0, uy0 of the first letter , next */
dx = (pitch * char_count) / 2;
2008-01-19 20:34:10 +00:00
dy = size_v / 2; /* dx, dy = draw offset between first letter and text center */
ux0 = uy0 = 0; /* Decalage du centre du texte / coord de ref */
if( (aOrient == 0) || (aOrient == 1800) ) /* Horizontal Text */
2008-01-19 20:34:10 +00:00
{
switch( aH_justify )
2008-01-19 20:34:10 +00:00
{
case GR_TEXT_HJUSTIFY_CENTER:
break;
case GR_TEXT_HJUSTIFY_RIGHT:
ux0 = -dx;
break;
case GR_TEXT_HJUSTIFY_LEFT:
ux0 = dx;
break;
}
switch( aV_justify )
2008-01-19 20:34:10 +00:00
{
case GR_TEXT_VJUSTIFY_CENTER:
break;
case GR_TEXT_VJUSTIFY_TOP:
uy0 = dy;
break;
case GR_TEXT_VJUSTIFY_BOTTOM:
uy0 = -dy;
break;
}
}
else /* Vertical Text */
{
switch( aH_justify )
2008-01-19 20:34:10 +00:00
{
case GR_TEXT_HJUSTIFY_CENTER:
break;
case GR_TEXT_HJUSTIFY_RIGHT:
ux0 = -dy;
break;
case GR_TEXT_HJUSTIFY_LEFT:
ux0 = dy;
break;
}
switch( aV_justify )
2008-01-19 20:34:10 +00:00
{
case GR_TEXT_VJUSTIFY_CENTER:
break;
case GR_TEXT_VJUSTIFY_TOP:
uy0 = dx;
break;
case GR_TEXT_VJUSTIFY_BOTTOM:
uy0 = -dx;
break;
}
}
2008-03-22 05:55:06 +00:00
cX += ux0;
2008-01-19 20:34:10 +00:00
cY += uy0;
2008-03-22 05:55:06 +00:00
2008-01-19 20:34:10 +00:00
ox = cX - dx;
oy = cY + dy;
if( (aSize.x / zoom) == 0 )
2008-01-19 20:34:10 +00:00
return;
if( ABS( (aSize.x / zoom) ) < 3 ) /* chars trop petits pour etre dessines */
2008-01-19 20:34:10 +00:00
{ /* le texte est symbolise par une barre */
dx = (pitch * char_count) / 2;
2008-01-19 20:34:10 +00:00
dy = size_v / 2; /* Decalage du debut du texte / centre */
2008-03-22 05:55:06 +00:00
ux0 = cX - dx;
2008-01-19 20:34:10 +00:00
uy0 = cY;
2008-03-22 05:55:06 +00:00
dx += cX;
2008-01-19 20:34:10 +00:00
dy = cY;
2008-03-22 05:55:06 +00:00
RotatePoint( &ux0, &uy0, cX, cY, aOrient );
RotatePoint( &dx, &dy, cX, cY, aOrient );
2008-03-22 05:55:06 +00:00
if ( aCallback )
aCallback( ux0, uy0, dx, dy );
else
GRLine( &aPanel->m_ClipBox, DC, ux0, uy0, dx, dy, aWidth, aColor );
2008-01-19 20:34:10 +00:00
return;
}
while( kk++ < char_count )
2008-01-19 20:34:10 +00:00
{
x0 = 0; y0 = 0;
#if defined(wxUSE_UNICODE) && defined(KICAD_CYRILLIC)
AsciiCode = aText.GetChar(ptr) & 0x7FF;
if ( AsciiCode > 0x40F && AsciiCode < 0x450 ) // big small Cyr
AsciiCode = utf8_to_ascii[AsciiCode - 0x410] & 0xFF;
else
AsciiCode = AsciiCode & 0xFF;
#else
AsciiCode = aText.GetChar( ptr ) & 0xFF;
#endif
2008-01-19 20:34:10 +00:00
ptcar = graphic_fonte_shape[AsciiCode]; /* ptcar pointe la description
* du caractere a dessiner */
for( ii = 0, endcar = FALSE; !endcar; ptcar++ )
{
f_cod = *ptcar;
/* get code n de la forme selectionnee */
switch( f_cod )
{
case 'X':
endcar = TRUE; /* fin du caractere */
break;
case 'U':
if( ii && (plume == 'D' ) )
{
if( aWidth <= 1 )
aWidth = 0;
if ( aCallback )
{
int ik, * coordptr;
coordptr = coord;
for( ik = 0; ik < (ii - 2); ik += 2, coordptr += 2 )
aCallback( *coordptr, *(coordptr + 1),
*(coordptr + 2), *(coordptr + 3) );
}
2008-01-19 20:34:10 +00:00
else if( sketch_mode )
{
int ik, * coordptr;
coordptr = coord;
for( ik = 0; ik < (ii - 2); ik += 2, coordptr += 2 )
GRCSegm( &aPanel->m_ClipBox, DC, *coordptr, *(coordptr + 1),
*(coordptr + 2), *(coordptr + 3), aWidth, aColor );
2008-01-19 20:34:10 +00:00
}
else
GRPoly( &aPanel->m_ClipBox, DC, ii / 2, coord, 0,
aWidth, aColor, aColor );
2008-01-19 20:34:10 +00:00
}
plume = f_cod; ii = 0;
break;
case 'D':
2008-03-22 05:55:06 +00:00
plume = f_cod;
2008-01-19 20:34:10 +00:00
break;
default:
{
int y, k1, k2;
y = k1 = f_cod; /* trace sur axe V */
2008-01-19 20:34:10 +00:00
k1 = -( (k1 * size_v) / 9 );
2008-03-22 05:55:06 +00:00
2008-01-19 20:34:10 +00:00
ptcar++;
f_cod = *ptcar;
2008-03-22 05:55:06 +00:00
2008-01-19 20:34:10 +00:00
k2 = f_cod; /* trace sur axe H */
k2 = (k2 * size_h) / 9;
// To simulate an italic font, add a x offset depending on the y offset
if ( aItalic )
k2 -= k1/8;
2008-01-19 20:34:10 +00:00
dx = k2 + ox; dy = k1 + oy;
2008-03-22 05:55:06 +00:00
RotatePoint( &dx, &dy, cX, cY, aOrient );
2008-01-19 20:34:10 +00:00
coord[ii++] = dx;
2008-03-22 05:55:06 +00:00
coord[ii++] = dy;
2008-01-19 20:34:10 +00:00
break;
}
}
/* end switch */
}
/* end draw 1 char */
2008-01-19 20:34:10 +00:00
ptr++; ox += pitch;
2008-01-19 20:34:10 +00:00
}
}
/* functions used to plot texts, using DrawGraphicText() with a call back function */
static void (*MovePenFct)( wxPoint pos, int state ); // a pointer to actual plot function (HPGL, PS, ..)
static bool s_Plotbegin; // Flag to init plot
/* The call back function */
static void s_Callback_plot(int x0, int y0, int xf, int yf)
{
static wxPoint PenLastPos;
wxPoint pstart;
pstart.x = x0;
pstart.y = y0;
wxPoint pend;
pend.x = xf;
pend.y = yf;
if ( s_Plotbegin ) // First segment to plot
{
MovePenFct( pstart, 'U' );
MovePenFct( pend, 'D' );
s_Plotbegin = false;
}
else
{
if ( PenLastPos == pstart ) // this is a next segment in a polyline
{
MovePenFct( pend, 'D' );
}
else // New segment to plot
{
MovePenFct( pstart, 'U' );
MovePenFct( pend, 'D' );
}
}
PenLastPos = pend;
}
/******************************************************************************************/
void PlotGraphicText( int aFormat_plot, const wxPoint& aPos, enum EDA_Colors aColor,
const wxString& aText,
int aOrient, const wxSize& aSize,
enum GRTextHorizJustifyType aH_justify,
enum GRTextVertJustifyType aV_justify,
int aWidth, bool aItalic )
/******************************************************************************************/
2008-01-19 20:34:10 +00:00
/** Function PlotGraphicText
* same as DrawGraphicText, but plot graphic text insteed of draw it
* @param aFormat_plot = plot format (PLOT_FORMAT_POST, PLOT_FORMAT_HPGL, PLOT_FORMAT_GERBER)
* @param aPos = text position (according to aH_justify, aV_justify)
* @param aColor (enum EDA_Colors) = text color
* @param aText = text to draw
* @param aOrient = angle in 0.1 degree
* @param aSize = text size (size.x or size.y can be < 0 for mirrored texts)
* @param aH_justify = horizontal justification (Left, center, right)
* @param aV_justify = vertical justification (bottom, center, top)
* @param aWidth = line width (pen width) (default = 0)
* if width < 0 : draw segments in sketch mode, width = abs(width)
* @param aItalic = true to simulate an italic font
2008-01-19 20:34:10 +00:00
*/
{
2008-01-19 20:34:10 +00:00
// Initialise the actual function used to plot lines:
switch( aFormat_plot )
2008-01-19 20:34:10 +00:00
{
case PLOT_FORMAT_POST:
MovePenFct = LineTo_PS;
2008-01-19 20:34:10 +00:00
break;
case PLOT_FORMAT_HPGL:
MovePenFct = Move_Plume_HPGL;
2008-01-19 20:34:10 +00:00
break;
case PLOT_FORMAT_GERBER:
default:
return;
}
if( aColor >= 0 && IsPostScript( aFormat_plot ) )
SetColorMapPS( aColor );
2008-01-19 20:34:10 +00:00
s_Plotbegin = true;
DrawGraphicText( NULL, NULL, aPos, aColor, aText,
aOrient, aSize,
aH_justify, aV_justify,
aWidth, aItalic,
s_Callback_plot);
2008-01-19 20:34:10 +00:00
/* end text : pen UP ,no move */
MovePenFct( wxPoint( 0, 0 ), 'Z' );
}