A library to parse .FGD files (editor schema definition files for the Source engine).
Project description
ValveFGD
ValveFGD is a Python library designed to parse and edit .FGD files, which provides logic entity schemas for Valve's level editor as well as some configuration information.
Full documentation: https://pysourcesdk.github.io/ValveFGD/
Installation
PyPI
ValveFGD is available on the Python Package Index. This makes installing it with pip as easy as:
pip3 install valvefgd
Git
If you want the latest code or even feel like contributing, the code is available on GitHub.
You can easily clone the code with git:
git clone git@github.com:pySourceSDK/ValveFGD.git
and install it with:
python3 setup.py install
Usage
Here's a few example usage of ValveFGD
Parsing
You can get a Fgd object by parsing an .fgd file using FgdParse
>>> from valvefgd import FgdParse
>>> fgd = FgdParse('C:/Program Files (x86)/Steam/steamapps/common/Team Fortress 2/bin/tf.fgd')
Writing
You can write an .fgd file from a Fgd object.
Parsing/writing is destructive. Comments will be lost. The original structure of the file may be altered. The actual data about entities and the inheritance hierarchy is untouched however.
>>> from valvefgd import FgdWrite
>>> FgdWrite(fgd, 'tf-clone.fgd')
Getting entity schemas
You can get entity schematics from an Fgd object.
>>> env_fire = fgd.entity_by_name('env_fire')
>>> print(env_fire.schema)
{'properties': {'targetname': {'type': 'string', 'description': 'The name...'}, ...},
'inputs': {'StartFire': {'type': 'void', 'description': 'Start the fire'}, ...},
'outputs': {'onIgnited': {'type': 'void', 'description':'Fires when...'}, ...}}
Terminology
Here are some color coded charts for the terminology used in this library for fgd files.
FgdEntity
FgdEntityInput/Output
FgdEntityProperty
FgdEntityPropertyOption
FgdEntitySpawnflag
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file valvefgd-1.0.5.tar.gz
.
File metadata
- Download URL: valvefgd-1.0.5.tar.gz
- Upload date:
- Size: 24.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f78a3de5e76cf8471af8f0cc4f7c0e551521c6c184fce08963f813256dccdbb9 |
|
MD5 | 80da5b162f637de95e2345bb5ab81924 |
|
BLAKE2b-256 | 4564cec341c1370ac85f84d2420ebb06e280850538c76f44b892319443bf4413 |
File details
Details for the file valvefgd-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: valvefgd-1.0.5-py3-none-any.whl
- Upload date:
- Size: 23.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bfffa5b4cb792f6d770c6ecd59f8af61f7c2604438eb5e735705272ffe0a13b |
|
MD5 | 9f96e86905211904e9393634bcc6b3d0 |
|
BLAKE2b-256 | c3a73da31670e60fd2e2711f836db024c5fe8e7c0f9ca690b226da8e36ee56ed |