ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
managed_surface.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef GRAPHICS_MANAGED_SURFACE_H
23 #define GRAPHICS_MANAGED_SURFACE_H
24 
25 #include "graphics/pixelformat.h"
26 #include "graphics/surface.h"
27 #include "graphics/transform_struct.h"
28 #include "common/types.h"
29 #include "graphics/blit.h"
30 
31 #define MS_RGB(R,G,B) (uint32)(((R) << 24) | ((G) << 16) | ((B) << 8) | 0xff)
32 #define MS_ARGB(A,R,G,B) (uint32)(((R) << 24) | ((G) << 16) | ((B) << 8) | (A))
33 
34 namespace Graphics {
35 
36 class Palette;
37 
52 private:
56  Surface _innerSurface;
57 
62  DisposeAfterUse::Flag _disposeAfterUse;
63 
68  ManagedSurface *_owner;
69 
74  Common::Point _offsetFromOwner;
75 
80  uint _transparentColor;
81  bool _transparentColorSet;
82 
86  Palette *_palette;
87 protected:
91  void simpleBlitFromInner(const Surface &src, const Common::Rect &srcRect,
92  const Common::Point &destPos, const Palette *srcPalette,
93  bool transparentColorSet, uint transparentColor);
94 
98  void maskBlitFromInner(const Surface &src, const Surface &mask,
99  const Common::Rect &srcRect, const Common::Point &destPos,
100  const Palette *srcPalette);
101 
105  void blitFromInner(const Surface &src, const Common::Rect &srcRect,
106  const Common::Rect &destRect, const Palette *srcPalette);
107 
111  void transBlitFromInner(const Surface &src, const Common::Rect &srcRect,
112  const Common::Rect &destRect, uint32 transColor, bool flipped, uint32 srcAlpha,
113  const Palette *srcPalette, const Palette *dstPalette);
114 public:
118  bool clip(Common::Rect& srcBounds, Common::Rect& destBounds) const {
119  return _innerSurface.clip(srcBounds, destBounds);
120  }
121 
122 public:
123  int16 &w;
124  int16 &h;
125  int32 &pitch;
127 public:
131  ManagedSurface();
132 
140  WARN_DEPRECATED("Use copyFrom(), a move constructor or supply bounds")
141  ManagedSurface(const ManagedSurface &surf);
142 
147 
151  ManagedSurface(int width, int height);
152 
156  ManagedSurface(int width, int height, const Graphics::PixelFormat &pixelFormat);
157 
161  ManagedSurface(ManagedSurface &surf, const Common::Rect &bounds);
162 
166  virtual ~ManagedSurface();
167 
175  operator const Surface &() const { return _innerSurface; }
176 
184  const Surface &rawSurface() const { return _innerSurface; }
185  Surface *surfacePtr() { return &_innerSurface; }
186 
192  WARN_DEPRECATED("Use copyFrom() or a move constructor instead")
194 
199 
203  bool empty() const { return w == 0 || h == 0 || _innerSurface.getPixels() == nullptr; }
204 
208  DisposeAfterUse::Flag disposeAfterUse() const { return _disposeAfterUse; }
209 
218  inline uint32 getPixel(int x, int y) const {
219  return _innerSurface.getPixel(x, y);
220  }
221 
229  inline void setPixel(int x, int y, uint32 pixel) {
230  return _innerSurface.setPixel(x, y, pixel);
231  }
232 
241  inline const void *getBasePtr(int x, int y) const {
242  return _innerSurface.getBasePtr(x, y);
243  }
244 
253  inline void *getBasePtr(int x, int y) {
254  return _innerSurface.getBasePtr(x, y);
255  }
256 
260  inline void *getPixels() { return _innerSurface.getPixels(); }
262  inline const void *getPixels() const { return _innerSurface.getPixels(); }
263 
267  virtual void setPixels(void *newPixels);
268 
272  virtual void create(int16 width, int16 height);
273 
277  virtual void create(int16 width, int16 height, const PixelFormat &pixelFormat);
278 
288  virtual void create(ManagedSurface &surf, const Common::Rect &bounds);
289 
295  virtual void free();
296 
300  virtual void clearDirtyRects() {}
301 
306  virtual void addDirtyRect(const Common::Rect &r);
307 
312  const Common::Point getOffsetFromOwner() const { return _offsetFromOwner; }
313 
317  const Common::Rect getBounds() const {
318  return Common::Rect(0, 0, this->w, this->h);
319  }
320 
324  void simpleBlitFrom(const Surface &src, const Palette *srcPalette = nullptr);
325 
329  void simpleBlitFrom(const Surface &src, const Common::Point &destPos, const Palette *srcPalette = nullptr);
330 
334  void simpleBlitFrom(const Surface &src, const Common::Rect &srcRect,
335  const Common::Point &destPos, const Palette *srcPalette = nullptr);
336 
340  void simpleBlitFrom(const ManagedSurface &src);
341 
345  void simpleBlitFrom(const ManagedSurface &src, const Common::Point &destPos);
346 
350  void simpleBlitFrom(const ManagedSurface &src, const Common::Rect &srcRect,
351  const Common::Point &destPos);
352 
356  void maskBlitFrom(const Surface &src, const Surface &mask, const Palette *srcPalette = nullptr);
357 
361  void maskBlitFrom(const Surface &src, const Surface &mask, const Common::Point &destPos, const Palette *srcPalette = nullptr);
362 
366  void maskBlitFrom(const Surface &src, const Surface &mask, const Common::Rect &srcRect,
367  const Common::Point &destPos, const Palette *srcPalette = nullptr);
368 
372  void maskBlitFrom(const ManagedSurface &src, const ManagedSurface &mask);
373 
377  void maskBlitFrom(const ManagedSurface &src, const ManagedSurface &mask, const Common::Point &destPos);
378 
382  void maskBlitFrom(const ManagedSurface &src, const ManagedSurface &mask,
383  const Common::Rect &srcRect, const Common::Point &destPos);
384 
388  void blitFrom(const Surface &src, const Palette *srcPalette = nullptr);
389 
393  void blitFrom(const Surface &src, const Common::Point &destPos, const Palette *srcPalette = nullptr);
394 
398  void blitFrom(const Surface &src, const Common::Rect &srcRect,
399  const Common::Point &destPos, const Palette *srcPalette = nullptr);
400 
404  void blitFrom(const Surface &src, const Common::Rect &srcRect,
405  const Common::Rect &destRect, const Palette *srcPalette = nullptr);
406 
410  void blitFrom(const ManagedSurface &src, const Common::Rect &srcRect,
411  const Common::Rect &destRect);
412 
416  void blitFrom(const ManagedSurface &src);
417 
421  void blitFrom(const ManagedSurface &src, const Common::Point &destPos);
422 
426  void blitFrom(const ManagedSurface &src, const Common::Rect &srcRect,
427  const Common::Point &destPos);
428 
438  void transBlitFrom(const Surface &src, uint32 transColor = 0, bool flipped = false,
439  uint32 srcAlpha = 0xff, const Palette *srcPalette = nullptr);
440 
451  void transBlitFrom(const Surface &src, const Common::Point &destPos,
452  uint32 transColor = 0, bool flipped = false, uint32 srcAlpha = 0xff, const Palette *srcPalette = nullptr);
453 
465  void transBlitFrom(const Surface &src, const Common::Rect &srcRect, const Common::Point &destPos,
466  uint32 transColor = 0, bool flipped = false, uint32 srcAlpha = 0xff, const Palette *srcPalette = nullptr);
467 
477  void transBlitFrom(const Surface &src, const Common::Rect &srcRect, const Common::Rect &destRect, const Palette *srcPalette);
478 
491  void transBlitFrom(const Surface &src, const Common::Rect &srcRect, const Common::Rect &destRect,
492  uint32 transColor = 0, bool flipped = false, uint32 srcAlpha = 0xff,
493  const Palette *srcPalette = nullptr);
494 
503  void transBlitFrom(const ManagedSurface &src, uint32 transColor = 0, bool flipped = false,
504  uint32 srcAlpha = 0xff);
505 
515  void transBlitFrom(const ManagedSurface &src, const Common::Point &destPos,
516  uint32 transColor = 0, bool flipped = false, uint32 srcAlpha = 0xff);
517 
528  void transBlitFrom(const ManagedSurface &src, const Common::Rect &srcRect, const Common::Point &destPos,
529  uint32 transColor = 0, bool flipped = false, uint32 srcAlpha = 0xff);
530 
542  void transBlitFrom(const ManagedSurface &src, const Common::Rect &srcRect, const Common::Rect &destRect,
543  uint32 transColor = 0, bool flipped = false, uint32 srcAlpha = 0xff);
544 
548  void rawBlitFrom(const ManagedSurface &src, const Common::Rect &srcRect,
549  const Common::Point &destPos) {
550  blitFromInner(src._innerSurface, srcRect, Common::Rect(destPos.x, destPos.y, destPos.x + srcRect.width(),
551  destPos.y + srcRect.height()), src._palette);
552  }
553 
559  static inline bool isBlendBlitPixelFormatSupported(const PixelFormat &src, const PixelFormat &dst) {
561  }
562 
578  const int posX = 0, const int posY = 0,
579  const int flipping = FLIP_NONE,
580  const Common::Rect *srcRect = nullptr,
581  const uint colorMod = MS_ARGB(255, 255, 255, 255),
582  const int width = -1, const int height = -1,
583  const TSpriteBlendMode blend = BLEND_NORMAL,
584  const AlphaType alphaType = ALPHA_FULL);
586  const int posX = 0, const int posY = 0,
587  const int flipping = FLIP_NONE,
588  const Common::Rect *srcRect = nullptr,
589  const uint colorMod = MS_ARGB(255, 255, 255, 255),
590  const int width = -1, const int height = -1,
591  const TSpriteBlendMode blend = BLEND_NORMAL,
592  const AlphaType alphaType = ALPHA_FULL);
593 
597  void clear(uint32 color = 0);
598 
602  void markAllDirty();
603 
609  void copyRectToSurface(const void *buffer, int srcPitch, int destX, int destY, int width, int height) {
610  _innerSurface.copyRectToSurface(buffer, srcPitch, destX, destY, width, height);
611  addDirtyRect(Common::Rect(destX, destY, destX + width, destY + height));
612  }
613 
619  void copyRectToSurface(const Graphics::Surface &srcSurface, int destX, int destY, const Common::Rect subRect) {
620  _innerSurface.copyRectToSurface(srcSurface, destX, destY, subRect);
621  addDirtyRect(Common::Rect(destX, destY, destX + subRect.width(), destY + subRect.height()));
622  }
623 
629  void copyRectToSurfaceWithKey(const void *buffer, int srcPitch, int destX, int destY, int width, int height, uint32 key) {
630  _innerSurface.copyRectToSurfaceWithKey(buffer, srcPitch, destX, destY, width, height, key);
631  addDirtyRect(Common::Rect(destX, destY, destX + width, destY + height));
632  }
633 
639  void copyRectToSurfaceWithKey(const Graphics::Surface &srcSurface, int destX, int destY, const Common::Rect subRect, uint32 key) {
640  _innerSurface.copyRectToSurfaceWithKey(srcSurface, destX, destY, subRect, key);
641  addDirtyRect(Common::Rect(destX, destY, destX + subRect.width(), destY + subRect.height()));
642  }
643 
648  void copyFrom(const ManagedSurface &surf);
649 
654  void copyFrom(const Surface &surf);
655 
661  void convertFrom(const ManagedSurface &surf, const PixelFormat &fmt);
662 
668  void convertFrom(const Surface &surf, const PixelFormat &fmt);
669 
677  ManagedSurface *scale(int16 newWidth, int16 newHeight, bool filtering = false) const;
678 
687  ManagedSurface *rotoscale(const TransformStruct &transform, bool filtering = false) const;
688 
692  void drawLine(int x0, int y0, int x1, int y1, uint32 color) {
693  _innerSurface.drawLine(x0, y0, x1, y1, color);
694  addDirtyRect(Common::Rect(MIN(x0, x1), MIN(y0, y1), MAX(x0, x1 + 1), MAX(y0, y1 + 1)));
695  }
696 
700  void drawThickLine(int x0, int y0, int x1, int y1, int penX, int penY, uint32 color) {
701  _innerSurface.drawThickLine(x0, y0, x1, y1, penX, penY, color);
702  addDirtyRect(Common::Rect(MIN(x0, x1 + penX), MIN(y0, y1 + penY), MAX(x0, x1 + penX), MAX(y0, y1 + penY)));
703  }
704 
708  void drawRoundRect(const Common::Rect &rect, int arc, uint32 color, bool filled) {
709  _innerSurface.drawRoundRect(rect, arc, color, filled);
710  addDirtyRect(rect);
711  }
712 
716  void drawPolygonScan(const int *polyX, const int *polyY, int npoints, const Common::Rect &bbox, uint32 color) {
717  _innerSurface.drawPolygonScan(polyX, polyY, npoints, bbox, color);
718  addDirtyRect(bbox);
719  }
720 
724  void drawEllipse(int x0, int y0, int x1, int y1, uint32 color, bool filled) {
725  _innerSurface.drawEllipse(x0, y0, x1, y1, color, filled);
726  addDirtyRect(Common::Rect(MIN(x0, x1), MIN(y0, y1), MAX(x0, x1 + 1), MAX(y0, y1 + 1)));
727  }
728 
732  void hLine(int x, int y, int x2, uint32 color) {
733  _innerSurface.hLine(x, y, x2, color);
734  addDirtyRect(Common::Rect(x, y, x2 + 1, y + 1));
735  }
736 
740  void vLine(int x, int y, int y2, uint32 color) {
741  _innerSurface.vLine(x, y, y2, color);
742  addDirtyRect(Common::Rect(x, y, x + 1, y2 + 1));
743  }
744 
748  void fillRect(const Common::Rect &r, uint32 color) {
749  _innerSurface.fillRect(r, color);
750  addDirtyRect(r);
751  }
752 
756  void frameRect(const Common::Rect &r, uint32 color) {
757  _innerSurface.frameRect(r, color);
758  addDirtyRect(r);
759  }
760 
764  AlphaType detectAlpha() const {
765  return _innerSurface.detectAlpha();
766  }
767 
773  addDirtyRect(area);
774  return _innerSurface.getSubArea(area);
775  }
776 
786  void convertToInPlace(const PixelFormat &dstFormat) {
787  _innerSurface.convertToInPlace(dstFormat);
788  }
789 
801  void convertToInPlace(const PixelFormat &dstFormat, const byte *palette, uint16 paletteCount) {
802  _innerSurface.convertToInPlace(dstFormat, palette, paletteCount);
803  }
804 
808  uint getTransparentColor() const { return _transparentColor; }
809 
813  void setTransparentColor(uint32 color) {
814  _transparentColor = color;
815  _transparentColorSet = true;
816  }
817 
822  _transparentColorSet = false;
823  }
824 
828  bool hasTransparentColor() const {
829  return _transparentColorSet;
830  }
831 
835  void clearPalette();
836 
840  bool hasPalette() const;
841 
845  void grabPalette(byte *colors, uint start, uint num) const;
846 
850  void setPalette(const byte *colors, uint start, uint num);
851 };
853 } // End of namespace Graphics
854 
855 #endif
void clear(uint32 color=0)
Definition: managed_surface.h:51
void convertFrom(const ManagedSurface &surf, const PixelFormat &fmt)
void convertToInPlace(const PixelFormat &dstFormat)
Definition: managed_surface.h:786
const Common::Rect getBounds() const
Definition: managed_surface.h:317
static PixelFormat getSupportedPixelFormat()
Definition: blit.h:337
int16 & w
Definition: managed_surface.h:123
uint getTransparentColor() const
Definition: managed_surface.h:808
Definition: surface.h:67
Common::Rect blendBlitTo(ManagedSurface &target, const int posX=0, const int posY=0, const int flipping=FLIP_NONE, const Common::Rect *srcRect=nullptr, const uint colorMod=(uint32)(((255)<< 24)|((255)<< 16)|((255)<< 8)|(255)), const int width=-1, const int height=-1, const TSpriteBlendMode blend=BLEND_NORMAL, const AlphaType alphaType=ALPHA_FULL)
Renders this surface onto target.
virtual void addDirtyRect(const Common::Rect &r)
bool clip(Common::Rect &srcBounds, Common::Rect &destBounds) const
Definition: managed_surface.h:118
void transBlitFromInner(const Surface &src, const Common::Rect &srcRect, const Common::Rect &destRect, uint32 transColor, bool flipped, uint32 srcAlpha, const Palette *srcPalette, const Palette *dstPalette)
Surface getSubArea(const Common::Rect &area)
void copyRectToSurfaceWithKey(const void *buffer, int srcPitch, int destX, int destY, int width, int height, uint32 key)
Definition: managed_surface.h:629
virtual void create(int16 width, int16 height)
void rawBlitFrom(const ManagedSurface &src, const Common::Rect &srcRect, const Common::Point &destPos)
Definition: managed_surface.h:548
void drawPolygonScan(const int *polyX, const int *polyY, int npoints, const Common::Rect &bbox, uint32 color)
void simpleBlitFrom(const Surface &src, const Palette *srcPalette=nullptr)
Definition: pixelformat.h:138
void convertToInPlace(const PixelFormat &dstFormat)
Definition: surface.h:359
Surface getSubArea(const Common::Rect &area)
Definition: managed_surface.h:772
void drawPolygonScan(const int *polyX, const int *polyY, int npoints, const Common::Rect &bbox, uint32 color)
Definition: managed_surface.h:716
static bool isBlendBlitPixelFormatSupported(const PixelFormat &src, const PixelFormat &dst)
Definition: managed_surface.h:559
void drawEllipse(int x0, int y0, int x1, int y1, uint32 color, bool filled)
Definition: managed_surface.h:724
virtual void clearDirtyRects()
Definition: managed_surface.h:300
int32 & pitch
Definition: managed_surface.h:125
void * getBasePtr(int x, int y)
Definition: managed_surface.h:253
void maskBlitFrom(const Surface &src, const Surface &mask, const Palette *srcPalette=nullptr)
DisposeAfterUse::Flag disposeAfterUse() const
Definition: managed_surface.h:208
void setTransparentColor(uint32 color)
Definition: managed_surface.h:813
void clearTransparentColor()
Definition: managed_surface.h:821
const void * getBasePtr(int x, int y) const
Definition: managed_surface.h:241
AlphaType detectAlpha() const
Definition: managed_surface.h:764
void drawLine(int x0, int y0, int x1, int y1, uint32 color)
Definition: managed_surface.h:692
Definition: rect.h:144
void copyRectToSurfaceWithKey(const void *buffer, int srcPitch, int destX, int destY, int width, int height, uint32 key)
bool empty() const
Definition: managed_surface.h:203
void vLine(int x, int y, int y2, uint32 color)
Definition: managed_surface.h:740
void fillRect(const Common::Rect &r, uint32 color)
Definition: managed_surface.h:748
void copyFrom(const ManagedSurface &surf)
void drawRoundRect(const Common::Rect &rect, int arc, uint32 color, bool filled)
void drawThickLine(int x0, int y0, int x1, int y1, int penX, int penY, uint32 color)
Definition: managed_surface.h:700
void drawRoundRect(const Common::Rect &rect, int arc, uint32 color, bool filled)
Definition: managed_surface.h:708
bool hasTransparentColor() const
Definition: managed_surface.h:828
bool clip(Common::Rect &srcBounds, Common::Rect &destBounds) const
void blitFrom(const Surface &src, const Palette *srcPalette=nullptr)
int16 & h
Definition: managed_surface.h:124
const void * getBasePtr(int x, int y) const
Definition: surface.h:138
int16 width() const
Definition: rect.h:192
void hLine(int x, int y, int x2, uint32 color)
void copyRectToSurface(const Graphics::Surface &srcSurface, int destX, int destY, const Common::Rect subRect)
Definition: managed_surface.h:619
void * getPixels()
Definition: managed_surface.h:260
Definition: algorithm.h:29
void drawThickLine(int x0, int y0, int x1, int y1, int penX, int penY, uint32 color)
Definition: formatinfo.h:28
Definition: rect.h:45
const Surface & rawSurface() const
Definition: managed_surface.h:184
ManagedSurface * scale(int16 newWidth, int16 newHeight, bool filtering=false) const
void drawLine(int x0, int y0, int x1, int y1, uint32 color)
void frameRect(const Common::Rect &r, uint32 color)
ManagedSurface * rotoscale(const TransformStruct &transform, bool filtering=false) const
Rotoscale function; this returns a transformed version of this surface after rotation and scaling...
const Common::Point getOffsetFromOwner() const
Definition: managed_surface.h:312
void setPixel(int x, int y, int pixel)
Definition: surface.h:183
AlphaType detectAlpha() const
int16 x
Definition: rect.h:46
void transBlitFrom(const Surface &src, uint32 transColor=0, bool flipped=false, uint32 srcAlpha=0xff, const Palette *srcPalette=nullptr)
void frameRect(const Common::Rect &r, uint32 color)
Definition: managed_surface.h:756
int16 y
Definition: rect.h:47
void blitFromInner(const Surface &src, const Common::Rect &srcRect, const Common::Rect &destRect, const Palette *srcPalette)
T MIN(T a, T b)
Definition: util.h:61
void grabPalette(byte *colors, uint start, uint num) const
void simpleBlitFromInner(const Surface &src, const Common::Rect &srcRect, const Common::Point &destPos, const Palette *srcPalette, bool transparentColorSet, uint transparentColor)
ManagedSurface & operator=(const ManagedSurface &surf)
void drawEllipse(int x0, int y0, int x1, int y1, uint32 color, bool filled)
PixelFormat & format
Definition: managed_surface.h:126
T MAX(T a, T b)
Definition: util.h:64
void vLine(int x, int y, int y2, uint32 color)
Definition: transform_struct.h:75
void hLine(int x, int y, int x2, uint32 color)
Definition: managed_surface.h:732
uint32 getPixel(int x, int y) const
Definition: managed_surface.h:218
Simple class for handling a palette data.
Definition: palette.h:51
void copyRectToSurfaceWithKey(const Graphics::Surface &srcSurface, int destX, int destY, const Common::Rect subRect, uint32 key)
Definition: managed_surface.h:639
void fillRect(Common::Rect r, uint32 color)
void copyRectToSurface(const void *buffer, int srcPitch, int destX, int destY, int width, int height)
void setPalette(const byte *colors, uint start, uint num)
const void * getPixels() const
Definition: managed_surface.h:262
uint32 getPixel(int x, int y) const
Definition: surface.h:162
void setPixel(int x, int y, uint32 pixel)
Definition: managed_surface.h:229
void convertToInPlace(const PixelFormat &dstFormat, const byte *palette, uint16 paletteCount)
Definition: managed_surface.h:801
virtual void setPixels(void *newPixels)
const void * getPixels() const
Definition: surface.h:108
int16 height() const
Definition: rect.h:193
void copyRectToSurface(const void *buffer, int srcPitch, int destX, int destY, int width, int height)
Definition: managed_surface.h:609
void maskBlitFromInner(const Surface &src, const Surface &mask, const Common::Rect &srcRect, const Common::Point &destPos, const Palette *srcPalette)
Definition: atari-screen.h:44