File Types and Formats Last edited 5 years ago2018-06-16 10:32:30 UTC

You are viewing an older revision of this wiki page. The current revision may be more detailed and up-to-date. Click here to see the current revision of this page.
The following is a list of file types that are commonly found when mapping.
ExtensionNameEnginesDetails
.bspBinary Space PartitionGoldsource, SourceThis is a compiled map file that the engine will load. Compile tools turn your map in the editor into a BSP file.
.fgdForge Game DataGoldsource, SourceThis is a definition file used by Hammer and other editors to detect what entities are available to be used. Each game and mod will use its own FGD file, so be sure to use the correct one for your game. The name "Forge" comes from the original codename for the Worldcraft editor, now known as Hammer.
.linLinear PointfileGoldsource, SourceCompile tools will generate a pointfile when there is a leak in your map. You can open the pointfile in your editor to trace a line from the leaking entity to the outside of your map. It is recommended you use the LIN file over the PTS file, if it is available.
.logLog fileGoldsource, SourceA log file is typically generated by compile tools or other programs to save their output to a file. You can view them in Notepad or any other text editor. If you have errors during your compile, you can check the log file for details.
.mapQuake MAP fileGoldsourceThe MAP format is the format used by Quake editors and it can be used by Goldsource editors as well, though an RMF is a better option. Goldsource compile tools require a map to be in MAP format, however the editor will automatically do this.
.pntPointfileGoldsource, SourceCompile tools will generate a pointfile when there is a leak in your map. You can open the pointfile in your editor to trace a line from the leaking entity to the outside of your map, however it is sometimes difficult to follow the line. If your tools generate a .lin file, it will probably be easier to follow.
.rmfRich Map FormatGoldsourceRMF files are the source format of maps created by the Hammer editor. The format is perfect for Goldsource maps, however it cannot be used for any other engine. Unlike the MAP format, RMF saves groups, visgroups, colours, and other metadata that Hammer displays.
.rmxRMF BackupGoldsourceWhen Hammer saves your RMF, it first renames the existing RMF file to RMX. Think of it as a snapshot of your map from the previous save. It is not, however, a very good version control mechanism. You should store your map source files in a source control system such as SVN or Git.
.sprSprite fileGoldsourceThis is a sprite file for the Goldsource engine.
.vmfValve Map FormatSourceThe VMF format was created as a successor to the RMF format. Rather than RMF's binary layout, VMF uses a text based layout similar to XML or JSON. This is better for version control systems, and it aslo makes it easy for other editors to extend upon the format to add custom items.
.vmtValve Material TypeSourceThis is a material for the Source engine. A VMT is a text-based shader definition, the actual texture is typically stored in a related VTF file.
.vpkValve PackageSourceThis format is very similar to the PAK format used by Quake, however it is modified to match Valve's requirements. VPK files typically contain all the maps, models, materials, sounds, and other files for Source games downloaded from Steam.
.vtfValve Texture FormatSourceA file for that Source engine that contains image data. VTF files are referenced by a material specified by a VMT file.
.wadWAD texture fileGoldsourceIn the Quake engine, WAD stands for "Where's All the Data?", as this format stored all the different data types used by the engine. In Goldsource, however, only textures are stored in WAD files. Use Wally to edit them.

Comments

You must log in to post a comment. You can login or register a new account.