コード例 #1
0
 private void initialize() {
   Tessellator tessellator = new Tessellator();
   TessellatorHelper.addBlockMesh(
       tessellator,
       new Vector4f(1, 1, 1, 1f),
       textureRegion.min(),
       textureRegion.size(),
       1.001f,
       1.0f,
       1.0f,
       0.0f,
       0.0f,
       0.0f);
   overlayMesh = tessellator.generateMesh();
   tessellator = new Tessellator();
   TessellatorHelper.addBlockMesh(
       tessellator,
       new Vector4f(1, 1, 1, .2f),
       textureRegion.min(),
       textureRegion.size(),
       1.001f,
       1.0f,
       1.0f,
       0.0f,
       0.0f,
       0.0f);
   overlayMesh2 = tessellator.generateMesh();
   defaultTextured = Assets.getMaterial("engine:prog.defaultTextured").get();
 }
コード例 #2
0
  @Command(
      shortDescription = "Restore default collision damage values",
      runOnServer = true,
      requiredPermission = PermissionManager.CHEAT_PERMISSION)
  public String restoreCollisionDamage(@Sender EntityRef client) {
    ClientComponent clientComp = client.getComponent(ClientComponent.class);

    Optional<Prefab> prefab = Assets.get(new ResourceUrn("engine:player"), Prefab.class);
    HealthComponent healthDefault = prefab.get().getComponent(HealthComponent.class);
    HealthComponent health = clientComp.character.getComponent(HealthComponent.class);
    if (health != null && healthDefault != null) {
      health.fallingDamageSpeedThreshold = healthDefault.fallingDamageSpeedThreshold;
      health.horizontalDamageSpeedThreshold = healthDefault.horizontalDamageSpeedThreshold;
      health.excessSpeedDamageMultiplier = healthDefault.excessSpeedDamageMultiplier;
      clientComp.character.saveComponent(health);
    }

    return "Normal collision damage values restored";
  }
コード例 #3
0
/** The UI widget for fluid containers. */
public class FluidContainerWidget extends CoreWidget {
  FluidRegistry fluidRegistry;

  @LayoutConfig
  private Binding<TextureRegion> image =
      new DefaultBinding<>(Assets.getTextureRegion("Fluid:FluidContainer").get());

  private InteractionListener listener = new BaseInteractionListener();

  private int minX;
  private int maxX;

  private int minY;
  private int maxY;

  private EntityRef entity;
  private int slotNo;

  /** Default constructor. */
  public FluidContainerWidget() {
    fluidRegistry = CoreRegistry.get(FluidRegistry.class);
  }

  /**
   * Parametrized constructor with a specified ID.
   *
   * @param id The ID to assign to the fluid container
   */
  public FluidContainerWidget(String id) {
    super(id);
  }

  /**
   * Parametrized constructor with a specified image.
   *
   * @param image A specified image of the fluid container
   */
  public FluidContainerWidget(TextureRegion image) {
    this.image.set(image);
  }

  /**
   * Parametrized constructor with a specified ID and a specified image.
   *
   * @param id The ID to assign to the fuid container
   * @param image The image of the fluid container
   */
  public FluidContainerWidget(String id, TextureRegion image) {
    super(id);
    this.image.set(image);
  }

  /**
   * Defines how the fluid container widget is drawn.
   *
   * @param canvas The canvas on which the widget is drawn
   */
  @Override
  public void onDraw(Canvas canvas) {
    TextureRegion texture = getImage();
    if (texture != null) {
      FluidInventoryComponent fluidInventory = entity.getComponent(FluidInventoryComponent.class);
      FluidComponent fluid =
          fluidInventory.fluidSlots.get(slotNo).getComponent(FluidComponent.class);
      float maxVolume = fluidInventory.maximumVolumes.get(slotNo);
      float currentVolume = 0f;
      String fluidType = null;
      FluidRenderer fluidRenderer = null;

      if (fluid != null) {
        currentVolume = fluid.volume;
        fluidType = fluid.fluidType;
        float result = fluid.volume / maxVolume;

        fluidRenderer = fluidRegistry.getFluidRenderer(fluid.fluidType);

        Vector2i size = canvas.size();
        if (minY < maxY) {
          float yPerc = 1f * (minY + result * (maxY - minY)) / texture.getHeight();
          fluidRenderer.renderFluid(
              canvas,
              Rect2i.createFromMinAndSize(minX, minY, maxX, Math.round(yPerc * size.y) - minY));
        } else {
          float yPerc = 1f * (minY - result * (minY - maxY)) / texture.getHeight();
          int y = Math.round(yPerc * size.y);
          fluidRenderer.renderFluid(canvas, Rect2i.createFromMinAndSize(minX, y, maxX, minY - y));
        }
      }

      canvas.drawTexture(texture, canvas.getRegion());

      setTooltipDelay(0);
      String fluidDisplay = fluidType == null ? "Fluid" : fluidRenderer.getFluidName();
      setTooltip(String.format(fluidDisplay + ": %.0f/%.0f", currentVolume, maxVolume));
    }

    canvas.addInteractionRegion(listener);
  }

  /**
   * Setter function to set the entity associated with the widget.
   *
   * @param entity The entity to associate with the widget
   */
  public void setEntity(EntityRef entity) {
    this.entity = entity;
  }

  /**
   * Setter function to set the slot number of the slot in which the container resides.
   *
   * @param slotNo The slot number
   */
  public void setSlotNo(int slotNo) {
    this.slotNo = slotNo;
  }

  /**
   * Gets the preferred size of the widget contents.
   *
   * @param canvas The canvas on which the widget is to be drawn
   * @param sizeHint The size hint passed by the NUI system
   * @return The preferred size of the widget
   */
  @Override
  public Vector2i getPreferredContentSize(Canvas canvas, Vector2i sizeHint) {
    if (image.get() != null) {
      return image.get().size();
    }
    return Vector2i.zero();
  }

  /**
   * Accessor function which returns the image of the container widget.
   *
   * @return The image of the container
   */
  public TextureRegion getImage() {
    return image.get();
  }

  /**
   * Setter function to set the image of the container widget.
   *
   * @param image The image to set as the image of the widget
   */
  public void setImage(TextureRegion image) {
    this.image.set(image);
  }

  /**
   * Setter function to set the image of the widget to a given binding.
   *
   * @param binding The binding to set as the widget's image
   */
  public void bindTexture(Binding<TextureRegion> binding) {
    this.image = binding;
  }

  /**
   * Set the minimum Y co-ordinate where the widget can be drawn.
   *
   * @param minY The minimum Y co-ordinate where the widget can be drawn
   */
  public void setMinY(int minY) {
    this.minY = minY;
  }

  /**
   * Set the maximum Y co-ordinate where the widget can be drawn.
   *
   * @param maxY The maximum Y co-ordinate where the widget can be drawn
   */
  public void setMaxY(int maxY) {
    this.maxY = maxY;
  }

  /**
   * Set the minimum X co-ordinate where the widget can be drawn.
   *
   * @param minX The minimum X co-ordinate where the widget can be drawn
   */
  public void setMinX(int minX) {
    this.minX = minX;
  }

  /**
   * Set the maximum X co-ordinate where the widget can be drawn.
   *
   * @param maxX The maximum X co-ordinate where the widget can be drawn
   */
  public void setMaxX(int maxX) {
    this.maxX = maxX;
  }
}