Utils.java 9.75 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
package emu.grasscutter.utils;

KingRainbow44's avatar
KingRainbow44 committed
3
import java.io.*;
4
import java.nio.charset.StandardCharsets;
KingRainbow44's avatar
KingRainbow44 committed
5
6
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
Kengxxiao's avatar
Kengxxiao committed
7
8
import java.time.*;
import java.time.temporal.TemporalAdjusters;
KingRainbow44's avatar
KingRainbow44 committed
9
10
import java.util.HashMap;
import java.util.Map;
Melledy's avatar
Melledy committed
11
import java.util.Random;
Secretboy-SMR's avatar
Secretboy-SMR committed
12
import java.util.Locale;
Melledy's avatar
Melledy committed
13

14
import emu.grasscutter.Configuration;
Melledy's avatar
Melledy committed
15
16
17
18
import emu.grasscutter.Grasscutter;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufUtil;
import io.netty.buffer.Unpooled;
Melledy's avatar
Melledy committed
19

KingRainbow44's avatar
KingRainbow44 committed
20
import org.slf4j.Logger;
Melledy's avatar
Melledy committed
21

KingRainbow44's avatar
KingRainbow44 committed
22
23
import javax.annotation.Nullable;

24
25
import static emu.grasscutter.utils.Language.translate;

KingRainbow44's avatar
KingRainbow44 committed
26
27
@SuppressWarnings({"UnusedReturnValue", "BooleanMethodIsAlwaysInverted"})
public final class Utils {
Melledy's avatar
Melledy committed
28
29
30
31
32
33
34
35
36
37
	public static final Random random = new Random();
	
	public static int randomRange(int min, int max) {
		return random.nextInt(max - min + 1) + min;
	}
	
	public static float randomFloatRange(float min, float max) {
		return random.nextFloat() * (max - min) + min;
	}
	
Melledy's avatar
Melledy committed
38
39
40
41
42
43
44
45
46
47
48
49
50
	public static double getDist(Position pos1, Position pos2) {
		double xs = pos1.getX() - pos2.getX();
		xs = xs * xs;
		
		double ys = pos1.getY() - pos2.getY();
		ys = ys * ys;

		double zs = pos1.getZ() - pos2.getZ();
		zs = zs * zs;

		return Math.sqrt(xs + zs + ys);
	}

Melledy's avatar
Melledy committed
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
	public static int getCurrentSeconds() {
		return (int) (System.currentTimeMillis() / 1000.0);
	}
	
	public static String lowerCaseFirstChar(String s) {
		StringBuilder sb = new StringBuilder(s);
		sb.setCharAt(0, Character.toLowerCase(sb.charAt(0)));
		return sb.toString();
	}
	
	public static String toString(InputStream inputStream) throws IOException {
		BufferedInputStream bis = new BufferedInputStream(inputStream);
		ByteArrayOutputStream buf = new ByteArrayOutputStream();
		for (int result = bis.read(); result != -1; result = bis.read()) {
		    buf.write((byte) result);
		}
		return buf.toString();
	}
	
	public static void logByteArray(byte[] array) {
		ByteBuf b = Unpooled.wrappedBuffer(array);
		Grasscutter.getLogger().info("\n" + ByteBufUtil.prettyHexDump(b));
		b.release();
	}
	
	private static final char[] HEX_ARRAY = "0123456789abcdef".toCharArray();
	public static String bytesToHex(byte[] bytes) {
Melledy's avatar
Melledy committed
78
		if (bytes == null) return "";
Melledy's avatar
Melledy committed
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
	    char[] hexChars = new char[bytes.length * 2];
	    for (int j = 0; j < bytes.length; j++) {
	        int v = bytes[j] & 0xFF;
	        hexChars[j * 2] = HEX_ARRAY[v >>> 4];
	        hexChars[j * 2 + 1] = HEX_ARRAY[v & 0x0F];
	    }
	    return new String(hexChars);
	}
	
	public static String bytesToHex(ByteBuf buf) {
	    return bytesToHex(byteBufToArray(buf));
	}
	
	public static byte[] byteBufToArray(ByteBuf buf) {
		byte[] bytes = new byte[buf.capacity()];
		buf.getBytes(0, bytes);
		return bytes;
	}
	
	public static int abilityHash(String str) {
		int v7 = 0;
		int v8 = 0;
	    while (v8 < str.length()) {
	    	v7 = str.charAt(v8++) + 131 * v7;
	    }
	    return v7;
	}
KingRainbow44's avatar
KingRainbow44 committed
106

Melledy's avatar
Melledy committed
107
108
109
110
111
112
113
114
115
	/**
	 * Creates a string with the path to a file.
	 * @param path The path to the file.
	 * @return A path using the operating system's file separator.
	 */
	public static String toFilePath(String path) {
		return path.replace("/", File.separator);
	}

KingRainbow44's avatar
KingRainbow44 committed
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
	/**
	 * Checks if a file exists on the file system.
	 * @param path The path to the file.
	 * @return True if the file exists, false otherwise.
	 */
	public static boolean fileExists(String path) {
		return new File(path).exists();
	}

	/**
	 * Creates a folder on the file system.
	 * @param path The path to the folder.
	 * @return True if the folder was created, false otherwise.
	 */
	public static boolean createFolder(String path) {
		return new File(path).mkdirs();
	}

	/**
	 * Copies a file from the archive's resources to the file system.
	 * @param resource The path to the resource.
	 * @param destination The path to copy the resource to.
	 * @return True if the file was copied, false otherwise.
	 */
	public static boolean copyFromResources(String resource, String destination) {
		try (InputStream stream = Grasscutter.class.getResourceAsStream(resource)) {
			if(stream == null) {
				Grasscutter.getLogger().warn("Could not find resource: " + resource);
				return false;
			}

			Files.copy(stream, new File(destination).toPath(), StandardCopyOption.REPLACE_EXISTING);
			return true;
		} catch (Exception e) {
			Grasscutter.getLogger().warn("Unable to copy resource " + resource + " to " + destination, e);
			return false;
		}
	}

Melledy's avatar
Melledy committed
155
156
157
158
159
160
161
162
163
164
	/**
	 * Get object with null fallback.
	 * @param nonNull The object to return if not null.
	 * @param fallback The object to return if null.
	 * @return One of the two provided objects.
	 */
	public static <T> T requireNonNullElseGet(T nonNull, T fallback) {
		return nonNull != null ? nonNull : fallback;
	}

KingRainbow44's avatar
KingRainbow44 committed
165
166
167
168
169
170
171
172
173
	/**
	 * Logs an object to the console.
	 * @param object The object to log.
	 */
	public static void logObject(Object object) {
		String asJson = Grasscutter.getGsonFactory().toJson(object);
		Grasscutter.getLogger().info(asJson);
	}
	
KingRainbow44's avatar
KingRainbow44 committed
174
175
176
177
	/**
	 * Checks for required files and folders before startup.
	 */
	public static void startupCheck() {
178
		Configuration config = Grasscutter.getConfig();
KingRainbow44's avatar
KingRainbow44 committed
179
180
181
		Logger logger = Grasscutter.getLogger();
		boolean exit = false;

182
183
		String resourcesFolder = config.folderStructure.resources;
		String dataFolder = config.folderStructure.data;
KingRainbow44's avatar
KingRainbow44 committed
184
185
186

		// Check for resources folder.
		if(!fileExists(resourcesFolder)) {
187
188
			logger.info(translate("messages.status.create_resources"));
			logger.info(translate("messages.status.resources_error"));
KingRainbow44's avatar
KingRainbow44 committed
189
190
191
			createFolder(resourcesFolder); exit = true;
		}

192
		// Check for BinOutput + ExcelBinOutput.
KingRainbow44's avatar
KingRainbow44 committed
193
194
		if(!fileExists(resourcesFolder + "BinOutput") ||
				!fileExists(resourcesFolder + "ExcelBinOutput")) {
195
			logger.info(translate("messages.status.resources_error"));
KingRainbow44's avatar
KingRainbow44 committed
196
197
198
199
200
201
202
203
204
			exit = true;
		}

		// Check for game data.
		if(!fileExists(dataFolder))
			createFolder(dataFolder);

		if(exit) System.exit(1);
	}
Kengxxiao's avatar
Kengxxiao committed
205

206
207
208
209
210
	/**
	 * Gets the timestamp of the next hour.
	 * @return The timestamp in UNIX seconds.
	 */
	public static int getNextTimestampOfThisHour(int hour, String timeZone, int param) {
Kengxxiao's avatar
Kengxxiao committed
211
212
213
214
215
216
217
218
		ZonedDateTime zonedDateTime = ZonedDateTime.now(ZoneId.of(timeZone));
		for (int i = 0; i < param; i ++){
			if (zonedDateTime.getHour() < hour) {
				zonedDateTime = zonedDateTime.withHour(hour).withMinute(0).withSecond(0);
			} else {
				zonedDateTime = zonedDateTime.plusDays(1).withHour(hour).withMinute(0).withSecond(0);
			}
		}
219
		return (int) zonedDateTime.toInstant().atZone(ZoneOffset.UTC).toEpochSecond();
Kengxxiao's avatar
Kengxxiao committed
220
221
	}

222
223
224
225
226
	/**
	 * Gets the timestamp of the next hour in a week.
	 * @return The timestamp in UNIX seconds.
	 */
	public static int getNextTimestampOfThisHourInNextWeek(int hour, String timeZone, int param) {
Kengxxiao's avatar
Kengxxiao committed
227
228
229
230
231
232
233
234
		ZonedDateTime zonedDateTime = ZonedDateTime.now(ZoneId.of(timeZone));
		for (int i = 0; i < param; i++) {
			if (zonedDateTime.getDayOfWeek() == DayOfWeek.MONDAY && zonedDateTime.getHour() < hour) {
				zonedDateTime = ZonedDateTime.now(ZoneId.of(timeZone)).withHour(hour).withMinute(0).withSecond(0);
			} else {
				zonedDateTime = zonedDateTime.with(TemporalAdjusters.next(DayOfWeek.MONDAY)).withHour(hour).withMinute(0).withSecond(0);
			}
		}
235
		return (int) zonedDateTime.toInstant().atZone(ZoneOffset.UTC).toEpochSecond();
Kengxxiao's avatar
Kengxxiao committed
236
237
	}

238
239
240
241
242
	/**
	 * Gets the timestamp of the next hour in a month.
	 * @return The timestamp in UNIX seconds.
	 */
	public static int getNextTimestampOfThisHourInNextMonth(int hour, String timeZone, int param) {
Kengxxiao's avatar
Kengxxiao committed
243
244
245
246
247
248
249
250
		ZonedDateTime zonedDateTime = ZonedDateTime.now(ZoneId.of(timeZone));
		for (int i = 0; i < param; i++) {
			if (zonedDateTime.getDayOfMonth() == 1 && zonedDateTime.getHour() < hour) {
				zonedDateTime = ZonedDateTime.now(ZoneId.of(timeZone)).withHour(hour).withMinute(0).withSecond(0);
			} else {
				zonedDateTime = zonedDateTime.with(TemporalAdjusters.firstDayOfNextMonth()).withHour(hour).withMinute(0).withSecond(0);
			}
		}
251
252
253
254
255
256
257
258
		return (int) zonedDateTime.toInstant().atZone(ZoneOffset.UTC).toEpochSecond();
	}

	/**
	 * Retrieves a string from an input stream.
	 * @param stream The input stream.
	 * @return The string.
	 */
KingRainbow44's avatar
KingRainbow44 committed
259
260
261
	public static String readFromInputStream(@Nullable InputStream stream) {
		if(stream == null) return "empty";
		
262
		StringBuilder stringBuilder = new StringBuilder();
263
		try (BufferedReader reader = new BufferedReader(new InputStreamReader(stream, StandardCharsets.UTF_8))) {
264
265
266
267
268
			String line; while ((line = reader.readLine()) != null) {
				stringBuilder.append(line);
			} stream.close();
		} catch (IOException e) {
			Grasscutter.getLogger().warn("Failed to read from input stream.");
KingRainbow44's avatar
KingRainbow44 committed
269
270
		} catch (NullPointerException ignored) {
			return "empty";
271
		} return stringBuilder.toString();
Kengxxiao's avatar
Kengxxiao committed
272
	}
KingRainbow44's avatar
KingRainbow44 committed
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309

	/**
	 * Switch properties from upper case to lower case?
	 */
	public static Map<String, Object> switchPropertiesUpperLowerCase(Map<String, Object> objMap, Class<?> cls) {
		Map<String, Object> map = new HashMap<>(objMap.size());
		for (String key : objMap.keySet()) {
			try {
				char c = key.charAt(0);
				if (c >= 'a' && c <= 'z') {
					try {
						cls.getDeclaredField(key);
						map.put(key, objMap.get(key));
					} catch (NoSuchFieldException e) {
						String s1 = String.valueOf(c).toUpperCase();
						String after = key.length() > 1 ? s1 + key.substring(1) : s1;
						cls.getDeclaredField(after);
						map.put(after, objMap.get(key));
					}
				} else if (c >= 'A' && c <= 'Z') {
					try {
						cls.getDeclaredField(key);
						map.put(key, objMap.get(key));
					} catch (NoSuchFieldException e) {
						String s1 = String.valueOf(c).toLowerCase();
						String after = key.length() > 1 ? s1 + key.substring(1) : s1;
						cls.getDeclaredField(after);
						map.put(after, objMap.get(key));
					}
				}
			} catch (NoSuchFieldException e) {
				map.put(key, objMap.get(key));
			}
		}

		return map;
	}
Secretboy-SMR's avatar
Secretboy-SMR committed
310
311
312
313
314
315
316
317

	/**
	 * get language code from Locale
	 */
    public static String getLanguageCode(Locale locale) {
        return String.format("%s-%s", locale.getLanguage(), locale.getCountry());
    }

Melledy's avatar
Melledy committed
318
}