ManaPlus
sdl2imagehelper.h
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2004-2009 The Mana World Development Team
4  * Copyright (C) 2009-2010 The Mana Developers
5  * Copyright (C) 2011-2019 The ManaPlus Developers
6  * Copyright (C) 2019-2021 Andrei Karas
7  *
8  * This file is part of The ManaPlus Client.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 #ifndef RESOURCES_SDL2IMAGEHELPER_H
25 #define RESOURCES_SDL2IMAGEHELPER_H
26 
27 #ifdef USE_SDL2
28 
29 #include "localconsts.h"
30 
31 #include "resources/imagehelper.h"
32 
33 PRAGMA48(GCC diagnostic push)
34 PRAGMA48(GCC diagnostic ignored "-Wshadow")
35 #include <SDL.h>
36 PRAGMA48(GCC diagnostic pop)
37 
38 class Dye;
39 class Image;
40 
44 class SDLImageHelper final : public ImageHelper
45 {
46  friend class Image;
47 
48  public:
49  SDLImageHelper() :
50  ImageHelper()
51  { }
52 
54 
55 
58  Image *loadSurface(SDL_Surface *const tmpImage) override final
60 
61  Image *createTextSurface(SDL_Surface *const tmpImage,
62  const int width, const int height,
63  const float alpha)
64  override final A_WARN_UNUSED;
65 
66  void copySurfaceToImage(const Image *const image,
67  const int x, const int y,
68  SDL_Surface *const surface)
69  const override final;
70 
71  constexpr2 static void SDLSetEnableAlphaCache(const bool n) noexcept2
72  { mEnableAlphaCache = n; }
73 
75  { return mEnableAlphaCache; }
76 
77  static SDL_Surface* SDLDuplicateSurface(SDL_Surface *const tmpImage)
79 
80  static int combineSurface(SDL_Surface *restrict const src,
81  SDL_Rect *restrict const srcrect,
82  SDL_Surface *restrict const dst,
83  SDL_Rect *restrict const dstrect);
84 
85  constexpr2 static void setRenderer(SDL_Renderer *const renderer)
86  noexcept2
87  { mRenderer = renderer; }
88 
89  protected:
91  Image *_SDLload(SDL_Surface *tmpImage) A_WARN_UNUSED;
92 
93  static bool mEnableAlphaCache;
94  static SDL_Renderer *mRenderer;
95 };
96 
97 #endif // USE_SDL2
98 #endif // RESOURCES_SDL2IMAGEHELPER_H
Definition: dye.h:41
static Image * _SDLload(SDL_Surface *tmpImage)
static void SDLSetEnableAlphaCache(const bool n)
static int combineSurface(SDL_Surface *const src, SDL_Rect *const srcrect, SDL_Surface *const dst, SDL_Rect *const dstrect)
static bool SDLGetEnableAlphaCache()
static SDL_Surface * SDLDuplicateSurface(SDL_Surface *const tmpImage)
void copySurfaceToImage(const Image *const image, const int x, const int y, SDL_Surface *const surface) const
Image * createTextSurface(SDL_Surface *const tmpImage, const int width, const int height, const float alpha)
static bool mEnableAlphaCache
Image * loadSurface(SDL_Surface *const tmpImage)
#define restrict
Definition: localconsts.h:165
#define constexpr2
Definition: localconsts.h:49
#define A_WARN_UNUSED
Definition: localconsts.h:161
#define noexcept2
Definition: localconsts.h:50
#define final
Definition: localconsts.h:46
#define PRAGMA48(str)
Definition: localconsts.h:199
#define A_DELETE_COPY(func)
Definition: localconsts.h:53