ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
te_image.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 TETRAEDGE_TE_TE_IMAGE_H
23 #define TETRAEDGE_TE_TE_IMAGE_H
24 
25 #include "common/fs.h"
26 #include "common/ptr.h"
27 #include "common/stream.h"
28 #include "common/types.h"
29 #include "common/path.h"
30 
31 #include "graphics/managed_surface.h"
32 
33 #include "tetraedge/te/te_color.h"
34 #include "tetraedge/te/te_palette.h"
35 #include "tetraedge/te/te_vector2s32.h"
36 #include "tetraedge/te/te_resource.h"
37 
38 #include "tetraedge/tetraedge.h"
39 
40 namespace Tetraedge {
41 
43 public:
44  TeImage();
45  TeImage(const TeImage &other);
46 
47  virtual ~TeImage() {
48  destroy();
49  };
50 
51  enum Format {
52  RGB8 = 5,
53  RGBA8 = 6,
54  // GREY8 = 0xd,
55  INVALID = 0xe
56  };
57  enum SaveType {
58  PNG
59  };
60 
61  void copy(TeImage &dest, const TeVector2s32 &vec1, const TeVector2s32 &vec2,
62  const TeVector2s32 &vec3) const;
63  uint64 countPixelsOfColor(const TeColor &col) const;
64  // void create(); // never used?
65  void createImg(uint xsize, uint ysize, Common::SharedPtr<TePalette> &palette, Format newformat) {
66  createImg(xsize, ysize, palette, newformat, xsize, ysize);
67  }
68  void createImg(uint xsize, uint ysize, Common::SharedPtr<TePalette> &pal,
69  Format format, uint bufxsize, uint bufysize);
70  void deserialize(Common::ReadStream &stream);
71  void destroy();
72  void drawPlot(int x, int y, const TeColor &col) {
73  drawPlot(getPixels(), x, y, bufSize(), col);
74  }
75  void drawPlot(void *outbuf, int x, int y, const TeVector2s32 &bufsize, const TeColor &col);
76  void fill(byte val);
77  void fill(byte r, byte g, byte b, byte a);
78  void getBuff(uint x, uint y, byte *pout, uint w, uint h);
79  bool isExtensionSupported(const Common::Path &path);
80  bool load(const TetraedgeFSNode &node);
81  bool load(Common::SeekableReadStream &stream, const Common::String &type);
82  bool save(const Common::Path &path, enum SaveType type);
83  int serialize(Common::WriteStream &stream);
84  TeVector2s32 bufSize() const {
85  return TeVector2s32(pitch / format.bytesPerPixel, h);
86  }
87  Format teFormat() const { return _teFormat; }
88 
89 private:
90  Format _teFormat;
91 };
92 
93 } // end namespace Tetraedge
94 
95 #endif // TETRAEDGE_TE_TE_IMAGE_H
Definition: managed_surface.h:51
Definition: te_image.h:42
Definition: str.h:59
int16 & w
Definition: managed_surface.h:123
Definition: detection.h:27
Definition: stream.h:77
int32 & pitch
Definition: managed_surface.h:125
Definition: te_resource.h:31
Definition: tetraedge.h:58
Definition: te_color.h:30
Definition: path.h:52
Definition: stream.h:745
int16 & h
Definition: managed_surface.h:124
void * getPixels()
Definition: managed_surface.h:260
Definition: te_vector2s32.h:31
Definition: stream.h:385
PixelFormat & format
Definition: managed_surface.h:126
Definition: ptr.h:159