SDL_Extensions.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * SDL_Extensions.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include <SDL_version.h>
  12. #include <SDL_render.h>
  13. #include <SDL_video.h>
  14. #include <SDL_events.h>
  15. #include "../../lib/int3.h"
  16. #include "Geometries.h"
  17. #include "../../lib/GameConstants.h"
  18. extern SDL_Window * mainWindow;
  19. extern SDL_Renderer * mainRenderer;
  20. extern SDL_Texture * screenTexture;
  21. inline void SDL_SetColors(SDL_Surface *surface, SDL_Color *colors, int firstcolor, int ncolors)
  22. {
  23. SDL_SetPaletteColors(surface->format->palette,colors,firstcolor,ncolors);
  24. }
  25. inline void SDL_WarpMouse(int x, int y)
  26. {
  27. SDL_WarpMouseInWindow(mainWindow,x,y);
  28. }
  29. void SDL_UpdateRect(SDL_Surface *surface, int x, int y, int w, int h);
  30. inline bool isCtrlKeyDown()
  31. {
  32. return SDL_GetKeyboardState(nullptr)[SDL_SCANCODE_LCTRL] || SDL_GetKeyboardState(nullptr)[SDL_SCANCODE_RCTRL];
  33. }
  34. inline bool isAltKeyDown()
  35. {
  36. return SDL_GetKeyboardState(nullptr)[SDL_SCANCODE_LALT] || SDL_GetKeyboardState(nullptr)[SDL_SCANCODE_RALT];
  37. }
  38. inline bool isShiftKeyDown()
  39. {
  40. return SDL_GetKeyboardState(nullptr)[SDL_SCANCODE_LSHIFT] || SDL_GetKeyboardState(nullptr)[SDL_SCANCODE_RSHIFT];
  41. }
  42. namespace CSDL_Ext
  43. {
  44. //todo: should this better be assignment operator?
  45. STRONG_INLINE void colorAssign(SDL_Color & dest, const SDL_Color & source)
  46. {
  47. dest.r = source.r;
  48. dest.g = source.g;
  49. dest.b = source.b;
  50. dest.a = source.a;
  51. }
  52. inline void setAlpha(SDL_Surface * bg, int value)
  53. {
  54. SDL_SetSurfaceAlphaMod(bg, value);
  55. }
  56. }
  57. struct Rect;
  58. extern SDL_Surface * screen, *screen2, *screenBuf;
  59. void blitAt(SDL_Surface * src, int x, int y, SDL_Surface * dst=screen);
  60. void blitAt(SDL_Surface * src, const SDL_Rect & pos, SDL_Surface * dst=screen);
  61. bool isItIn(const SDL_Rect * rect, int x, int y);
  62. bool isItInOrLowerBounds(const SDL_Rect * rect, int x, int y);
  63. /**
  64. * The colors class defines color constants of type SDL_Color.
  65. */
  66. class Colors
  67. {
  68. public:
  69. /** the h3 yellow color, typically used for headlines */
  70. static const SDL_Color YELLOW;
  71. /** the standard h3 white color */
  72. static const SDL_Color WHITE;
  73. /** the metallic gold color used mostly as a border around buttons */
  74. static const SDL_Color METALLIC_GOLD;
  75. /** green color used for in-game console */
  76. static const SDL_Color GREEN;
  77. /** the h3 orange color, used for blocked buttons */
  78. static const SDL_Color ORANGE;
  79. /** the h3 bright yellow color, used for selection border */
  80. static const SDL_Color BRIGHT_YELLOW;
  81. /** default key color for all 8 & 24 bit graphics */
  82. static const SDL_Color DEFAULT_KEY_COLOR;
  83. };
  84. //MSVC gives an error when calling abs with ui64 -> we add template that will match calls with unsigned arg and return it
  85. template<typename T>
  86. typename boost::enable_if_c<boost::is_unsigned<T>::type, T>::type abs(T arg)
  87. {
  88. return arg;
  89. }
  90. template<typename IntType>
  91. std::string makeNumberShort(IntType number, IntType maxLength = 3) //the output is a string containing at most 5 characters [4 if positive] (eg. intead 10000 it gives 10k)
  92. {
  93. IntType max = pow(10, maxLength);
  94. if (std::abs(number) < max)
  95. return boost::lexical_cast<std::string>(number);
  96. std::string symbols = " kMGTPE";
  97. auto iter = symbols.begin();
  98. while (number >= max)
  99. {
  100. number /= 1000;
  101. iter++;
  102. assert(iter != symbols.end());//should be enough even for int64
  103. }
  104. return boost::lexical_cast<std::string>(number) + *iter;
  105. }
  106. typedef void (*TColorPutter)(Uint8 *&ptr, const Uint8 & R, const Uint8 & G, const Uint8 & B);
  107. typedef void (*TColorPutterAlpha)(Uint8 *&ptr, const Uint8 & R, const Uint8 & G, const Uint8 & B, const Uint8 & A);
  108. inline SDL_Rect genRect(const int & hh, const int & ww, const int & xx, const int & yy)
  109. {
  110. SDL_Rect ret;
  111. ret.h=hh;
  112. ret.w=ww;
  113. ret.x=xx;
  114. ret.y=yy;
  115. return ret;
  116. }
  117. template<int bpp, int incrementPtr>
  118. struct ColorPutter
  119. {
  120. static STRONG_INLINE void PutColor(Uint8 *&ptr, const Uint8 & R, const Uint8 & G, const Uint8 & B);
  121. static STRONG_INLINE void PutColor(Uint8 *&ptr, const Uint8 & R, const Uint8 & G, const Uint8 & B, const Uint8 & A);
  122. static STRONG_INLINE void PutColorAlphaSwitch(Uint8 *&ptr, const Uint8 & R, const Uint8 & G, const Uint8 & B, const Uint8 & A);
  123. static STRONG_INLINE void PutColor(Uint8 *&ptr, const SDL_Color & Color);
  124. static STRONG_INLINE void PutColorAlpha(Uint8 *&ptr, const SDL_Color & Color);
  125. static STRONG_INLINE void PutColorRow(Uint8 *&ptr, const SDL_Color & Color, size_t count);
  126. };
  127. typedef void (*BlitterWithRotationVal)(SDL_Surface *src,SDL_Rect srcRect, SDL_Surface * dst, SDL_Rect dstRect, ui8 rotation);
  128. class ColorShifter
  129. {
  130. public:
  131. virtual ~ColorShifter() = default;
  132. virtual SDL_Color shiftColor(SDL_Color clr) const = 0;
  133. };
  134. class ColorShifterLightBlue : public ColorShifter
  135. {
  136. public:
  137. SDL_Color shiftColor(SDL_Color clr) const override
  138. {
  139. clr.b = clr.b + (255 - clr.b) / 2;
  140. return clr;
  141. }
  142. };
  143. class ColorShifterDeepBlue : public ColorShifter
  144. {
  145. public:
  146. SDL_Color shiftColor(SDL_Color clr) const override
  147. {
  148. clr.b = 255;
  149. return clr;
  150. }
  151. };
  152. class ColorShifterDeepRed : public ColorShifter
  153. {
  154. public:
  155. SDL_Color shiftColor(SDL_Color clr) const override
  156. {
  157. clr.r = 255;
  158. return clr;
  159. }
  160. };
  161. namespace CSDL_Ext
  162. {
  163. /// helper that will safely set and un-set ClipRect for SDL_Surface
  164. class CClipRectGuard
  165. {
  166. SDL_Surface * surf;
  167. SDL_Rect oldRect;
  168. public:
  169. CClipRectGuard(SDL_Surface * surface, const SDL_Rect & rect):
  170. surf(surface)
  171. {
  172. SDL_GetClipRect(surf, &oldRect);
  173. SDL_SetClipRect(surf, &rect);
  174. }
  175. ~CClipRectGuard()
  176. {
  177. SDL_SetClipRect(surf, &oldRect);
  178. }
  179. };
  180. void blitSurface(SDL_Surface * src, const SDL_Rect * srcRect, SDL_Surface * dst, SDL_Rect * dstRect);
  181. void fillRect(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
  182. void fillRectBlack(SDL_Surface * dst, SDL_Rect * dstrect);
  183. //fill dest image with source texture.
  184. void fillTexture(SDL_Surface *dst, SDL_Surface * sourceTexture);
  185. void SDL_PutPixelWithoutRefresh(SDL_Surface *ekran, const int & x, const int & y, const Uint8 & R, const Uint8 & G, const Uint8 & B, Uint8 A = 255);
  186. void SDL_PutPixelWithoutRefreshIfInSurf(SDL_Surface *ekran, const int & x, const int & y, const Uint8 & R, const Uint8 & G, const Uint8 & B, Uint8 A = 255);
  187. SDL_Surface * verticalFlip(SDL_Surface * toRot); //vertical flip
  188. SDL_Surface * horizontalFlip(SDL_Surface * toRot); //horizontal flip
  189. Uint32 SDL_GetPixel(SDL_Surface *surface, const int & x, const int & y, bool colorByte = false);
  190. void alphaTransform(SDL_Surface * src); //adds transparency and shadows (partial handling only; see examples of using for details)
  191. bool isTransparent(SDL_Surface * srf, int x, int y); //checks if surface is transparent at given position
  192. Uint8 *getPxPtr(const SDL_Surface * const &srf, const int x, const int y);
  193. TColorPutter getPutterFor(SDL_Surface * const &dest, int incrementing); //incrementing: -1, 0, 1
  194. TColorPutterAlpha getPutterAlphaFor(SDL_Surface * const &dest, int incrementing); //incrementing: -1, 0, 1
  195. template<int bpp>
  196. int blit8bppAlphaTo24bppT(const SDL_Surface * src, const SDL_Rect * srcRect, SDL_Surface * dst, SDL_Rect * dstRect); //blits 8 bpp surface with alpha channel to 24 bpp surface
  197. int blit8bppAlphaTo24bpp(const SDL_Surface * src, const SDL_Rect * srcRect, SDL_Surface * dst, SDL_Rect * dstRect); //blits 8 bpp surface with alpha channel to 24 bpp surface
  198. Uint32 colorToUint32(const SDL_Color * color); //little endian only
  199. SDL_Color makeColor(ui8 r, ui8 g, ui8 b, ui8 a);
  200. void update(SDL_Surface * what = screen); //updates whole surface (default - main screen)
  201. void drawLine(SDL_Surface * sur, int x1, int y1, int x2, int y2, const SDL_Color & color1, const SDL_Color & color2);
  202. void drawBorder(SDL_Surface * sur, int x, int y, int w, int h, const int3 &color);
  203. void drawBorder(SDL_Surface * sur, const SDL_Rect &r, const int3 &color);
  204. void drawDashedBorder(SDL_Surface * sur, const Rect &r, const int3 &color);
  205. void setPlayerColor(SDL_Surface * sur, PlayerColor player); //sets correct color of flags; -1 for neutral
  206. std::string processStr(std::string str, std::vector<std::string> & tor); //replaces %s in string
  207. SDL_Surface * newSurface(int w, int h, SDL_Surface * mod=screen); //creates new surface, with flags/format same as in surface given
  208. SDL_Surface * copySurface(SDL_Surface * mod); //returns copy of given surface
  209. template<int bpp>
  210. SDL_Surface * createSurfaceWithBpp(int width, int height); //create surface with give bits per pixels value
  211. void VflipSurf(SDL_Surface * surf); //fluipis given surface by vertical axis
  212. //scale surface to required size.
  213. //nearest neighbour algorithm
  214. SDL_Surface * scaleSurfaceFast(SDL_Surface *surf, int width, int height);
  215. // bilinear filtering. Uses fallback to scaleSurfaceFast in case of indexed surfaces
  216. SDL_Surface * scaleSurface(SDL_Surface *surf, int width, int height);
  217. template<int bpp>
  218. void applyEffectBpp( SDL_Surface * surf, const SDL_Rect * rect, int mode );
  219. void applyEffect(SDL_Surface * surf, const SDL_Rect * rect, int mode); //mode: 0 - sepia, 1 - grayscale
  220. void startTextInput(SDL_Rect * where);
  221. void stopTextInput();
  222. void setColorKey(SDL_Surface * surface, SDL_Color color);
  223. ///set key-color to 0,255,255
  224. void setDefaultColorKey(SDL_Surface * surface);
  225. ///set key-color to 0,255,255 only if it exactly mapped
  226. void setDefaultColorKeyPresize(SDL_Surface * surface);
  227. }