索引贴地址:
http://www.mcbbs.net/thread-18949-1-2.html
注:本文最初基于MCP5.6和ModLoader1.1.0编写的.
MCP6.2和ModLoader1.2.4更新了大量方法的名字,导致我的教程几乎报废一半... 不管怎么说,我用了一个晚上的时间还是修正了教程的文字部分,使其和最新版的MCP与ModLoader接轨.但图片部分我实在是无力修改了...大家将就着看吧.
MCP6.2改掉了一大批方法的名字.以本教程的NBT部分为例,5.6的setTag在6.0改成了appendTag.或许这个看起来还有些道理.但有些就显得毫无理由了.比如判断一个世界是否是多人游戏世界.5.6是multiplayerWorld,6.0成了isRemote...
- package net.minecraft.src;
- public class dcEntityDiracPig extends EntityMob
- {
- public dcEntityDiracPig(World world)
- {
- super(world);
- texture = "/mob/diracpig.png";
- setSize(0.9F, 0.9F);
- attackStrength = 2;
- experienceValue = 5;
- moveSpeed = 1F;
- }
- public int getMaxHealth()
- {
- return 20;
- }
- public void writeEntityToNBT(NBTTagCompound nbttagcompound)
- {
- super.writeEntityToNBT(nbttagcompound);
- }
- public void readEntityFromNBT(NBTTagCompound nbttagcompound)
- {
- super.readEntityFromNBT(nbttagcompound);
- }
- protected String getLivingSound()
- {
- return "mob.pig";
- }
- protected String getHurtSound()
- {
- return "mob.pig";
- }
- protected String getDeathSound()
- {
- return "mob.pigdeath";
- }
- protected int getDropItemId()
- {
- return Item.porkRaw.shiftedIndex;
- }
- }
- package net.minecraft.src;
- public class dcRenderDiracPig extends RenderLiving
- {
- public dcRenderDiracPig(ModelBase modelbase, float f)
- {
- super(modelbase, f);
- }
- public void renderDiracPig(dcEntityDiracPig entitypig, double d, double d1, double d2,
- float f, float f1)
- {
- super.doRenderLiving(entitypig, d, d1, d2, f, f1);
- }
- public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2,
- float f, float f1)
- {
- renderDiracPig((dcEntityDiracPig)entityliving, d, d1, d2, f, f1);
- }
- public void doRender(Entity entity, double d, double d1, double d2,
- float f, float f1)
- {
- renderDiracPig((dcEntityDiracPig)entity, d, d1, d2, f, f1);
- }
- }
这样我们就有了一个可以渲染DiracPig的Render了.
- public void addRenderer(Map map)
- {
- map.put(dcEntityDiracPig.class, new dcRenderDiracPig(new ModelPig(), 0.7F));
- }
Eclipse会在Map那里报一个错,因为你没有导入一个必要的包,将鼠标移到Map上,在弹出的窗口中选择Import"Map".让Eclipse自动完成修正.
- ModLoader.registerEntityID(dcEntityDiracPig.class, "DiracPig", 121);
- ModLoader.addSpawn(dcEntityDiracPig.class, 10, 4,4,EnumCreatureType.monster);
我们向游戏的实体列表添加了一个实体,它的里名字是DiracPig,实体ID是121(121~199是一片空闲的实体ID),被注册的类是dcEntityDiracPig.class





- protected Entity findPlayerToAttack()
- {
- double i = this.posX;
- double j = this.posY;
- double k = this.posZ;
- List list = worldObj.getEntitiesWithinAABB(net.minecraft.src.EntityMob.class, AxisAlignedBB.getBoundingBox((double)i - 16, (double)j - 4, (double)k - 16, (double)i + 16, (double)j + 4, (double)k + 16));
- for (int a=0;a<list.size();a++)
- {
- if(list.get(a) instanceof dcEntityDiracPig == false)
- {
- return (Entity)list.get(a);
- }
- }
- return null;
- }

- public boolean onItemUse(ItemStack itemstack, EntityPlayer entityplayer, World world, int i, int j, int k, int l)
- {
- //待会在这里添加代码
- return true;
- }
这样我们便添加了一个onItemUse的重写,它会在玩家对一个砖块按右键时引发.
- NBTTagCompound nbttagcompound = itemstack.getTagCompound();
- if(nbttagcompound == null)
- {
- itemstack.setTagCompound(new NBTTagCompound());
- nbttagcompound = itemstack.getTagCompound();
- }
- if(nbttagcompound.getBoolean("chestAExist") == false)
- {
- if(world.getBlockId(i, j, k) == Block.chest.blockID)
- {
- nbttagcompound.setInteger("chestAx", (int)i);
- nbttagcompound.setInteger("chestAy", (int)j);
- nbttagcompound.setInteger("chestAz", (int)k);
- nbttagcompound.setBoolean("chestAExist", true);
- }
- }
这个代码会先获取物品栈的NBT节点,然后判断NBT节点是否存在,如果不存在则创建,之后检查节点的chestAExist数据是否是false(即使chestAExist不存在也没关系,不存在的Boolean类数据默认视为false)即判断是否设置过箱子A,如果没有那么便判断玩家右键的砖块是否是箱子,如果是就储存下玩家所右击的箱子的位置,并将chestAExist设为true.

- else
- {
- int Ax = (int)nbttagcompound.getInteger("chestAx"); //读取NBT数据
- int Ay = (int)nbttagcompound.getInteger("chestAy");
- int Az = (int)nbttagcompound.getInteger("chestAz");
- int Bx = i; //将当前敲得砖块坐标设为Bx,By,Bz
- int By = j;
- int Bz = k;
- if(world.getBlockId(Ax, Ay, Az) != Block.chest.blockID) //如果箱子A不存在了,就返回
- {
- return true;
- }
- if(world.getBlockId(Bx, By, Bz) != Block.chest.blockID) //如果玩家敲得不是一个箱子,就返回
- {
- return true;
- }
- Object obj = (TileEntityChest)world.getBlockTileEntity(Ax, Ay, Az); //取得箱子A的TileEntity并强转换为TileEntityChest
- //之后我们需要检测箱子A的前后左右有没有和他相连的箱子,如果有,将它们俩的TileEntity拼接成一个InventoryLargeChest
- if (world.getBlockId(Ax - 1, Ay, Az) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", (TileEntityChest)world.getBlockTileEntity(Ax - 1, Ay, Az),((IInventory) (obj)));
- }
- if (world.getBlockId(Ax + 1, Ay, Az) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", ((IInventory) (obj)), (TileEntityChest)world.getBlockTileEntity(Ax + 1, Ay, Az));
- }
- if (world.getBlockId(Ax, Ay, Az - 1) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", (TileEntityChest)world.getBlockTileEntity(Ax, Ay, Az - 1),((IInventory) (obj)));
- }
- if (world.getBlockId(Ax, Ay, Az + 1) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", ((IInventory) (obj)), (TileEntityChest)world.getBlockTileEntity(Ax, Ay, Az + 1));
- }
- IInventory inv1 = (IInventory) obj; //将obj按照IInventory接口转换,并将结果存为Inv1.Inv1即箱子A的物品.
- obj = (TileEntityChest)world.getBlockTileEntity(Bx, By, Bz);//取得箱子B的TileEntity并强转换为TileEntityChest
- //同样,我们需要检测箱子B的前后左右有没有和他相连的箱子,如果有,将它们俩的TileEntity拼接成一个InventoryLargeChest
- if (world.getBlockId(Bx - 1, By, Bz) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", (TileEntityChest)world.getBlockTileEntity(Bx - 1, By, Bz), ((IInventory) (obj)));
- }
- if (world.getBlockId(Bx + 1, By, Bz) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", ((IInventory) (obj)), (TileEntityChest)world.getBlockTileEntity(Bx + 1, By, Bz));
- }
- if (world.getBlockId(Bx, By, Bz - 1) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", (TileEntityChest)world.getBlockTileEntity(Bx, By, Bz - 1), ((IInventory) (obj)));
- }
- if (world.getBlockId(Bx, By, Bz + 1) == Block.chest.blockID)
- {
- obj = new InventoryLargeChest("Large chest", ((IInventory) (obj)), (TileEntityChest)world.getBlockTileEntity(Bx, By, Bz + 1));
- }
- IInventory inv2 = (IInventory) obj; //将obj按照IInventory接口转换,并将结果存为Inv2.Inv2即箱子B的物品.
- int ASize = inv1.getSizeInventory();//获取Inv1的箱子容量,箱子容量是所有格子的综合,一个小箱子是27容量.
- int BSize = inv2.getSizeInventory();
- for (int loop=0;loop<ASize;loop++) //遍历Inv1的所有格子,在内部计数中,一个容量为N的箱子,所拥有的格子的编号为[0~(N-1)] 所以我们的循环范围是严格小于ASize
- {
- ItemStack IS = inv1.getStackInSlot(loop); //获取Inv1在第loop个格子上的物品栈
- if(IS != null) //如果物品栈不是null(不存在)的话.
- {
- for(int loop2=0;loop2<=BSize;loop2++) //遍历Inv2的格子以寻找可插入物品栈的空位,注意由于我们需要处理特殊情况:Inv2没有可用的格子.所以我们让循环范围是小于等于BSize
- {
- if(loop2 == BSize) //如果loop等于箱子容量,即再也没有任何可用的空位,就让物品栈从箱子B中弹出来.
- {
- EntityItem entityitem = new EntityItem(world, Bx, By + 1f, Bz, IS); //创建一个EntityItem,它代表在游戏中被扔在地上的物品栈
- entityitem.delayBeforeCanPickup = 10; //设置拾取延迟.
- world.spawnEntityInWorld(entityitem); //生成实体
- inv1.setInventorySlotContents(loop, null); //将Inv1中的对应物品栈抹除(设为null)
- break; //中止循环
- }
- if(inv2.getStackInSlot(loop2) == null) //如果发现了可用空位.
- {
- inv2.setInventorySlotContents(loop2, IS); //在Inv2的可用空位制造一个一模一样的物品栈
- inv1.setInventorySlotContents(loop, null); //清除Inv1中对应的物品栈
- break; //中止循环
- }
- }
- }
- }
- nbttagcompound.setBoolean("chestAExist", false); //将NBT中的"已存在箱子A"设为false
- }


{
return true;
}
- if(par1EntityPlayer.isSneaking() == false)
- {
- if (i > 0 && Block.blocksList[i].blockActivated(par2World, par4, par5, par6, par1EntityPlayer))
- {
- return true;
- }
- }
这样如果玩家按住Shift的话,始终只会执行物品的功能.
- Random random = new Random();
- for(int number = 0;number <= 10;number++)
- {
- world.spawnParticle("portal",(double)i+0.5,(double)j,(double)k+0.5,(double)random.nextFloat() - 0.5D,(double)random.nextFloat(),(double)random.nextFloat() - 0.5D);
- }
- for(int number = 0;number <= 10;number++)
- {
- world.spawnParticle("portal",(double)i+0.5,(double)j,(double)k+0.5,(double)random.nextFloat() - 0.5D,(double)random.nextFloat(),(double)random.nextFloat() - 0.5D);
- }
这样我们就做完粒子特效了,那不妨再加一点别的,比如文字提示.
- entityplayer.addChatMessage("已设置传送起点");
- entityplayer.addChatMessage("物品传送完毕");
这时你的代码应该是这个样子.


