All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.material.Tripwire Maven / Gradle / Ivy

package org.bukkit.material;

import org.bukkit.Material;

/**
 * Represents the tripwire
 */
public class Tripwire extends MaterialData {

  public Tripwire() {
    super(Material.TRIPWIRE);
  }

  /**
   * @param type the raw type id
   * @deprecated Magic value
   */
  @Deprecated
  public Tripwire(final int type) {
    super(type);
  }

  /**
   * @param type the raw type id
   * @param data the raw data value
   * @deprecated Magic value
   */
  @Deprecated
  public Tripwire(final int type, final byte data) {
    super(type, data);
  }

  /**
   * Test if tripwire is currently activated
   *
   * @return true if activated, false if not
   */
  public boolean isActivated() {
    return (getData() & 0x4) != 0;
  }

  /**
   * Set tripwire activated state
   *
   * @param act - true if activated, false if not
   */
  public void setActivated(boolean act) {
    int dat = getData() & (0x8 | 0x3);
    if (act) {
      dat |= 0x4;
    }
    setData((byte) dat);
  }

  /**
   * Test if object triggering this tripwire directly
   *
   * @return true if object activating tripwire, false if not
   */
  public boolean isObjectTriggering() {
    return (getData() & 0x1) != 0;
  }

  /**
   * Set object triggering state for this tripwire
   *
   * @param trig - true if object activating tripwire, false if not
   */
  public void setObjectTriggering(boolean trig) {
    int dat = getData() & 0xE;
    if (trig) {
      dat |= 0x1;
    }
    setData((byte) dat);
  }

  @Override
  public Tripwire clone() {
    return (Tripwire) super.clone();
  }

  @Override
  public String toString() {
    return super.toString() + (isActivated() ? " Activated" : "") + (isObjectTriggering() ? " Triggered" : "");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy