Jump to content

QPic: Difference between revisions

From modding.dev WIKI
Created page with "A simple image of any size. Specific images of this format can be found in these wad files: * cached.wad - The loading screen and the drop-down console background (WON version only) * gfx.wad - The "LOADING" and "PAUSED" images among others = File Structure QPic = {{binary_struct|Width|type=uint32|length=4|description=Image width, in pixels. Must be divisible by 16.}} {{binary_struct|Height|type=uint32|length=4|description=Image height, in pixels. Must be divisible by 1..."
 
No edit summary
Line 8: Line 8:
{{binary_struct|Pixels|type=byte[]|length=width*height|description=The color index within the pallete.}}
{{binary_struct|Pixels|type=byte[]|length=width*height|description=The color index within the pallete.}}
{{binary_struct|ColorsUsed|type=uint16|length=2|description=Number of colors used in the palette (always 256 for GoldSrc).}}
{{binary_struct|ColorsUsed|type=uint16|length=2|description=Number of colors used in the palette (always 256 for GoldSrc).}}
{{binary_struct|Pallete|type=color[]|length=256 * 3|description=Up to 256 RGB colors used in the texture. Each group of 3 uint32 form a R G B color.}}
{{binary_struct|Palette|type=color[]|length=256 * 3|description=Up to 256 RGB colors used in the texture. Each group of 3 uint32 form a R G B color.}}

Revision as of 22:35, 31 December 2025

A simple image of any size. Specific images of this format can be found in these wad files:

  • cached.wad - The loading screen and the drop-down console background (WON version only)
  • gfx.wad - The "LOADING" and "PAUSED" images among others

File Structure QPic

Width <uint32> (4 bytes)
 
Image width, in pixels. Must be divisible by 16.
Height <uint32> (4 bytes)
 
Image height, in pixels. Must be divisible by 16.
Pixels <byte[]> (width*height bytes)
 
The color index within the pallete.
ColorsUsed <uint16> (2 bytes)
 
Number of colors used in the palette (always 256 for GoldSrc).
Palette <color[]> (256 * 3 bytes)
 
Up to 256 RGB colors used in the texture. Each group of 3 uint32 form a R G B color.