DB/DungeonMap: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 1: Line 1:
 
{{Sandbox/VersionRange|min_expansionlevel=3}}
{{Template:Sandbox/VersionRange|min_expansionlevel=3}}


==3.0.9.9551==
==3.0.9.9551==
{| style="background:#FCFCFC; color:black"
struct DungeonMapRec {
|-
  uint32_t m_ID;
! width="80" | Column
  {{Type/foreign_key|table=Map}} m_mapID;
! width="180 " | Field
  uint32_t m_floorIndex;                                                // for instances with multiple floors  
! width="80" | Type  
  float m_min[2];                                                      // in which range in x and y is this shown. used for scaling.  
! width="600" | Notes
  float m_max[2];
|-
  {{Type/foreign_key|table=AreaTable}} m_parentWorldMapID;      // if only used in a specific area. see the northrend one.  
|0||ID||Integer||
};
|-style="background:#F0F8FF;"
|1||[[Map.dbc|Map]]||iRefID||
|-
|2||Layer||Integer||for instances with multiple floors  
|-
|3-6||Coordinates||Float[4]||in which range in x and y is this shown. used for scaling.  
|-style="background:#F0F8FF;"
|7||[[AreaTable.dbc|Area]]||iRefID||if only used in a specific area. see the northrend one.  
|-
|}


==6.0.1.18179==
==6.0.1.18179==
  struct DungeonMapRec {
  struct DungeonMapRec {
   uint32_t m_ID;
   uint32_t m_ID;
   {{Template:Type/foreign_key|table=Map}} m_mapID;
   {{Type/foreign_key|table=Map}} m_mapID;
   uint32_t m_floorIndex;
   uint32_t m_floorIndex;                                               // for instances with multiple floors
   float m_min[2];
   float m_min[2];                                                       // in which range in x and y is this shown. used for scaling.
   float m_max[2];
   float m_max[2];
   {{Template:Type/foreign_key|table=AreaTable}} m_parentWorldMapID;
   {{Type/foreign_key|table=AreaTable}} m_parentWorldMapID;       // if only used in a specific area. see the northrend one.
   uint32_t m_flags;
   uint32_t m_flags;
  };
  };
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 17:44, 1 January 2020

≥ Wrath

3.0.9.9551

struct DungeonMapRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &MapRec::m_ID> m_mapID;
  uint32_t m_floorIndex;                                                // for instances with multiple floors 
  float m_min[2];                                                       // in which range in x and y is this shown. used for scaling. 
  float m_max[2];
  foreign_key<uint32_t, &AreaTableRec::m_ID> m_parentWorldMapID;       // if only used in a specific area. see the northrend one. 
};

6.0.1.18179

struct DungeonMapRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &MapRec::m_ID> m_mapID;
  uint32_t m_floorIndex;                                                // for instances with multiple floors 
  float m_min[2];                                                       // in which range in x and y is this shown. used for scaling. 
  float m_max[2];
  foreign_key<uint32_t, &AreaTableRec::m_ID> m_parentWorldMapID;       // if only used in a specific area. see the northrend one. 
  uint32_t m_flags;
};