-
Notifications
You must be signed in to change notification settings - Fork 494
/
ItemRobot.java
executable file
·236 lines (197 loc) · 7.53 KB
/
ItemRobot.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/**
* Copyright (c) 2011-2015, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
*
* BuildCraft is distributed under the terms of the Minecraft Mod Public
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
package buildcraft.robotics;
import java.util.List;
import net.minecraft.block.Block;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import cofh.api.energy.IEnergyContainerItem;
import buildcraft.BuildCraftRobotics;
import buildcraft.api.boards.RedstoneBoardNBT;
import buildcraft.api.boards.RedstoneBoardRegistry;
import buildcraft.api.boards.RedstoneBoardRobotNBT;
import buildcraft.api.events.RobotPlacementEvent;
import buildcraft.api.robots.EntityRobotBase;
import buildcraft.core.BCCreativeTab;
import buildcraft.core.lib.items.ItemBuildCraft;
import buildcraft.core.lib.utils.NBTUtils;
import buildcraft.transport.BlockGenericPipe;
import buildcraft.transport.Pipe;
public class ItemRobot extends ItemBuildCraft implements IEnergyContainerItem {
public ItemRobot() {
super(BCCreativeTab.get("boards"));
}
public EntityRobot createRobot(ItemStack stack, World world) {
try {
NBTTagCompound nbt = NBTUtils.getItemData(stack);
NBTTagCompound boardCpt = nbt.getCompoundTag("board");
EntityRobot robot = new EntityRobot(world, boardCpt);
robot.getBattery().setEnergy(nbt.getInteger("energy"));
return robot;
} catch (Throwable e) {
e.printStackTrace();
return null;
}
}
public static RedstoneBoardNBT getRobotNBT(ItemStack stack) {
try {
NBTTagCompound nbt = NBTUtils.getItemData(stack);
NBTTagCompound boardCpt = nbt.getCompoundTag("board");
return RedstoneBoardRegistry.instance.getRedstoneBoard(boardCpt);
} catch (Throwable e) {
e.printStackTrace();
return null;
}
}
public ResourceLocation getTextureRobot(ItemStack stack) {
NBTTagCompound nbt = NBTUtils.getItemData(stack);
if (!nbt.hasKey("board")) {
return EntityRobot.ROBOT_BASE;
} else {
NBTTagCompound board = nbt.getCompoundTag("board");
RedstoneBoardNBT<?> boardNBT = RedstoneBoardRegistry.instance.getRedstoneBoard(board);
if (boardNBT instanceof RedstoneBoardRobotNBT) {
return ((RedstoneBoardRobotNBT) boardNBT).getRobotTexture();
} else {
return EntityRobot.ROBOT_BASE;
}
}
}
@Override
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean advanced) {
NBTTagCompound cpt = NBTUtils.getItemData(stack).getCompoundTag("board");
if (cpt.hasKey("id") && !"<unknown>".equals(cpt.getString("id"))) {
RedstoneBoardNBT<?> nbt = RedstoneBoardRegistry.instance.getRedstoneBoard(cpt);
if (nbt != null) {
nbt.addInformation(stack, player, list, advanced);
}
}
int energy = NBTUtils.getItemData(stack).getInteger("energy");
list.add(energy + "/" + EntityRobotBase.MAX_ENERGY + " RF");
}
@Override
public void registerIcons(IIconRegister par1IconRegister) {
// cancels default BC icon registering
}
public static ItemStack createRobotStack(ItemStack board, int energy) {
ItemStack robot = new ItemStack(BuildCraftRobotics.robotItem);
NBTUtils.getItemData(robot).setTag("board", NBTUtils.getItemData(board));
NBTUtils.getItemData(robot).setInteger("energy", energy);
return robot;
}
@SuppressWarnings({"unchecked", "rawtypes"})
@Override
@SideOnly(Side.CLIENT)
public void getSubItems(Item item, CreativeTabs par2CreativeTabs, List itemList) {
itemList.add(new ItemStack(BuildCraftRobotics.robotItem));
for (RedstoneBoardNBT nbt : RedstoneBoardRegistry.instance.getAllBoardNBTs()) {
ItemStack boardStack = new ItemStack(BuildCraftRobotics.redstoneBoard);
NBTTagCompound nbtData = NBTUtils.getItemData(boardStack);
nbt.createBoard(nbtData);
ItemStack robotStack = createRobotStack(boardStack, 0);
itemList.add(robotStack.copy());
robotStack = createRobotStack(boardStack, EntityRobotBase.MAX_ENERGY);
itemList.add(robotStack.copy());
}
}
@Override
public int receiveEnergy(ItemStack container, int maxReceive, boolean simulate) {
if (!container.hasTagCompound()) {
return 0;
}
int currentEnergy = container.getTagCompound().getInteger("energy");
int energyReceived = Math.min(EntityRobotBase.MAX_ENERGY - currentEnergy, maxReceive);
if (!simulate) {
container.getTagCompound().setInteger("energy", currentEnergy + energyReceived);
}
return energyReceived;
}
@Override
public int extractEnergy(ItemStack container, int maxExtract, boolean simulate) {
if (!container.hasTagCompound()) {
return 0;
}
int currentEnergy = container.getTagCompound().getInteger("energy");
int energyExtracted = Math.min(currentEnergy, maxExtract);
if (!simulate) {
container.getTagCompound().setInteger("energy", currentEnergy - energyExtracted);
}
return energyExtracted;
}
@Override
public int getEnergyStored(ItemStack container) {
if (!container.hasTagCompound()) {
return 0;
}
return container.getTagCompound().getInteger("energy");
}
@Override
public int getMaxEnergyStored(ItemStack container) {
if (!container.hasTagCompound()) {
return 0;
}
return EntityRobotBase.MAX_ENERGY;
}
@Override
public boolean onItemUse(ItemStack currentItem, EntityPlayer player, World world, int x, int y, int z, int side, float p_77648_8_, float p_77648_9_, float p_77648_10_) {
if (!world.isRemote) {
Block b = world.getBlock(x, y, z);
if (!(b instanceof BlockGenericPipe)) {
return false;
}
Pipe<?> pipe = BlockGenericPipe.getPipe(world, x, y, z);
if (pipe == null) {
return false;
}
BlockGenericPipe pipeBlock = (BlockGenericPipe) b;
BlockGenericPipe.RaytraceResult rayTraceResult = pipeBlock.doRayTrace(world, x, y, z, player);
if (rayTraceResult != null && rayTraceResult.hitPart == BlockGenericPipe.Part.Pluggable
&& pipe.container.getPipePluggable(rayTraceResult.sideHit) instanceof RobotStationPluggable) {
RobotStationPluggable pluggable = (RobotStationPluggable) pipe.container.getPipePluggable(rayTraceResult.sideHit);
DockingStation station = pluggable.getStation();
if (!station.isTaken()) {
if (ItemRobot.getRobotNBT(currentItem) == null) {
return true;
}
RobotPlacementEvent robotEvent = new RobotPlacementEvent(player, ((NBTTagCompound) currentItem.stackTagCompound.getTag("board")).getString("id"));
FMLCommonHandler.instance().bus().post(robotEvent);
if (robotEvent.isCanceled()) {
return true;
}
EntityRobot robot = ((ItemRobot) currentItem.getItem())
.createRobot(currentItem, world);
if (robot != null && robot.getRegistry() != null) {
robot.setUniqueRobotId(robot.getRegistry().getNextRobotId());
float px = x + 0.5F + rayTraceResult.sideHit.offsetX * 0.5F;
float py = y + 0.5F + rayTraceResult.sideHit.offsetY * 0.5F;
float pz = z + 0.5F + rayTraceResult.sideHit.offsetZ * 0.5F;
robot.setPosition(px, py, pz);
station.takeAsMain(robot);
robot.dock(robot.getLinkedStation());
world.spawnEntityInWorld(robot);
if (!player.capabilities.isCreativeMode) {
player.getCurrentEquippedItem().stackSize--;
}
}
}
return true;
}
}
return false;
}
}