aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0938-Add-experience-points-API.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/0938-Add-experience-points-API.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/server/0938-Add-experience-points-API.patch')
-rw-r--r--patches/server/0938-Add-experience-points-API.patch73
1 files changed, 73 insertions, 0 deletions
diff --git a/patches/server/0938-Add-experience-points-API.patch b/patches/server/0938-Add-experience-points-API.patch
new file mode 100644
index 0000000000..f0ca6dbcf9
--- /dev/null
+++ b/patches/server/0938-Add-experience-points-API.patch
@@ -0,0 +1,73 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Lukas Planz <[email protected]>
+Date: Tue, 5 Sep 2023 20:34:20 +0200
+Subject: [PATCH] Add experience points API
+
+
+diff --git a/src/main/java/net/minecraft/world/entity/player/Player.java b/src/main/java/net/minecraft/world/entity/player/Player.java
+index 96fc37c871566ec41c42bd0e0f4a147044c239b4..10b62625323e24aa4e9e01e7c0c02d8c49f96a60 100644
+--- a/src/main/java/net/minecraft/world/entity/player/Player.java
++++ b/src/main/java/net/minecraft/world/entity/player/Player.java
+@@ -1855,7 +1855,7 @@ public abstract class Player extends LivingEntity {
+ }
+
+ public int getXpNeededForNextLevel() {
+- return this.experienceLevel >= 30 ? 112 + (this.experienceLevel - 30) * 9 : (this.experienceLevel >= 15 ? 37 + (this.experienceLevel - 15) * 5 : 7 + this.experienceLevel * 2);
++ return this.experienceLevel >= 30 ? 112 + (this.experienceLevel - 30) * 9 : (this.experienceLevel >= 15 ? 37 + (this.experienceLevel - 15) * 5 : 7 + this.experienceLevel * 2); // Paper - diff on change; calculateTotalExperiencePoints
+ }
+ // Paper start - send while respecting visibility
+ private static void sendSoundEffect(Player fromEntity, double x, double y, double z, SoundEvent soundEffect, SoundSource soundCategory, float volume, float pitch) {
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
+index e582f9bad4173886905e33861da2493981bc7f4d..b60db7df3cef33a4a6a9804104759ecaa3ae330a 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
+@@ -1902,6 +1902,49 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
+ Preconditions.checkArgument(exp >= 0, "Total experience points must not be negative (%s)", exp);
+ this.getHandle().totalExperience = exp;
+ }
++ // Paper start
++ @Override
++ public int calculateTotalExperiencePoints() {
++ return calculateTotalExperiencePoints(this.getLevel()) + Math.round(this.getExperiencePointsNeededForNextLevel() * getExp());
++ }
++
++ @Override
++ public void setExperienceLevelAndProgress(final int totalExperience) {
++ Preconditions.checkArgument(totalExperience >= 0, "Total experience points must not be negative (%s)", totalExperience);
++ int level = calculateLevelsForExperiencePoints(totalExperience);
++ int remainingPoints = totalExperience - calculateTotalExperiencePoints(level);
++
++ this.getHandle().experienceLevel = level;
++ this.getHandle().experienceProgress = (float) remainingPoints / this.getExperiencePointsNeededForNextLevel();
++ this.getHandle().lastSentExp = -1;
++ }
++
++ @Override
++ public int getExperiencePointsNeededForNextLevel() {
++ return this.getHandle().getXpNeededForNextLevel();
++ }
++
++ // See https://minecraft.wiki/w/Experience#Leveling_up for reference
++ private int calculateTotalExperiencePoints(int level) {
++ if (level <= 16) {
++ return (int) (Math.pow(level, 2) + 6 * level);
++ } else if (level <= 31) {
++ return (int) (2.5 * Math.pow(level, 2) - 40.5 * level + 360.0);
++ } else {
++ return (int) (4.5 * Math.pow(level, 2) - 162.5 * level + 2220.0);
++ }
++ }
++
++ private int calculateLevelsForExperiencePoints(int points) {
++ if (points <= 352) { // Level 0-16
++ return (int) Math.floor(Math.sqrt(points + 9) - 3);
++ } else if (points <= 1507) { // Level 17-31
++ return (int) Math.floor(8.1 + Math.sqrt(0.4 * (points - (7839.0 / 40.0))));
++ } else { // 32+
++ return (int) Math.floor((325.0 / 18.0) + Math.sqrt((2.0 / 9.0) * (points - (54215.0 / 72.0))));
++ }
++ }
++ // Paper end
+
+ @Override
+ public void sendExperienceChange(float progress) {