Guest User

Untitled

a guest
Jan 23rd, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.08 KB | None | 0 0
  1. package com.TechDweebGaming.MystTech.tileentity;
  2.  
  3. import net.minecraft.block.state.IBlockState;
  4. import net.minecraft.entity.player.EntityPlayer;
  5. import net.minecraft.init.Items;
  6. import net.minecraft.inventory.IInventory;
  7. import net.minecraft.item.ItemStack;
  8. import net.minecraft.nbt.NBTTagCompound;
  9. import net.minecraft.nbt.NBTTagList;
  10. import net.minecraft.tileentity.TileEntity;
  11. import net.minecraft.util.BlockPos;
  12. import net.minecraft.util.ChatComponentText;
  13. import net.minecraft.util.ChatComponentTranslation;
  14. import net.minecraft.util.EnumFacing;
  15. import net.minecraft.util.IChatComponent;
  16. import net.minecraft.util.ITickable;
  17. import net.minecraft.world.World;
  18. import cofh.api.energy.IEnergyReceiver;
  19.  
  20. import com.TechDweebGaming.MystTech.MystTech;
  21. import com.TechDweebGaming.MystTech.gui.ContainerCompressor;
  22. import com.TechDweebGaming.MystTech.gui.ModGuiHandler;
  23. import com.TechDweebGaming.MystTech.item.ModItems;
  24. import com.TechDweebGaming.MystTech.utility.LogHelper;
  25.  
  26. public class CompressorTileEntity extends TileEntity implements IInventory, IEnergyReceiver, ITickable {
  27.  
  28. //Energy Variables
  29. public int EnergyBuffer = 0;
  30. public final int EnergyLimit = 10000;
  31.  
  32. private ItemStack[] inventory;
  33. private String customName;
  34.  
  35. public CompressorTileEntity() {
  36. this.inventory = new ItemStack[this.getSizeInventory()];
  37. }
  38.  
  39. public String getCustomName() {
  40. return this.customName;
  41. }
  42.  
  43. public void setCustomName(String customName) {
  44. this.customName = customName;
  45. }
  46.  
  47. @Override
  48. public String getName() {
  49. return this.hasCustomName() ? this.customName : "Compressor";
  50. }
  51.  
  52. @Override
  53. public boolean hasCustomName() {
  54. return this.customName != null && !this.customName.equals("");
  55. }
  56.  
  57. @Override
  58. public IChatComponent getDisplayName() {
  59. return this.hasCustomName() ? new ChatComponentText(this.getName()) : new ChatComponentTranslation(this.getName());
  60. }
  61.  
  62. @Override
  63. public int getSizeInventory() {
  64. return 2;
  65. }
  66.  
  67. @Override
  68. public ItemStack getStackInSlot(int index) {
  69. if (index < 0 || index >= this.getSizeInventory()) {
  70. return null;
  71. }
  72. return this.inventory[index];
  73. }
  74.  
  75. @Override
  76. public ItemStack decrStackSize(int index, int count) {
  77. if(this.getStackInSlot(index) != null) {
  78. ItemStack itemstack;
  79.  
  80. if(this.getStackInSlot(index).stackSize <= count) {
  81. itemstack = this.getStackInSlot(index);
  82. this.setInventorySlotContents(index, null);
  83. this.markDirty();
  84. return itemstack;
  85. } else {
  86. itemstack = this.getStackInSlot(index).splitStack(count);
  87.  
  88. if (this.getStackInSlot(index).stackSize <= 0) {
  89. this.setInventorySlotContents(index, null);
  90. } else {
  91. //Just to show that changes happened
  92. this.setInventorySlotContents(index, this.getStackInSlot(index));
  93. }
  94.  
  95. this.markDirty();
  96. return itemstack;
  97. }
  98. } else {
  99. return null;
  100. }
  101. }
  102.  
  103. //@Override - Tutorial says yes but eclipse says no...
  104. public ItemStack getStackInSlotOnClosing(int index) {
  105. ItemStack stack = this.getStackInSlot(index);
  106. this.setInventorySlotContents(index, null);
  107. return stack;
  108. }
  109.  
  110. @Override
  111. public void setInventorySlotContents(int index, ItemStack stack) {
  112. if (index < 0 || index >= this.getSizeInventory()) {
  113. return;
  114. }
  115.  
  116. if (stack != null && stack.stackSize > this.getInventoryStackLimit()) {
  117. stack.stackSize = this.getInventoryStackLimit();
  118. }
  119.  
  120. if (stack != null && stack.stackSize == 0) {
  121. stack = null;
  122. }
  123.  
  124. this.inventory[index] = stack;
  125. this.markDirty();
  126. }
  127.  
  128. @Override
  129. public int getInventoryStackLimit() {
  130. return 64;
  131. }
  132.  
  133. @Override
  134. public boolean isUseableByPlayer(EntityPlayer player) {
  135. return this.worldObj.getTileEntity(this.getPos()) == this && player.getDistanceSq(this.pos.add(0.5, 0.5, 0.5)) <= 64;
  136. }
  137.  
  138. @Override
  139. public void openInventory(EntityPlayer player) {
  140. //Just so Eclipse doesn't yell at me
  141. }
  142.  
  143. @Override
  144. public void closeInventory(EntityPlayer player) {
  145. //Just so Eclipse doesn't yell at me
  146. }
  147.  
  148. @Override
  149. public boolean isItemValidForSlot(int index, ItemStack stack) {
  150. return true;
  151. }
  152.  
  153. @Override
  154. public int getField(int id) {
  155. return 0;
  156. }
  157.  
  158. @Override
  159. public void setField(int id, int value) {
  160. //Just so Eclipse doesn't yell at me
  161. }
  162.  
  163. @Override
  164. public int getFieldCount() {
  165. return 0;
  166. }
  167.  
  168. @Override
  169. public void clear() {
  170. for (int i = 0; i < this.getSizeInventory(); i++)
  171. this.setInventorySlotContents(i, null);
  172. }
  173.  
  174. @Override
  175. public void writeToNBT(NBTTagCompound nbt) {
  176. super.writeToNBT(nbt);
  177.  
  178. NBTTagList list = new NBTTagList();
  179. for (int i = 0; i < this.getSizeInventory(); ++i) {
  180. if (this.getStackInSlot(i) != null) {
  181. NBTTagCompound stackTag = new NBTTagCompound();
  182. stackTag.setByte("Slot", (byte) i);
  183. this.getStackInSlot(i).writeToNBT(stackTag);
  184. list.appendTag(stackTag);
  185. }
  186. }
  187. nbt.setTag("Items", list);
  188.  
  189. if (this.hasCustomName()) {
  190. nbt.setString("CustomName", this.getCustomName());
  191. }
  192.  
  193. nbt.setInteger("EnergyBuffer", EnergyBuffer);
  194. }
  195.  
  196.  
  197. @Override
  198. public void readFromNBT(NBTTagCompound nbt) {
  199. super.readFromNBT(nbt);
  200.  
  201. NBTTagList list = nbt.getTagList("Items", 10);
  202. for (int i = 0; i < list.tagCount(); ++i) {
  203. NBTTagCompound stackTag = list.getCompoundTagAt(i);
  204. int slot = stackTag.getByte("Slot") & 255;
  205. this.setInventorySlotContents(slot, ItemStack.loadItemStackFromNBT(stackTag));
  206. }
  207.  
  208. if (nbt.hasKey("CustomName", 8)) {
  209. this.setCustomName(nbt.getString("CustomName"));
  210. }
  211.  
  212. EnergyBuffer = nbt.getInteger("EnergyBuffer");
  213. }
  214.  
  215. @Override
  216. public ItemStack removeStackFromSlot(int index) {
  217. return null;
  218. }
  219.  
  220. public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ) {
  221. if (!world.isRemote) {
  222. player.openGui(MystTech.instance, ModGuiHandler.MOD_COMPRESSOR_TILE_ENTITY_GUI, world, pos.getX(), pos.getY(), pos.getZ());
  223. }
  224. return true;
  225. }
  226.  
  227. @Override
  228. public boolean shouldRefresh(World parWorld, BlockPos parPos, IBlockState parOldState, IBlockState parNewState) {
  229. return false;
  230. }
  231.  
  232. @Override
  233. public boolean canConnectEnergy(EnumFacing facing) {
  234. return true;
  235. }
  236.  
  237. @Override
  238. public int receiveEnergy(EnumFacing facing, int maxReceive, boolean simulate) {
  239. int receive = Math.min(maxReceive, EnergyLimit - EnergyBuffer);
  240. if (!simulate && receive > 0) {
  241. EnergyBuffer += receive;
  242. markDirty();
  243. }
  244. return receive;
  245. }
  246.  
  247. @Override
  248. public int getEnergyStored(EnumFacing facing) {
  249. return EnergyBuffer;
  250. }
  251.  
  252. @Override
  253. public int getMaxEnergyStored(EnumFacing facing) {
  254. return EnergyLimit;
  255. }
  256.  
  257. public int getPowerLevel() {
  258. return EnergyBuffer;
  259. }
  260.  
  261. @Override
  262. public void update() {
  263. ItemStack input = this.getStackInSlot(0);
  264. ItemStack output = this.getStackInSlot(1);
  265. //ItemStacks
  266. ItemStack CreeperEssence = new ItemStack(ModItems.CreeperEssence);
  267. ItemStack CreeperSkull = new ItemStack(Items.skull, 1, 4);
  268. ItemStack Bone = new ItemStack(Items.bone);
  269. ItemStack Bonemeal = new ItemStack(Items.dye, 5, 15);
  270. ItemStack ChickenNugget = new ItemStack(ModItems.ChickenNugget);
  271. ItemStack CookedChicken = new ItemStack(Items.cooked_chicken);
  272. //Running Check
  273. if(input != null) {
  274. //SYNTAX FOR NEW COMPRESSOR RECIPES (anything in <> you fill in!)
  275. //this.checkCompressorRecipes(input, output, <Ingredient>, <Result>, <Power Usage>);
  276. this.checkCompressorRecipes(input, output, CreeperEssence, CreeperSkull, 2500);
  277. this.checkCompressorRecipes(input, output, Bone, Bonemeal, 100);
  278. this.checkCompressorRecipes(input, output, CookedChicken, ChickenNugget, 100);
  279. //INACTIVE: this.checkCompressorRecipes(input, output, Bonemeal, Bone, 500);
  280. }
  281. }
  282.  
  283. public boolean haveEnoughEnergy(int energyUsage) {
  284. if (EnergyBuffer > energyUsage) {
  285. return true;
  286. } else {
  287. return false;
  288. }
  289. }
  290.  
  291. public void checkCompressorRecipes(ItemStack parItemStackInput, ItemStack parItemStackOutput, ItemStack reqItemStackInput, ItemStack reqItemStackOutput, int energyCost) {
  292. if(haveEnoughEnergy(energyCost) == true) {
  293. if (parItemStackInput.stackSize > 0) {
  294. if (ItemStack.areItemsEqual(parItemStackInput, reqItemStackInput)) {
  295. processCompression(parItemStackInput, parItemStackOutput, reqItemStackOutput, energyCost);
  296. }
  297. }
  298. }
  299. }
  300.  
  301. public boolean canCompressorRun() {
  302. ItemStack input = this.getStackInSlot(0);
  303. ItemStack output = this.getStackInSlot(1);
  304. if (EnergyBuffer > 0) {
  305. if (input.stackSize < 2) {
  306. if (output == null) {
  307. return true;
  308. }
  309. }
  310. }
  311. return false;
  312. }
  313.  
  314. public void processCompression(ItemStack parItemStackInput, ItemStack parItemStackOutput, ItemStack reqItemStackOutput, int energyUsage) {
  315. //Consume Power
  316. int prevEnergyBuffer = EnergyBuffer;
  317. EnergyBuffer = prevEnergyBuffer - energyUsage;
  318. //Process Items
  319. if (parItemStackOutput.stackSize <= 1 && parItemStackInput.stackSize <= 1) {
  320. setInventorySlotContents(0, null);
  321. setInventorySlotContents(1, reqItemStackOutput);
  322. } else if (parItemStackOutput.stackSize <= 1 && parItemStackInput.stackSize > 1) {
  323. parItemStackInput.stackSize--;
  324. setInventorySlotContents(0, parItemStackInput);
  325. setInventorySlotContents(1, reqItemStackOutput);
  326. } else if (parItemStackOutput.stackSize > 1 && parItemStackInput.stackSize <= 1) {
  327. setInventorySlotContents(0, null);
  328. parItemStackOutput.stackSize++;
  329. setInventorySlotContents(1, parItemStackOutput);
  330. } else if (parItemStackOutput.stackSize > 1 && parItemStackInput.stackSize > 1) {
  331. parItemStackInput.stackSize--;
  332. parItemStackOutput.stackSize--;
  333. setInventorySlotContents(0, parItemStackInput);
  334. setInventorySlotContents(0, parItemStackOutput);
  335. } else {
  336. LogHelper.info("A compressor recipe has errored! Please reoprt this immedeitally so I can fix it, as it should not be possible! ~Best Regards, TechDG");
  337. }
  338. markDirty();
  339. }
  340. }
Add Comment
Please, Sign In to add comment