Interface BoomThingFlags

All Superinterfaces:
DoomThingFlags
All Known Subinterfaces:
MBFThingFlags

public interface BoomThingFlags extends DoomThingFlags
Thing flag constants for Boom things. The constant value is how many places to bit shift 1 to equal the flag bit.
Author:
Matthew Tropiano
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Thing flag: Appears on easy difficulty.
    static final int
    Thing flag: Appears on hard difficulty.
    static final int
    Thing flag: Appears on medium difficulty.
    static final int
    Thing flag: Does not appear in cooperative.
    static final int
    Thing flag: Does not appear in deathmatch.

    Fields inherited from interface net.mtrop.doom.map.data.flags.DoomThingFlags

    AMBUSH, NOT_SINGLEPLAYER
  • Method Summary

    Modifier and Type
    Method
    Description
    default int
    value(int flag)
    Gets the bit value of the flag (shifted).
  • Field Details

    • NOT_COOPERATIVE

      static final int NOT_COOPERATIVE
      Thing flag: Does not appear in cooperative.
      See Also:
    • NOT_DEATHMATCH

      static final int NOT_DEATHMATCH
      Thing flag: Does not appear in deathmatch.
      See Also:
    • EASY

      static final int EASY
      Thing flag: Appears on easy difficulty.
      See Also:
    • MEDIUM

      static final int MEDIUM
      Thing flag: Appears on medium difficulty.
      See Also:
    • HARD

      static final int HARD
      Thing flag: Appears on hard difficulty.
      See Also:
  • Method Details

    • value

      default int value(int flag)
      Gets the bit value of the flag (shifted).
      Parameters:
      flag - the input flag constant.
      Returns:
      the resultant value.