2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("TileEntityXPSolidifier.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.tile;
|
2015-07-13 23:44:33 +02:00
|
|
|
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.InitItems;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.ItemSolidifiedExperience;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.network.gui.IButtonReactor;
|
2015-07-13 23:44:33 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2015-07-15 00:17:21 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 23:42:42 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2015-07-13 23:44:33 +02:00
|
|
|
|
2015-10-18 15:28:06 +02:00
|
|
|
public class TileEntityXPSolidifier extends TileEntityInventoryBase implements IButtonReactor{
|
2015-07-15 00:17:21 +02:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
private static final Integer[] XP_MAP = new Integer[256];
|
|
|
|
|
|
|
|
static{
|
|
|
|
for(int i = 0; i < XP_MAP.length; i++){
|
|
|
|
XP_MAP[i] = getExperienceForLevelImpl(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-01 00:39:35 +02:00
|
|
|
private final int[] buttonAmounts = new int[]{1, 5, 10, 20, 30, 40, 50, 64, -999};
|
2015-07-15 00:17:21 +02:00
|
|
|
public short amount;
|
|
|
|
private short lastAmount;
|
2015-07-13 23:44:33 +02:00
|
|
|
|
|
|
|
public TileEntityXPSolidifier(){
|
2015-07-15 00:17:21 +02:00
|
|
|
super(1, "xpSolidifier");
|
2015-07-13 23:44:33 +02:00
|
|
|
}
|
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public static int getExperienceForLevel(int level){
|
|
|
|
if(level >= 0 && level < XP_MAP.length){
|
|
|
|
return XP_MAP[level];
|
|
|
|
}
|
|
|
|
if(level >= 21863){
|
|
|
|
return Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
return getExperienceForLevelImpl(level);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int getExperienceForLevelImpl(int level){
|
|
|
|
int res = 0;
|
|
|
|
for(int i = 0; i < level; i++){
|
|
|
|
res += getXpBarCapacity(i);
|
|
|
|
if(res < 0){
|
|
|
|
return Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getXpBarCapacity(int level){
|
|
|
|
if(level >= 30){
|
|
|
|
return 112+(level-30)*9;
|
|
|
|
}
|
|
|
|
else if(level >= 15){
|
|
|
|
return 37+(level-15)*5;
|
|
|
|
}
|
|
|
|
return 7+level*2;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getLevelForExperience(int experience){
|
|
|
|
for(int i = 0; i < XP_MAP.length; i++){
|
|
|
|
if(XP_MAP[i] > experience){
|
|
|
|
return i-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int i = XP_MAP.length;
|
|
|
|
while(getExperienceForLevel(i) <= experience){
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return i-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int getPlayerXP(EntityPlayer player){
|
|
|
|
return (int)(getExperienceForLevel(player.experienceLevel)+(player.experience*player.xpBarCap()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The below methods were excerpted from EnderIO by SleepyTrousers with permission, thanks!
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static void addPlayerXP(EntityPlayer player, int amount){
|
|
|
|
int experience = Math.max(0, getPlayerXP(player)+amount);
|
|
|
|
player.experienceTotal = experience;
|
|
|
|
player.experienceLevel = getLevelForExperience(experience);
|
|
|
|
int expForLevel = getExperienceForLevel(player.experienceLevel);
|
|
|
|
player.experience = (float)(experience-expForLevel)/(float)player.xpBarCap();
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
compound.setShort("Amount", this.amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.amount = compound.getShort("Amount");
|
|
|
|
}
|
|
|
|
|
2015-07-13 23:44:33 +02:00
|
|
|
@Override
|
2015-07-15 00:17:21 +02:00
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-05-02 17:46:53 +02:00
|
|
|
if(!this.worldObj.isRemote){
|
2015-07-15 00:17:21 +02:00
|
|
|
if(this.amount > 0){
|
|
|
|
if(this.slots[0] == null){
|
|
|
|
int toSet = this.amount > 64 ? 64 : this.amount;
|
2015-12-28 15:05:56 +01:00
|
|
|
this.slots[0] = new ItemStack(InitItems.itemSolidifiedExperience, toSet);
|
2015-07-15 00:17:21 +02:00
|
|
|
this.amount -= toSet;
|
|
|
|
}
|
|
|
|
else if(this.slots[0].stackSize < 64){
|
|
|
|
int needed = 64-this.slots[0].stackSize;
|
|
|
|
int toAdd = this.amount > needed ? needed : this.amount;
|
|
|
|
this.slots[0].stackSize += toAdd;
|
|
|
|
this.amount -= toAdd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-01 17:28:50 +01:00
|
|
|
if(this.lastAmount != this.amount && this.sendUpdateWithInterval()){
|
2015-07-15 00:17:21 +02:00
|
|
|
this.lastAmount = this.amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-13 23:44:33 +02:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean isItemValidForSlot(int i, ItemStack stack){
|
2016-02-01 17:49:55 +01:00
|
|
|
return false;
|
2015-07-13 23:44:33 +02:00
|
|
|
}
|
|
|
|
|
2015-12-19 10:30:39 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
|
2016-02-01 17:49:55 +01:00
|
|
|
return this.isItemValidForSlot(slot, stack);
|
2015-12-19 10:30:39 +01:00
|
|
|
}
|
|
|
|
|
2015-07-13 23:44:33 +02:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
|
2015-07-13 23:44:33 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onButtonPressed(int buttonID, EntityPlayer player){
|
2015-07-15 00:17:21 +02:00
|
|
|
if(buttonID < this.buttonAmounts.length){
|
2016-06-15 18:37:54 +02:00
|
|
|
if(getPlayerXP(player) > 0){
|
|
|
|
int xp = this.buttonAmounts[buttonID] == -999 ? getPlayerXP(player)/ItemSolidifiedExperience.SOLID_XP_AMOUNT : this.buttonAmounts[buttonID];
|
|
|
|
if(this.amount < Short.MAX_VALUE-xp && getPlayerXP(player) >= ItemSolidifiedExperience.SOLID_XP_AMOUNT*xp){
|
|
|
|
addPlayerXP(player, -(ItemSolidifiedExperience.SOLID_XP_AMOUNT*xp));
|
2016-05-02 17:46:53 +02:00
|
|
|
if(!this.worldObj.isRemote){
|
2015-10-03 10:16:18 +02:00
|
|
|
this.amount += xp;
|
|
|
|
}
|
2015-07-15 01:53:04 +02:00
|
|
|
}
|
2015-07-15 00:17:21 +02:00
|
|
|
}
|
2015-07-13 23:44:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|