GameMaker DAT WIN: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
Line 60: Line 60:
* [https://github.com/panzi/cook-serve-hoomans/blob/master/fileformat.md Game Maker Archive File Format (Github)]
* [https://github.com/panzi/cook-serve-hoomans/blob/master/fileformat.md Game Maker Archive File Format (Github)]
* [https://github.com/krzys-h/UndertaleModTool/wiki/Corrections-to-GameMaker-Studio-1.4-data.win-format-and-VM-bytecode,-.yydebug-format-and-debugger-instructions File format notes (Github)]
* [https://github.com/krzys-h/UndertaleModTool/wiki/Corrections-to-GameMaker-Studio-1.4-data.win-format-and-VM-bytecode,-.yydebug-format-and-debugger-instructions File format notes (Github)]
=== Gallery ===
<gallery bordercolor="transparent" spacing="small" orientation="landscape">
und_mod_tool_1.png
und_mod_tool_2.png
</gallery>
<br/><br>
<br/><br>



Revision as of 17:55, 19 February 2022

Back to index | Edit this page

DAT, WIN

  • Format Type : Archive
  • Endian Order : Little Endian
  • Signature : FORM


Format Specifications

//header
4 bytes (char) - signature // "FORM"
4 bytes (uint32) - chunk size / archive size

num_of_chunks *
{
   4 bytes (char) - chunk name  // e.g. "AUDO"
   4 bytes (uint32) - chunk name
   x bytes - unknown
   x bytes - data
}

Notes and Comments

  • This file format occues in games made using GameMaker Studio from YoYo Games.
  • This file format supports several chunk types: AUDO, GEN8, OPTN, EXTN, SOND, SPRT, BGND, PATH, SCPT, FONT, TMLN, OBJT, ROOM, DAFL, TPAG, CODE, VARI, FUNC, STRG, TXTR.
  • Filename of the archive is often data.win or gamedata.dat.

Games

List of games using this file format:

  • Arietta of Spirits (*.DAT / *.WIN)
  • Deltarune
  • Fran Bow
  • Memoranda
  • Risk Of Rain
  • Rock God Tycoon (*.WIN)
  • Undertale
  • Valdis Story: Abyssal City

QuickBMS Script

Compatible Programs

See Also

Gallery