mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 07:06:44 +01:00
Clean and fix up the fromAny method in Legacy Mappings
it never checked for an id data pair or singular id (5, 5:2 etc) which is sort of the whole point. Fixes #2296
This commit is contained in:
parent
3a761b3b5f
commit
c9f38430c6
@ -663,7 +663,6 @@ public final class BukkitLegacyMappings extends LegacyMappings {
|
|||||||
new LegacyBlock(2266, "record_11", "music_disc_11"),
|
new LegacyBlock(2266, "record_11", "music_disc_11"),
|
||||||
new LegacyBlock(2267, "record_12", "music_disc_wait")};
|
new LegacyBlock(2267, "record_12", "music_disc_wait")};
|
||||||
|
|
||||||
// private static final Map<Integer, PlotBlock> LEGACY_ID_TO_STRING_PLOT_BLOCK = new HashMap<>();
|
|
||||||
private static final Map<IdDataPair, PlotBlock> LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK =
|
private static final Map<IdDataPair, PlotBlock> LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK =
|
||||||
new HashMap<>();
|
new HashMap<>();
|
||||||
private static final Map<String, PlotBlock> NEW_STRING_TO_LEGACY_PLOT_BLOCK = new HashMap<>();
|
private static final Map<String, PlotBlock> NEW_STRING_TO_LEGACY_PLOT_BLOCK = new HashMap<>();
|
||||||
@ -686,13 +685,6 @@ public final class BukkitLegacyMappings extends LegacyMappings {
|
|||||||
|
|
||||||
private void addAll(@NonNull final Collection<LegacyBlock> blocks) {
|
private void addAll(@NonNull final Collection<LegacyBlock> blocks) {
|
||||||
for (final LegacyBlock legacyBlock : blocks) {
|
for (final LegacyBlock legacyBlock : blocks) {
|
||||||
// LEGACY_ID_TO_STRING_PLOT_BLOCK
|
|
||||||
// .put(legacyBlock.getNumericalId(), legacyBlock.toStringPlotBlock());
|
|
||||||
/*if (legacyBlock.getDataValue() != 0) {
|
|
||||||
LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK
|
|
||||||
.put(new IdDataPair(legacyBlock.getNumericalId(), legacyBlock.getDataValue()),
|
|
||||||
legacyBlock.toStringPlotBlock());
|
|
||||||
} */
|
|
||||||
LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK
|
LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK
|
||||||
.put(new IdDataPair(legacyBlock.getNumericalId(), legacyBlock.getDataValue()),
|
.put(new IdDataPair(legacyBlock.getNumericalId(), legacyBlock.getDataValue()),
|
||||||
legacyBlock.toStringPlotBlock());
|
legacyBlock.toStringPlotBlock());
|
||||||
@ -740,19 +732,29 @@ public final class BukkitLegacyMappings extends LegacyMappings {
|
|||||||
}
|
}
|
||||||
String workingString = string;
|
String workingString = string;
|
||||||
String[] parts = null;
|
String[] parts = null;
|
||||||
|
IdDataPair idDataPair = null;
|
||||||
if (string.contains(":")) {
|
if (string.contains(":")) {
|
||||||
parts = string.split(":");
|
parts = string.split(":");
|
||||||
if (parts.length > 1) {
|
if (parts.length > 1) {
|
||||||
if (parts[0].equalsIgnoreCase("minecraft")) {
|
if (parts[0].equalsIgnoreCase("minecraft")) {
|
||||||
workingString = parts[1];
|
workingString = parts[1];
|
||||||
|
} else {
|
||||||
|
if (parts[0].matches("^\\d+$")) {
|
||||||
|
idDataPair =
|
||||||
|
new IdDataPair(Integer.parseInt(parts[0]), Integer.parseInt(parts[0]));
|
||||||
} else {
|
} else {
|
||||||
workingString = parts[0];
|
workingString = parts[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if (string.matches("^\\d+$")) {
|
||||||
|
idDataPair = new IdDataPair(Integer.parseInt(parts[0]), 0);
|
||||||
|
}
|
||||||
PlotBlock plotBlock;
|
PlotBlock plotBlock;
|
||||||
if (NEW_STRING_TO_LEGACY_PLOT_BLOCK.keySet().contains(workingString.toLowerCase())) {
|
if (NEW_STRING_TO_LEGACY_PLOT_BLOCK.keySet().contains(workingString.toLowerCase())) {
|
||||||
return PlotBlock.get(workingString);
|
return PlotBlock.get(workingString);
|
||||||
|
} else if ((plotBlock = fromLegacyToString(idDataPair)) != null) {
|
||||||
|
return plotBlock;
|
||||||
} else if ((plotBlock = fromLegacyToString(workingString)) != null) {
|
} else if ((plotBlock = fromLegacyToString(workingString)) != null) {
|
||||||
return plotBlock;
|
return plotBlock;
|
||||||
} else {
|
} else {
|
||||||
@ -774,6 +776,13 @@ public final class BukkitLegacyMappings extends LegacyMappings {
|
|||||||
return LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK.get(new IdDataPair(id, data));
|
return LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK.get(new IdDataPair(id, data));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public PlotBlock fromLegacyToString(IdDataPair idDataPair) {
|
||||||
|
if (idDataPair == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return LEGACY_ID_AND_DATA_TO_STRING_PLOT_BLOCK.get(idDataPair);
|
||||||
|
}
|
||||||
|
|
||||||
public PlotBlock fromLegacyToString(final String id) {
|
public PlotBlock fromLegacyToString(final String id) {
|
||||||
return OLD_STRING_TO_STRING_PLOT_BLOCK.get(id);
|
return OLD_STRING_TO_STRING_PLOT_BLOCK.get(id);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user