basicfill.cpp

来自「这是VCF框架的代码」· C++ 代码 · 共 361 行

CPP
361
字号
//BasicFill.cpp/*Copyright 2000-2004 The VCF Project.Please see License.txt in the top level directorywhere you installed the VCF.*/#include "vcf/GraphicsKit/GraphicsKit.h"#include "vcf/GraphicsKit/AggCommon.h"#include "thirdparty/common/agg/include/agg_scanline_p.h"using namespace VCF;BasicFill::BasicFill():	opacity_(1.0),	context_(NULL),	antiAlias_(true){}BasicFill::~BasicFill(){}void BasicFill::render( Path* path ){	if ( (NULL != context_) && (NULL != path) ){		context_->setColor( &color_ );		//JC - we don't need to grab the current transform since it's 		//applied to the points any how		//Matrix2D* currentXFrm = context_->getCurrentTransform();		std::vector<PathPoint> points;		path->getPoints( points, NULL );		std::vector<Point> pts;		/**		JC:		Thanks to Marcello, we have resolved the VC7/7.1 stack corruption		bug! Apparently, due to some trickery on my part which involved		const PathPoint& pt = points->nextElement();		This was causing some weird problems due to referencing a temporary		copy of the PathPoint. Marcello found this and discovered that if we replaced		that with the a simply assignment to the variables below, we have no more		problems! Many, many, many thanks to Marcello for tracking this down and		fixing it!!!		*/		PathPoint pt, p2, c1, c2;				std::vector<PathPoint>::iterator pathIt = points.begin();		agg::rendering_buffer* renderingBuffer = context_->getRenderingBuffer();		if ( (NULL == renderingBuffer) || (!antiAlias_) ){			while ( pathIt != points.end() ) {				pt = *pathIt;				switch ( pt.type_ ){					case PathPoint::ptMoveTo: {						if ( !pts.empty() ) {							context_->polyline( pts );						}						pts.clear();						pts.push_back( pt.point_ );					}					break;					case PathPoint::ptLineTo: {						//context_->lineTo( pt.point_.x_, pt.point_.y_ );						pts.push_back( pt.point_ );					}					break;					case PathPoint::ptQuadTo: {						pathIt ++;											c1 = *pathIt;												pathIt ++;						c2 = *pathIt;						pathIt++;						p2 = *pathIt;						context_->curve( pt.point_.x_, pt.point_.y_,											c1.point_.x_, c1.point_.y_,											c2.point_.x_, c2.point_.y_,											p2.point_.x_, p2.point_.y_ );					}					break;					case PathPoint::ptCubicTo: {					}					break;					case PathPoint::ptClose: {						pts.push_back( pt.point_ );						context_->polyline( pts );						pts.clear();					}					break;				}								pathIt ++;			}			if ( !pts.empty() ) {				context_->polyline( pts );				pts.clear();			}			context_->fillPath();		}		else {			typedef agg::renderer_base<pixfmt> ren_base;			typedef agg::renderer_scanline_aa_solid<ren_base> renderer_solid;									pixfmt pixf(*renderingBuffer);			ren_base renb(pixf);			renderer_solid renderer( renb );			agg::path_storage fillPath;			agg::rasterizer_scanline_aa<> rasterizer;			agg::scanline_p8 scanline;			//agg::rasterizer_scanline_aa<agg::scanline_u8, agg::gamma8> rasterizer;			while ( pathIt != points.end() ) {				pt = *pathIt;				switch ( pt.type_ ){					case PathPoint::ptMoveTo: {						fillPath.move_to( pt.point_.x_, pt.point_.y_ );					}					break;					case PathPoint::ptLineTo: {						fillPath.line_to( pt.point_.x_, pt.point_.y_ );					}					break;					case PathPoint::ptQuadTo: {						fillPath.move_to( pt.point_.x_, pt.point_.y_ );						pathIt++;						c1 = *pathIt;						pathIt++;						c2 = *pathIt;						pathIt++;						p2 = *pathIt;												fillPath.curve4( c1.point_.x_, c1.point_.y_,										c2.point_.x_, c2.point_.y_,										p2.point_.x_, p2.point_.y_ );					}					break;					case PathPoint::ptCubicTo: {					}					break;					case PathPoint::ptClose: {						fillPath.close_polygon();					}					break;				}								pathIt ++;			}			Matrix2D& currentXFrm = *context_->getCurrentTransform();			agg::trans_affine mat( currentXFrm[Matrix2D::mei00],									currentXFrm[Matrix2D::mei01],									currentXFrm[Matrix2D::mei10],									currentXFrm[Matrix2D::mei11],									currentXFrm[Matrix2D::mei20],									currentXFrm[Matrix2D::mei21] );			agg::conv_curve<agg::path_storage> smooth(fillPath);						agg::conv_transform< agg::conv_curve< agg::path_storage > > xfrmedPath(smooth,mat);			//agg::conv_stroke<agg::conv_curve<agg::path_storage> >  stroke(smooth);			rasterizer.add_path( xfrmedPath );			renderer.color(agg::rgba(color_.getRed(),color_.getGreen(),color_.getBlue(),opacity_));			//rasterizer.render(scanline,renderer);			agg::render_scanlines(rasterizer, scanline, renderer);		}	}}/***CVS Log info*$Log$*Revision 1.4  2006/04/07 02:35:41  ddiego*initial checkin of merge from 0.6.9 dev branch.**Revision 1.3.4.1  2005/10/17 01:36:34  ddiego*some more under the hood image stuff. updated agg.**Revision 1.3  2004/12/01 04:31:42  ddiego*merged over devmain-0-6-6 code. Marcello did a kick ass job*of fixing a nasty bug (1074768VCF application slows down modal dialogs.)*that he found. Many, many thanks for this Marcello.**Revision 1.2.2.2  2004/09/06 03:33:21  ddiego*updated the graphic context code to support image transforms.**Revision 1.2.2.1  2004/08/31 04:12:12  ddiego*cleaned up the GraphicsContext class - made more pervasive use*of transformation matrix. Added common print dialog class. Fleshed out*printing example more.**Revision 1.2  2004/08/07 02:49:16  ddiego*merged in the devmain-0-6-5 branch to stable**Revision 1.1.2.3  2004/07/09 03:39:30  ddiego*merged in changes from the OSX branch for new theming API. Added*support for controlling the use of locale translated strings in components.**Revision 1.1.2.2.2.1  2004/07/06 03:27:13  ddiego*more osx updates that add proper support*for lightweight controls, some fixes to text layout, and some window painting issues. Also a fix*so that controls and windows paint either their default theme background or their background*color.**Revision 1.1.2.2  2004/04/29 04:10:26  marcelloptr*reformatting of source files: macros and csvlog and copyright sections**Revision 1.1.2.1  2004/04/28 03:40:30  ddiego*migration towards new directory structure**Revision 1.12.2.1  2004/04/06 17:49:15  marcelloptr*killed the last resisting 'const PathPoint&' still buzzing around**Revision 1.12  2004/04/06 00:01:46  ddiego*Marcellos fix for the VC7/7.1 stack corruption bug*caused by my code. Many, many, many thanks to Marcello for*spending the time to track this down and fix it.**Revision 1.11  2003/12/18 05:16:01  ddiego*merge from devmain-0-6-2 branch into the stable branch**Revision 1.10.2.1  2003/10/02 04:50:52  ddiego*changes to ensure the code compiles on linux. made a bunch of updates to*the makefiles**Revision 1.10  2003/08/09 02:56:45  ddiego*merge over from the devmain-0-6-1 branch*Changes*Features:*-Added additional implementation to better support the MVC architecture in*the VCF**-Added a Document/View architecure that is similar to MFC's or NextSteps's*Doc/View architectures**-Integrated the Anti Grain Graphics library into the GraphicsKit. There is*now basic support for it in terms of drawing vector shapes*(fills and strokes). Image support will come in the next release**-Added several documented graphics tutorials**Bugfixes:**[ 775744 ] wrong buttons on a dialog*[ 585239 ] Painting weirdness in a modal dialog ?*[ 585238 ] Modal dialog which makes a modal Dialog*[ 509004 ] Opening a modal Dialog causes flicker*[ 524878 ] onDropped not called for MLTcontrol**Plus an issue with some focus and getting the right popup window to activate*has also been fixed**Revision 1.9.2.6  2003/08/08 03:21:36  ddiego*got rid of some miscellaneous graphics files**Revision 1.9.2.5  2003/07/28 23:49:58  ddiego*check in of the weekend's work from July 25*learned how to use agg image renedering, now have to integrate it into the*GraphicsKit - alos enabled setting a viewable bounds that sets the agg cliprect*as well, useful for later optimizations**Revision 1.9.2.4  2003/07/24 04:10:44  ddiego*added fixes for the following tasks:*Task #82279 ApplicationKit: add static methods to singleton objects*Task #82277 FoundationKit: add static methods to singleton objects*this required a bunch of changes in terms of getting rid of older style code**Revision 1.9.2.3  2003/07/21 03:08:30  ddiego*added bezier curve editing to Sketchit, fixed a bug in not saving*bitmaps, added PackageInfo to the ApplicationKit**Revision 1.9.2.2  2003/07/16 04:59:07  ddiego*added some changes to the fil and stroke classes to allow changing whether*they use anti-aliasing or not. Also implemented Matrix2D::invert(),*plus properly implemented clone() on the DefaultMenuItem class.**Revision 1.9.2.1  2003/07/05 04:04:45  ddiego*added more AGG support*  added a common AGG header to use when accessing the AGG API directly*  see the graphics/AggCommon.h header for this*  Made some minor changes to Path to work a bit simpler*  Implemented Polygon completely,*  Implemented BasicFill and BasicStroke - using AGG**Revision 1.9  2003/05/17 20:37:19  ddiego*this is the checkin for the 0.6.1 release - represents the merge over from*the devmain-0-6-0 branch plus a few minor bug fixes**Revision 1.8.10.1  2003/03/23 03:23:55  marcelloptr*3 empty lines at the end of the files**Revision 1.8  2002/09/12 03:26:05  ddiego*merged over the changes from the devmain-0-5-5b branch**Revision 1.7.6.1  2002/08/06 02:57:36  ddiego*added base X11 files for GraphicsKit and made sure that the GraphicsKit compiles*under linux (GCC). There is now a new dir under build/xmake called GraphicsKit*where the xmake build script lives. This checkin also includes the base X11*include (as part of GraphicsKitPrivate.h), as well as linking to the X11 libs**Revision 1.7  2002/05/09 03:10:44  ddiego*merged over code from development branch devmain-0-5-1a into the main CVS trunk**Revision 1.6.4.1  2002/04/03 19:37:17  zzack*include style changed**Revision 1.6  2002/01/24 01:46:49  ddiego*added a cvs "log" comment to the top of all files in vcf/src and vcf/include*to facilitate change tracking**/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?