├── .coveragerc ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── requirements.txt └── source │ ├── __init__.py │ ├── api │ ├── bsp.rst │ ├── constants.rst │ ├── lumps.rst │ └── profiles.rst │ ├── api_ref.rst │ ├── conf.py │ ├── contributing.rst │ ├── coverage.svg │ ├── datastructures.rst │ ├── datastructures │ ├── common.rst │ ├── gamelumps.rst │ ├── gamelumps │ │ ├── lump_hlpd.rst │ │ ├── lump_prpd.rst │ │ ├── lump_prps.rst │ │ └── lump_tlpd.rst │ ├── header.rst │ ├── lumps.rst │ └── lumps │ │ ├── lump_0.rst │ │ ├── lump_1.rst │ │ ├── lump_10.rst │ │ ├── lump_11.rst │ │ ├── lump_12.rst │ │ ├── lump_13.rst │ │ ├── lump_14.rst │ │ ├── lump_15.rst │ │ ├── lump_16.rst │ │ ├── lump_17.rst │ │ ├── lump_18.rst │ │ ├── lump_19.rst │ │ ├── lump_2.rst │ │ ├── lump_20.rst │ │ ├── lump_21.rst │ │ ├── lump_22.rst │ │ ├── lump_23.rst │ │ ├── lump_24.rst │ │ ├── lump_25.rst │ │ ├── lump_26.rst │ │ ├── lump_27.rst │ │ ├── lump_28.rst │ │ ├── lump_29.rst │ │ ├── lump_3.rst │ │ ├── lump_30.rst │ │ ├── lump_31.rst │ │ ├── lump_32.rst │ │ ├── lump_33.rst │ │ ├── lump_34.rst │ │ ├── lump_35.rst │ │ ├── lump_36.rst │ │ ├── lump_37.rst │ │ ├── lump_38.rst │ │ ├── lump_39.rst │ │ ├── lump_4.rst │ │ ├── lump_40.rst │ │ ├── lump_41.rst │ │ ├── lump_42.rst │ │ ├── lump_43.rst │ │ ├── lump_44.rst │ │ ├── lump_45.rst │ │ ├── lump_46.rst │ │ ├── lump_47.rst │ │ ├── lump_48.rst │ │ ├── lump_49.rst │ │ ├── lump_5.rst │ │ ├── lump_50.rst │ │ ├── lump_51.rst │ │ ├── lump_52.rst │ │ ├── lump_53.rst │ │ ├── lump_54.rst │ │ ├── lump_55.rst │ │ ├── lump_56.rst │ │ ├── lump_57.rst │ │ ├── lump_58.rst │ │ ├── lump_59.rst │ │ ├── lump_6.rst │ │ ├── lump_60.rst │ │ ├── lump_61.rst │ │ ├── lump_62.rst │ │ ├── lump_63.rst │ │ ├── lump_7.rst │ │ ├── lump_8.rst │ │ └── lump_9.rst │ ├── favicon.ico │ ├── index.rst │ ├── pysourcesdk_bsp.png │ └── quickstart.rst ├── pytest.ini ├── requirements.txt ├── setup.py ├── tests ├── bsp.py └── data │ ├── testmap.bsp │ └── testmap.vmf ├── tox.ini └── valvebsp ├── __init__.py ├── bsp.py ├── constants.py ├── exceptions.py ├── lumps.py ├── profiles.py └── structs ├── __init__.py ├── bsp.py ├── bsp_header.py ├── common.py ├── flags.py ├── lump_0.py ├── lump_1.py ├── lump_10.py ├── lump_11.py ├── lump_12.py ├── lump_13.py ├── lump_14.py ├── lump_15.py ├── lump_16.py ├── lump_17.py ├── lump_18.py ├── lump_19.py ├── lump_2.py ├── lump_20.py ├── lump_21.py ├── lump_22.py ├── lump_23.py ├── lump_24.py ├── lump_25.py ├── lump_26.py ├── lump_27.py ├── lump_28.py ├── lump_29.py ├── lump_3.py ├── lump_30.py ├── lump_31.py ├── lump_32.py ├── lump_33.py ├── lump_34.py ├── lump_35.py ├── lump_36.py ├── lump_37.py ├── lump_38.py ├── lump_39.py ├── lump_4.py ├── lump_40.py ├── lump_41.py ├── lump_42.py ├── lump_43.py ├── lump_44.py ├── lump_45.py ├── lump_46.py ├── lump_47.py ├── lump_48.py ├── lump_49.py ├── lump_5.py ├── lump_50.py ├── lump_51.py ├── lump_52.py ├── lump_53.py ├── lump_54.py ├── lump_55.py ├── lump_56.py ├── lump_57.py ├── lump_58.py ├── lump_59.py ├── lump_6.py ├── lump_60.py ├── lump_61.py ├── lump_62.py ├── lump_63.py ├── lump_7.py ├── lump_8.py ├── lump_9.py ├── lump_hlpd.py ├── lump_prpd.py ├── lump_prps.py └── lump_tlpd.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/README.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/api/bsp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/api/bsp.rst -------------------------------------------------------------------------------- /docs/source/api/constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/api/constants.rst -------------------------------------------------------------------------------- /docs/source/api/lumps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/api/lumps.rst -------------------------------------------------------------------------------- /docs/source/api/profiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/api/profiles.rst -------------------------------------------------------------------------------- /docs/source/api_ref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/api_ref.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/coverage.svg -------------------------------------------------------------------------------- /docs/source/datastructures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures.rst -------------------------------------------------------------------------------- /docs/source/datastructures/common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/common.rst -------------------------------------------------------------------------------- /docs/source/datastructures/gamelumps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/gamelumps.rst -------------------------------------------------------------------------------- /docs/source/datastructures/gamelumps/lump_hlpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/gamelumps/lump_hlpd.rst -------------------------------------------------------------------------------- /docs/source/datastructures/gamelumps/lump_prpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/gamelumps/lump_prpd.rst -------------------------------------------------------------------------------- /docs/source/datastructures/gamelumps/lump_prps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/gamelumps/lump_prps.rst -------------------------------------------------------------------------------- /docs/source/datastructures/gamelumps/lump_tlpd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/gamelumps/lump_tlpd.rst -------------------------------------------------------------------------------- /docs/source/datastructures/header.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/header.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_0.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_1.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_10.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_10.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_11.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_11.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_12.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_12.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_13.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_13.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_14.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_14.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_15.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_15.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_16.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_16.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_17.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_17.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_18.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_18.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_19.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_19.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_2.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_20.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_20.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_21.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_21.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_22.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_22.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_23.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_23.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_24.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_24.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_25.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_25.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_26.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_26.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_27.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_27.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_28.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_28.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_29.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_29.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_3.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_30.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_30.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_31.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_31.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_32.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_32.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_33.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_33.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_34.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_34.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_35.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_35.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_36.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_36.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_37.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_37.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_38.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_38.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_39.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_39.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_4.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_40.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_40.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_41.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_41.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_42.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_42.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_43.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_43.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_44.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_44.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_45.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_45.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_46.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_46.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_47.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_47.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_48.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_48.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_49.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_49.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_5.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_50.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_50.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_51.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_51.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_52.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_52.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_53.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_53.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_54.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_54.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_55.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_55.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_56.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_56.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_57.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_57.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_58.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_58.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_59.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_59.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_6.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_60.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_60.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_61.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_61.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_62.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_62.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_63.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_63.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_7.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_7.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_8.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_8.rst -------------------------------------------------------------------------------- /docs/source/datastructures/lumps/lump_9.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/datastructures/lumps/lump_9.rst -------------------------------------------------------------------------------- /docs/source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/favicon.ico -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/pysourcesdk_bsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/pysourcesdk_bsp.png -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | construct 2 | pyparsing 3 | pytest 4 | future 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/setup.py -------------------------------------------------------------------------------- /tests/bsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/tests/bsp.py -------------------------------------------------------------------------------- /tests/data/testmap.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/tests/data/testmap.bsp -------------------------------------------------------------------------------- /tests/data/testmap.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/tests/data/testmap.vmf -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/tox.ini -------------------------------------------------------------------------------- /valvebsp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/__init__.py -------------------------------------------------------------------------------- /valvebsp/bsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/bsp.py -------------------------------------------------------------------------------- /valvebsp/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/constants.py -------------------------------------------------------------------------------- /valvebsp/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/exceptions.py -------------------------------------------------------------------------------- /valvebsp/lumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/lumps.py -------------------------------------------------------------------------------- /valvebsp/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/profiles.py -------------------------------------------------------------------------------- /valvebsp/structs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /valvebsp/structs/bsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/bsp.py -------------------------------------------------------------------------------- /valvebsp/structs/bsp_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/bsp_header.py -------------------------------------------------------------------------------- /valvebsp/structs/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/common.py -------------------------------------------------------------------------------- /valvebsp/structs/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/flags.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_0.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_1.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_10.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_11.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_12.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_13.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_14.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_15.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_16.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_17.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_18.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_19.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_2.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_20.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_21.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_22.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_23.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_24.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_25.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_26.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_27.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_28.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_29.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_3.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_30.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_31.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_32.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_33.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_34.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_35.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_36.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_37.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_38.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_39.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_4.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_40.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_41.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_42.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_43.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_44.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_45.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_46.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_47.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_48.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_49.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_5.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_50.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_51.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_52.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_53.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_54.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_55.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_56.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_57.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_58.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_59.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_6.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_60.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_61.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_62.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_62.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_63.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_63.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_7.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_8.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_9.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_hlpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_hlpd.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_prpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_prpd.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_prps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_prps.py -------------------------------------------------------------------------------- /valvebsp/structs/lump_tlpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pySourceSDK/ValveBSP/HEAD/valvebsp/structs/lump_tlpd.py --------------------------------------------------------------------------------