-
Notifications
You must be signed in to change notification settings - Fork 4
What is DML?
DML, or Data Markup Language, is a data serialization system found in KingsIsle games that defines application-specific data structures that are (usually) sent over an underlying KingsIsle Networking Protocol session. However, it should be made clear that DML is not a component of the KingsIsle Networking Protocol, and is something entirely separate; it just so happens that it is used as the application data for Wizard101 and Pirate101.
A "DML Record" is made out of multiple "DML Fields". A "DML Field" consists of a field name (identifier), data type, value, and a "transfer" property that determines whether the field should be copied down, or "transferred", into the binary representation when being serialized.
DML is used in multiple places across KingsIsle games for multiple reasons. The most important usage is inside XML Message Modules, which define DML structures that are sent as messages over a KINP session. They are also used inside configuration files, such as inside defaultconfig.xml inside the Root.wad of Wizard101.
- Introduction
- Data Markup Language (DML)
- Property Class System
- Work in Progress
- KingsIsle Networking Protocol (KINP)
- Sessions
- Message Framing
- Message Structure
- Control Messages
- DML Messages