├── .clang-format ├── .gitattributes ├── .github └── workflows │ └── doxygen.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── BSPParser.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── editor.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CMakeLists.txt ├── CMakePresets.json ├── Doxyfile ├── DoxygenLayout.xml ├── LICENSE ├── README.md ├── cmake └── RegisterPublicPackage.cmake └── packages ├── bspparser ├── README.md ├── accessors │ ├── face-accessors.cpp │ ├── face-accessors.hpp │ ├── face-triangulation.cpp │ ├── face-triangulation.hpp │ ├── prop-accessors.cpp │ ├── prop-accessors.hpp │ ├── texture-accessors.cpp │ └── texture-accessors.hpp ├── bsp.cpp ├── bsp.hpp ├── bspparser-doxygen.md ├── bspparser.hpp ├── displacements │ ├── generate-internal-normals.cpp │ ├── normal-blending.cpp │ ├── normal-blending.hpp │ ├── sub-edge-iterator.cpp │ ├── sub-edge-iterator.hpp │ ├── triangulate.cpp │ ├── triangulated-displacement.cpp │ └── triangulated-displacement.hpp ├── enums │ ├── lump.hpp │ ├── props.hpp │ ├── surface.hpp │ └── zip.hpp ├── errors.hpp ├── helpers │ ├── calculate-tangent.cpp │ ├── calculate-tangent.hpp │ ├── calculate-uvs.cpp │ ├── calculate-uvs.hpp │ ├── get-vertex-position.cpp │ ├── get-vertex-position.hpp │ ├── lzma-callback.hpp │ ├── vector-maths.hpp │ ├── zip.cpp │ └── zip.hpp ├── limits.hpp ├── phys-model.hpp ├── structs │ ├── brushes.hpp │ ├── common.hpp │ ├── detail-props.hpp │ ├── displacements.hpp │ ├── geometry.hpp │ ├── headers.hpp │ ├── lzma-header.hpp │ ├── models.hpp │ ├── physics.hpp │ ├── static-props.hpp │ ├── textures.hpp │ └── zip.hpp └── vertex.hpp ├── mdlparser ├── README.md ├── accessors.cpp ├── accessors.hpp ├── enums.hpp ├── helpers │ ├── normalise-directory.cpp │ └── normalise-directory.hpp ├── limits.hpp ├── mdl.cpp ├── mdl.hpp ├── mdlparser-doxygen.md ├── mdlparser.hpp ├── structs │ ├── common.hpp │ ├── mdl.hpp │ ├── vtx.hpp │ └── vvd.hpp ├── vtx.cpp ├── vtx.hpp ├── vvd.cpp └── vvd.hpp ├── phyparser ├── README.md ├── enums.hpp ├── helpers │ ├── surface-parser.cpp │ ├── surface-parser.hpp │ ├── text-section-parser.cpp │ └── text-section-parser.hpp ├── phy.cpp ├── phy.hpp ├── phyparser-doxygen.md ├── phyparser.hpp └── structs │ ├── common.hpp │ ├── mopp.hpp │ └── phy.hpp ├── source-parsers-shared ├── .idea │ ├── .gitignore │ ├── editor.xml │ ├── misc.xml │ ├── modules.xml │ ├── source-parsers-shared.iml │ └── vcs.xml ├── errors.hpp └── internal │ ├── case-insensitive-map.cpp │ ├── case-insensitive-map.hpp │ ├── check-bounds.hpp │ ├── offset-data-view.cpp │ ├── offset-data-view.hpp │ ├── peekable-stream.cpp │ └── peekable-stream.hpp ├── vdfparser ├── README.md ├── errors.hpp ├── keyvalue.cpp ├── keyvalue.hpp ├── vdf.cpp ├── vdf.hpp ├── vdfparser-doxygen.md └── vdfparser.hpp ├── vpkparser ├── README.md ├── structs │ ├── directory-entry.hpp │ └── headers.hpp ├── vpk.cpp ├── vpk.hpp ├── vpkparser-doxygen.md └── vpkparser.hpp └── vtfparser ├── README.md ├── file-format-objects ├── enums.hpp └── header.hpp ├── vtf.cpp ├── vtf.hpp ├── vtfparser-doxygen.md └── vtfparser.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.github/workflows/doxygen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs 2 | out 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | SourceParsers -------------------------------------------------------------------------------- /.idea/BSPParser.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/BSPParser.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/editor.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/Doxyfile -------------------------------------------------------------------------------- /DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/DoxygenLayout.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/README.md -------------------------------------------------------------------------------- /cmake/RegisterPublicPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/cmake/RegisterPublicPackage.cmake -------------------------------------------------------------------------------- /packages/bspparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/README.md -------------------------------------------------------------------------------- /packages/bspparser/accessors/face-accessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/face-accessors.cpp -------------------------------------------------------------------------------- /packages/bspparser/accessors/face-accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/face-accessors.hpp -------------------------------------------------------------------------------- /packages/bspparser/accessors/face-triangulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/face-triangulation.cpp -------------------------------------------------------------------------------- /packages/bspparser/accessors/face-triangulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/face-triangulation.hpp -------------------------------------------------------------------------------- /packages/bspparser/accessors/prop-accessors.cpp: -------------------------------------------------------------------------------- 1 | #include "prop-accessors.hpp" 2 | -------------------------------------------------------------------------------- /packages/bspparser/accessors/prop-accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/prop-accessors.hpp -------------------------------------------------------------------------------- /packages/bspparser/accessors/texture-accessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/texture-accessors.cpp -------------------------------------------------------------------------------- /packages/bspparser/accessors/texture-accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/accessors/texture-accessors.hpp -------------------------------------------------------------------------------- /packages/bspparser/bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/bsp.cpp -------------------------------------------------------------------------------- /packages/bspparser/bsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/bsp.hpp -------------------------------------------------------------------------------- /packages/bspparser/bspparser-doxygen.md: -------------------------------------------------------------------------------- 1 | ./README.md -------------------------------------------------------------------------------- /packages/bspparser/bspparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/bspparser.hpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/generate-internal-normals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/generate-internal-normals.cpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/normal-blending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/normal-blending.cpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/normal-blending.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/normal-blending.hpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/sub-edge-iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/sub-edge-iterator.cpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/sub-edge-iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/sub-edge-iterator.hpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/triangulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/triangulate.cpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/triangulated-displacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/triangulated-displacement.cpp -------------------------------------------------------------------------------- /packages/bspparser/displacements/triangulated-displacement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/displacements/triangulated-displacement.hpp -------------------------------------------------------------------------------- /packages/bspparser/enums/lump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/enums/lump.hpp -------------------------------------------------------------------------------- /packages/bspparser/enums/props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/enums/props.hpp -------------------------------------------------------------------------------- /packages/bspparser/enums/surface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/enums/surface.hpp -------------------------------------------------------------------------------- /packages/bspparser/enums/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/enums/zip.hpp -------------------------------------------------------------------------------- /packages/bspparser/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/errors.hpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/calculate-tangent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/calculate-tangent.cpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/calculate-tangent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/calculate-tangent.hpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/calculate-uvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/calculate-uvs.cpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/calculate-uvs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/calculate-uvs.hpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/get-vertex-position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/get-vertex-position.cpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/get-vertex-position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/get-vertex-position.hpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/lzma-callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/lzma-callback.hpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/vector-maths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/vector-maths.hpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/zip.cpp -------------------------------------------------------------------------------- /packages/bspparser/helpers/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/helpers/zip.hpp -------------------------------------------------------------------------------- /packages/bspparser/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/limits.hpp -------------------------------------------------------------------------------- /packages/bspparser/phys-model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/phys-model.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/brushes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/brushes.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/common.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/detail-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/detail-props.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/displacements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/displacements.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/geometry.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/headers.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/lzma-header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/lzma-header.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/models.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/models.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/physics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/physics.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/static-props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/static-props.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/textures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/textures.hpp -------------------------------------------------------------------------------- /packages/bspparser/structs/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/structs/zip.hpp -------------------------------------------------------------------------------- /packages/bspparser/vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/bspparser/vertex.hpp -------------------------------------------------------------------------------- /packages/mdlparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/README.md -------------------------------------------------------------------------------- /packages/mdlparser/accessors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/accessors.cpp -------------------------------------------------------------------------------- /packages/mdlparser/accessors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/accessors.hpp -------------------------------------------------------------------------------- /packages/mdlparser/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/enums.hpp -------------------------------------------------------------------------------- /packages/mdlparser/helpers/normalise-directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/helpers/normalise-directory.cpp -------------------------------------------------------------------------------- /packages/mdlparser/helpers/normalise-directory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/helpers/normalise-directory.hpp -------------------------------------------------------------------------------- /packages/mdlparser/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/limits.hpp -------------------------------------------------------------------------------- /packages/mdlparser/mdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/mdl.cpp -------------------------------------------------------------------------------- /packages/mdlparser/mdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/mdl.hpp -------------------------------------------------------------------------------- /packages/mdlparser/mdlparser-doxygen.md: -------------------------------------------------------------------------------- 1 | ./README.md -------------------------------------------------------------------------------- /packages/mdlparser/mdlparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/mdlparser.hpp -------------------------------------------------------------------------------- /packages/mdlparser/structs/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/structs/common.hpp -------------------------------------------------------------------------------- /packages/mdlparser/structs/mdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/structs/mdl.hpp -------------------------------------------------------------------------------- /packages/mdlparser/structs/vtx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/structs/vtx.hpp -------------------------------------------------------------------------------- /packages/mdlparser/structs/vvd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/structs/vvd.hpp -------------------------------------------------------------------------------- /packages/mdlparser/vtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/vtx.cpp -------------------------------------------------------------------------------- /packages/mdlparser/vtx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/vtx.hpp -------------------------------------------------------------------------------- /packages/mdlparser/vvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/vvd.cpp -------------------------------------------------------------------------------- /packages/mdlparser/vvd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/mdlparser/vvd.hpp -------------------------------------------------------------------------------- /packages/phyparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/README.md -------------------------------------------------------------------------------- /packages/phyparser/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/enums.hpp -------------------------------------------------------------------------------- /packages/phyparser/helpers/surface-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/helpers/surface-parser.cpp -------------------------------------------------------------------------------- /packages/phyparser/helpers/surface-parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/helpers/surface-parser.hpp -------------------------------------------------------------------------------- /packages/phyparser/helpers/text-section-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/helpers/text-section-parser.cpp -------------------------------------------------------------------------------- /packages/phyparser/helpers/text-section-parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/helpers/text-section-parser.hpp -------------------------------------------------------------------------------- /packages/phyparser/phy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/phy.cpp -------------------------------------------------------------------------------- /packages/phyparser/phy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/phy.hpp -------------------------------------------------------------------------------- /packages/phyparser/phyparser-doxygen.md: -------------------------------------------------------------------------------- 1 | ./README.md -------------------------------------------------------------------------------- /packages/phyparser/phyparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/phyparser.hpp -------------------------------------------------------------------------------- /packages/phyparser/structs/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/structs/common.hpp -------------------------------------------------------------------------------- /packages/phyparser/structs/mopp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/structs/mopp.hpp -------------------------------------------------------------------------------- /packages/phyparser/structs/phy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/phyparser/structs/phy.hpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/.idea/.gitignore -------------------------------------------------------------------------------- /packages/source-parsers-shared/.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/.idea/editor.xml -------------------------------------------------------------------------------- /packages/source-parsers-shared/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/.idea/misc.xml -------------------------------------------------------------------------------- /packages/source-parsers-shared/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/.idea/modules.xml -------------------------------------------------------------------------------- /packages/source-parsers-shared/.idea/source-parsers-shared.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/.idea/source-parsers-shared.iml -------------------------------------------------------------------------------- /packages/source-parsers-shared/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/.idea/vcs.xml -------------------------------------------------------------------------------- /packages/source-parsers-shared/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/errors.hpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/case-insensitive-map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/case-insensitive-map.cpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/case-insensitive-map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/case-insensitive-map.hpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/check-bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/check-bounds.hpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/offset-data-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/offset-data-view.cpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/offset-data-view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/offset-data-view.hpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/peekable-stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/peekable-stream.cpp -------------------------------------------------------------------------------- /packages/source-parsers-shared/internal/peekable-stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/source-parsers-shared/internal/peekable-stream.hpp -------------------------------------------------------------------------------- /packages/vdfparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/README.md -------------------------------------------------------------------------------- /packages/vdfparser/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/errors.hpp -------------------------------------------------------------------------------- /packages/vdfparser/keyvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/keyvalue.cpp -------------------------------------------------------------------------------- /packages/vdfparser/keyvalue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/keyvalue.hpp -------------------------------------------------------------------------------- /packages/vdfparser/vdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/vdf.cpp -------------------------------------------------------------------------------- /packages/vdfparser/vdf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/vdf.hpp -------------------------------------------------------------------------------- /packages/vdfparser/vdfparser-doxygen.md: -------------------------------------------------------------------------------- 1 | ./README.md -------------------------------------------------------------------------------- /packages/vdfparser/vdfparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vdfparser/vdfparser.hpp -------------------------------------------------------------------------------- /packages/vpkparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vpkparser/README.md -------------------------------------------------------------------------------- /packages/vpkparser/structs/directory-entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vpkparser/structs/directory-entry.hpp -------------------------------------------------------------------------------- /packages/vpkparser/structs/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vpkparser/structs/headers.hpp -------------------------------------------------------------------------------- /packages/vpkparser/vpk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vpkparser/vpk.cpp -------------------------------------------------------------------------------- /packages/vpkparser/vpk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vpkparser/vpk.hpp -------------------------------------------------------------------------------- /packages/vpkparser/vpkparser-doxygen.md: -------------------------------------------------------------------------------- 1 | ./README.md -------------------------------------------------------------------------------- /packages/vpkparser/vpkparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vpkparser/vpkparser.hpp -------------------------------------------------------------------------------- /packages/vtfparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vtfparser/README.md -------------------------------------------------------------------------------- /packages/vtfparser/file-format-objects/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vtfparser/file-format-objects/enums.hpp -------------------------------------------------------------------------------- /packages/vtfparser/file-format-objects/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vtfparser/file-format-objects/header.hpp -------------------------------------------------------------------------------- /packages/vtfparser/vtf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vtfparser/vtf.cpp -------------------------------------------------------------------------------- /packages/vtfparser/vtf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vtfparser/vtf.hpp -------------------------------------------------------------------------------- /packages/vtfparser/vtfparser-doxygen.md: -------------------------------------------------------------------------------- 1 | ./README.md -------------------------------------------------------------------------------- /packages/vtfparser/vtfparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TAServers/source-parsers/HEAD/packages/vtfparser/vtfparser.hpp --------------------------------------------------------------------------------