]> git.lizzy.rs Git - dragonfireclient.git/blob - src/guiscalingfilter.cpp
Fix some minor details from 6d61375
[dragonfireclient.git] / src / guiscalingfilter.cpp
1 /*
2 Copyright (C) 2015 Aaron Suen <warr1024@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as published by
6 the Free Software Foundation; either version 2.1 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19 #include "guiscalingfilter.h"
20 #include "imagefilters.h"
21 #include "settings.h"
22 #include "main.h"               // for g_settings
23 #include "util/numeric.h"
24 #include <stdio.h>
25
26 /* Maintain a static cache to store the images that correspond to textures
27  * in a format that's manipulable by code.  Some platforms exhibit issues
28  * converting textures back into images repeatedly, and some don't even
29  * allow it at all.
30  */
31 std::map<io::path, video::IImage *> g_imgCache;
32
33 /* Maintain a static cache of all pre-scaled textures.  These need to be
34  * cleared as well when the cached images.
35  */
36 std::map<io::path, video::ITexture *> g_txrCache;
37
38 /* Manually insert an image into the cache, useful to avoid texture-to-image
39  * conversion whenever we can intercept it.
40  */
41 void guiScalingCache(io::path key, video::IVideoDriver *driver, video::IImage *value)
42 {
43         if (!g_settings->getBool("gui_scaling_filter"))
44                 return;
45         video::IImage *copied = driver->createImage(value->getColorFormat(),
46                         value->getDimension());
47         value->copyTo(copied);
48         g_imgCache[key] = copied;
49 }
50
51 // Manually clear the cache, e.g. when switching to different worlds.
52 void guiScalingCacheClear(video::IVideoDriver *driver)
53 {
54         for (std::map<io::path, video::IImage *>::iterator it = g_imgCache.begin();
55                         it != g_imgCache.end(); it++) {
56                 if (it->second != NULL)
57                         it->second->drop();
58         }
59         g_imgCache.clear();
60         for (std::map<io::path, video::ITexture *>::iterator it = g_txrCache.begin();
61                         it != g_txrCache.end(); it++) {
62                 if (it->second != NULL)
63                         driver->removeTexture(it->second);
64         }
65         g_txrCache.clear();
66 }
67
68 /* Get a cached, high-quality pre-scaled texture for display purposes.  If the
69  * texture is not already cached, attempt to create it.  Returns a pre-scaled texture,
70  * or the original texture if unable to pre-scale it.
71  */
72 video::ITexture *guiScalingResizeCached(video::IVideoDriver *driver,
73                 video::ITexture *src, const core::rect<s32> &srcrect,
74                 const core::rect<s32> &destrect)
75 {
76
77         if (!g_settings->getBool("gui_scaling_filter"))
78                 return src;
79
80         // Calculate scaled texture name.
81         char rectstr[200];
82         snprintf(rectstr, sizeof(rectstr), "%d:%d:%d:%d:%d:%d",
83                 srcrect.UpperLeftCorner.X,
84                 srcrect.UpperLeftCorner.Y,
85                 srcrect.getWidth(),
86                 srcrect.getHeight(),
87                 destrect.getWidth(),
88                 destrect.getHeight());
89         io::path origname = src->getName().getPath();
90         io::path scalename = origname + "@guiScalingFilter:" + rectstr;
91
92         // Search for existing scaled texture.
93         video::ITexture *scaled = g_txrCache[scalename];
94         if (scaled)
95                 return scaled;
96
97         // Try to find the texture converted to an image in the cache.
98         // If the image was not found, try to extract it from the texture.
99         video::IImage* srcimg = g_imgCache[origname];
100         if (srcimg == NULL) {
101                 if (!g_settings->getBool("gui_scaling_filter_txr2img"))
102                         return src;
103                 srcimg = driver->createImageFromData(src->getColorFormat(),
104                         src->getSize(), src->lock(), false);
105                 src->unlock();
106                 g_imgCache[origname] = srcimg;
107         }
108
109         // Create a new destination image and scale the source into it.
110         imageCleanTransparent(srcimg, 0);
111         video::IImage *destimg = driver->createImage(src->getColorFormat(),
112                         core::dimension2d<u32>((u32)destrect.getWidth(),
113                         (u32)destrect.getHeight()));
114         imageScaleNNAA(srcimg, srcrect, destimg);
115
116 #ifdef __ANDROID__
117         // Android is very picky about textures being powers of 2, so expand
118         // the image dimensions to the next power of 2, if necessary, for
119         // that platform.
120         video::IImage *po2img = driver->createImage(src->getColorFormat(),
121                         core::dimension2d<u32>(npot2((u32)destrect.getWidth()),
122                         npot2((u32)destrect.getHeight())));
123         po2img->fill(video::SColor(0, 0, 0, 0));
124         destimg->copyTo(po2img);
125         destimg->drop();
126         destimg = po2img;
127 #endif
128
129         // Convert the scaled image back into a texture.
130         scaled = driver->addTexture(scalename, destimg, NULL);
131         destimg->drop();
132         g_txrCache[scalename] = scaled;
133
134         return scaled;
135 }
136
137 /* Convenience wrapper for guiScalingResizeCached that accepts parameters that
138  * are available at GUI imagebutton creation time.
139  */
140 video::ITexture *guiScalingImageButton(video::IVideoDriver *driver,
141                 video::ITexture *src, s32 width, s32 height)
142 {
143         return guiScalingResizeCached(driver, src,
144                 core::rect<s32>(0, 0, src->getSize().Width, src->getSize().Height),
145                 core::rect<s32>(0, 0, width, height));
146 }
147
148 /* Replacement for driver->draw2DImage() that uses the high-quality pre-scaled
149  * texture, if configured.
150  */
151 void draw2DImageFilterScaled(video::IVideoDriver *driver, video::ITexture *txr,
152                 const core::rect<s32> &destrect, const core::rect<s32> &srcrect,
153                 const core::rect<s32> *cliprect, const video::SColor *const colors,
154                 bool usealpha)
155 {
156         // Attempt to pre-scale image in software in high quality.
157         video::ITexture *scaled = guiScalingResizeCached(driver, txr, srcrect, destrect);
158
159         // Correct source rect based on scaled image.
160         const core::rect<s32> mysrcrect = (scaled != txr)
161                 ? core::rect<s32>(0, 0, destrect.getWidth(), destrect.getHeight())
162                 : srcrect;
163
164         driver->draw2DImage(scaled, destrect, mysrcrect, cliprect, colors, usealpha);
165 }