FIFE  2008.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
glimage.h
1 /***************************************************************************
2  * Copyright (C) 2005-2011 by the FIFE team *
3  * http://www.fifengine.net *
4  * This file is part of FIFE. *
5  * *
6  * FIFE is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU Lesser General Public *
8  * License as published by the Free Software Foundation; either *
9  * version 2.1 of the License, or (at your option) any later version. *
10  * *
11  * This library is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the *
18  * Free Software Foundation, Inc., *
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
20  ***************************************************************************/
21 
22 #ifndef FIFE_VIDEO_RENDERBACKENDS_OPENGL_GLIMAGE_H
23 #define FIFE_VIDEO_RENDERBACKENDS_OPENGL_GLIMAGE_H
24 
25 // Standard C++ library includes
26 #include <vector>
27 
28 // Platform specific includes
29 #include "util/base/fife_stdint.h"
30 
31 // 3rd party library includes
32 #include <SDL_video.h>
33 
34 // FIFE includes
35 // These includes are split up in two parts, separated by one empty line
36 // First block: files included from the FIFE root src directory
37 // Second block: files included from the same folder
38 #include "video/image.h"
39 
40 #include "fife_opengl.h"
41 
42 namespace FIFE {
43 
53  class GLImage : public Image {
54  public:
55  GLImage(IResourceLoader* loader = 0);
56  GLImage(const std::string& name, IResourceLoader* loader = 0);
57  GLImage(SDL_Surface* surface);
58  GLImage(const std::string& name, SDL_Surface* surface);
59  GLImage(const uint8_t* data, uint32_t width, uint32_t height);
60  GLImage(const std::string& name, const uint8_t* data, uint32_t width, uint32_t height);
61 
62  virtual ~GLImage();
63  virtual void invalidate();
64  virtual void setSurface(SDL_Surface* surface);
65  virtual void render(const Rect& rect, uint8_t alpha = 255, uint8_t const* rgb = 0);
66  virtual void useSharedImage(const ImagePtr& shared, const Rect& region);
67  virtual void forceLoadInternal();
68  virtual void copySubimage(uint32_t xoffset, uint32_t yoffset, const ImagePtr& img);
69  virtual void load();
70  virtual void free();
71 
72  GLuint getTexId() const;
73  const GLfloat* getTexCoords() const;
74  bool isCompressed() const { return m_compressed; }
75  void setCompressed(bool compressed) { m_compressed = compressed; }
76  private:
77  // texture coords to use
78  GLfloat m_tex_coords[4];
79 
80  // Was this image compressed by OpenGL driver during loading ?
81  bool m_compressed;
82 
83  // [0] [2] ->(x)
84  // [1] +------+
85  // | |
86  // | |
87  // [3] +------+
88  //
89  // |
90  // v
91  // (y)
92  // To map these indices with previous one:
93  // [0]:=[1]:=0.0f, [2]:=m_col_tex_coords, [3]:=m_row_tex_coords
94 
95 
98  GLuint m_texId;
99 
102  void cleanup();
103 
106  void resetGlimage();
107 
110  void generateGLTexture();
111  void generateGLSharedTexture(const GLImage* shared, const Rect& region);
112  void validateShared();
113 
114  uint32_t m_chunk_size_w;
115  uint32_t m_chunk_size_h;
116 
117  SDL_Color m_colorkey;
118 
119  GLImage* m_shared_img;
120  // Holds Atlas ImagePtr if this is a shared image
121  ImagePtr m_atlas_img;
122  // Holds Atlas Name if this is a shared image
123  std::string m_atlas_name;
124  };
125 
126 }
127 
128 #endif
129 /* vim: set noexpandtab: set shiftwidth=2: set tabstop=2: */
virtual void invalidate()
Definition: glimage.cpp:94
virtual void setSurface(SDL_Surface *surface)
Definition: glimage.cpp:98
virtual void copySubimage(uint32_t xoffset, uint32_t yoffset, const ImagePtr &img)
Definition: glimage.cpp:371
virtual void useSharedImage(const ImagePtr &shared, const Rect &region)
Definition: glimage.cpp:327
virtual void forceLoadInternal()
Definition: glimage.cpp:346
virtual void render(const Rect &rect, uint8_t alpha=255, uint8_t const *rgb=0)
Definition: glimage.cpp:125