2006-11-13 10:28:19 +03:00
|
|
|
/*
|
Fix some cases of updating draw state while recording a BPicture
* Also implemented recording DrawString(string, length,
BPoint[] locations), which was previously not recorded at all.
* Also implemented playing back recently added drawing commands
in PicturePlayer.cpp. I don't quite understand what this is
actually used for, but it seemed it was forgotten. I just followed
the pattern already established in the code.
* The other important bit in this change is to update the pen
location when it is needed while recording a BPicture. Often
the BView will use PenLocation() in order to transmit drawing
commands to the app_server which use absolute coordinates only.
This isn't actually so nice, since it means the client has to
wait for the server to transmit the current pen location. If there
were dedicated link-commands for pen-relative drawing commands,
the client could just keep sending without waiting for the server.
In any case, the app_server needs to update the pen location in
the current DrawState and even the DrawingEngine even while
recording a picture, because some next command may need up-2-date
state information, such as the font state and the pen location.
* I have not yet tried to find /all/ instances where the DrawState
needs to be updated while recording. This change should repair
/all/ font state changes, all versions of drawing a string, and
all versions of StrokeLine().
Change-Id: Ia0f23e7b1cd058f70f76a5849acb2d02e0f0da09
Reviewed-on: https://review.haiku-os.org/c/817
Reviewed-by: Stephan Aßmus <superstippi@gmx.de>
2019-01-02 20:48:12 +03:00
|
|
|
* Copyright 2006-2018 Haiku, Inc. All rights reserved.
|
2007-10-16 00:13:55 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
2015-03-17 01:41:16 +03:00
|
|
|
* Stefano Ceccherini, burton666@libero.it
|
app_server: add new BView layers API
* Add new methods
BView::BeginLayer(uint8 opacity)
BView::EndLayer()
* All drawing between begin and end of a layer is redirected onto an
intermediate bitmap. When ending the layer, this bitmap is
composited onto the view with the opacity given when the layer was
started.
* Layers can be nested arbitrarily and will be blended onto each
other in order. There can also be any arbitrary interleaving of
layer begin/end and drawing operations.
* Internally, drawing commands are redirected into a BPicture between
BeginLayer and EndLayer (but client code need not know or care
about this). Client code can also start/end other BPictures while
inside a layer.
* Uses the PictureBoundingBoxPlayer to determine the size of the
layer bitmap before allocating and drawing into it, so it does not
allocate more memory than necessary and -- more importantly -- it
will not alpha-composite more pixels than necessary.
* Drawing mode is always set to B_OP_ALPHA, blend mode to
(B_PIXEL_ALPHA, B_ALPHA_COMPOSITE) while inside layers. This is
necessary for (a) correct compositing output and (b) for
redirection of drawing into the intermediate bitmap, which uses the
renderer_region offset (in B_OP_COPY, the Painter does not use the
AGG renderer methods, it directly accesses the pixel data. This
would access out-of-bounds without the offset, so B_OP_COPY cannot
be allowed.)
To ensure these modes aren't changed, BView::SetDrawingMode()
and BView::SetBlendingMode() are ignored while inside a layer.
* The main motivation behind this new API is WebKit, which internally
expects such a layers functionality to be present. A performant and
reusable implementation of this functionality can only be done
server-side in app_server.
2015-07-25 16:44:23 +03:00
|
|
|
* Julian Harnath, <julian.harnath@rwth-achen.de>
|
Fix some cases of updating draw state while recording a BPicture
* Also implemented recording DrawString(string, length,
BPoint[] locations), which was previously not recorded at all.
* Also implemented playing back recently added drawing commands
in PicturePlayer.cpp. I don't quite understand what this is
actually used for, but it seemed it was forgotten. I just followed
the pattern already established in the code.
* The other important bit in this change is to update the pen
location when it is needed while recording a BPicture. Often
the BView will use PenLocation() in order to transmit drawing
commands to the app_server which use absolute coordinates only.
This isn't actually so nice, since it means the client has to
wait for the server to transmit the current pen location. If there
were dedicated link-commands for pen-relative drawing commands,
the client could just keep sending without waiting for the server.
In any case, the app_server needs to update the pen location in
the current DrawState and even the DrawingEngine even while
recording a picture, because some next command may need up-2-date
state information, such as the font state and the pen location.
* I have not yet tried to find /all/ instances where the DrawState
needs to be updated while recording. This change should repair
/all/ font state changes, all versions of drawing a string, and
all versions of StrokeLine().
Change-Id: Ia0f23e7b1cd058f70f76a5849acb2d02e0f0da09
Reviewed-on: https://review.haiku-os.org/c/817
Reviewed-by: Stephan Aßmus <superstippi@gmx.de>
2019-01-02 20:48:12 +03:00
|
|
|
* Stephan Aßmus <superstippi@gmx.de>
|
2006-11-13 10:28:19 +03:00
|
|
|
*/
|
2007-10-16 00:13:55 +04:00
|
|
|
#ifndef _PICTURE_DATA_WRITER_H
|
|
|
|
#define _PICTURE_DATA_WRITER_H
|
|
|
|
|
2006-11-12 23:00:36 +03:00
|
|
|
|
2014-02-05 01:46:55 +04:00
|
|
|
#include <AffineTransform.h>
|
2006-11-12 23:00:36 +03:00
|
|
|
#include <InterfaceDefs.h>
|
|
|
|
#include <Font.h>
|
|
|
|
#include <OS.h>
|
|
|
|
|
|
|
|
#include <stack>
|
|
|
|
|
2015-03-17 01:41:16 +03:00
|
|
|
|
app_server: add new BView layers API
* Add new methods
BView::BeginLayer(uint8 opacity)
BView::EndLayer()
* All drawing between begin and end of a layer is redirected onto an
intermediate bitmap. When ending the layer, this bitmap is
composited onto the view with the opacity given when the layer was
started.
* Layers can be nested arbitrarily and will be blended onto each
other in order. There can also be any arbitrary interleaving of
layer begin/end and drawing operations.
* Internally, drawing commands are redirected into a BPicture between
BeginLayer and EndLayer (but client code need not know or care
about this). Client code can also start/end other BPictures while
inside a layer.
* Uses the PictureBoundingBoxPlayer to determine the size of the
layer bitmap before allocating and drawing into it, so it does not
allocate more memory than necessary and -- more importantly -- it
will not alpha-composite more pixels than necessary.
* Drawing mode is always set to B_OP_ALPHA, blend mode to
(B_PIXEL_ALPHA, B_ALPHA_COMPOSITE) while inside layers. This is
necessary for (a) correct compositing output and (b) for
redirection of drawing into the intermediate bitmap, which uses the
renderer_region offset (in B_OP_COPY, the Painter does not use the
AGG renderer methods, it directly accesses the pixel data. This
would access out-of-bounds without the offset, so B_OP_COPY cannot
be allowed.)
To ensure these modes aren't changed, BView::SetDrawingMode()
and BView::SetBlendingMode() are ignored while inside a layer.
* The main motivation behind this new API is WebKit, which internally
expects such a layers functionality to be present. A performant and
reusable implementation of this functionality can only be done
server-side in app_server.
2015-07-25 16:44:23 +03:00
|
|
|
class Layer;
|
2020-05-28 04:46:32 +03:00
|
|
|
class BGradient;
|
2006-11-12 23:00:36 +03:00
|
|
|
class BPositionIO;
|
2007-10-16 00:13:55 +04:00
|
|
|
class BRegion;
|
|
|
|
|
2006-11-12 23:00:36 +03:00
|
|
|
class PictureDataWriter {
|
|
|
|
public:
|
2015-03-17 01:41:16 +03:00
|
|
|
PictureDataWriter();
|
|
|
|
PictureDataWriter(BPositionIO* data);
|
|
|
|
virtual ~PictureDataWriter();
|
|
|
|
|
|
|
|
status_t SetTo(BPositionIO* data);
|
|
|
|
|
|
|
|
status_t WriteSetHighColor(const rgb_color& color);
|
|
|
|
status_t WriteSetLowColor(const rgb_color& color);
|
|
|
|
status_t WriteSetOrigin(const BPoint& point);
|
|
|
|
status_t WriteSetDrawingMode(const drawing_mode& mode);
|
|
|
|
status_t WriteSetPenLocation(const BPoint& point);
|
|
|
|
status_t WriteSetPenSize(const float& penSize);
|
|
|
|
status_t WriteSetLineMode(const cap_mode& cap,
|
|
|
|
const join_mode& join,
|
|
|
|
const float& miterLimit);
|
2020-06-10 09:40:14 +03:00
|
|
|
status_t WriteSetFillRule(int32 fillRule);
|
2015-03-17 01:41:16 +03:00
|
|
|
status_t WriteSetScale(const float& scale);
|
|
|
|
status_t WriteSetTransform(BAffineTransform transform);
|
2015-11-11 00:52:56 +03:00
|
|
|
status_t WriteTranslateBy(double x, double y);
|
|
|
|
status_t WriteScaleBy(double x, double y);
|
|
|
|
status_t WriteRotateBy(double angleRadians);
|
2015-03-17 01:41:16 +03:00
|
|
|
status_t WriteSetPattern(const ::pattern& pattern);
|
2015-09-05 21:59:06 +03:00
|
|
|
status_t WriteClipToPicture(int32 pictureToken,
|
|
|
|
const BPoint& origin, bool inverse);
|
2015-03-17 01:41:16 +03:00
|
|
|
status_t WriteSetClipping(const BRegion& region);
|
|
|
|
status_t WriteClearClipping();
|
|
|
|
|
|
|
|
status_t WritePushState();
|
|
|
|
status_t WritePopState();
|
|
|
|
|
|
|
|
status_t WriteSetFontFamily(const font_family family);
|
|
|
|
status_t WriteSetFontStyle(const font_style style);
|
|
|
|
status_t WriteSetFontSpacing(const int32& spacing);
|
|
|
|
status_t WriteSetFontSize(const float& size);
|
|
|
|
status_t WriteSetFontRotation(const float& rotation);
|
|
|
|
status_t WriteSetFontEncoding(const int32& encoding);
|
|
|
|
status_t WriteSetFontFlags(const int32& flags);
|
|
|
|
status_t WriteSetFontShear(const float& shear);
|
|
|
|
status_t WriteSetFontFace(const int32& face);
|
|
|
|
|
|
|
|
status_t WriteStrokeLine(const BPoint& start,
|
|
|
|
const BPoint& end);
|
|
|
|
status_t WriteInvertRect(const BRect& rect);
|
|
|
|
status_t WriteDrawRect(const BRect& rect,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawRoundRect(const BRect& rect,
|
|
|
|
const BPoint& radius, const bool& fill);
|
|
|
|
status_t WriteDrawEllipse(const BRect& rect,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawArc(const BPoint& center,
|
|
|
|
const BPoint& radius,
|
|
|
|
const float& startTheta,
|
|
|
|
const float& arcTheta, const bool& fill);
|
|
|
|
status_t WriteDrawPolygon(const int32& numPoints,
|
|
|
|
BPoint* points, const bool& isClosed,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawBezier(const BPoint points[4],
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawString(const BPoint& where,
|
|
|
|
const char* string, const int32& length,
|
|
|
|
const escapement_delta& delta);
|
Fix some cases of updating draw state while recording a BPicture
* Also implemented recording DrawString(string, length,
BPoint[] locations), which was previously not recorded at all.
* Also implemented playing back recently added drawing commands
in PicturePlayer.cpp. I don't quite understand what this is
actually used for, but it seemed it was forgotten. I just followed
the pattern already established in the code.
* The other important bit in this change is to update the pen
location when it is needed while recording a BPicture. Often
the BView will use PenLocation() in order to transmit drawing
commands to the app_server which use absolute coordinates only.
This isn't actually so nice, since it means the client has to
wait for the server to transmit the current pen location. If there
were dedicated link-commands for pen-relative drawing commands,
the client could just keep sending without waiting for the server.
In any case, the app_server needs to update the pen location in
the current DrawState and even the DrawingEngine even while
recording a picture, because some next command may need up-2-date
state information, such as the font state and the pen location.
* I have not yet tried to find /all/ instances where the DrawState
needs to be updated while recording. This change should repair
/all/ font state changes, all versions of drawing a string, and
all versions of StrokeLine().
Change-Id: Ia0f23e7b1cd058f70f76a5849acb2d02e0f0da09
Reviewed-on: https://review.haiku-os.org/c/817
Reviewed-by: Stephan Aßmus <superstippi@gmx.de>
2019-01-02 20:48:12 +03:00
|
|
|
status_t WriteDrawString(const char* string,
|
|
|
|
int32 length, const BPoint* locations,
|
|
|
|
int32 locationCount);
|
2015-03-17 01:41:16 +03:00
|
|
|
status_t WriteDrawShape(const int32& opCount,
|
|
|
|
const void* opList, const int32& ptCount,
|
|
|
|
const void* ptList, const bool& fill);
|
2020-05-28 04:46:32 +03:00
|
|
|
status_t WriteDrawRectGradient(const BRect& rect, const BGradient& gradient,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawRoundRectGradient(const BRect& rect,
|
|
|
|
const BPoint& radius, const BGradient& gradient, const bool& fill);
|
|
|
|
status_t WriteDrawBezierGradient(const BPoint points[4], const BGradient& gradient,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawArcGradient(const BPoint& center,
|
|
|
|
const BPoint& radius,
|
|
|
|
const float& startTheta,
|
|
|
|
const float& arcTheta, const BGradient& gradient, const bool& fill);
|
|
|
|
status_t WriteDrawEllipseGradient(const BRect& rect, const BGradient& gradient,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawPolygonGradient(const int32& numPoints,
|
|
|
|
BPoint* points, const bool& isClosed, const BGradient& gradient,
|
|
|
|
const bool& fill);
|
|
|
|
status_t WriteDrawShapeGradient(const int32& opCount,
|
|
|
|
const void* opList, const int32& ptCount,
|
|
|
|
const void* ptList, const BGradient& gradient, const bool& fill);
|
2015-03-17 01:41:16 +03:00
|
|
|
status_t WriteDrawBitmap(const BRect& srcRect,
|
|
|
|
const BRect& dstRect, const int32& width,
|
|
|
|
const int32& height,
|
|
|
|
const int32& bytesPerRow,
|
|
|
|
const int32& colorSpace,
|
|
|
|
const int32& flags,
|
|
|
|
const void* data, const int32& length);
|
|
|
|
|
|
|
|
status_t WriteDrawPicture(const BPoint& where,
|
|
|
|
const int32& token);
|
2007-08-13 11:20:43 +04:00
|
|
|
|
app_server: add new BView layers API
* Add new methods
BView::BeginLayer(uint8 opacity)
BView::EndLayer()
* All drawing between begin and end of a layer is redirected onto an
intermediate bitmap. When ending the layer, this bitmap is
composited onto the view with the opacity given when the layer was
started.
* Layers can be nested arbitrarily and will be blended onto each
other in order. There can also be any arbitrary interleaving of
layer begin/end and drawing operations.
* Internally, drawing commands are redirected into a BPicture between
BeginLayer and EndLayer (but client code need not know or care
about this). Client code can also start/end other BPictures while
inside a layer.
* Uses the PictureBoundingBoxPlayer to determine the size of the
layer bitmap before allocating and drawing into it, so it does not
allocate more memory than necessary and -- more importantly -- it
will not alpha-composite more pixels than necessary.
* Drawing mode is always set to B_OP_ALPHA, blend mode to
(B_PIXEL_ALPHA, B_ALPHA_COMPOSITE) while inside layers. This is
necessary for (a) correct compositing output and (b) for
redirection of drawing into the intermediate bitmap, which uses the
renderer_region offset (in B_OP_COPY, the Painter does not use the
AGG renderer methods, it directly accesses the pixel data. This
would access out-of-bounds without the offset, so B_OP_COPY cannot
be allowed.)
To ensure these modes aren't changed, BView::SetDrawingMode()
and BView::SetBlendingMode() are ignored while inside a layer.
* The main motivation behind this new API is WebKit, which internally
expects such a layers functionality to be present. A performant and
reusable implementation of this functionality can only be done
server-side in app_server.
2015-07-25 16:44:23 +03:00
|
|
|
status_t WriteBlendLayer(Layer* layer);
|
2015-11-09 21:57:13 +03:00
|
|
|
status_t WriteClipToRect(const BRect& rect,
|
|
|
|
bool inverse);
|
|
|
|
status_t WriteClipToShape(int32 opCount,
|
|
|
|
const void* opList, int32 ptCount,
|
|
|
|
const void* ptList, bool inverse);
|
app_server: add new BView layers API
* Add new methods
BView::BeginLayer(uint8 opacity)
BView::EndLayer()
* All drawing between begin and end of a layer is redirected onto an
intermediate bitmap. When ending the layer, this bitmap is
composited onto the view with the opacity given when the layer was
started.
* Layers can be nested arbitrarily and will be blended onto each
other in order. There can also be any arbitrary interleaving of
layer begin/end and drawing operations.
* Internally, drawing commands are redirected into a BPicture between
BeginLayer and EndLayer (but client code need not know or care
about this). Client code can also start/end other BPictures while
inside a layer.
* Uses the PictureBoundingBoxPlayer to determine the size of the
layer bitmap before allocating and drawing into it, so it does not
allocate more memory than necessary and -- more importantly -- it
will not alpha-composite more pixels than necessary.
* Drawing mode is always set to B_OP_ALPHA, blend mode to
(B_PIXEL_ALPHA, B_ALPHA_COMPOSITE) while inside layers. This is
necessary for (a) correct compositing output and (b) for
redirection of drawing into the intermediate bitmap, which uses the
renderer_region offset (in B_OP_COPY, the Painter does not use the
AGG renderer methods, it directly accesses the pixel data. This
would access out-of-bounds without the offset, so B_OP_COPY cannot
be allowed.)
To ensure these modes aren't changed, BView::SetDrawingMode()
and BView::SetBlendingMode() are ignored while inside a layer.
* The main motivation behind this new API is WebKit, which internally
expects such a layers functionality to be present. A performant and
reusable implementation of this functionality can only be done
server-side in app_server.
2015-07-25 16:44:23 +03:00
|
|
|
|
2006-11-28 17:52:51 +03:00
|
|
|
protected:
|
2007-05-12 12:46:56 +04:00
|
|
|
// throw a status_t on error
|
2015-03-17 01:41:16 +03:00
|
|
|
void BeginOp(const int16& op);
|
|
|
|
void EndOp();
|
|
|
|
void WriteData(const void* data, size_t size);
|
|
|
|
template <typename T> void Write(const T& data)
|
|
|
|
{ WriteData(&data, sizeof(data)); }
|
|
|
|
|
2006-11-28 17:52:51 +03:00
|
|
|
private:
|
2015-03-17 01:41:16 +03:00
|
|
|
BPositionIO* fData;
|
|
|
|
std::stack<off_t> fStack;
|
2006-11-12 23:00:36 +03:00
|
|
|
};
|
|
|
|
|
2015-03-17 01:41:16 +03:00
|
|
|
|
2007-10-16 00:13:55 +04:00
|
|
|
#endif // _PICTURE_DATA_WRITER_H
|