-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added SQL output for UIMap questlines (#881)
- Loading branch information
Showing
9 changed files
with
196 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
WowPacketParser/DBC/Structures/TheWarWithin/QuestLineXQuestEntry.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using DBFileReaderLib.Attributes; | ||
|
||
namespace WowPacketParser.DBC.Structures.TheWarWithin | ||
{ | ||
[DBFile("QuestLineXQuest")] | ||
public sealed class QuestLineXQuestEntry | ||
{ | ||
[Index(true)] | ||
public int ID; | ||
public uint QuestLineID; | ||
public uint QuestID; | ||
public uint OrderIndex; | ||
public int Flags; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using WowPacketParser.Enums; | ||
using WowPacketParser.Misc; | ||
using WowPacketParser.SQL; | ||
|
||
namespace WowPacketParser.Store.Objects | ||
{ | ||
[DBTableName("ui_map_quest", TargetedDatabaseFlag.SinceTheWarWithin)] | ||
public sealed record UIMapQuest : IDataModel | ||
{ | ||
[DBFieldName("UIMapId", true)] | ||
public uint? UIMapId; | ||
|
||
[DBFieldName("QuestId", true)] | ||
public uint? QuestId; | ||
|
||
[DBFieldName("VerifiedBuild")] | ||
public int? VerifiedBuild = ClientVersion.BuildInt; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using WowPacketParser.Enums; | ||
using WowPacketParser.Misc; | ||
using WowPacketParser.SQL; | ||
|
||
namespace WowPacketParser.Store.Objects | ||
{ | ||
[DBTableName("ui_map_quest_line", TargetedDatabaseFlag.SinceTheWarWithin)] | ||
public sealed record UIMapQuestLine : IDataModel | ||
{ | ||
[DBFieldName("UIMapId", true)] | ||
public uint? UIMapId; | ||
|
||
[DBFieldName("QuestLineId", true)] | ||
public uint? QuestLineId; | ||
|
||
[DBFieldName("VerifiedBuild")] | ||
public int? VerifiedBuild = ClientVersion.BuildInt; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters