lib_bezier.cpp 11 KB
Newer Older
1 2 3
/*
 * This program source code file is part of KiCad, a free EDA CAD application.
 *
4
 * Copyright (C) 2004-2012 KiCad Developers, see change_log.txt for contributors.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you may find one here:
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * or you may search the http://www.gnu.org website for the version 2 license,
 * or you may write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 */

/**
 * @file lib_bezier.cpp
 */
27

28 29 30 31 32 33 34 35 36
#include <fctsys.h>
#include <gr_basic.h>
#include <macros.h>
#include <class_drawpanel.h>
#include <plot_common.h>
#include <trigo.h>
#include <wxstruct.h>
#include <bezier_curves.h>
#include <richio.h>
37
#include <base_units.h>
38
#include <msgpanel.h>
39

40 41 42 43
#include <general.h>
#include <protos.h>
#include <lib_bezier.h>
#include <transform.h>
44 45 46


LIB_BEZIER::LIB_BEZIER( LIB_COMPONENT* aParent ) :
47
    LIB_ITEM( LIB_BEZIER_T, aParent )
48 49 50 51 52 53 54 55
{
    m_Fill       = NO_FILL;
    m_Width      = 0;
    m_isFillable = true;
    m_typeName   = _( "Bezier" );
}


56
bool LIB_BEZIER::Save( OUTPUTFORMATTER& aFormatter )
57 58 59
{
    int ccount = GetCornerCount();

60
    aFormatter.Print( 0, "B %d %d %d %d", ccount, m_Unit, m_Convert, m_Width );
61 62 63

    for( unsigned i = 0; i < GetCornerCount(); i++ )
    {
64
        aFormatter.Print( 0, "  %d %d", m_BezierPoints[i].x, m_BezierPoints[i].y );
65 66
    }

67
    aFormatter.Print( 0, " %c\n", fill_tab[m_Fill] );
68 69 70 71 72

    return true;
}


73
bool LIB_BEZIER::Load( LINE_READER& aLineReader, wxString& aErrorMsg )
74 75 76 77
{
    char*   p;
    int     i, ccount = 0;
    wxPoint pt;
78
    char*   line = (char*) aLineReader;
79

80
    i = sscanf( line + 2, "%d %d %d %d", &ccount, &m_Unit, &m_Convert, &m_Width );
81 82 83 84 85 86

    if( i !=4 )
    {
        aErrorMsg.Printf( _( "Bezier only had %d parameters of the required 4" ), i );
        return false;
    }
87

88 89 90 91 92 93
    if( ccount <= 0 )
    {
        aErrorMsg.Printf( _( "Bezier count parameter %d is invalid" ), ccount );
        return false;
    }

94
    p = strtok( line + 2, " \t\n" );
95 96 97 98 99 100 101 102
    p = strtok( NULL, " \t\n" );
    p = strtok( NULL, " \t\n" );
    p = strtok( NULL, " \t\n" );

    for( i = 0; i < ccount; i++ )
    {
        wxPoint point;
        p = strtok( NULL, " \t\n" );
103

104 105 106 107 108
        if( sscanf( p, "%d", &pt.x ) != 1 )
        {
            aErrorMsg.Printf( _( "Bezier point %d X position not defined" ), i );
            return false;
        }
109

110
        p = strtok( NULL, " \t\n" );
111

112 113 114 115 116
        if( sscanf( p, "%d", &pt.y ) != 1 )
        {
            aErrorMsg.Printf( _( "Bezier point %d Y position not defined" ), i );
            return false;
        }
117

118 119 120 121 122 123 124 125 126
        m_BezierPoints.push_back( pt );
    }

    m_Fill = NO_FILL;

    if( ( p = strtok( NULL, " \t\n" ) ) != NULL )
    {
        if( p[0] == 'F' )
            m_Fill = FILLED_SHAPE;
127

128 129 130 131 132 133 134 135
        if( p[0] == 'f' )
            m_Fill = FILLED_WITH_BG_BODYCOLOR;
    }

    return true;
}


136
EDA_ITEM* LIB_BEZIER::Clone() const
137
{
138
    return new LIB_BEZIER( *this );
139 140 141
}


142
int LIB_BEZIER::compare( const LIB_ITEM& aOther ) const
143
{
144
    wxASSERT( aOther.Type() == LIB_BEZIER_T );
145 146 147 148 149 150 151 152 153 154

    const LIB_BEZIER* tmp = ( LIB_BEZIER* ) &aOther;

    if( m_BezierPoints.size() != tmp->m_BezierPoints.size() )
        return m_BezierPoints.size() - tmp->m_BezierPoints.size();

    for( size_t i = 0; i < m_BezierPoints.size(); i++ )
    {
        if( m_BezierPoints[i].x != tmp->m_BezierPoints[i].x )
            return m_BezierPoints[i].x - tmp->m_BezierPoints[i].x;
155

156 157 158 159 160 161 162 163
        if( m_BezierPoints[i].y != tmp->m_BezierPoints[i].y )
            return m_BezierPoints[i].y - tmp->m_BezierPoints[i].y;
    }

    return 0;
}


164
void LIB_BEZIER::SetOffset( const wxPoint& aOffset )
165 166 167 168 169 170 171 172 173 174 175
{
    size_t i;

    for( i = 0; i < m_BezierPoints.size(); i++ )
        m_BezierPoints[i] += aOffset;

    for( i = 0; i < m_PolyPoints.size(); i++ )
        m_PolyPoints[i] += aOffset;
}


176
bool LIB_BEZIER::Inside( EDA_RECT& aRect ) const
177 178 179
{
    for( size_t i = 0; i < m_PolyPoints.size(); i++ )
    {
180
        if( aRect.Contains( m_PolyPoints[i].x, -m_PolyPoints[i].y ) )
181 182 183 184 185 186 187
            return true;
    }

    return false;
}


188
void LIB_BEZIER::Move( const wxPoint& aPosition )
189
{
190
    SetOffset( aPosition - m_PolyPoints[0] );
191 192 193
}


194
void LIB_BEZIER::MirrorHorizontal( const wxPoint& aCenter )
195 196 197 198 199 200 201 202 203 204 205
{
    size_t i, imax = m_PolyPoints.size();

    for( i = 0; i < imax; i++ )
    {
        m_PolyPoints[i].x -= aCenter.x;
        m_PolyPoints[i].x *= -1;
        m_PolyPoints[i].x += aCenter.x;
    }

    imax = m_BezierPoints.size();
206

207 208 209 210 211 212 213 214
    for( i = 0; i < imax; i++ )
    {
        m_BezierPoints[i].x -= aCenter.x;
        m_BezierPoints[i].x *= -1;
        m_BezierPoints[i].x += aCenter.x;
    }
}

215
void LIB_BEZIER::MirrorVertical( const wxPoint& aCenter )
216 217 218 219 220 221 222 223 224 225 226
{
    size_t i, imax = m_PolyPoints.size();

    for( i = 0; i < imax; i++ )
    {
        m_PolyPoints[i].y -= aCenter.y;
        m_PolyPoints[i].y *= -1;
        m_PolyPoints[i].y += aCenter.y;
    }

    imax = m_BezierPoints.size();
227

228 229 230 231 232 233 234 235
    for( i = 0; i < imax; i++ )
    {
        m_BezierPoints[i].y -= aCenter.y;
        m_BezierPoints[i].y *= -1;
        m_BezierPoints[i].y += aCenter.y;
    }
}

236
void LIB_BEZIER::Rotate( const wxPoint& aCenter, bool aRotateCCW )
237
{
238
    int rot_angle = aRotateCCW ? -900 : 900;
239

240
    size_t i, imax = m_PolyPoints.size();
241

242 243
    for( i = 0; i < imax; i++ )
    {
244
        RotatePoint( &m_PolyPoints[i], aCenter, rot_angle );
245 246 247
    }

    imax = m_BezierPoints.size();
248

249 250
    for( i = 0; i < imax; i++ )
    {
251
        RotatePoint( &m_BezierPoints[i], aCenter, rot_angle );
252 253 254
    }
}

255

256 257
void LIB_BEZIER::Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
                       const TRANSFORM& aTransform )
258 259 260
{
    wxASSERT( aPlotter != NULL );

261 262
    static std::vector< wxPoint > cornerList;
    cornerList.clear();
263

264
    for( unsigned ii = 0; ii < m_PolyPoints.size(); ii++ )
265
    {
266
        wxPoint pos = m_PolyPoints[ii];
267
        pos = aTransform.TransformCoordinate( pos ) + aOffset;
268
        cornerList.push_back( pos );
269 270 271 272
    }

    if( aFill && m_Fill == FILLED_WITH_BG_BODYCOLOR )
    {
273
        aPlotter->SetColor( ReturnLayerColor( LAYER_DEVICE_BACKGROUND ) );
274
        aPlotter->PlotPoly( cornerList, FILLED_WITH_BG_BODYCOLOR, 0 );
275 276 277
    }

    bool already_filled = m_Fill == FILLED_WITH_BG_BODYCOLOR;
278
    aPlotter->SetColor( ReturnLayerColor( LAYER_DEVICE ) );
279
    aPlotter->PlotPoly( cornerList, already_filled ? NO_FILL : m_Fill, GetPenSize() );
280 281 282
}


283
int LIB_BEZIER::GetPenSize() const
284
{
285
    return ( m_Width == 0 ) ? GetDefaultLineThickness() : m_Width;
286 287
}

288

289
void LIB_BEZIER::drawGraphic( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
290 291
                              EDA_COLOR_T aColor, GR_DRAWMODE aDrawMode, void* aData,
                              const TRANSFORM& aTransform )
292 293 294 295
{
    wxPoint              pos1;
    std::vector<wxPoint> PolyPointsTraslated;

296
    EDA_COLOR_T color = ReturnLayerColor( LAYER_DEVICE );
297 298 299 300 301 302 303 304 305 306 307 308 309 310

    m_PolyPoints = Bezier2Poly( m_BezierPoints[0],
                                m_BezierPoints[1],
                                m_BezierPoints[2],
                                m_BezierPoints[3] );

    PolyPointsTraslated.clear();

    for( unsigned int i = 0; i < m_PolyPoints.size() ; i++ )
        PolyPointsTraslated.push_back( aTransform.TransformCoordinate( m_PolyPoints[i] ) +
                                       aOffset );

    if( aColor < 0 )                // Used normal color or selected color
    {
311
        if( IsSelected() )
312
            color = GetItemSelectedColor();
313 314
    }
    else
315
    {
316
        color = aColor;
317
    }
318 319

    FILL_T fill = aData ? NO_FILL : m_Fill;
320

321 322 323 324 325 326
    if( aColor >= 0 )
        fill = NO_FILL;

    GRSetDrawMode( aDC, aDrawMode );

    if( fill == FILLED_WITH_BG_BODYCOLOR )
327
        GRPoly( aPanel->GetClipBox(), aDC, m_PolyPoints.size(),
328 329 330 331
                &PolyPointsTraslated[0], 1, GetPenSize(),
                (m_Flags & IS_MOVED) ? color : ReturnLayerColor( LAYER_DEVICE_BACKGROUND ),
                ReturnLayerColor( LAYER_DEVICE_BACKGROUND ) );
    else if( fill == FILLED_SHAPE  )
332
        GRPoly( aPanel->GetClipBox(), aDC, m_PolyPoints.size(),
333 334
                &PolyPointsTraslated[0], 1, GetPenSize(), color, color );
    else
335
        GRPoly( aPanel->GetClipBox(), aDC, m_PolyPoints.size(),
336 337 338 339 340
                &PolyPointsTraslated[0], 0, GetPenSize(), color, color );

    /* Set to one (1) to draw bounding box around bezier curve to validate
     * bounding box calculation. */
#if 0
341
    EDA_RECT bBox = GetBoundingBox();
342
    bBox.Inflate( m_Thickness + 1, m_Thickness + 1 );
343
    GRRect( aPanel->GetClipBox(), aDC, bBox.GetOrigin().x, bBox.GetOrigin().y,
344 345 346 347 348 349 350
            bBox.GetEnd().x, bBox.GetEnd().y, 0, LIGHTMAGENTA );
#endif
}


bool LIB_BEZIER::HitTest( const wxPoint& aRefPos )
{
351
    int mindist = GetPenSize() / 2;
352

353 354 355
    // Have a minimal tolerance for hit test
    if ( mindist < MINIMUM_SELECTION_DISTANCE )
        mindist = MINIMUM_SELECTION_DISTANCE;
356

357 358 359
    return HitTest( aRefPos, mindist, DefaultTransform );
}

360

361 362 363 364
bool LIB_BEZIER::HitTest( wxPoint aPosRef, int aThreshold, const TRANSFORM& aTransform )
{
    wxPoint ref, start, end;

365 366 367
    if( aThreshold < 0 )
        aThreshold = GetPenSize() / 2;

368 369 370 371 372 373 374 375 376 377 378 379 380
    for( unsigned ii = 1; ii < GetCornerCount(); ii++ )
    {
        start = aTransform.TransformCoordinate( m_PolyPoints[ii - 1] );
        end   = aTransform.TransformCoordinate( m_PolyPoints[ii] );

        if ( TestSegmentHit( aPosRef, start, end, aThreshold ) )
            return true;
    }

    return false;
}


381
EDA_RECT LIB_BEZIER::GetBoundingBox() const
382
{
383
    EDA_RECT rect;
384 385 386 387 388 389 390 391 392 393
    int      xmin, xmax, ymin, ymax;

    if( !GetCornerCount() )
        return rect;

    xmin = xmax = m_PolyPoints[0].x;
    ymin = ymax = m_PolyPoints[0].y;

    for( unsigned ii = 1; ii < GetCornerCount(); ii++ )
    {
394 395 396 397
        xmin = std::min( xmin, m_PolyPoints[ii].x );
        xmax = std::max( xmax, m_PolyPoints[ii].x );
        ymin = std::min( ymin, m_PolyPoints[ii].y );
        ymax = std::max( ymax, m_PolyPoints[ii].y );
398 399
    }

400 401 402
    rect.SetOrigin( xmin, - ymin );
    rect.SetEnd( xmax, - ymax );
    rect.Inflate( m_Width / 2 );
403 404 405 406 407

    return rect;
}


408
void LIB_BEZIER::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList )
409 410
{
    wxString msg;
411
    EDA_RECT bBox = GetBoundingBox();
412

413
    LIB_ITEM::GetMsgPanelInfo( aList );
414

415
    msg = ReturnStringFromValue( g_UserUnit, m_Width, true );
416

417
    aList.push_back( MSG_PANEL_ITEM( _( "Line width" ), msg, BLUE ) );
418 419 420 421

    msg.Printf( wxT( "(%d, %d, %d, %d)" ), bBox.GetOrigin().x,
                bBox.GetOrigin().y, bBox.GetEnd().x, bBox.GetEnd().y );

422
    aList.push_back( MSG_PANEL_ITEM( _( "Bounding box" ), msg, BROWN ) );
423
}