Package net.minecraft.server.v1_4_R1

Examples of net.minecraft.server.v1_4_R1.Block


    else return AlmostBoolean.match(block.material.isSolid());
  }

  @Override
  public AlmostBoolean isBlockLiquid(final int id) {
    final Block block = Block.byId[id];
    if (block == null || block.material == null) return AlmostBoolean.MAYBE;
    else return AlmostBoolean.match(block.material.isLiquid());
  }
View Full Code Here


    return ((CraftEntity) entity).getHandle().width;
  }

  @Override
  public AlmostBoolean isIllegalBounds(final Player player) {
    final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
    if (entityPlayer.dead) return AlmostBoolean.NO;
    final AxisAlignedBB box = entityPlayer.boundingBox;
    if (!entityPlayer.isSleeping()){
      // This can not really test stance but height of bounding box.
      final double dY = Math.abs(box.e - box.b);
      if (dY > 1.8) return AlmostBoolean.YES; // dY > 1.65D ||
      if (dY < 0.1D && entityPlayer.length >= 0.1) return AlmostBoolean.YES;
    }
View Full Code Here

    return AlmostBoolean.MAYBE;
  }

  @Override
  public double getJumpAmplifier(final Player player) {
    final EntityPlayer mcPlayer = ((CraftPlayer) player).getHandle();
 
    if (mcPlayer.hasEffect(MobEffectList.JUMP)) return mcPlayer.getEffect(MobEffectList.JUMP).getAmplifier();
    else return Double.NEGATIVE_INFINITY;
  }
View Full Code Here

    else return Double.NEGATIVE_INFINITY;
  }

  @Override
  public double getFasterMovementAmplifier(final Player player) {
    final EntityPlayer mcPlayer = ((CraftPlayer) player).getHandle();
    if (mcPlayer.hasEffect(MobEffectList.FASTER_MOVEMENT)) return mcPlayer.getEffect(MobEffectList.FASTER_MOVEMENT).getAmplifier();
    else return Double.NEGATIVE_INFINITY;
  }
View Full Code Here

    return ((CraftEntity) entity).getHandle() instanceof EntityComplexPart;
  }

  @Override
  public boolean shouldBeZombie(final Player player) {
    final EntityPlayer mcPlayer = ((CraftPlayer) player).getHandle();
    return !mcPlayer.dead && mcPlayer.getHealth() <= 0 ;
  }
View Full Code Here

    return !mcPlayer.dead && mcPlayer.getHealth() <= 0 ;
  }

  @Override
  public void setDead(final Player player, final int deathTicks) {
    final EntityPlayer mcPlayer = ((CraftPlayer) player).getHandle();
        mcPlayer.deathTicks = deathTicks;
        mcPlayer.dead = true;
  }
View Full Code Here

   
    String   author  = storage.getString  (tagStringAuthor);
    String   title  = storage.getString  (tagStringTitle);
    Integer pSize  = storage.getInteger(tagIntegerPagesSize);
   
    NBTTagCompound compound  = new NBTTagCompound();
   
    if (pSize != null) {
      NBTTagList  list  = new NBTTagList();
      for (int i = 0; i < pSize; i++) {
        String       page  = storage.getString(tagStringPagePref+i);
       
        if (page != null) {
          NBTTagString tag  = new NBTTagString(page);
          tag.data      = page;
          list.add(tag);
        }
      }
     
      compound.set(tagStringPages, list);
    }
   
    if (title != null)
      compound.setString(tagStringTitle, title);
   
    if (author != null)
      compound.setString(tagStringAuthor, author);
   
   
    return compound;
  }
View Full Code Here

//   
//    storage.setString(STRING_NBT_BINARY, baos.toString());
   
    String    author  = nbt.getString  (tagStringAuthor);
    String    title  = nbt.getString  (tagStringTitle);
    NBTTagList  pages  = nbt.getList  (tagStringPages);
   
    if (pages != null) {
      for (int i = 0; i < pages.size(); i++)
        setString(tagStringPagePref+i, ((NBTTagString)pages.get(i)).data);
      setInteger(tagIntegerPagesSize, pages.size());
    }
   
    if (title != null)
      setString(tagStringTitle, title);
   
View Full Code Here

    Integer pSize  = storage.getInteger(tagIntegerPagesSize);
   
    NBTTagCompound compound  = new NBTTagCompound();
   
    if (pSize != null) {
      NBTTagList  list  = new NBTTagList();
      for (int i = 0; i < pSize; i++) {
        String       page  = storage.getString(tagStringPagePref+i);
       
        if (page != null) {
          NBTTagString tag  = new NBTTagString(page);
          tag.data      = page;
          list.add(tag);
        }
      }
     
      compound.set(tagStringPages, list);
    }
View Full Code Here

      NBTTagList  list  = new NBTTagList();
      for (int i = 0; i < pSize; i++) {
        String       page  = storage.getString(tagStringPagePref+i);
       
        if (page != null) {
          NBTTagString tag  = new NBTTagString(page);
          tag.data      = page;
          list.add(tag);
        }
      }
     
View Full Code Here

TOP

Related Classes of net.minecraft.server.v1_4_R1.Block

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.