├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── pyffi.iml └── vcs.xml ├── .travis.yml ├── AUTHORS.rst ├── Bethsoft Forum Thread.txt ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── INSTALL.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── THANKS.rst ├── TODO.rst ├── appveyor.yml ├── cleaninstall.sh ├── docs ├── Makefile ├── _static │ ├── .gitignore │ ├── favicon.ico │ └── logo.png ├── authors.rst ├── changes.rst ├── conf.py ├── contribute.rst ├── glossary.rst ├── index.rst ├── install.rst ├── intro.rst ├── license.rst ├── make.bat ├── pyffi │ ├── formats │ │ ├── bsa.rst │ │ ├── cgf.rst │ │ ├── dae.rst │ │ ├── dds.rst │ │ ├── egm.rst │ │ ├── egt.rst │ │ ├── esp.rst │ │ ├── index.rst │ │ ├── kfm.rst │ │ ├── nif.rst │ │ ├── tga.rst │ │ └── tri.rst │ ├── index.rst │ ├── object_models.rst │ └── spells │ │ ├── cgf.rst │ │ ├── dds.rst │ │ ├── index.rst │ │ ├── kfm.rst │ │ ├── nif.rst │ │ └── tga.rst ├── thanks.rst └── todo.rst ├── epydoc-sphinx.patch ├── examples ├── metaclasses │ └── howto_generate_class_from_xml.py └── simple │ ├── simple.py │ ├── simple.xml │ ├── somefile.simple │ ├── testread.py │ └── testwrite.py ├── fixeol.sh ├── install.bat ├── makezip.bat ├── makezip.sh ├── pyffi ├── VERSION ├── __init__.py ├── fileformat.dtd ├── formats │ ├── __init__.py │ ├── bsa │ │ ├── __init__.py │ │ └── bsa.xml │ ├── cgf │ │ ├── __init__.py │ │ └── cgf.xml │ ├── dae │ │ ├── COLLADASchema.xsd │ │ └── __init__.py │ ├── dds │ │ ├── __init__.py │ │ └── dds.xml │ ├── egm │ │ ├── __init__.py │ │ └── egm.xml │ ├── egt │ │ ├── __init__.py │ │ └── egt.xml │ ├── esp │ │ ├── __init__.py │ │ └── esp.xml │ ├── kfm │ │ └── __init__.py │ ├── nif │ │ └── __init__.py │ ├── psk │ │ ├── __init__.py │ │ └── psk.xml │ ├── rockstar │ │ ├── __init__.py │ │ └── dir_ │ │ │ ├── __init__.py │ │ │ └── dir.xml │ ├── tga │ │ ├── __init__.py │ │ └── tga.xml │ └── tri │ │ ├── __init__.py │ │ └── tri.xml ├── object_models │ ├── __init__.py │ ├── any_type.py │ ├── array_type.py │ ├── binary_type.py │ ├── common.py │ ├── editable.py │ ├── mex │ │ └── __init__.py │ ├── simple_type.py │ ├── xml │ │ ├── __init__.py │ │ ├── array.py │ │ ├── basic.py │ │ ├── bit_struct.py │ │ ├── enum.py │ │ ├── expression.py │ │ └── struct_.py │ └── xsd │ │ └── __init__.py ├── qskope │ ├── __init__.py │ ├── detail_delegate.py │ ├── detail_model.py │ ├── detail_tree.py │ ├── global_model.py │ └── global_tree.py ├── spells │ ├── __init__.py │ ├── cgf │ │ ├── __init__.py │ │ ├── check.py │ │ └── dump.py │ ├── check.py │ ├── dds.py │ ├── kfm.py │ ├── nif │ │ ├── __init__.py │ │ ├── check.py │ │ ├── dump.py │ │ ├── fix.py │ │ ├── modify.py │ │ └── optimize.py │ └── tga.py └── utils │ ├── __init__.py │ ├── graph.py │ ├── inertia.py │ ├── mathutils.py │ ├── mopp.py │ ├── mopper.exe │ ├── quickhull.py │ ├── tangentspace.py │ ├── trianglemesh.py │ ├── trianglestripifier.py │ ├── tristrip.py │ ├── vertex_cache.py │ └── withref.py ├── pylintrc ├── requirements ├── requirements-dev.txt ├── requirements-docs.txt └── requirements.txt ├── scripts ├── cgf │ └── cgftoaster.py ├── kfm │ └── kfmtoaster.py ├── nif │ ├── nifmakehsl.py │ └── niftoaster.py ├── patch_recursive_apply.py ├── patch_recursive_make.py ├── qskope.py ├── rockstar_pack_dir_img.py └── rockstar_unpack_dir_img.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── formats │ ├── bsa │ │ └── test.bsa │ ├── dae │ │ └── cube.dae │ ├── dds │ │ └── test.dds │ ├── egm │ │ └── mmouthxivilai.egm │ ├── egt │ │ └── test.egt │ ├── esp │ │ └── test.esp │ ├── nif │ │ ├── test_bhkpackednitristrips.py │ │ ├── test_matrix.py │ │ └── test_skinpartition.py │ ├── psk │ │ ├── examplemesh.psk │ │ └── pendulum.psa │ ├── rockstar │ │ └── dir │ │ │ ├── test.dir │ │ │ └── test.img │ ├── tga │ │ ├── test.tga │ │ └── test_footer.tga │ └── tri │ │ └── mmouthxivilai.tri ├── object_model │ ├── test_arraytype.py │ ├── test_simpletype.py │ └── xml │ │ ├── test_bit_struct.py │ │ └── test_expression.py ├── perf │ ├── fraps_minmaxavg.py │ ├── memleak.txt │ ├── objgraph.py │ ├── runvalgrind.sh │ ├── summary.py │ ├── txt_minmaxavg.py │ ├── valgrind_summary_check_read.txt │ └── valgrind_summary_nothing.txt ├── scripts │ ├── __init__.py │ ├── cgf │ │ ├── __init__.py │ │ └── test_cgftoaster.py │ ├── kfm │ │ ├── __init__.py │ │ └── test_kfmtoaster.py │ └── nif │ │ ├── __init__.py │ │ └── test_niftoaster.py ├── spells │ ├── __init__.py │ ├── cgf │ │ ├── __init__.py │ │ ├── check │ │ │ ├── __init__.py │ │ │ ├── test_tangentspace.py │ │ │ └── test_vertex_colors.py │ │ ├── dump │ │ │ ├── __init__.py │ │ │ └── test_dump_data.py │ │ └── files │ │ │ ├── invalid.cgf │ │ │ ├── monkey.cgf │ │ │ ├── monkey.mtl │ │ │ ├── test.cgf │ │ │ └── vcols.cgf │ ├── egm │ │ └── optimise.txt │ ├── kf │ │ ├── __init__.py │ │ ├── test_controllersequence.kf │ │ ├── test_controllersequence_fo3.kf │ │ └── test_getsetbonepriorities.py │ ├── kfm │ │ └── files │ │ │ ├── invalid.kfm │ │ │ └── test.kfm │ ├── nif │ │ ├── __init__.py │ │ ├── dump │ │ │ ├── __init__.py │ │ │ └── test_texture_properties.py │ │ ├── files │ │ │ ├── invalid.nif │ │ │ ├── nds.nif │ │ │ ├── neosteam.nif │ │ │ ├── test.nif │ │ │ ├── test_centerradius.nif │ │ │ ├── test_check_tangentspace1.nif │ │ │ ├── test_check_tangentspace2.nif │ │ │ ├── test_check_tangentspace3.nif │ │ │ ├── test_check_tangentspace4.nif │ │ │ ├── test_convexverticesshape.nif │ │ │ ├── test_dump_tex.nif │ │ │ ├── test_fix_clampmaterialalpha.nif │ │ │ ├── test_fix_cleanstringpalette.nif │ │ │ ├── test_fix_detachhavoktristripsdata.nif │ │ │ ├── test_fix_disableparallax.nif │ │ │ ├── test_fix_ffvt3rskinpartition.nif │ │ │ ├── test_fix_mergeskeletonroots.nif │ │ │ ├── test_fix_tangentspace.nif │ │ │ ├── test_fix_texturepath.nif │ │ │ ├── test_grid_128x128.nif │ │ │ ├── test_grid_64x64.nif │ │ │ ├── test_mopp.nif │ │ │ ├── test_opt_collision_complex_mopp.nif │ │ │ ├── test_opt_collision_mopp.nif │ │ │ ├── test_opt_collision_packed.nif │ │ │ ├── test_opt_collision_to_boxshape.nif │ │ │ ├── test_opt_collision_to_boxshape_notabox.nif │ │ │ ├── test_opt_collision_unpacked.nif │ │ │ ├── test_opt_delunusedbones.nif │ │ │ ├── test_opt_dupgeomdata.nif │ │ │ ├── test_opt_dupverts.nif │ │ │ ├── test_opt_emptyproperties.nif │ │ │ ├── test_opt_grid_layout.nif │ │ │ ├── test_opt_mergeduplicates.nif │ │ │ ├── test_opt_vertex_cache.nif │ │ │ ├── test_opt_zeroscale.nif │ │ │ ├── test_skincenterradius.nif │ │ │ └── test_vertexcolor.nif │ │ ├── fix │ │ │ ├── __init__.py │ │ │ ├── test_clampmaterialalpha.py │ │ │ ├── test_cleanstringpalette.py │ │ │ ├── test_detachhavoktristripsdata.py │ │ │ ├── test_ffvt3rskin.py │ │ │ ├── test_substitutestringpalette.py │ │ │ ├── test_tangentspace.py │ │ │ └── test_texturepath.py │ │ ├── modify │ │ │ ├── __init__.py │ │ │ ├── test_allbonepriorities.py │ │ │ ├── test_delbranches.py │ │ │ └── test_delvertexcolor.py │ │ └── optimize │ │ │ ├── __init__.py │ │ │ ├── test_collision.py │ │ │ ├── test_delunusedbones.py │ │ │ ├── test_delzeroscale.py │ │ │ ├── test_mergeduplicates.py │ │ │ ├── test_niftoaster.py │ │ │ └── test_vertex_cache.py │ └── test_toaster.py ├── test_doctests.py └── utils │ ├── __init__.py │ ├── test_inertia.py │ ├── test_trianglemesh.py │ ├── test_utils.py │ └── test_withref.py ├── todo ├── NifVis │ ├── __init__.py │ ├── lizers │ │ ├── NiBinaryVoxelData.py │ │ ├── NiTriBasedGeom.py │ │ ├── NiTriShape.py │ │ ├── NiTriStrips.py │ │ ├── __init__.py │ │ ├── bhkMoppBvTreeShape.py │ │ └── bhkMoppBvTreeShape_alt.py │ ├── ua.py │ ├── vis_cfg.py │ ├── vis_gl.py │ ├── vis_nif.py │ └── vis_run.py ├── NifVis_README.TXT ├── README.TXT ├── ez_setup.py └── nifvisualizer.py ├── utilities └── toaster │ ├── bully_unpack_nft.bat │ ├── bully_unpack_nft.ini │ ├── default.ini │ ├── oblivion_optimize.bat │ ├── oblivion_optimize_01.ini │ ├── oblivion_optimize_02.ini │ ├── oblivion_optimize_03.ini │ ├── patch_recursive_apply.bat │ ├── patch_recursive_make.bat │ ├── rockstar_pack_dir_img.bat │ ├── rockstar_unpack_dir_img.bat │ ├── shell_optimize.ini │ ├── xdeltadiff.sh │ └── xdeltapatch.sh └── win-install ├── nsis1-install.ico ├── nsis1-uninstall.ico ├── pyffi.nsh ├── pyffi_install_150x57.bmp ├── pyffi_install_152x261.bmp ├── pyffi_install_164x314.bmp └── pyffi_install_164x314.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/pyffi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.idea/pyffi.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /Bethsoft Forum Thread.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/Bethsoft Forum Thread.txt -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/README.rst -------------------------------------------------------------------------------- /THANKS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/THANKS.rst -------------------------------------------------------------------------------- /TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/TODO.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cleaninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/cleaninstall.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !favicon.ico 4 | !logo.png -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pyffi/formats/bsa.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.bsa 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/cgf.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.cgf 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/dae.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.dae 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/dds.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.dds 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/egm.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.egm 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/egt.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.egt 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/esp.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.esp 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/index.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/kfm.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.kfm 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/nif.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.nif 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/tga.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.tga 2 | -------------------------------------------------------------------------------- /docs/pyffi/formats/tri.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.formats.tri 2 | -------------------------------------------------------------------------------- /docs/pyffi/index.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi 2 | -------------------------------------------------------------------------------- /docs/pyffi/object_models.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.object_models 2 | -------------------------------------------------------------------------------- /docs/pyffi/spells/cgf.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.spells.cgf 2 | -------------------------------------------------------------------------------- /docs/pyffi/spells/dds.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.spells.dds 2 | -------------------------------------------------------------------------------- /docs/pyffi/spells/index.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.spells 2 | -------------------------------------------------------------------------------- /docs/pyffi/spells/kfm.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.spells.kfm 2 | -------------------------------------------------------------------------------- /docs/pyffi/spells/nif.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.spells.nif 2 | -------------------------------------------------------------------------------- /docs/pyffi/spells/tga.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: pyffi.spells.tga 2 | -------------------------------------------------------------------------------- /docs/thanks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/thanks.rst -------------------------------------------------------------------------------- /docs/todo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/docs/todo.rst -------------------------------------------------------------------------------- /epydoc-sphinx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/epydoc-sphinx.patch -------------------------------------------------------------------------------- /examples/metaclasses/howto_generate_class_from_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/examples/metaclasses/howto_generate_class_from_xml.py -------------------------------------------------------------------------------- /examples/simple/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/examples/simple/simple.py -------------------------------------------------------------------------------- /examples/simple/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/examples/simple/simple.xml -------------------------------------------------------------------------------- /examples/simple/somefile.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/examples/simple/somefile.simple -------------------------------------------------------------------------------- /examples/simple/testread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/examples/simple/testread.py -------------------------------------------------------------------------------- /examples/simple/testwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/examples/simple/testwrite.py -------------------------------------------------------------------------------- /fixeol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/fixeol.sh -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/install.bat -------------------------------------------------------------------------------- /makezip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/makezip.bat -------------------------------------------------------------------------------- /makezip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/makezip.sh -------------------------------------------------------------------------------- /pyffi/VERSION: -------------------------------------------------------------------------------- 1 | 2.2.4.dev4 2 | -------------------------------------------------------------------------------- /pyffi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/__init__.py -------------------------------------------------------------------------------- /pyffi/fileformat.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/fileformat.dtd -------------------------------------------------------------------------------- /pyffi/formats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/bsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/bsa/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/bsa/bsa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/bsa/bsa.xml -------------------------------------------------------------------------------- /pyffi/formats/cgf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/cgf/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/cgf/cgf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/cgf/cgf.xml -------------------------------------------------------------------------------- /pyffi/formats/dae/COLLADASchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/dae/COLLADASchema.xsd -------------------------------------------------------------------------------- /pyffi/formats/dae/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/dae/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/dds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/dds/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/dds/dds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/dds/dds.xml -------------------------------------------------------------------------------- /pyffi/formats/egm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/egm/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/egm/egm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/egm/egm.xml -------------------------------------------------------------------------------- /pyffi/formats/egt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/egt/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/egt/egt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/egt/egt.xml -------------------------------------------------------------------------------- /pyffi/formats/esp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/esp/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/esp/esp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/esp/esp.xml -------------------------------------------------------------------------------- /pyffi/formats/kfm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/kfm/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/nif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/nif/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/psk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/psk/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/psk/psk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/psk/psk.xml -------------------------------------------------------------------------------- /pyffi/formats/rockstar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyffi/formats/rockstar/dir_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/rockstar/dir_/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/rockstar/dir_/dir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/rockstar/dir_/dir.xml -------------------------------------------------------------------------------- /pyffi/formats/tga/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/tga/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/tga/tga.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/tga/tga.xml -------------------------------------------------------------------------------- /pyffi/formats/tri/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/tri/__init__.py -------------------------------------------------------------------------------- /pyffi/formats/tri/tri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/formats/tri/tri.xml -------------------------------------------------------------------------------- /pyffi/object_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/__init__.py -------------------------------------------------------------------------------- /pyffi/object_models/any_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/any_type.py -------------------------------------------------------------------------------- /pyffi/object_models/array_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/array_type.py -------------------------------------------------------------------------------- /pyffi/object_models/binary_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/binary_type.py -------------------------------------------------------------------------------- /pyffi/object_models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/common.py -------------------------------------------------------------------------------- /pyffi/object_models/editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/editable.py -------------------------------------------------------------------------------- /pyffi/object_models/mex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/mex/__init__.py -------------------------------------------------------------------------------- /pyffi/object_models/simple_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/simple_type.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/__init__.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/array.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/basic.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/bit_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/bit_struct.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/enum.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/expression.py -------------------------------------------------------------------------------- /pyffi/object_models/xml/struct_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xml/struct_.py -------------------------------------------------------------------------------- /pyffi/object_models/xsd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/object_models/xsd/__init__.py -------------------------------------------------------------------------------- /pyffi/qskope/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/qskope/__init__.py -------------------------------------------------------------------------------- /pyffi/qskope/detail_delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/qskope/detail_delegate.py -------------------------------------------------------------------------------- /pyffi/qskope/detail_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/qskope/detail_model.py -------------------------------------------------------------------------------- /pyffi/qskope/detail_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/qskope/detail_tree.py -------------------------------------------------------------------------------- /pyffi/qskope/global_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/qskope/global_model.py -------------------------------------------------------------------------------- /pyffi/qskope/global_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/qskope/global_tree.py -------------------------------------------------------------------------------- /pyffi/spells/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/__init__.py -------------------------------------------------------------------------------- /pyffi/spells/cgf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/cgf/__init__.py -------------------------------------------------------------------------------- /pyffi/spells/cgf/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/cgf/check.py -------------------------------------------------------------------------------- /pyffi/spells/cgf/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/cgf/dump.py -------------------------------------------------------------------------------- /pyffi/spells/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/check.py -------------------------------------------------------------------------------- /pyffi/spells/dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/dds.py -------------------------------------------------------------------------------- /pyffi/spells/kfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/kfm.py -------------------------------------------------------------------------------- /pyffi/spells/nif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/nif/__init__.py -------------------------------------------------------------------------------- /pyffi/spells/nif/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/nif/check.py -------------------------------------------------------------------------------- /pyffi/spells/nif/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/nif/dump.py -------------------------------------------------------------------------------- /pyffi/spells/nif/fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/nif/fix.py -------------------------------------------------------------------------------- /pyffi/spells/nif/modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/nif/modify.py -------------------------------------------------------------------------------- /pyffi/spells/nif/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/nif/optimize.py -------------------------------------------------------------------------------- /pyffi/spells/tga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/spells/tga.py -------------------------------------------------------------------------------- /pyffi/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/__init__.py -------------------------------------------------------------------------------- /pyffi/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/graph.py -------------------------------------------------------------------------------- /pyffi/utils/inertia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/inertia.py -------------------------------------------------------------------------------- /pyffi/utils/mathutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/mathutils.py -------------------------------------------------------------------------------- /pyffi/utils/mopp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/mopp.py -------------------------------------------------------------------------------- /pyffi/utils/mopper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/mopper.exe -------------------------------------------------------------------------------- /pyffi/utils/quickhull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/quickhull.py -------------------------------------------------------------------------------- /pyffi/utils/tangentspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/tangentspace.py -------------------------------------------------------------------------------- /pyffi/utils/trianglemesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/trianglemesh.py -------------------------------------------------------------------------------- /pyffi/utils/trianglestripifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/trianglestripifier.py -------------------------------------------------------------------------------- /pyffi/utils/tristrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/tristrip.py -------------------------------------------------------------------------------- /pyffi/utils/vertex_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/vertex_cache.py -------------------------------------------------------------------------------- /pyffi/utils/withref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pyffi/utils/withref.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/requirements/requirements-dev.txt -------------------------------------------------------------------------------- /requirements/requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/requirements/requirements-docs.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/cgf/cgftoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/cgf/cgftoaster.py -------------------------------------------------------------------------------- /scripts/kfm/kfmtoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/kfm/kfmtoaster.py -------------------------------------------------------------------------------- /scripts/nif/nifmakehsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/nif/nifmakehsl.py -------------------------------------------------------------------------------- /scripts/nif/niftoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/nif/niftoaster.py -------------------------------------------------------------------------------- /scripts/patch_recursive_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/patch_recursive_apply.py -------------------------------------------------------------------------------- /scripts/patch_recursive_make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/patch_recursive_make.py -------------------------------------------------------------------------------- /scripts/qskope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/qskope.py -------------------------------------------------------------------------------- /scripts/rockstar_pack_dir_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/rockstar_pack_dir_img.py -------------------------------------------------------------------------------- /scripts/rockstar_unpack_dir_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/scripts/rockstar_unpack_dir_img.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/formats/bsa/test.bsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/bsa/test.bsa -------------------------------------------------------------------------------- /tests/formats/dae/cube.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/dae/cube.dae -------------------------------------------------------------------------------- /tests/formats/dds/test.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/dds/test.dds -------------------------------------------------------------------------------- /tests/formats/egm/mmouthxivilai.egm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/egm/mmouthxivilai.egm -------------------------------------------------------------------------------- /tests/formats/egt/test.egt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/egt/test.egt -------------------------------------------------------------------------------- /tests/formats/esp/test.esp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/esp/test.esp -------------------------------------------------------------------------------- /tests/formats/nif/test_bhkpackednitristrips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/nif/test_bhkpackednitristrips.py -------------------------------------------------------------------------------- /tests/formats/nif/test_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/nif/test_matrix.py -------------------------------------------------------------------------------- /tests/formats/nif/test_skinpartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/nif/test_skinpartition.py -------------------------------------------------------------------------------- /tests/formats/psk/examplemesh.psk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/psk/examplemesh.psk -------------------------------------------------------------------------------- /tests/formats/psk/pendulum.psa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/psk/pendulum.psa -------------------------------------------------------------------------------- /tests/formats/rockstar/dir/test.dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/rockstar/dir/test.dir -------------------------------------------------------------------------------- /tests/formats/rockstar/dir/test.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/rockstar/dir/test.img -------------------------------------------------------------------------------- /tests/formats/tga/test.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/tga/test.tga -------------------------------------------------------------------------------- /tests/formats/tga/test_footer.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/tga/test_footer.tga -------------------------------------------------------------------------------- /tests/formats/tri/mmouthxivilai.tri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/formats/tri/mmouthxivilai.tri -------------------------------------------------------------------------------- /tests/object_model/test_arraytype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/object_model/test_arraytype.py -------------------------------------------------------------------------------- /tests/object_model/test_simpletype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/object_model/test_simpletype.py -------------------------------------------------------------------------------- /tests/object_model/xml/test_bit_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/object_model/xml/test_bit_struct.py -------------------------------------------------------------------------------- /tests/object_model/xml/test_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/object_model/xml/test_expression.py -------------------------------------------------------------------------------- /tests/perf/fraps_minmaxavg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/fraps_minmaxavg.py -------------------------------------------------------------------------------- /tests/perf/memleak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/memleak.txt -------------------------------------------------------------------------------- /tests/perf/objgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/objgraph.py -------------------------------------------------------------------------------- /tests/perf/runvalgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/runvalgrind.sh -------------------------------------------------------------------------------- /tests/perf/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/summary.py -------------------------------------------------------------------------------- /tests/perf/txt_minmaxavg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/txt_minmaxavg.py -------------------------------------------------------------------------------- /tests/perf/valgrind_summary_check_read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/valgrind_summary_check_read.txt -------------------------------------------------------------------------------- /tests/perf/valgrind_summary_nothing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/perf/valgrind_summary_nothing.txt -------------------------------------------------------------------------------- /tests/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/scripts/cgf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/scripts/cgf/__init__.py -------------------------------------------------------------------------------- /tests/scripts/cgf/test_cgftoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/scripts/cgf/test_cgftoaster.py -------------------------------------------------------------------------------- /tests/scripts/kfm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/scripts/kfm/__init__.py -------------------------------------------------------------------------------- /tests/scripts/kfm/test_kfmtoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/scripts/kfm/test_kfmtoaster.py -------------------------------------------------------------------------------- /tests/scripts/nif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/scripts/nif/__init__.py -------------------------------------------------------------------------------- /tests/scripts/nif/test_niftoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/scripts/nif/test_niftoaster.py -------------------------------------------------------------------------------- /tests/spells/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/cgf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/cgf/check/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/cgf/check/test_tangentspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/check/test_tangentspace.py -------------------------------------------------------------------------------- /tests/spells/cgf/check/test_vertex_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/check/test_vertex_colors.py -------------------------------------------------------------------------------- /tests/spells/cgf/dump/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/cgf/dump/test_dump_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/dump/test_dump_data.py -------------------------------------------------------------------------------- /tests/spells/cgf/files/invalid.cgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/files/invalid.cgf -------------------------------------------------------------------------------- /tests/spells/cgf/files/monkey.cgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/files/monkey.cgf -------------------------------------------------------------------------------- /tests/spells/cgf/files/monkey.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/files/monkey.mtl -------------------------------------------------------------------------------- /tests/spells/cgf/files/test.cgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/files/test.cgf -------------------------------------------------------------------------------- /tests/spells/cgf/files/vcols.cgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/cgf/files/vcols.cgf -------------------------------------------------------------------------------- /tests/spells/egm/optimise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/egm/optimise.txt -------------------------------------------------------------------------------- /tests/spells/kf/__init__.py: -------------------------------------------------------------------------------- 1 | """Module to test KF spells""" -------------------------------------------------------------------------------- /tests/spells/kf/test_controllersequence.kf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/kf/test_controllersequence.kf -------------------------------------------------------------------------------- /tests/spells/kf/test_controllersequence_fo3.kf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/kf/test_controllersequence_fo3.kf -------------------------------------------------------------------------------- /tests/spells/kf/test_getsetbonepriorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/kf/test_getsetbonepriorities.py -------------------------------------------------------------------------------- /tests/spells/kfm/files/invalid.kfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/kfm/files/invalid.kfm -------------------------------------------------------------------------------- /tests/spells/kfm/files/test.kfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/kfm/files/test.kfm -------------------------------------------------------------------------------- /tests/spells/nif/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/__init__.py -------------------------------------------------------------------------------- /tests/spells/nif/dump/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/nif/dump/test_texture_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/dump/test_texture_properties.py -------------------------------------------------------------------------------- /tests/spells/nif/files/invalid.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/invalid.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/nds.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/nds.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/neosteam.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/neosteam.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_centerradius.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_centerradius.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_check_tangentspace1.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_check_tangentspace1.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_check_tangentspace2.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_check_tangentspace2.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_check_tangentspace3.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_check_tangentspace3.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_check_tangentspace4.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_check_tangentspace4.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_convexverticesshape.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_convexverticesshape.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_dump_tex.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_dump_tex.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_clampmaterialalpha.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_clampmaterialalpha.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_cleanstringpalette.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_cleanstringpalette.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_detachhavoktristripsdata.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_detachhavoktristripsdata.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_disableparallax.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_disableparallax.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_ffvt3rskinpartition.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_ffvt3rskinpartition.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_mergeskeletonroots.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_mergeskeletonroots.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_tangentspace.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_tangentspace.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_fix_texturepath.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_fix_texturepath.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_grid_128x128.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_grid_128x128.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_grid_64x64.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_grid_64x64.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_mopp.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_mopp.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_collision_complex_mopp.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_collision_complex_mopp.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_collision_mopp.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_collision_mopp.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_collision_packed.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_collision_packed.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_collision_to_boxshape.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_collision_to_boxshape.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_collision_to_boxshape_notabox.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_collision_to_boxshape_notabox.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_collision_unpacked.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_collision_unpacked.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_delunusedbones.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_delunusedbones.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_dupgeomdata.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_dupgeomdata.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_dupverts.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_dupverts.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_emptyproperties.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_emptyproperties.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_grid_layout.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_grid_layout.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_mergeduplicates.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_mergeduplicates.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_vertex_cache.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_vertex_cache.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_opt_zeroscale.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_opt_zeroscale.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_skincenterradius.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_skincenterradius.nif -------------------------------------------------------------------------------- /tests/spells/nif/files/test_vertexcolor.nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/files/test_vertexcolor.nif -------------------------------------------------------------------------------- /tests/spells/nif/fix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_clampmaterialalpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_clampmaterialalpha.py -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_cleanstringpalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_cleanstringpalette.py -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_detachhavoktristripsdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_detachhavoktristripsdata.py -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_ffvt3rskin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_ffvt3rskin.py -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_substitutestringpalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_substitutestringpalette.py -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_tangentspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_tangentspace.py -------------------------------------------------------------------------------- /tests/spells/nif/fix/test_texturepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/fix/test_texturepath.py -------------------------------------------------------------------------------- /tests/spells/nif/modify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/nif/modify/test_allbonepriorities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/modify/test_allbonepriorities.py -------------------------------------------------------------------------------- /tests/spells/nif/modify/test_delbranches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/modify/test_delbranches.py -------------------------------------------------------------------------------- /tests/spells/nif/modify/test_delvertexcolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/modify/test_delvertexcolor.py -------------------------------------------------------------------------------- /tests/spells/nif/optimize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spells/nif/optimize/test_collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/optimize/test_collision.py -------------------------------------------------------------------------------- /tests/spells/nif/optimize/test_delunusedbones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/optimize/test_delunusedbones.py -------------------------------------------------------------------------------- /tests/spells/nif/optimize/test_delzeroscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/optimize/test_delzeroscale.py -------------------------------------------------------------------------------- /tests/spells/nif/optimize/test_mergeduplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/optimize/test_mergeduplicates.py -------------------------------------------------------------------------------- /tests/spells/nif/optimize/test_niftoaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/optimize/test_niftoaster.py -------------------------------------------------------------------------------- /tests/spells/nif/optimize/test_vertex_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/nif/optimize/test_vertex_cache.py -------------------------------------------------------------------------------- /tests/spells/test_toaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/spells/test_toaster.py -------------------------------------------------------------------------------- /tests/test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/test_doctests.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/test_inertia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/utils/test_inertia.py -------------------------------------------------------------------------------- /tests/utils/test_trianglemesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/utils/test_trianglemesh.py -------------------------------------------------------------------------------- /tests/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/utils/test_utils.py -------------------------------------------------------------------------------- /tests/utils/test_withref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/tests/utils/test_withref.py -------------------------------------------------------------------------------- /todo/NifVis/__init__.py: -------------------------------------------------------------------------------- 1 | import lizers 2 | 3 | -------------------------------------------------------------------------------- /todo/NifVis/lizers/NiBinaryVoxelData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/NiBinaryVoxelData.py -------------------------------------------------------------------------------- /todo/NifVis/lizers/NiTriBasedGeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/NiTriBasedGeom.py -------------------------------------------------------------------------------- /todo/NifVis/lizers/NiTriShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/NiTriShape.py -------------------------------------------------------------------------------- /todo/NifVis/lizers/NiTriStrips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/NiTriStrips.py -------------------------------------------------------------------------------- /todo/NifVis/lizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/__init__.py -------------------------------------------------------------------------------- /todo/NifVis/lizers/bhkMoppBvTreeShape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/bhkMoppBvTreeShape.py -------------------------------------------------------------------------------- /todo/NifVis/lizers/bhkMoppBvTreeShape_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/lizers/bhkMoppBvTreeShape_alt.py -------------------------------------------------------------------------------- /todo/NifVis/ua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/ua.py -------------------------------------------------------------------------------- /todo/NifVis/vis_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/vis_cfg.py -------------------------------------------------------------------------------- /todo/NifVis/vis_gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/vis_gl.py -------------------------------------------------------------------------------- /todo/NifVis/vis_nif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/vis_nif.py -------------------------------------------------------------------------------- /todo/NifVis/vis_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis/vis_run.py -------------------------------------------------------------------------------- /todo/NifVis_README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/NifVis_README.TXT -------------------------------------------------------------------------------- /todo/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/README.TXT -------------------------------------------------------------------------------- /todo/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/ez_setup.py -------------------------------------------------------------------------------- /todo/nifvisualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/todo/nifvisualizer.py -------------------------------------------------------------------------------- /utilities/toaster/bully_unpack_nft.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/bully_unpack_nft.bat -------------------------------------------------------------------------------- /utilities/toaster/bully_unpack_nft.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/bully_unpack_nft.ini -------------------------------------------------------------------------------- /utilities/toaster/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/default.ini -------------------------------------------------------------------------------- /utilities/toaster/oblivion_optimize.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/oblivion_optimize.bat -------------------------------------------------------------------------------- /utilities/toaster/oblivion_optimize_01.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/oblivion_optimize_01.ini -------------------------------------------------------------------------------- /utilities/toaster/oblivion_optimize_02.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/oblivion_optimize_02.ini -------------------------------------------------------------------------------- /utilities/toaster/oblivion_optimize_03.ini: -------------------------------------------------------------------------------- 1 | [main] 2 | spell = fix_texturepath 3 | -------------------------------------------------------------------------------- /utilities/toaster/patch_recursive_apply.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/patch_recursive_apply.bat -------------------------------------------------------------------------------- /utilities/toaster/patch_recursive_make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/patch_recursive_make.bat -------------------------------------------------------------------------------- /utilities/toaster/rockstar_pack_dir_img.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/rockstar_pack_dir_img.bat -------------------------------------------------------------------------------- /utilities/toaster/rockstar_unpack_dir_img.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/rockstar_unpack_dir_img.bat -------------------------------------------------------------------------------- /utilities/toaster/shell_optimize.ini: -------------------------------------------------------------------------------- 1 | [main] 2 | spell = optimize 3 | -------------------------------------------------------------------------------- /utilities/toaster/xdeltadiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/xdeltadiff.sh -------------------------------------------------------------------------------- /utilities/toaster/xdeltapatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/utilities/toaster/xdeltapatch.sh -------------------------------------------------------------------------------- /win-install/nsis1-install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/nsis1-install.ico -------------------------------------------------------------------------------- /win-install/nsis1-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/nsis1-uninstall.ico -------------------------------------------------------------------------------- /win-install/pyffi.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/pyffi.nsh -------------------------------------------------------------------------------- /win-install/pyffi_install_150x57.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/pyffi_install_150x57.bmp -------------------------------------------------------------------------------- /win-install/pyffi_install_152x261.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/pyffi_install_152x261.bmp -------------------------------------------------------------------------------- /win-install/pyffi_install_164x314.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/pyffi_install_164x314.bmp -------------------------------------------------------------------------------- /win-install/pyffi_install_164x314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niftools/pyffi/HEAD/win-install/pyffi_install_164x314.png --------------------------------------------------------------------------------