DB/Material: Difference between revisions

From wowdev
Jump to navigation Jump to search
(New page: ==Header Info == Records.....................8 Fields......................3 Record Size................12 String Block Size...........1 ==Structure== Column Field Type 1 ID ...)
 
mNo edit summary
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==Header Info ==
==0.5.3.3368, 1.12.1.5875==
Records.....................8
  struct MaterialRec {
  Fields......................3
  uint32_t m_materialID;
  Record Size................12
  uint32_t m_flags; // see 6.0.1.18179
  String Block Size...........1
  uint32_t m_foleySoundID;
  };
==6.0.1.18179==
  struct MaterialRec {
  uint32_t m_ID;
  uint32_t m_flags;                                                  // 1: isMetal, impact_type = item_class == 4 ? (!(flags & 2) ? (flags & 4 ? 1 : 0) : 2) : 0
  {{Template:Type/foreign_key|table=SoundEntries}} m_foleySoundID;
  {{Template:Type/foreign_key|table=SoundEntries}} m_sheatheSoundID;
  {{Template:Type/foreign_key|table=SoundEntries}} m_unsheatheSoundID;
};


==Structure==
[[Category:DBC]]
 
[[Category:DBC_Alpha]]
Column Field Type
[[Category:DBC_Vanilla]]
1 ID Integer
[[Category:DBC_WotLK]]
2 Unknown Integer
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
3 Unknown Integer*
 
Retrieved from "http://www.sourcepeek.com/wiki/Material.dbc"

Latest revision as of 15:47, 12 October 2017

0.5.3.3368, 1.12.1.5875

struct MaterialRec {
  uint32_t m_materialID;
  uint32_t m_flags; // see 6.0.1.18179
  uint32_t m_foleySoundID;
};

6.0.1.18179

struct MaterialRec {
  uint32_t m_ID;
  uint32_t m_flags;                                                  // 1: isMetal, impact_type = item_class == 4 ? (!(flags & 2) ? (flags & 4 ? 1 : 0) : 2) : 0
  foreign_key<uint32_t, &SoundEntriesRec::m_ID> m_foleySoundID;
  foreign_key<uint32_t, &SoundEntriesRec::m_ID> m_sheatheSoundID;
  foreign_key<uint32_t, &SoundEntriesRec::m_ID> m_unsheatheSoundID;
};