archiver_wad.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * WAD support routines for PhysicsFS.
  3. *
  4. * This driver handles DOOM engine archives ("wads").
  5. * This format (but not this driver) was designed by id Software for use
  6. * with the DOOM engine.
  7. * The specs of the format are from the unofficial doom specs v1.666
  8. * found here: http://www.gamers.org/dhs/helpdocs/dmsp1666.html
  9. * The format of the archive: (from the specs)
  10. *
  11. * A WAD file has three parts:
  12. * (1) a twelve-byte header
  13. * (2) one or more "lumps"
  14. * (3) a directory or "info table" that contains the names, offsets, and
  15. * sizes of all the lumps in the WAD
  16. *
  17. * The header consists of three four-byte parts:
  18. * (a) an ASCII string which must be either "IWAD" or "PWAD"
  19. * (b) a 4-byte (long) integer which is the number of lumps in the wad
  20. * (c) a long integer which is the file offset to the start of
  21. * the directory
  22. *
  23. * The directory has one 16-byte entry for every lump. Each entry consists
  24. * of three parts:
  25. *
  26. * (a) a long integer, the file offset to the start of the lump
  27. * (b) a long integer, the size of the lump in bytes
  28. * (c) an 8-byte ASCII string, the name of the lump, padded with zeros.
  29. * For example, the "DEMO1" entry in hexadecimal would be
  30. * (44 45 4D 4F 31 00 00 00)
  31. *
  32. * Note that there is no way to tell if an opened WAD archive is a
  33. * IWAD or PWAD with this archiver.
  34. * I couldn't think of a way to provide that information, without being too
  35. * hacky.
  36. * I don't think it's really that important though.
  37. *
  38. *
  39. * Please see the file LICENSE.txt in the source's root directory.
  40. *
  41. * This file written by Travis Wells, based on the GRP archiver by
  42. * Ryan C. Gordon.
  43. */
  44. #define __PHYSICSFS_INTERNAL__
  45. #include "physfs_internal.h"
  46. #if PHYSFS_SUPPORTS_WAD
  47. static UNPKentry *wadLoadEntries(PHYSFS_Io *io, PHYSFS_uint32 fileCount)
  48. {
  49. PHYSFS_uint32 directoryOffset;
  50. UNPKentry *entries = NULL;
  51. UNPKentry *entry = NULL;
  52. BAIL_IF_MACRO(!__PHYSFS_readAll(io, &directoryOffset, 4), ERRPASS, 0);
  53. directoryOffset = PHYSFS_swapULE32(directoryOffset);
  54. BAIL_IF_MACRO(!io->seek(io, directoryOffset), ERRPASS, 0);
  55. entries = (UNPKentry *) allocator.Malloc(sizeof (UNPKentry) * fileCount);
  56. BAIL_IF_MACRO(!entries, PHYSFS_ERR_OUT_OF_MEMORY, NULL);
  57. for (entry = entries; fileCount > 0; fileCount--, entry++)
  58. {
  59. if (!__PHYSFS_readAll(io, &entry->startPos, 4)) goto failed;
  60. if (!__PHYSFS_readAll(io, &entry->size, 4)) goto failed;
  61. if (!__PHYSFS_readAll(io, &entry->name, 8)) goto failed;
  62. entry->name[8] = '\0'; /* name might not be null-terminated in file. */
  63. entry->size = PHYSFS_swapULE32(entry->size);
  64. entry->startPos = PHYSFS_swapULE32(entry->startPos);
  65. } /* for */
  66. return entries;
  67. failed:
  68. allocator.Free(entries);
  69. return NULL;
  70. } /* wadLoadEntries */
  71. static void *WAD_openArchive(PHYSFS_Io *io, const char *name, int forWriting)
  72. {
  73. PHYSFS_uint8 buf[4];
  74. UNPKentry *entries = NULL;
  75. PHYSFS_uint32 count = 0;
  76. assert(io != NULL); /* shouldn't ever happen. */
  77. BAIL_IF_MACRO(forWriting, PHYSFS_ERR_READ_ONLY, NULL);
  78. BAIL_IF_MACRO(!__PHYSFS_readAll(io, buf, sizeof (buf)), ERRPASS, NULL);
  79. if ((memcmp(buf, "IWAD", 4) != 0) && (memcmp(buf, "PWAD", 4) != 0))
  80. BAIL_MACRO(PHYSFS_ERR_UNSUPPORTED, NULL);
  81. BAIL_IF_MACRO(!__PHYSFS_readAll(io, &count, sizeof (count)), ERRPASS, NULL);
  82. count = PHYSFS_swapULE32(count);
  83. entries = wadLoadEntries(io, count);
  84. BAIL_IF_MACRO(!entries, ERRPASS, NULL);
  85. return UNPK_openArchive(io, entries, count);
  86. } /* WAD_openArchive */
  87. const PHYSFS_Archiver __PHYSFS_Archiver_WAD =
  88. {
  89. CURRENT_PHYSFS_ARCHIVER_API_VERSION,
  90. {
  91. "WAD",
  92. "DOOM engine format",
  93. "Travis Wells <traviswells@mchsi.com>",
  94. "http://www.3dmm2.com/doom/",
  95. 0, /* supportsSymlinks */
  96. },
  97. WAD_openArchive,
  98. UNPK_enumerateFiles,
  99. UNPK_openRead,
  100. UNPK_openWrite,
  101. UNPK_openAppend,
  102. UNPK_remove,
  103. UNPK_mkdir,
  104. UNPK_stat,
  105. UNPK_closeArchive
  106. };
  107. #endif /* defined PHYSFS_SUPPORTS_WAD */
  108. /* end of archiver_wad.c ... */