ViaVersion/common/src/main/java/com/viaversion/viaversion/protocols/protocol1_13to1_12_2/data/BlockIdData.java

75 lines
3.3 KiB
Java
Raw Normal View History

/*
* This file is part of ViaVersion - https://github.com/ViaVersion/ViaVersion
2024-01-01 12:39:45 +01:00
* Copyright (C) 2016-2024 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.viaversion.viaversion.protocols.protocol1_13to1_12_2.data;
2018-12-15 12:13:05 +01:00
import com.google.common.collect.ObjectArrays;
import com.google.gson.reflect.TypeToken;
import com.viaversion.viaversion.api.Via;
import com.viaversion.viaversion.util.GsonUtil;
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;
2018-12-15 12:13:05 +01:00
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
2018-12-15 12:13:05 +01:00
public class BlockIdData {
public static final String[] PREVIOUS = new String[0];
2018-12-15 12:13:05 +01:00
public static Map<String, String[]> blockIdMapping;
public static Map<String, String[]> fallbackReverseMapping;
public static Int2ObjectMap<String> numberIdToString;
2018-12-15 12:13:05 +01:00
public static void init() {
InputStream stream = MappingData.class.getClassLoader()
.getResourceAsStream("assets/viaversion/data/blockIds1.12to1.13.json");
try (InputStreamReader reader = new InputStreamReader(stream)) {
Map<String, String[]> map = GsonUtil.getGson().fromJson(
2018-12-15 12:13:05 +01:00
reader,
new TypeToken<Map<String, String[]>>() {
}.getType());
blockIdMapping = new HashMap<>(map);
2018-12-15 12:13:05 +01:00
fallbackReverseMapping = new HashMap<>();
for (Map.Entry<String, String[]> entry : blockIdMapping.entrySet()) {
for (String val : entry.getValue()) {
String[] previous = fallbackReverseMapping.get(val);
if (previous == null) previous = PREVIOUS;
2018-12-15 12:13:05 +01:00
fallbackReverseMapping.put(val, ObjectArrays.concat(previous, entry.getKey()));
}
}
} catch (IOException e) {
Via.getPlatform().getLogger().log(Level.SEVERE, "Failed to load block id mappings (1.12.2 -> 1.13)", e);
2018-12-15 12:13:05 +01:00
}
InputStream blockS = MappingData.class.getClassLoader()
.getResourceAsStream("assets/viaversion/data/blockNumberToString1.12.json");
try (InputStreamReader blockR = new InputStreamReader(blockS)) {
Map<Integer, String> map = GsonUtil.getGson().fromJson(
blockR,
new TypeToken<Map<Integer, String>>() {
}.getType()
);
numberIdToString = new Int2ObjectOpenHashMap<>(map);
} catch (IOException e) {
Via.getPlatform().getLogger().log(Level.SEVERE, "Failed to load block number to string mappings (1.12.2)", e);
}
// Ignored
2018-12-15 12:13:05 +01:00
}
}