Package worldBuilder

Class RpgmMap


  • public class RpgmMap
    extends java.lang.Object
    represents identifying information in an RPGMaker map
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int id
      map ID index (starts with 1)
      java.lang.String name
      file name within the project/map directory
      int parent
      map ID index of parent (containing) map
      double x
      RPGMaker big-map coordinates of the top left corner
      double y
      RPGMaker big-map coordinates of the top left corner
    • Constructor Summary

      Constructors 
      Constructor Description
      RpgmMap​(java.lang.String name)
      instantiate a new map (within an index)
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • name

        public java.lang.String name
        file name within the project/map directory
      • id

        public int id
        map ID index (starts with 1)
      • parent

        public int parent
        map ID index of parent (containing) map
      • x

        public double x
        RPGMaker big-map coordinates of the top left corner
      • y

        public double y
        RPGMaker big-map coordinates of the top left corner
    • Constructor Detail

      • RpgmMap

        public RpgmMap​(java.lang.String name)
        instantiate a new map (within an index)
        Parameters:
        name - of the map file