Skip to content

Commit 33f3a11

Browse files
committed
More compilation issues
1 parent 98fac01 commit 33f3a11

File tree

12 files changed

+87
-140
lines changed

12 files changed

+87
-140
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package org.bukkit.block.data.type;
2+
3+
import org.bukkit.block.data.Directional;
4+
5+
/**
6+
* 'flower_amount' represents the number of flowers.
7+
*/
8+
public interface FlowerBed extends Directional {
9+
10+
/**
11+
* Gets the value of the 'flower_amount' property.
12+
*
13+
* @return the 'flower_amount' value
14+
*/
15+
int getFlowerAmount();
16+
17+
/**
18+
* Sets the value of the 'flower_amount' property.
19+
*
20+
* @param flower_amount the new 'flower_amount' value
21+
*/
22+
void setFlowerAmount(int flower_amount);
23+
24+
// Paper start
25+
/**
26+
* Gets the minimum allowed value of the 'flower_amount' property.
27+
*
28+
* @return the minimum 'flower_amount' value
29+
*/
30+
int getMinimumFlowerAmount();
31+
// Paper end
32+
33+
/**
34+
* Gets the maximum allowed value of the 'flower_amount' property.
35+
*
36+
* @return the maximum 'flower_amount' value
37+
*/
38+
int getMaximumFlowerAmount();
39+
}
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,11 @@
11
package org.bukkit.block.data.type;
22

3-
import org.bukkit.block.data.Directional;
4-
53
/**
64
* 'flower_amount' represents the number of petals.
5+
*
6+
* @deprecated incorrect name as multiple types of flower collection blocks exist now. Use {@link FlowerBed}
77
*/
8-
public interface PinkPetals extends Directional {
9-
10-
/**
11-
* Gets the value of the 'flower_amount' property.
12-
*
13-
* @return the 'flower_amount' value
14-
*/
15-
int getFlowerAmount();
16-
17-
/**
18-
* Sets the value of the 'flower_amount' property.
19-
*
20-
* @param flower_amount the new 'flower_amount' value
21-
*/
22-
void setFlowerAmount(int flower_amount);
23-
24-
// Paper start
25-
/**
26-
* Gets the minimum allowed value of the 'flower_amount' property.
27-
*
28-
* @return the minimum 'flower_amount' value
29-
*/
30-
int getMinimumFlowerAmount();
31-
// Paper end
8+
@Deprecated(forRemoval = true, since = "1.21.5")
9+
public interface PinkPetals extends FlowerBed {
3210

33-
/**
34-
* Gets the maximum allowed value of the 'flower_amount' property.
35-
*
36-
* @return the maximum 'flower_amount' value
37-
*/
38-
int getMaximumFlowerAmount();
3911
}

paper-api/src/main/java/org/bukkit/entity/Cow.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Represents a Cow.
1111
*/
1212
@NullMarked
13-
public interface Cow extends Animals {
13+
public interface Cow extends AbstractCow {
1414

1515
/**
1616
* Gets the variant of this cow.

paper-server/src/main/java/com/destroystokyo/paper/entity/ai/MobGoalHelper.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public class MobGoalHelper {
204204
bukkitMap.put(net.minecraft.world.entity.raid.Raider.class, Raider.class);
205205
bukkitMap.put(net.minecraft.world.entity.monster.Ravager.class, Ravager.class);
206206
bukkitMap.put(net.minecraft.world.entity.animal.Salmon.class, Salmon.class);
207-
bukkitMap.put(net.minecraft.world.entity.animal.Sheep.class, Sheep.class);
207+
bukkitMap.put(net.minecraft.world.entity.animal.sheep.Sheep.class, Sheep.class);
208208
bukkitMap.put(net.minecraft.world.entity.monster.Shulker.class, Shulker.class);
209209
bukkitMap.put(net.minecraft.world.entity.monster.Silverfish.class, Silverfish.class);
210210
bukkitMap.put(net.minecraft.world.entity.monster.Skeleton.class, Skeleton.class);
@@ -226,7 +226,7 @@ public class MobGoalHelper {
226226
bukkitMap.put(WaterAnimal.class, WaterMob.class);
227227
bukkitMap.put(net.minecraft.world.entity.monster.Witch.class, Witch.class);
228228
bukkitMap.put(WitherBoss.class, Wither.class);
229-
bukkitMap.put(net.minecraft.world.entity.animal.Wolf.class, Wolf.class);
229+
bukkitMap.put(net.minecraft.world.entity.animal.wolf.Wolf.class, Wolf.class);
230230
bukkitMap.put(net.minecraft.world.entity.monster.Zombie.class, Zombie.class);
231231
bukkitMap.put(net.minecraft.world.entity.monster.Husk.class, Husk.class);
232232
bukkitMap.put(net.minecraft.world.entity.monster.ZombieVillager.class, ZombieVillager.class);

paper-server/src/main/java/org/bukkit/craftbukkit/block/data/CraftBlockData.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -515,9 +515,8 @@ protected static int getMax(IntegerProperty state) {
515515
register(net.minecraft.world.level.block.MangroveRootsBlock.class, org.bukkit.craftbukkit.block.impl.CraftMangroveRoots::new);
516516
register(net.minecraft.world.level.block.MossyCarpetBlock.class, org.bukkit.craftbukkit.block.impl.CraftMossyCarpet::new);
517517
register(net.minecraft.world.level.block.MultifaceBlock.class, org.bukkit.craftbukkit.block.impl.CraftMultiface::new);
518-
register(net.minecraft.world.level.block.ParticleLeavesBlock.class, org.bukkit.craftbukkit.block.impl.CraftParticleLeaves::new);
519518
register(net.minecraft.world.level.block.PiglinWallSkullBlock.class, org.bukkit.craftbukkit.block.impl.CraftPiglinWallSkull::new);
520-
register(net.minecraft.world.level.block.PinkPetalsBlock.class, org.bukkit.craftbukkit.block.impl.CraftPinkPetals::new);
519+
register(net.minecraft.world.level.block.FlowerBedBlock.class, org.bukkit.craftbukkit.block.impl.CraftFlowerBed::new);
521520
register(net.minecraft.world.level.block.PitcherCropBlock.class, org.bukkit.craftbukkit.block.impl.CraftPitcherCrop::new);
522521
register(net.minecraft.world.level.block.PointedDripstoneBlock.class, org.bukkit.craftbukkit.block.impl.CraftPointedDripstone::new);
523522
register(net.minecraft.world.level.block.SculkCatalystBlock.class, org.bukkit.craftbukkit.block.impl.CraftSculkCatalyst::new);

paper-server/src/main/java/org/bukkit/craftbukkit/block/impl/CraftPinkPetals.java paper-server/src/main/java/org/bukkit/craftbukkit/block/impl/CraftFlowerBed.java

+14-12
Original file line numberDiff line numberDiff line change
@@ -3,58 +3,60 @@
33
*/
44
package org.bukkit.craftbukkit.block.impl;
55

6-
public final class CraftPinkPetals extends org.bukkit.craftbukkit.block.data.CraftBlockData implements org.bukkit.block.data.type.PinkPetals, org.bukkit.block.data.Directional {
6+
import org.bukkit.block.data.type.PinkPetals;
77

8-
public CraftPinkPetals() {
8+
public final class CraftFlowerBed extends org.bukkit.craftbukkit.block.data.CraftBlockData implements org.bukkit.block.data.type.FlowerBed, PinkPetals, org.bukkit.block.data.Directional {
9+
10+
public CraftFlowerBed() {
911
super();
1012
}
1113

12-
public CraftPinkPetals(net.minecraft.world.level.block.state.BlockState state) {
14+
public CraftFlowerBed(net.minecraft.world.level.block.state.BlockState state) {
1315
super(state);
1416
}
1517

1618
// org.bukkit.craftbukkit.block.data.type.CraftPinkPetals
1719

18-
private static final net.minecraft.world.level.block.state.properties.IntegerProperty FLOWER_AMOUNT = getInteger(net.minecraft.world.level.block.PinkPetalsBlock.class, "flower_amount");
20+
private static final net.minecraft.world.level.block.state.properties.IntegerProperty FLOWER_AMOUNT = getInteger(net.minecraft.world.level.block.FlowerBedBlock.class, "flower_amount");
1921

2022
@Override
2123
public int getFlowerAmount() {
22-
return this.get(CraftPinkPetals.FLOWER_AMOUNT);
24+
return this.get(CraftFlowerBed.FLOWER_AMOUNT);
2325
}
2426

2527
@Override
2628
public void setFlowerAmount(int flower_amount) {
27-
this.set(CraftPinkPetals.FLOWER_AMOUNT, flower_amount);
29+
this.set(CraftFlowerBed.FLOWER_AMOUNT, flower_amount);
2830
}
2931

3032
// Paper start
3133
@Override
3234
public int getMinimumFlowerAmount() {
33-
return getMin(CraftPinkPetals.FLOWER_AMOUNT);
35+
return getMin(CraftFlowerBed.FLOWER_AMOUNT);
3436
}
3537
// Paper end
3638

3739
@Override
3840
public int getMaximumFlowerAmount() {
39-
return getMax(CraftPinkPetals.FLOWER_AMOUNT);
41+
return getMax(CraftFlowerBed.FLOWER_AMOUNT);
4042
}
4143

4244
// org.bukkit.craftbukkit.block.data.CraftDirectional
4345

44-
private static final net.minecraft.world.level.block.state.properties.EnumProperty<?> FACING = getEnum(net.minecraft.world.level.block.PinkPetalsBlock.class, "facing");
46+
private static final net.minecraft.world.level.block.state.properties.EnumProperty<?> FACING = getEnum(net.minecraft.world.level.block.FlowerBedBlock.class, "facing");
4547

4648
@Override
4749
public org.bukkit.block.BlockFace getFacing() {
48-
return this.get(CraftPinkPetals.FACING, org.bukkit.block.BlockFace.class);
50+
return this.get(CraftFlowerBed.FACING, org.bukkit.block.BlockFace.class);
4951
}
5052

5153
@Override
5254
public void setFacing(org.bukkit.block.BlockFace facing) {
53-
this.set(CraftPinkPetals.FACING, facing);
55+
this.set(CraftFlowerBed.FACING, facing);
5456
}
5557

5658
@Override
5759
public java.util.Set<org.bukkit.block.BlockFace> getFaces() {
58-
return this.getValues(CraftPinkPetals.FACING, org.bukkit.block.BlockFace.class);
60+
return this.getValues(CraftFlowerBed.FACING, org.bukkit.block.BlockFace.class);
5961
}
6062
}

paper-server/src/main/java/org/bukkit/craftbukkit/block/impl/CraftParticleLeaves.java

-66
This file was deleted.

paper-server/src/main/java/org/bukkit/craftbukkit/inventory/CraftEntityEquipment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,6 @@ private float getDropChance(net.minecraft.world.entity.EquipmentSlot slot) {
267267
return 1;
268268
}
269269

270-
return ((Mob) this.entity.getHandle()).getEquipmentDropChance(slot); // Paper - use getter on Mob
270+
return ((Mob) this.entity.getHandle()).getDropChances().byEquipment(slot); // Paper - use getter on Mob
271271
}
272272
}

paper-server/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventoryPlayer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public Inventory getInventory() {
2323

2424
@Override
2525
public ItemStack[] getStorageContents() {
26-
return this.asCraftMirror(this.getInventory().items);
26+
return this.asCraftMirror(this.getInventory().getNonEquipmentItems());
2727
}
2828

2929
@Override

paper-server/src/main/java/org/bukkit/craftbukkit/inventory/CraftItemStack.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ private net.minecraft.nbt.CompoundTag getPdcTag() {
535535
final net.minecraft.world.item.component.CustomData customData = this.handle.getOrDefault(DataComponents.CUSTOM_DATA, net.minecraft.world.item.component.CustomData.EMPTY);
536536
// getUnsafe is OK here because we are only ever *reading* the data so immutability is preserved
537537
//noinspection deprecation
538-
return customData.getUnsafe().getCompound(PDC_CUSTOM_DATA_KEY);
538+
return customData.getUnsafe().getCompoundOrEmpty(PDC_CUSTOM_DATA_KEY);
539539
}
540540

541541
private static final org.bukkit.craftbukkit.persistence.CraftPersistentDataTypeRegistry REGISTRY = new org.bukkit.craftbukkit.persistence.CraftPersistentDataTypeRegistry();
@@ -563,7 +563,7 @@ public boolean editPersistentDataContainer(final Consumer<PersistentDataContaine
563563
final CraftPersistentDataContainer container = new CraftPersistentDataContainer(REGISTRY);
564564
CustomData customData = this.handle.getOrDefault(DataComponents.CUSTOM_DATA, CustomData.EMPTY);
565565
//noinspection deprecation // we copy only the pdc tag
566-
final CompoundTag pdcTag = customData.getUnsafe().getCompound(PDC_CUSTOM_DATA_KEY).copy();
566+
final CompoundTag pdcTag = customData.getUnsafe().getCompoundOrEmpty(PDC_CUSTOM_DATA_KEY).copy();
567567
container.putAll(pdcTag);
568568
consumer.accept(container);
569569

paper-server/src/main/java/org/bukkit/craftbukkit/util/CraftNBTTagConfigSerializer.java

+16-10
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
import net.minecraft.nbt.DoubleTag;
1010
import net.minecraft.nbt.IntTag;
1111
import net.minecraft.nbt.ListTag;
12+
import net.minecraft.nbt.NbtOps;
13+
import net.minecraft.nbt.SnbtGrammar;
1214
import net.minecraft.nbt.SnbtPrinterTagVisitor;
1315
import net.minecraft.nbt.StringTag;
1416
import net.minecraft.nbt.Tag;
@@ -20,7 +22,7 @@ public class CraftNBTTagConfigSerializer {
2022
private static final Pattern ARRAY = Pattern.compile("^\\[.*]");
2123
private static final Pattern INTEGER = Pattern.compile("[-+]?(?:0|[1-9][0-9]*)i", Pattern.CASE_INSENSITIVE); // Paper - fix regex
2224
private static final Pattern DOUBLE = Pattern.compile("[-+]?(?:[0-9]+[.]?|[0-9]*[.][0-9]+)(?:e[-+]?[0-9]+)?d", Pattern.CASE_INSENSITIVE);
23-
private static final TagParser MOJANGSON_PARSER = new TagParser(new StringReader(""));
25+
private static final TagParser<Tag> MOJANGSON_PARSER = TagParser.create(NbtOps.INSTANCE);
2426

2527
public static String serialize(@NotNull final Tag base) {
2628
final SnbtPrinterTagVisitor snbtVisitor = new SnbtPrinterTagVisitor();
@@ -31,7 +33,7 @@ public static Tag deserialize(final Object object) {
3133
// The new logic expects the top level object to be a single string, holding the entire nbt tag as SNBT.
3234
if (object instanceof final String snbtString) {
3335
try {
34-
return TagParser.parseTag(snbtString);
36+
return TagParser.parseCompoundFully(snbtString);
3537
} catch (final CommandSyntaxException e) {
3638
throw new RuntimeException("Failed to deserialise nbt", e);
3739
}
@@ -65,7 +67,7 @@ private static Tag internalLegacyDeserialization(@NotNull final Object object) {
6567

6668
if (CraftNBTTagConfigSerializer.ARRAY.matcher(string).matches()) {
6769
try {
68-
return new TagParser(new StringReader(string)).readArrayTag();
70+
return MOJANGSON_PARSER.parseFully(string);
6971
} catch (CommandSyntaxException e) {
7072
throw new RuntimeException("Could not deserialize found list ", e);
7173
}
@@ -74,14 +76,18 @@ private static Tag internalLegacyDeserialization(@NotNull final Object object) {
7476
} else if (CraftNBTTagConfigSerializer.DOUBLE.matcher(string).matches()) {
7577
return DoubleTag.valueOf(Double.parseDouble(string.substring(0, string.length() - 1)));
7678
} else {
77-
Tag nbtBase = CraftNBTTagConfigSerializer.MOJANGSON_PARSER.type(string);
79+
try {
80+
Tag nbtBase = CraftNBTTagConfigSerializer.MOJANGSON_PARSER.parseFully(string);
7881

79-
if (nbtBase instanceof IntTag) { // If this returns an integer, it did not use our method from above
80-
return StringTag.valueOf(nbtBase.getAsString()); // It then is a string that was falsely read as an int
81-
} else if (nbtBase instanceof DoubleTag) {
82-
return StringTag.valueOf(String.valueOf(((DoubleTag) nbtBase).getAsDouble())); // Doubles add "d" at the end
83-
} else {
84-
return nbtBase;
82+
if (nbtBase instanceof IntTag) { // If this returns an integer, it did not use our method from above
83+
return StringTag.valueOf(nbtBase.toString()); // It then is a string that was falsely read as an int
84+
} else if (nbtBase instanceof DoubleTag) {
85+
return StringTag.valueOf(String.valueOf(((DoubleTag) nbtBase).doubleValue())); // Doubles add "d" at the end
86+
} else {
87+
return nbtBase;
88+
}
89+
} catch (final CommandSyntaxException commandSyntaxException) {
90+
throw new RuntimeException("Could not deserialize found primitive ", commandSyntaxException);
8591
}
8692
}
8793
}

paper-server/src/main/java/org/bukkit/craftbukkit/util/DelegatedGeneratorAccess.java

+6-11
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ public RandomSource getRandom() {
183183
}
184184

185185
@Override
186-
public void blockUpdated(BlockPos pos, Block block) {
187-
this.handle.blockUpdated(pos, block);
186+
public void updateNeighborsAt(BlockPos pos, Block block) {
187+
this.handle.updateNeighborsAt(pos, block);
188188
}
189189

190190
@Override
@@ -193,13 +193,8 @@ public void neighborShapeChanged(Direction direction, BlockPos pos, BlockPos nei
193193
}
194194

195195
@Override
196-
public void playSound(Player except, BlockPos pos, SoundEvent sound, SoundSource category) {
197-
this.handle.playSound(except, pos, sound, category);
198-
}
199-
200-
@Override
201-
public void playSound(Player source, BlockPos pos, SoundEvent sound, SoundSource category, float volume, float pitch) {
202-
this.handle.playSound(source, pos, sound, category, volume, pitch);
196+
public void playSound(@Nullable final Entity entity, final BlockPos pos, final SoundEvent sound, final SoundSource source, final float volume, final float pitch) {
197+
this.handle.playSound(entity, pos, sound, source, volume, pitch);
203198
}
204199

205200
@Override
@@ -208,8 +203,8 @@ public void addParticle(ParticleOptions parameters, double x, double y, double z
208203
}
209204

210205
@Override
211-
public void levelEvent(Player player, int eventId, BlockPos pos, int data) {
212-
this.handle.levelEvent(player, eventId, pos, data);
206+
public void levelEvent(Entity entity, int eventId, BlockPos pos, int data) {
207+
this.handle.levelEvent(entity, eventId, pos, data);
213208
}
214209

215210
@Override

0 commit comments

Comments
 (0)