Record Class ApplicationPlatform

java.lang.Object
java.lang.Record
com.xebisco.yield.platform.ApplicationPlatform
All Implemented Interfaces:
Closeable, AutoCloseable

public record ApplicationPlatform(Map<ApplicationModule,Object> modules) extends Record implements Closeable
Represents the platform of the application, containing various managers.
  • Constructor Details

    • ApplicationPlatform

      public ApplicationPlatform(Map<ApplicationModule,Object> modules)
      Creates an instance of a ApplicationPlatform record class.
      Parameters:
      modules - the value for the modules record component
  • Method Details

    • fontManager

      public FontManager fontManager()
      Get the font manager instance.
      Returns:
      The font manager instance.
    • textureManager

      public TextureManager textureManager()
      Get the texture manager instance.
      Returns:
      The texture manager instance.
    • pcInputManager

      public PCInputManager pcInputManager()
      Get the PC input manager instance.
      Returns:
      The PC input manager instance.
    • audioManager

      public AudioManager audioManager()
      Get the audio manager instance.
      Returns:
      The audio manager instance.
    • graphicsManager

      public GraphicsManager graphicsManager()
      Get the graphics manager instance.
      Returns:
      The graphics manager instance.
    • ioManager

      public FileIOManager ioManager()
      Get the file input/output manager instance.
      Returns:
      The file input/output manager instance.
    • close

      public void close() throws IOException
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Throws:
      IOException
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • modules

      public Map<ApplicationModule,Object> modules()
      Returns the value of the modules record component.
      Returns:
      the value of the modules record component