1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <basegfx/matrix/b2dhommatrixtools.hxx>
#include <basegfx/polygon/b2dpolygonclipper.hxx>
#include <comphelper/scopeguard.hxx>
#include "surface.hxx"
namespace canvas
{
Surface::Surface( const PageManagerSharedPtr& rPageManager,
const IColorBufferSharedPtr& rColorBuffer,
const ::basegfx::B2IPoint& rPos,
const ::basegfx::B2ISize& rSize ) :
mpColorBuffer(rColorBuffer),
mpPageManager(rPageManager),
mpFragment(),
maSourceOffset(rPos),
maSize(rSize),
mbIsDirty(true)
{
}
Surface::~Surface()
{
if(mpFragment)
mpPageManager->free(mpFragment);
}
void Surface::setColorBufferDirty()
{
mbIsDirty=true;
}
basegfx::B2DRectangle Surface::getUVCoords() const
{
::basegfx::B2ISize aPageSize(mpPageManager->getPageSize());
::basegfx::B2IPoint aDestOffset;
if( mpFragment )
aDestOffset = mpFragment->getPos();
const double pw( aPageSize.getX() );
const double ph( aPageSize.getY() );
const double ox( aDestOffset.getX() );
const double oy( aDestOffset.getY() );
const double sx( maSize.getX() );
const double sy( maSize.getY() );
return ::basegfx::B2DRectangle( ox/pw,
oy/ph,
(ox+sx)/pw,
(oy+sy)/ph );
}
basegfx::B2DRectangle Surface::getUVCoords( const ::basegfx::B2IPoint& rPos,
const ::basegfx::B2ISize& rSize ) const
{
::basegfx::B2ISize aPageSize(mpPageManager->getPageSize());
const double pw( aPageSize.getX() );
const double ph( aPageSize.getY() );
const double ox( rPos.getX() );
const double oy( rPos.getY() );
const double sx( rSize.getX() );
const double sy( rSize.getY() );
return ::basegfx::B2DRectangle( ox/pw,
oy/ph,
(ox+sx)/pw,
(oy+sy)/ph );
}
bool Surface::draw( double fAlpha,
const ::basegfx::B2DPoint& rPos,
const ::basegfx::B2DHomMatrix& rTransform )
{
IRenderModuleSharedPtr pRenderModule(mpPageManager->getRenderModule());
RenderModuleGuard aGuard( pRenderModule );
prepareRendering();
// convert size to normalized device coordinates
const ::basegfx::B2DRectangle& rUV( getUVCoords() );
const double u1(rUV.getMinX());
const double v1(rUV.getMinY());
const double u2(rUV.getMaxX());
const double v2(rUV.getMaxY());
// concat transforms
// 1) offset of surface subarea
// 2) surface transform
// 3) translation to output position [rPos]
// 4) scale to normalized device coordinates
// 5) flip y-axis
// 6) translate to account for viewport transform
basegfx::B2DHomMatrix aTransform(basegfx::tools::createTranslateB2DHomMatrix(
maSourceOffset.getX(), maSourceOffset.getY()));
aTransform = aTransform * rTransform;
aTransform.translate(::basegfx::fround(rPos.getX()),
::basegfx::fround(rPos.getY()));
/*
######################################
######################################
######################################
Y
^+1
|
2 | 3
x------------x
| | |
| | |
------|-----O------|------>X
-1 | | | +1
| | |
x------------x
1 | 0
|
|-1
######################################
######################################
######################################
*/
const ::basegfx::B2DPoint& p0(aTransform * ::basegfx::B2DPoint(maSize.getX(),maSize.getY()));
const ::basegfx::B2DPoint& p1(aTransform * ::basegfx::B2DPoint(0.0,maSize.getY()));
const ::basegfx::B2DPoint& p2(aTransform * ::basegfx::B2DPoint(0.0,0.0));
const ::basegfx::B2DPoint& p3(aTransform * ::basegfx::B2DPoint(maSize.getX(),0.0));
canvas::Vertex vertex;
vertex.r = 1.0f;
vertex.g = 1.0f;
vertex.b = 1.0f;
vertex.a = static_cast<float>(fAlpha);
vertex.z = 0.0f;
{
pRenderModule->beginPrimitive( canvas::IRenderModule::PrimitiveType::Quad );
// issue an endPrimitive() when leaving the scope
const ::comphelper::ScopeGuard aScopeGuard(
[&pRenderModule]() mutable { pRenderModule->endPrimitive(); } );
vertex.u=static_cast<float>(u2); vertex.v=static_cast<float>(v2);
vertex.x=static_cast<float>(p0.getX()); vertex.y=static_cast<float>(p0.getY());
pRenderModule->pushVertex(vertex);
vertex.u=static_cast<float>(u1); vertex.v=static_cast<float>(v2);
vertex.x=static_cast<float>(p1.getX()); vertex.y=static_cast<float>(p1.getY());
pRenderModule->pushVertex(vertex);
vertex.u=static_cast<float>(u1); vertex.v=static_cast<float>(v1);
vertex.x=static_cast<float>(p2.getX()); vertex.y=static_cast<float>(p2.getY());
pRenderModule->pushVertex(vertex);
vertex.u=static_cast<float>(u2); vertex.v=static_cast<float>(v1);
vertex.x=static_cast<float>(p3.getX()); vertex.y=static_cast<float>(p3.getY());
pRenderModule->pushVertex(vertex);
}
return !(pRenderModule->isError());
}
bool Surface::drawRectangularArea(
double fAlpha,
const ::basegfx::B2DPoint& rPos,
const ::basegfx::B2DRectangle& rArea,
const ::basegfx::B2DHomMatrix& rTransform )
{
if( rArea.isEmpty() )
return true; // immediate exit for empty area
IRenderModuleSharedPtr pRenderModule(mpPageManager->getRenderModule());
RenderModuleGuard aGuard( pRenderModule );
prepareRendering();
// these positions are relative to the texture
::basegfx::B2IPoint aPos1(
::basegfx::fround(rArea.getMinimum().getX()),
::basegfx::fround(rArea.getMinimum().getY()));
::basegfx::B2IPoint aPos2(
::basegfx::fround(rArea.getMaximum().getX()),
::basegfx::fround(rArea.getMaximum().getY()) );
// clip the positions to the area this surface covers
aPos1.setX(::std::max(aPos1.getX(),maSourceOffset.getX()));
aPos1.setY(::std::max(aPos1.getY(),maSourceOffset.getY()));
aPos2.setX(::std::min(aPos2.getX(),maSourceOffset.getX()+maSize.getX()));
aPos2.setY(::std::min(aPos2.getY(),maSourceOffset.getY()+maSize.getY()));
// if the resulting area is empty, return immediately
::basegfx::B2IVector aSize(aPos2 - aPos1);
if(aSize.getX() <= 0 || aSize.getY() <= 0)
return true;
::basegfx::B2IPoint aDestOffset;
if( mpFragment )
aDestOffset = mpFragment->getPos();
// convert size to normalized device coordinates
const ::basegfx::B2DRectangle& rUV(
getUVCoords(aPos1 - maSourceOffset + aDestOffset,
aSize) );
const double u1(rUV.getMinX());
const double v1(rUV.getMinY());
const double u2(rUV.getMaxX());
const double v2(rUV.getMaxY());
// concatenate transforms
// 1) offset of surface subarea
// 2) surface transform
// 3) translation to output position [rPos]
basegfx::B2DHomMatrix aTransform(basegfx::tools::createTranslateB2DHomMatrix(aPos1.getX(), aPos1.getY()));
aTransform = aTransform * rTransform;
aTransform.translate(::basegfx::fround(rPos.getX()),
::basegfx::fround(rPos.getY()));
/*
######################################
######################################
######################################
Y
^+1
|
2 | 3
x------------x
| | |
| | |
------|-----O------|------>X
-1 | | | +1
| | |
x------------x
1 | 0
|
|-1
######################################
######################################
######################################
*/
const ::basegfx::B2DPoint& p0(aTransform * ::basegfx::B2DPoint(aSize.getX(),aSize.getY()));
const ::basegfx::B2DPoint& p1(aTransform * ::basegfx::B2DPoint(0.0, aSize.getY()));
const ::basegfx::B2DPoint& p2(aTransform * ::basegfx::B2DPoint(0.0, 0.0));
const ::basegfx::B2DPoint& p3(aTransform * ::basegfx::B2DPoint(aSize.getX(),0.0));
canvas::Vertex vertex;
vertex.r = 1.0f;
vertex.g = 1.0f;
vertex.b = 1.0f;
vertex.a = static_cast<float>(fAlpha);
vertex.z = 0.0f;
{
pRenderModule->beginPrimitive( canvas::IRenderModule::PrimitiveType::Quad );
// issue an endPrimitive() when leaving the scope
const ::comphelper::ScopeGuard aScopeGuard(
[&pRenderModule]() mutable { pRenderModule->endPrimitive(); } );
vertex.u=static_cast<float>(u2); vertex.v=static_cast<float>(v2);
vertex.x=static_cast<float>(p0.getX()); vertex.y=static_cast<float>(p0.getY());
pRenderModule->pushVertex(vertex);
vertex.u=static_cast<float>(u1); vertex.v=static_cast<float>(v2);
vertex.x=static_cast<float>(p1.getX()); vertex.y=static_cast<float>(p1.getY());
pRenderModule->pushVertex(vertex);
vertex.u=static_cast<float>(u1); vertex.v=static_cast<float>(v1);
vertex.x=static_cast<float>(p2.getX()); vertex.y=static_cast<float>(p2.getY());
pRenderModule->pushVertex(vertex);
vertex.u=static_cast<float>(u2); vertex.v=static_cast<float>(v1);
vertex.x=static_cast<float>(p3.getX()); vertex.y=static_cast<float>(p3.getY());
pRenderModule->pushVertex(vertex);
}
return !(pRenderModule->isError());
}
bool Surface::drawWithClip( double fAlpha,
const ::basegfx::B2DPoint& rPos,
const ::basegfx::B2DPolygon& rClipPoly,
const ::basegfx::B2DHomMatrix& rTransform )
{
IRenderModuleSharedPtr pRenderModule(mpPageManager->getRenderModule());
RenderModuleGuard aGuard( pRenderModule );
prepareRendering();
// untransformed surface rectangle, relative to the whole
// image (note: this surface might actually only be a tile of
// the whole image, with non-zero maSourceOffset)
const double x1(maSourceOffset.getX());
const double y1(maSourceOffset.getY());
const double w(maSize.getX());
const double h(maSize.getY());
const double x2(x1+w);
const double y2(y1+h);
const ::basegfx::B2DRectangle aSurfaceClipRect(x1,y1,x2,y2);
// concatenate transforms
// we use 'fround' here to avoid rounding errors. the vertices will
// be transformed by the overall transform and uv coordinates will
// be calculated from the result, and this is why we need to use
// integer coordinates here...
basegfx::B2DHomMatrix aTransform;
aTransform = aTransform * rTransform;
aTransform.translate(::basegfx::fround(rPos.getX()),
::basegfx::fround(rPos.getY()));
/*
######################################
######################################
######################################
Y
^+1
|
2 | 3
x------------x
| | |
| | |
------|-----O------|------>X
-1 | | | +1
| | |
x------------x
1 | 0
|
|-1
######################################
######################################
######################################
*/
// uv coordinates that map the surface rectangle
// to the destination rectangle.
const ::basegfx::B2DRectangle& rUV( getUVCoords() );
basegfx::B2DPolygon rTriangleList(basegfx::tools::clipTriangleListOnRange(rClipPoly,
aSurfaceClipRect));
// Push vertices to backend renderer
if(const sal_uInt32 nVertexCount = rTriangleList.count())
{
canvas::Vertex vertex;
vertex.r = 1.0f;
vertex.g = 1.0f;
vertex.b = 1.0f;
vertex.a = static_cast<float>(fAlpha);
vertex.z = 0.0f;
#if defined(TRIANGLE_LOG) && defined(DBG_UTIL)
OSL_TRACE( "Surface::draw(): numvertices %d numtriangles %d\n",
nVertexCount,
nVertexCount/3 );
#endif
pRenderModule->beginPrimitive( canvas::IRenderModule::PrimitiveType::Triangle );
// issue an endPrimitive() when leaving the scope
const ::comphelper::ScopeGuard aScopeGuard(
[&pRenderModule]() mutable { pRenderModule->endPrimitive(); } );
for(sal_uInt32 nIndex=0; nIndex<nVertexCount; ++nIndex)
{
const basegfx::B2DPoint &aPoint = rTriangleList.getB2DPoint(nIndex);
basegfx::B2DPoint aTransformedPoint(aTransform * aPoint);
const double tu(((aPoint.getX()-aSurfaceClipRect.getMinX())*rUV.getWidth()/w)+rUV.getMinX());
const double tv(((aPoint.getY()-aSurfaceClipRect.getMinY())*rUV.getHeight()/h)+rUV.getMinY());
vertex.u=static_cast<float>(tu);
vertex.v=static_cast<float>(tv);
vertex.x=static_cast<float>(aTransformedPoint.getX());
vertex.y=static_cast<float>(aTransformedPoint.getY());
pRenderModule->pushVertex(vertex);
}
}
return !(pRenderModule->isError());
}
void Surface::prepareRendering()
{
mpPageManager->validatePages();
// clients requested to draw from this surface, therefore one
// of the above implemented concrete rendering operations
// was triggered. we therefore need to ask the pagemanager
// to allocate some space for the fragment we're dedicated to.
if(!(mpFragment))
{
mpFragment = mpPageManager->allocateSpace(maSize);
if( mpFragment )
{
mpFragment->setColorBuffer(mpColorBuffer);
mpFragment->setSourceOffset(maSourceOffset);
}
}
if( mpFragment )
{
// now we need to 'select' the fragment, which will in turn
// pull information from the image on demand.
// in case this fragment is still not located on any of the
// available pages ['naked'], we force the page manager to
// do it now, no way to defer this any longer...
if(!(mpFragment->select(mbIsDirty)))
mpPageManager->nakedFragment(mpFragment);
}
mbIsDirty=false;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|