kicad/common/font/glyph.cpp

137 lines
3.5 KiB
C++
Raw Normal View History

2021-12-31 14:07:24 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2021 Ola Rinta-Koski <gitlab@rinta-koski.net>
* Copyright (C) 2021-2022 KiCad Developers, see AUTHORS.txt for contributors.
2021-12-31 14:07:24 +00:00
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <vector>
#include <font/glyph.h>
#include <trigo.h>
2021-12-31 14:07:24 +00:00
using namespace KIFONT;
STROKE_GLYPH::STROKE_GLYPH( const STROKE_GLYPH& aGlyph )
{
for( const std::vector<VECTOR2D>& pointList : aGlyph )
push_back( pointList );
m_boundingBox = aGlyph.m_boundingBox;
2021-12-31 14:07:24 +00:00
}
void STROKE_GLYPH::AddPoint( const VECTOR2D& aPoint )
{
if( !m_penIsDown )
{
emplace_back();
back().reserve( 16 ); // This handles all but 359 strokes (out of over 328,000)
2021-12-31 14:07:24 +00:00
m_penIsDown = true;
}
back().push_back( aPoint );
2021-12-31 14:07:24 +00:00
}
void STROKE_GLYPH::RaisePen()
{
#if 0
2021-12-31 14:07:24 +00:00
if( m_penIsDown )
back().shrink_to_fit();
#endif
2021-12-31 14:07:24 +00:00
m_penIsDown = false;
}
void STROKE_GLYPH::Finalize()
{
// Shrinking the strokes saves a bit less than 512K of memory. It's not worth it for the
// performance hit of doing more than 328,000 reallocs.
#if 0
if( !empty() && !back().empty() )
back().shrink_to_fit();
#endif
2021-12-31 14:07:24 +00:00
}
std::unique_ptr<GLYPH> STROKE_GLYPH::Transform( const VECTOR2D& aGlyphSize, const VECTOR2I& aOffset,
double aTilt, const EDA_ANGLE& aAngle, bool aMirror,
const VECTOR2I& aOrigin )
2021-12-31 14:07:24 +00:00
{
std::unique_ptr<STROKE_GLYPH> glyph = std::make_unique<STROKE_GLYPH>( *this );
2021-12-31 14:07:24 +00:00
VECTOR2D end = glyph->m_boundingBox.GetEnd();
2021-12-31 14:07:24 +00:00
end.x *= aGlyphSize.x;
end.y *= aGlyphSize.y;
2021-12-31 14:07:24 +00:00
if( aTilt )
end.x -= end.y * aTilt;
2021-12-31 14:07:24 +00:00
glyph->m_boundingBox.SetEnd( end );
glyph->m_boundingBox.Offset( aOffset );
2021-12-31 14:07:24 +00:00
for( std::vector<VECTOR2D>& pointList : *glyph.get() )
2021-12-31 14:07:24 +00:00
{
for( VECTOR2D& point : pointList )
{
point *= aGlyphSize;
2021-12-31 14:07:24 +00:00
if( aTilt )
point.x -= point.y * aTilt;
point += aOffset;
if( aMirror )
point.x = aOrigin.x - ( point.x - aOrigin.x );
if( !aAngle.IsZero() )
RotatePoint( point, aOrigin, aAngle );
2021-12-31 14:07:24 +00:00
}
}
return glyph;
}
2022-01-01 01:21:03 +00:00
BOX2D OUTLINE_GLYPH::BoundingBox()
{
BOX2I bbox = BBox();
return BOX2D( bbox.GetOrigin(), bbox.GetSize() );
}
2022-01-07 17:42:43 +00:00
void OUTLINE_GLYPH::Triangulate( TRIANGULATE_CALLBACK aCallback ) const
{
const_cast<OUTLINE_GLYPH*>( this )->CacheTriangulation();
for( unsigned int i = 0; i < TriangulatedPolyCount(); i++ )
{
const SHAPE_POLY_SET::TRIANGULATED_POLYGON* polygon = TriangulatedPolygon( i );
for ( size_t j = 0; j < polygon->GetTriangleCount(); j++ )
{
VECTOR2I a, b, c;
polygon->GetTriangle( j, a, b, c );
aCallback( i, a, b, c );
}
}
}