1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
package cc.polyfrost.oneconfig.renderer.image;
import cc.polyfrost.oneconfig.utils.IOUtils;
import org.lwjgl.nanovg.NSVGImage;
import org.lwjgl.nanovg.NanoSVG;
import org.lwjgl.nanovg.NanoVG;
import org.lwjgl.stb.STBImage;
import org.lwjgl.system.MemoryUtil;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.ByteBuffer;
import java.util.HashMap;
/**
* Loads images and SVGs from resources into NanoVG.
*
* @see cc.polyfrost.oneconfig.renderer.RenderManager
* @see Images
* @see SVGs
*/
public final class ImageLoader {
private ImageLoader() {
}
private final HashMap<String, Integer> imageHashMap = new HashMap<>();
private final HashMap<String, Integer> svgHashMap = new HashMap<>();
public static ImageLoader INSTANCE = new ImageLoader();
/**
* Loads an image from resources.
*
* @param vg The NanoVG context.
* @param fileName The name of the file to load.
* @return Whether the image was loaded successfully.
*/
public boolean loadImage(long vg, String fileName) {
if (!imageHashMap.containsKey(fileName)) {
int[] width = {0};
int[] height = {0};
int[] channels = {0};
ByteBuffer image = IOUtils.resourceToByteBufferNullable(fileName);
if (image == null) {
return false;
}
ByteBuffer buffer = STBImage.stbi_load_from_memory(image, width, height, channels, 4);
if (buffer == null) {
return false;
}
imageHashMap.put(fileName, NanoVG.nvgCreateImageRGBA(vg, width[0], height[0], NanoVG.NVG_IMAGE_REPEATX | NanoVG.NVG_IMAGE_REPEATY | NanoVG.NVG_IMAGE_GENERATE_MIPMAPS, buffer));
return true;
}
return true;
}
/**
* Loads an SVG from resources.
*
* @param vg The NanoVG context.
* @param fileName The name of the file to load.
* @param width The width of the SVG.
* @param height The height of the SVG.
* @return Whether the SVG was loaded successfully.
*/
public boolean loadSVG(long vg, String fileName, float width, float height) {
String name = fileName + "-" + width + "-" + height;
if (!svgHashMap.containsKey(name)) {
try {
InputStream inputStream = this.getClass().getResourceAsStream(fileName);
if (inputStream == null) return false;
StringBuilder resultStringBuilder = new StringBuilder();
try (BufferedReader br = new BufferedReader(new InputStreamReader(inputStream))) {
String line;
while ((line = br.readLine()) != null) {
resultStringBuilder.append(line);
}
}
CharSequence s = resultStringBuilder.toString();
NSVGImage svg = NanoSVG.nsvgParse(s, "px", 96f);
if (svg == null) return false;
long rasterizer = NanoSVG.nsvgCreateRasterizer();
int w = (int) svg.width();
int h = (int) svg.height();
float scale = Math.max(width / w, height / h);
w = (int) (w * scale);
h = (int) (h * scale);
ByteBuffer image = MemoryUtil.memAlloc(w * h * 4);
NanoSVG.nsvgRasterize(rasterizer, svg, 0, 0, scale, image, w, h, w * 4);
NanoSVG.nsvgDeleteRasterizer(rasterizer);
NanoSVG.nsvgDelete(svg);
svgHashMap.put(name, NanoVG.nvgCreateImageRGBA(vg, w, h, NanoVG.NVG_IMAGE_REPEATX | NanoVG.NVG_IMAGE_REPEATY | NanoVG.NVG_IMAGE_GENERATE_MIPMAPS, image));
return true;
} catch (Exception e) {
System.err.println("Failed to parse SVG file");
e.printStackTrace();
return false;
}
}
return true;
}
/**
* Get a loaded image from the cache.
* <p><b>Requires the image to have been loaded first.</b></p>
*
* @param fileName The name of the file to load.
* @return The image
* @see ImageLoader#loadImage(long, String)
*/
public int getImage(String fileName) {
return imageHashMap.get(fileName);
}
/**
* Remove an image from the cache, allowing the image to be garbage collected.
* Should be used when the GUI rendering the image is closed.
*
* @param vg The NanoVG context.
* @param fileName The name of the file to remove.
* @see ImageLoader#loadImage(long, String)
*/
public void removeImage(long vg, String fileName) {
NanoVG.nvgDeleteImage(vg, imageHashMap.get(fileName));
imageHashMap.remove(fileName);
}
/**
* Clears all images from the cache, allowing the images cleared to be garbage collected.
* Should be used when the GUI rendering loaded images are closed.
*
* @param vg The NanoVG context.
*/
public void clearImages(long vg) {
HashMap<String, Integer> temp = new HashMap<>(imageHashMap);
for (String image : temp.keySet()) {
NanoVG.nvgDeleteImage(vg, imageHashMap.get(image));
imageHashMap.remove(image);
}
}
/**
* Get a loaded SVG from the cache.
* <p><b>Requires the SVG to have been loaded first.</b></p>
*
* @param fileName The name of the file to load.
* @return The SVG
* @see ImageLoader#loadSVG(long, String, float, float)
*/
public int getSVG(String fileName, float width, float height) {
String name = fileName + "-" + width + "-" + height;
return svgHashMap.get(name);
}
/**
* Remove a SVG from the cache, allowing the SVG to be garbage collected.
* Should be used when the GUI rendering the SVG is closed.
*
* @param vg The NanoVG context.
* @param fileName The name of the file to remove.
* @see ImageLoader#loadSVG(long, String, float, float)
*/
public void removeSVG(long vg, String fileName, float width, float height) {
String name = fileName + "-" + width + "-" + height;
NanoVG.nvgDeleteImage(vg, imageHashMap.get(name));
svgHashMap.remove(name);
}
/**
* Clears all SVGs from the cache, allowing the SVGs cleared to be garbage collected.
* Should be used when the GUI rendering loaded SVGs are closed.
*
* @param vg The NanoVG context.
*/
public void clearSVGs(long vg) {
HashMap<String, Integer> temp = new HashMap<>(svgHashMap);
for (String image : temp.keySet()) {
NanoVG.nvgDeleteImage(vg, svgHashMap.get(image));
svgHashMap.remove(image);
}
}
}
|