srctools.packlist
Handles the list of files which are desired to be packed into the BSP.
- class srctools.packlist.FileType
Bases:
EnumDifferent kinds of files for Source, mainly to indicate resources to pack.
If this represents a specific file type, the value is the extension. Otherwise, it’s an arbitrary integer. That occurs for things like soundscript entries which are arbitary names.
- GENERIC = 0
Arbitrary file type.
- SOUNDSCRIPT = 1
Script file containing soundscripts.
- GAME_SOUND = 2
world.blahsound - lookup the soundscript, and raw files.
- RAW_SOUND = 'wav'
A WAV/MP3/OGG sound file.
- PARTICLE = 3
Alias:
PARTICLE_SYSTEMThe name of a particle system.
- PARTICLE_FILE = 'pcf'
A particle collection file.
- VSCRIPT_SQUIRREL = 'nut'
Squirrel VScript file.
- ENTITY = 4
Classname of another entity that this entity includes. This is only permitted in the FGD file.
- ENTCLASS_FUNC = 5
Name of a function to call defined inside the packlist module. This is used to mark entities which require special handling.
- BREAKABLE_CHUNK = 6
Randomised generic chunk gibs. This corresponds to
g_PropDataSystem.GetRandomChunkModel().
- WEAPON_SCRIPT = 7
A script file loaded for weapons, referencing models and sounds.
- MATERIAL = 'vmt'
Material file.
- TEXTURE = 'vtf'
VTF texture, implicitly looks for
.hdr.vtftoo.
- CHOREO = 'vcd'
Choreographed scenes.
- MODEL = 'mdl'
Source model, implies the
vtx,vvd,phyfiles too.
- class srctools.packlist.FileMode
Bases:
EnumMode for files we may want to pack like soundscripts or particles.
- UNKNOWN = 'unknown'
- INCLUDE = 'include'
- PRELOAD = 'preload'
- EXCLUDE = 'exclude'
- is_used
Return if this file should be packed into the map.
- class srctools.packlist.PackFile( )
Represents a single file we are packing.
data is raw data to pack directly, instead of from the filesystem.
- class srctools.packlist.PackList(fsys: FileSystemChain)
Represents a list of resources for a map.
- fsys: FileSystemChain
- pack_file(
- filename: str | PathLike[str],
- data_type: FileType = FileType.GENERIC,
- data: bytes | None = None,
- *,
- skinset: set[int] | None = None,
- optional: bool = False,
- source: str = '',
Queue the given file to be packed.
- Parameters:
filename – The name of the file to pack. This could be symbolic if certain file types are specified.
data_type – Indicates definiteively what type of file this is. If generic, this is inferred from the extension.
data – If provided, this file will use the given data instead of any on-disk data.
skinset – If the file is a model, skinset allows restricting which skins are used. If None (default), all skins may be used. Otherwise, it is a set of skins. If all uses of a model restrict the skin, only those skins need to be packed.
optional – If set, no errors will occur if it isn’t in the filesystem.
source – Human-readable string indicating the reason for packing.
- inject_file(data: bytes, folder: str, ext: str, *, source: str = 'inject') str
Inject a generated file into the map and return the full name.
The file will be named using the format “INJECT_<hex>”. If the same file is requested twice (same folder, extension and data), only one will be included.
- inject_vscript(code: str, folder: str = 'inject') str
Specialised variant of inject_file() for VScript code specifically.
This returns the script name suitable for passing to Entity Scripts.
- load_soundscript( ) Iterable[Sound]
Read in a soundscript and record which files use it.
If always_include is True, it will be included in the manifests even if it isn’t used.
The sounds registered by this soundscript are returned.
- load_particle_system( ) Iterable[Particle]
Read in the specified particle system and record the particles for usage checking.
- load_soundscript_manifest(cache_file: Path | str | None = None) None
Read the soundscript manifest, and read all mentioned scripts.
If cache_file is provided, it should be a path to a file used to cache the file reading for later use.
- load_particle_manifest(cache_file: Path | str | None = None) None
Read the particle manifest, and read all mentioned scripts.
If cache_file is provided, it should be a path to a file used to cache the file reading for later use.
- write_soundscript_manifest() None
Produce and pack a soundscript manifest file for this map.
It will be packed such that it can override the master manifest with sv_soundemitter_flush.
- write_particles_manifest(manifest_name: str) None
Write a particles manifest, so that used particles can be loaded.
- pack_from_ents( ) None
Analyse the map to pack files, using an internal database of keyvalues.
‘detailmaterial’ is handled in
pack_from_bsp(), we only need to include it if a detail sprite is actually present in the BSP.
- pack_into_zip(bsp: ~srctools.bsp.BSP, *, whitelist: ~collections.abc.Iterable[~srctools.filesys.FileSystem] = (), blacklist: ~collections.abc.Iterable[~srctools.filesys.FileSystem] = (), callback: ~collections.abc.Callable[[str], bool | None] = <function PackList.<lambda>>, dump_loc: ~pathlib.Path | None = None, only_dump: bool = False, ignore_vpk: bool = True) None
Pack all our files into the packfile in the BSP.
The filesystem is used to find files to pack. First it is passed to the callback (if provided), which should return True/False to determine if the file should be packed. If it returns None, then the whitelist/blacklist is checked. Filesystems must be in the whitelist and not in the blacklist, if provided. If ignore_vpk is True, files in VPK won’t be packed unless that system is in allow_filesys. If dump_loc is set, files will be copied there as well. If only_dump is set, they won’t be packed at all.
- srctools.packlist.strip_extension(filename: str) str
Strip extensions from a filename, like Q_StripExtension().
- srctools.packlist.entclass_canonicalize(classname: str) str
Canonicalise classnames - some ents have old classnames for compatibility and the like.
For example
func_movelinearwas originallymomentary_door. This doesn’t include names which have observably different behaviour, likeprop_physics_override.- Deprecated:
Use
EntityDef.engine_def(), then check if the entity is an alias.
- srctools.packlist.entclass_canonicalise(classname: str) str
Canonicalise classnames - some ents have old classnames for compatibility and the like.
For example
func_movelinearwas originallymomentary_door. This doesn’t include names which have observably different behaviour, likeprop_physics_override.- Deprecated:
Use
EntityDef.engine_def(), then check if the entity is an alias.
- srctools.packlist.entclass_packfunc(
- classname: str,
For some entities, they have unique packing behaviour depending on keyvalues.
If the specified classname is one, return a callable that packs it.
- Deprecated:
Use
EntityDef.engine_cls()thenEntityDef.get_resources().
- for ... in srctools.packlist.entclass_resources(
- classname: str,
Fetch a list of resources this entity class is known to use in code.
- Deprecated:
- srctools.packlist.entclass_iter() Collection[str]
Yield all classnames with known behaviour.
- Deprecated:
Use
FGD.engine_db()instead.