orkid-data 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orkid_bundle/.deploy_path +1 -0
- orkid_bundle/.is_deploy +0 -0
- orkid_bundle/.relocatable_files +27 -0
- orkid_bundle/.symlinks.d/orkid_data.txt +1 -0
- orkid_bundle/OrkidLogo.icns +0 -0
- orkid_bundle/builds/moltenvk/Package/Latest/MoltenVK/dylib/macOS/MoltenVK_icd.json +8 -0
- orkid_bundle/obt-launch-env +135 -0
- orkid_bundle/obt_config/env.common.sh +8 -0
- orkid_bundle/projects/manifest.json +17 -0
- orkid_bundle/projects/orkid/obt.project/.gitignore +2 -0
- orkid_bundle/projects/orkid/obt.project/bin/_blender_impl_export_character.py +10 -0
- orkid_bundle/projects/orkid/obt.project/bin/_debug_helpers.py +52 -0
- orkid_bundle/projects/orkid/obt.project/bin/_ork.hypermesh.validate.py +280 -0
- orkid_bundle/projects/orkid/obt.project/bin/_pyqthilighter.py +141 -0
- orkid_bundle/projects/orkid/obt.project/bin/imgseq2mov.py +17 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.app.testrunner.py +301 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.audio.ambidump.py +848 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.blender.asset.assistant.py +421 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.blender.export.character.py +35 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.build.py +256 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.bundle.make.py +64 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.cache.clean.py +9 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.cache.prime.py +196 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.asset.info.py +372 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.cache.clear.py +11 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.cache.show.py +12 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.config.info.py +111 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.config.list.py +74 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.fetch.py +185 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.import.py +118 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.location.list.py +159 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.manifest.info.py +131 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.manifest.list.py +50 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.namespace.info.py +208 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.namespace.list.py +21 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.tool.py +1330 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.tree.py +98 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.upload.py +209 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.claude.py +20 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.claude.repl.py +365 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.crcstring.py +18 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.createunionedsource.py +74 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.data.fetch.py +8 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.dbgedit.py +9 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.dblock.cache.clean.py +9 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.apitrace.py +29 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ix.corebt.py +230 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ix.gdb.py +39 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ix.setupcorefiles.sh +31 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.lldb.py +26 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.lldbclient.py +87 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.lldbserve.py +197 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ngfx.py +119 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.renderdoc.py +59 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.valgrind.py +27 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.vscode.py +99 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.debug.xcode.py +31 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.macos.full.py +414 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.macos.inplace.py +24 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.macos.relocatable.py +30 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.py +76 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.audio.py +72 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.midi.py +46 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.monitors.glfw.py +73 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.monitors.ix.drm.py +25 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.dflow.cache.clean.py +9 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.dist.make.py +46 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.doxygen.py +31 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ecsedit.py +24 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ecsplay.py +317 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.edit.py +8 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.find.py +17 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.fixup.gnome.timeout.py +6 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.font.atlasgen.py +426 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.font.browser.py +255 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.font.browser2.py +278 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.glad.get.loader.py +154 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.hdri.genxir.py +167 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.hdri.studio.py +1607 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.hdri.xirview.py +307 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.hosttimediff.py +110 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.hypermesh.viewer.py +418 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.image.summarize.py +185 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.installdeps.ubuntu19.py +14 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.installpydeps.py +12 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ios.build.lib.py +357 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ios.build.testapp.py +110 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ios.dep.build.py +307 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ios.test.py +269 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ipcq.debug.launch.py +114 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ipcq.simple.launch.py +113 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ix.allowdebugprivs.sh +4 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ix.pipewire.start.py +36 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.ix.system.pipewiresetup.py +12 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.launch.py +8 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.llm.read.log.py +287 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.logger.httpserver.py +2369 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.modelviewer.py +661 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.movie.info.py +109 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.movie.player.py +226 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.nfs.cache.invalidate.py +13 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.osx.enable.corefiles.sh +7 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.particle.edit.py +150 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.particle.viewer.py +353 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.poser.py +548 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.prj.new.py +38 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.prj.new_workspace.py +30 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.prj.update.py +37 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.profile.py +30 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.pydocs.generate.py +100 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.pyvenv.regenerate.py +40 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.replace.py +20 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.scene.tojson.py +88 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.scene.viewer.py +140 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.sgedit.py +363 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.shmobject.cleanup.py +121 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.shortcut.macos.py +150 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.singularity.data.package.py +130 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.singularity.k2000.extractprog.py +73 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.dr_sweep.py +61 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.imgview.py +132 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.summarize.py +403 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.sweep.py +138 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.viewer2.py +558 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.test.python.unittests.all.py +76 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.test.shmstress.py +160 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.test.xirasset.py +143 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.testcdn.clear.py +71 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.util.testuvrail.py +14 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.uuid.generate.py +6 -0
- orkid_bundle/projects/orkid/obt.project/bin/ork.vulkan.run.py +76 -0
- orkid_bundle/projects/orkid/obt.project/deployment_manifest.py +83 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/README_CDNTEST.md +65 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/README_UPLOAD.md +272 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/docker-compose-simple.yml +27 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/docker-compose.yml +32 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/generate-certs.sh +19 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/keys/valid_keys.txt +4 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/monitor_logs.py +244 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/api.lua +220 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/auth.lua +53 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/certs/nginx.crt +22 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/certs/nginx.key +28 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/docker-entrypoint.sh +75 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/nginx.conf +190 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/upload.lua +132 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/ork-devcdn.py +69 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/start-interactive.sh +38 -0
- orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/test_upload.py +132 -0
- orkid_bundle/projects/orkid/obt.project/modules/systemd/ork_sysd_test.py +36 -0
- orkid_bundle/projects/orkid/obt.project/obt.manifest +4 -0
- orkid_bundle/projects/orkid/obt.project/scripts/debug_syspath.py +55 -0
- orkid_bundle/projects/orkid/obt.project/scripts/init_env.py +98 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/__init__.py +1 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/_envmap_shader.fxv2 +445 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/application.py +974 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/frame_profiler.py +57 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/loggerui.py +178 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/movie_capture.py +45 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/multi_ecs.py +673 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/std_grid.py +16 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/std_imposter.py +188 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/std_scenegraph.py +382 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/chartest.py +497 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/__init__.py +7 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/graphics.py +187 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/__init__.py +4 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/grid_direction.py +58 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/grid_entity.py +145 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/grid_maze.py +250 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/lfodrone.py +31 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/multiscene1.py +200 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testrunner.py +1428 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/assets.py +222 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/blender.py +132 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/catalog_import.py +499 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/catalog_tool.py +1372 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/catalog_tool_ui.py +1312 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/cppdb.py +71 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/demoapp.py +15 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/deploy.py +445 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/deploy_phases.py +2139 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/__init__.py +12 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ecs_outliner_model.py +589 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ecs_reference_manager.py +255 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ecsedit.py +2332 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/light_editor.py +69 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/outliner_model.py +173 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ptc_factories.py +265 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/scene_editor_base.py +801 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/scene_io.py +219 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/envmap.py +436 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/font/__init__.py +34 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/font/atlas.py +305 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/font/discovery.py +325 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/font/polygon_fill.py +123 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/font/tools.py +193 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/font/tools_freetype.py +256 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/fsmviz.py +1392 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/__init__.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/__init__.py +28 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/drawable/__init__.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/drawable/vdb_grid.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/material/__init__.py +3 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/material/freestyle.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/material/pbr.py +16 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/particle/__init__.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/particle/system.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/probe/__init__.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/probe/hdri_to_xir.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/__init__.py +5 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/implicit.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/mesh_derived.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/mesh_to.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/vdb_file.py +2 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/__init__.py +10 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/__init__.py +39 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/_resolve.py +100 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/bevel_demo.py +30 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/bitop_demo.py +46 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/box.py +19 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/box_subd.py +22 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/compact_demo.py +23 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/cone.py +27 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/delete_demo.py +20 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/displace_demo.py +35 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/droop_demo.py +59 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/droop_demo_oct.py +61 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/droop_demo_seg.py +71 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/edge_select_test.py +28 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/edge_test.py +26 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/extrude_demo.py +38 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/extrude_expr_demo.py +42 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/genmask_demo.py +33 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/icosphere.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/inset_demo.py +38 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/instance_demo.py +43 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/mirror_demo.py +24 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/normals_demo.py +36 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/param_pulse.py +40 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/point_select_test.py +25 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/racer.py +64 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/racer.py.bak +54 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/ripplegrid.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sdf_blocky.py +63 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sdf_boolean.py +61 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sdf_conform.py +105 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/select_demo.py +42 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sort_test.py +23 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/subdiv_demo.py +30 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/subdiv_mask_demo.py +29 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/transform_demo.py +35 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/twist_test.py +16 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/uvsphere.py +31 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/uvsphere_subdiv.py +28 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/__init__.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/animal_skin.py +151 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/basketball.py +64 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/beachball.py +53 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/brick.py +92 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/carbon_fiber.py +49 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/cobblestone.py +76 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/cracked_mud.py +65 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/foil.py +53 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/geological.py +171 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/ground.py +228 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hmview.py +254 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/honeycomb.py +49 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/__init__.py +11 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/groupview.py +62 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/lines.py +19 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/topoview.py +47 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/lily_pads.py +65 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/marble.py +77 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/plywood.py +79 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/soccer.py +107 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/solid.py +49 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/spaceship_hull.py +92 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/__init__.py +17 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/fbm.py +30 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/ground.py +56 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/solid.py +36 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/voronoi.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/worleyf1.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/wood.py +107 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/__init__.py +4 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/_common.py +197 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/cone.py +68 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/hollow_funnel.py +5 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/icosphere.py +148 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/uvsphere.py +152 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/sdf/__init__.py +3 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/sdf/sphere.py +6 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/sdf/thick_saddle.py +6 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/__init__.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/basintest.py +10 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/curv.py +19 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/erodeflow.py +150 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/erox.py +55 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/flow3d.py +27 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/hf1.py +14 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/lpftest.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/masked.py +18 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/perlin.py +31 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/pha.py +42 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/scatterdemo.py +67 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/scatterhills.py +43 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/scatterset2.py +71 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/simplex.py +31 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/strata_bake.py +69 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/tilted.py +16 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/voronoi.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/warp.py +61 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/worleyf1.py +32 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/xxx.py +124 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/xxx2.py +198 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/xxx3.py +237 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/colors.py +477 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/__init__.py +31 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_bindings.py +731 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_context_classes.py +41 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_expr.py +623 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_lower.py +289 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_parampack.py +261 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_trace.py +229 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/hypermesh/__init__.py +928 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/hypermesh/meshvet.py +519 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/hypermesh/selexpr.py +340 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/__init__.py +99 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/_artifact_names.py +37 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/base.py +133 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/fragment.py +313 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/__init__.py +59 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/_chain.py +109 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/curl_noise.py +17 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/directional_force.py +17 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/drag.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/elliptical_attractor.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/elliptical_emitter.py +16 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/gravity.py +10 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/light_renderer.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/line_emitter.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/nozzle_emitter.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/plane_collider.py +13 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/point_attractor.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/poly_drag.py +19 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/pool_data.py +60 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/ring_emitter.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/sph_attractor.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/sphere_collider.py +13 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/sprite_renderer.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/streak_renderer.py +21 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/turbulence.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/vdb_collider.py +38 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/vdb_level_set_renderer.py +57 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/vortex.py +8 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/resolve.py +117 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/sdf/__init__.py +160 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/__init__.py +106 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/_node.py +161 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/base.py +308 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/gpu_chunk.py +192 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/manifest.py +141 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/ops.py +619 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/resolve.py +92 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/scatter.py +187 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/scatter_consumer.py +74 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/__init__.py +1 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/runtime.py +256 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/__init__.py +1178 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/assets.py +2005 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/resolve.py +108 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/walk_input_system.py +149 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/__init__.py +49 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/compute_template.py +92 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/dsl.py +1106 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/functions.py +464 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/fxv2_template.py +744 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/resolve.py +82 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/imgtools.py +474 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/__init__.py +22 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/app_launcher.py +147 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/boost.py +251 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/cmake_builder.py +230 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/curl.py +184 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/curlpp.py +168 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/device_manager.py +254 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/easyprof.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/glm.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/klein.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/libsodium.py +254 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/libtar.py +293 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/lz4.py +143 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/nlohmann.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/openblas.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/openssl.py +250 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/rapidjson.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/sigslot.py +91 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/xcode_debug.py +225 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/zmq.py +177 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ix_gdb_extensions.py +429 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/osx_displayplacer.py +162 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/osxdeploy.py +518 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/path.py +55 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/singularity/sampler.py +61 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/singularity/simplewav.py +132 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/singularity/testlib.py +137 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/terrain/terrain_viewer.fxv2 +141 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/__init__.py +1 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/analog_clock.py +450 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/color_picker.py +235 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/__init__.py +16 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/card.py +90 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/constants.py +97 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/converter.py +543 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/design.py +277 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/orkid_design.py +153 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/shapes.py +62 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/swift_design.py +490 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/filesystem_browser.py +561 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/icon_library.py +243 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/standard_icons.py +363 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/test/outliner_data.py +62 -0
- orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/transform_edit.py +513 -0
- orkid_bundle/projects/orkid/obt.project/template/dist.root.makefile +26 -0
- orkid_bundle/projects/orkid/obt.project/template/ork.build.ext_env.py +63 -0
- orkid_bundle/projects/orkid/obt.project/template/project/makefile +7 -0
- orkid_bundle/projects/orkid/obt.project/template/project/src/main.cpp +7 -0
- orkid_bundle/projects/orkid/obt.project/template/project/template.sconstruct +65 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/actual_upload.py +87 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3.py +144 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_chunks.py +143 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_delimiter.py +89 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_phase1.py +119 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_phase2.py +152 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_phase3_pak.py +186 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_repackage.py +138 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_tojson.py +74 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog_cache_dir.py +90 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog_tojson.py +120 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog_upload.py +194 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_entry_repackage.py +145 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_entry_upload.py +156 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_manifest_tojson.py +123 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_manifest_upload.py +154 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_package_method.py +341 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/catalog_with_configspace.py +35 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/cdn_api.py +120 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/cdn_cdntest.py +113 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/cdntest_setup.py +100 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/chunk_assembly.py +179 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/concurrent_assembly.py +293 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/concurrent_chunking.py +261 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/configspace.py +33 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/crc.py +18 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/createasset_static.py +59 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/crypt.py +350 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/datablock.py +41 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow.py +81 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_bind.py +237 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_bind_vec3.py +217 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_ctxvars.py +168 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_cycle.py +64 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_dsl_chain.py +110 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_dsl_trace.py +85 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_elliptical_per_particle.py +88 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_elliptical_port.py +89 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_expr.py +301 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_lower.py +222 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/download_group.py +74 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/download_multi.py +71 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/download_remote_exists.py +72 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/download_single.py +135 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/fsmviz_test.py +230 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/ipcq.py +46 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/ipcq_integration.py +318 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/ipcq_sizes.py +264 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/logger.py +28 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/lz4.py +241 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/math_eigenvalues.py +69 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/opencl.py +56 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/orkmath.py +150 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/reflection.py +18 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_application_kwargs.py +77 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_env_var_expansion.py +177 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_fileenv.py +193 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_fsm.py +547 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_fsm2.py +273 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_orkshader_context.py +67 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_filesystem.py +58 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_import_resolution.py +153 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_resolution.py +149 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_simple.py +89 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_subsystem.py +159 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_subsystem.py.readme.md +86 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/test_subsystem_core.py +72 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/upload_manager.py +399 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/url.py +224 -0
- orkid_bundle/projects/orkid/ork.core/pyext/tests/writeToDisk.py +76 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/config.json +49 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_4k.json +373 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_8k.json +585 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_blender.json +232 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_toz.json +153 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/import_configs/singularity.json +17 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/importconfigs/ork_envmaps_t2_import.json +13 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/misc_gltf_samples.json +4078 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/orkid_t2.json +4611 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/singularity.json +186 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/singularity_ext.json +41 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/test_large.json +836 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/test_movies.json +623 -0
- orkid_bundle/projects/orkid/ork.data/asset_manifests/test_single.json +92 -0
- orkid_bundle/projects/orkid/ork.data/cdntest/catalog.json +18 -0
- orkid_bundle/projects/orkid/ork.data/cdntest/config.json +15 -0
- orkid_bundle/projects/orkid/ork.data/cdntest2/config2.json +5 -0
- orkid_bundle/projects/orkid/ork.data/dox/doxylogo.png +0 -0
- orkid_bundle/projects/orkid/ork.data/dox/doxylogo.xcf +0 -0
- orkid_bundle/projects/orkid/ork.data/ecsscenes/ecsscn1.ecs +532 -0
- orkid_bundle/projects/orkid/ork.data/ecsscenes/ecsscn2.ecs +1663 -0
- orkid_bundle/projects/orkid/ork.data/ecsscenes/ecsscn3.ecs +1627 -0
- orkid_bundle/projects/orkid/ork.data/ecsscenes/saddle2.ecs +3143 -0
- orkid_bundle/projects/orkid/ork.data/grammars/shadlang.parser +713 -0
- orkid_bundle/projects/orkid/ork.data/grammars/shadlang.scanner +157 -0
- orkid_bundle/projects/orkid/ork.data/particles/col_planar.py +99 -0
- orkid_bundle/projects/orkid/ork.data/particles/col_sphere.py +99 -0
- orkid_bundle/projects/orkid/ork.data/particles/col_vdb.py +235 -0
- orkid_bundle/projects/orkid/ork.data/particles/curl.py +84 -0
- orkid_bundle/projects/orkid/ork.data/particles/curlbolt.py +84 -0
- orkid_bundle/projects/orkid/ork.data/particles/dendrite.py +75 -0
- orkid_bundle/projects/orkid/ork.data/particles/elliptical.py +115 -0
- orkid_bundle/projects/orkid/ork.data/particles/elliptical_exposed.py +128 -0
- orkid_bundle/projects/orkid/ork.data/particles/fireball.py +213 -0
- orkid_bundle/projects/orkid/ork.data/particles/gratlas.py +227 -0
- orkid_bundle/projects/orkid/ork.data/particles/metaballs.py +104 -0
- orkid_bundle/projects/orkid/ork.data/particles/polydrag.py +92 -0
- orkid_bundle/projects/orkid/ork.data/particles/solar.py +126 -0
- orkid_bundle/projects/orkid/ork.data/particles/varying_test.py +107 -0
- orkid_bundle/projects/orkid/ork.data/particles/wobbly.py +79 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/basic.fxml +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/modeler.fxml +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/solid.fxml +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/ui.fxml +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/basic.fxv2 +165 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/blit.fxv2 +284 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/brdftools.i2 +110 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/compositor.fxv2 +274 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/concrete.fxv2 +229 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/cube2equirectangular.fxv2 +70 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/deferred.fxv2 +1008 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/deftools.i2 +157 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/envtools.i2 +164 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/framefx.fxv2 +986 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/fwdtools.i2 +660 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/gbuftools.i2 +236 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/graphview.fxv2 +60 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/grid.fxv2 +430 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/heatdistort.fxv2 +89 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/imposters.fxv2 +73 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/manip.fxv2 +161 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/mathtools.i2 +186 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/misctools.i2 +152 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle.fxv2 +14 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_common.i2 +224 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_comshader.i2 +111 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_geoshader.i2 +224 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_ssbo.i2 +173 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbr.fxv2 +155 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbr_filterenv.fxv2 +439 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbr_lobes.i2 +348 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbrtools.i2 +768 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/picktools.i2 +126 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pnoise.i2 +58 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/prim_canvas.fxv2 +74 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/prim_canvas.i2 +309 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/sdf_ui.fxv2 +491 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/sdftools.i2 +244 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/skintools.i2 +56 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/solid.fxv2 +516 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ssaotools.i2 +135 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/stdtools.i2 +357 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/terrain.fxv2 +336 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/test.fxv2 +73 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ui.fxv2 +313 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ui2.fxv2 +205 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ui_pickid_viz.fxv2 +122 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata12.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata13.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata14.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata15.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata16.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata17.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata18.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata20.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata22.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata24.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata26.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata28.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata30.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata32.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata34.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata36.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata38.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata40.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata48.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/gridcell_blue.png +0 -0
- orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/transponder24.png +0 -0
- orkid_bundle/projects/orkid/ork.data/scenes/hello.py +26 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_basketball.py +31 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_beachball.py +33 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_brick.py +37 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_carbon.py +36 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_cc.py +103 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_cc2.py +150 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_cheetah.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_cobblestone.py +47 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_colors.py +128 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_diftra.py +141 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_dirt.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_foil.py +36 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_grass.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_gravel.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_honeycomb.py +35 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_hull.py +45 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_ior.py +83 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_iri.py +88 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_leopard.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_lilies.py +38 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_marble.py +36 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_marble_trans.py +45 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_mud.py +31 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_mud_cracked.py +45 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_mud_cracked_pom.py +47 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_oak.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_pine.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_plywood.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_reptile.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_rock.py +31 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_sand.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_sheen.py +149 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_showcase.py +475 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_snow.py +31 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_soccer.py +33 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_spec.py +98 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_ss_jade.py +123 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_ss_skin.py +107 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_teak.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_transmission.py +93 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_volume.py +102 -0
- orkid_bundle/projects/orkid/ork.data/scenes/mtl_zebra.py +32 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ptc_vdb.py +113 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ren_gid.py +105 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ren_hypermesh.py +86 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ren_saddle.py +114 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ren_saddle2.py +189 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ren_scatter.py +257 -0
- orkid_bundle/projects/orkid/ork.data/scenes/ren_terrain.py +84 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/L0D.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/NoiseKern.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/adama.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/black.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/blue_64.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/default_normal.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/green.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/knob2.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/ptc1.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/ptc3.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/ptc4.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/spinner.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/uvmap_A.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/uvmap_A.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/voltex_pn2.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/white.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/effect_textures/white_64.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/particle_textures/crescent.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/particle_textures/mask_crack1.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/particle_textures/ptc4.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/particle_textures/ptc4.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/particle_textures/skull1.dds +0 -0
- orkid_bundle/projects/orkid/ork.data/src/particle_textures/skull1.png +0 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/BlenderOrkidPbr.spexp +0 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/diver.lua +97 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/physball.lua +43 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposXY.lua +43 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposXYZ.lua +60 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposXZ.lua +43 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposYZ.lua +43 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/spinny.lua +44 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/terplayer.lua +67 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/arch/yo.lua +57 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/scene/nop.lua +85 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/scene/physpawnscene.lua +69 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/scene/spawntest.lua +77 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/std/ansicolors.lua +64 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/std/inspect.lua +328 -0
- orkid_bundle/projects/orkid/ork.data/src/scripts/std/orklib.lua +39 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.NX.png +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.NY.png +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.NZ.png +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.PX.png +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.PY.png +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.PZ.png +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/roomtest_lightmaps.glb +0 -0
- orkid_bundle/projects/orkid/ork.data/tests/environ/roomtest_lightmaps.orkid.json +15 -0
- orkid_bundle/projects/orkid/ork.data/tests/pbr_calib.glb +0 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/misc/statehooks.py +165 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/particles/ptc1.py +166 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/particles/ptc2.py +211 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/particles/ptc3.py +168 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/FPS.py +638 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/FPS2.py +631 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/FPSa.py +133 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/_fps_game.py +441 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/instanced.py +281 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/minimal.py +265 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/submesh.py +503 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/pysys/_controller.py +350 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/pysys/_system.py +162 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/pysys/minimal.py +54 -0
- orkid_bundle/projects/orkid/ork.ecs/examples/python/requirements.txt +5 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/audio/nodata.py +73 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/audio/sampler.py +154 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/audio/utils.py +201 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/browser_shm_producer.py +153 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/data/nub1.obj +306 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/jupyter.ipynb +105 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2app.py +84 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/cameras.py +107 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/compositorsetup.glfx +112 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/imgui.py +447 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/lighting.py +99 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/misc.py +28 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/primitives.py +222 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/ptc_harness.py +281 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/pyopengl.py +164 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/scenegraph.py +72 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/shaders.py +437 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/submeshes.py +178 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/testapp.py +170 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/meshproc_client.py +202 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/meshproc_server.py +33 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/pymesh_Dockerfile +12 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/submesh.py +93 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/primitives/cubeprim.py +118 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/primitives/customprim.py +129 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/primitives/frustumprim.py +166 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/qt5py.py +20 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/_sg_boilerplate.py +122 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/compositor_setup.py +111 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/fwd_transparency.py +139 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase0.py +150 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase0_marble.fxv2 +162 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase0_proto.fxv2 +171 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase1.py +166 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase2.py +136 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase3.py +174 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase3a.py +134 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/minimal.py +122 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/models.py +244 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles1.py +86 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles2.py +204 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles3.py +177 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles4.py +237 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles5.py +253 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles6.py +277 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles6b.py +259 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles6c.py +259 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles7.py +253 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles8.py +253 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles_worldspace.py +198 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles_worldspace2.py +233 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/picking.py +79 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/points.py +181 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/points_animated.py +212 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/pseudowire.py +124 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/shaderballs.py +391 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skin_override_test.fxv2 +94 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning.py +151 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning2.py +315 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning3.py +290 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning4.py +753 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning5.py +249 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/uicamera.py +115 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/shmtexture_demo.py +310 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/ui/uiminimal.py +64 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/vpfenc.py +141 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/vpfenc_server.py +183 -0
- orkid_bundle/projects/orkid/ork.lev2/examples/python/windowed_minimal.py +126 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/__init__.py +1 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/_boilerplate.py +462 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/__init__.py +1 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_componentized_subsystems.py +240 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_componentized_subsystems3.py +273 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_ezapp_creation.py +69 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_ezapp_subsystems.py +111 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/_pixel_pick_boilerplate.py +327 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_capture_fence_sync.py +193 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_capture_rgba16f.py +184 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_basic.py +137 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_cull.py +171 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_indirect_dispatch.py +98 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_pnoise.py +178 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_shared.py +143 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_ecs_walk.py +144 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_exr_hang.py +106 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_filter_steps.py +487 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_filter_steps2.py +280 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_format_isolate.py +424 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_fxpipeline_rebind.py +35 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hyperecs_d4_bindings.py +130 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_cookcache.py +122 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_displace.py +205 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_edgecache.py +52 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_extrude_oracle.py +119 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_foundation.py +33 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_gid.py +130 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_hostdata.py +151 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_inset_oracle.py +135 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_instedge.py +135 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_livepath.py +108 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_matgen.py +89 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_oracles.py +150 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_paramsink.py +111 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_reflection.py +119 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_roundtrip.py +101 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_scan_oracle.py +73 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_skewgates.py +108 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_subdiv_oracle.py +112 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_triangulation.py +35 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_wirestep.py +68 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_multiframe_tiles.py +217 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_basic.py +77 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_capture.py +122 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_capture_multi.py +141 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_movie_capture.py +122 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_particles_modelb.py +82 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_particles_sdfref.py +85 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_multi.py +291 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba16f.py +33 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba16ui.py +199 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba32f.py +31 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba32ui.py +200 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba8u.py +33 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rgba16f_color_verify.py +230 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rgba16f_exr_roundtrip.py +316 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rgba16f_texture_sampling.py +300 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rtg_rgba16f.py +119 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_sdfgrid.py +436 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_asset.py +100 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_asset_wrapper.py +52 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_bake.py +42 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_cache.py +35 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_dsl.py +103 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_hfbake.py +77 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_ops.py +47 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_pybind.py +71 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_scatter_parity.py +146 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_xirasset.py +64 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/midi/simple.py +154 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/ctx_state_debug.py +123 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/gfxanim.py +75 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/movieandmidi.py +149 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/serialize_testobj.py +59 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/vdbbench.py +59 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/model.py +115 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/complex.py +214 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/hwdec_basic.py +228 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/hwdec_stresstest.py +239 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/minimal.py +149 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/_computeshader.fxv2 +195 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/_lavalamp.py +341 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/_sys_testgrid.py +168 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/computeshader.py +224 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/marchingcubes.py +142 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/marchingcubes2.py +207 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/mplib.py +251 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/pixelart.py +183 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/solidpython.py +199 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/texfrompybuf.py +227 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/texfrompybuf2.py +186 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/texfrompybuf3.py +261 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_ax_dynamic_points.py +272 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_ax_static_points.py +196 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_lavalamp.py +36 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_sculpt.py +336 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vectorfield.py +82 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/drawable_string.py +232 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_basic.fxv2 +289 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_basic.glfx +162 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_basic.py +327 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain.fxv2 +275 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain.glfx +306 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain.py +266 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain1b.fxv2 +269 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain1b.glfx +297 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain1b.py +326 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain2.fxv2 +176 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain2.glfx +194 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain2.py +311 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_test.fxv2 +126 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_test.glfx +135 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_test.py +150 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_water.fxv2 +488 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_water.glfx +417 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_water.py +334 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/water1.glfx +241 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/water1.py +209 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/water2.py +213 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/_boilerplate.py +57 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i1.fxv2 +168 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i1.py +126 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i5.fxv2 +186 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i5.py +148 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/instancing/instanced_model.py +136 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/lightmap1.py +93 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/probe.py +285 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/spotlight_rigid_model.py +126 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/spotlight_skinned_model.py +226 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/ssao.py +153 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/ambocc.py +181 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/ambocc_render.glfx +166 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/override1.py +89 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/override2.py +204 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_displaced.fxv2 +266 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_displaced.py +205 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_flat.fxv2 +236 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_flat.py +205 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_projected.fxv2 +259 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_projected.py +199 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/micromesh/uvs.py +674 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/_ptc_harness.py +282 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_elliptical.py +196 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_elliptical2.py +175 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_elliptical3.py +203 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_emitter_line.py +249 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_lights.py +178 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_sprite.py +66 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_streak.py +68 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_texgrid.py +172 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_xfcurve.py +137 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_xfmath.py +128 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_xfmath2.py +140 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/postfx/hsvg.py +139 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/postfx/user.py +173 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/postfx/usertest.fxv2 +171 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/compute_drawable.py +131 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/gpu_mesh_primitive.py +209 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/primitive_indirect.py +243 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/primitive_types.py +434 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/basic_cube_sphere_light.py +200 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/instancing.py +302 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/point_lights.py +195 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/procedural_envmaps.py +254 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/transparency.py +242 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/vtxcolor_materials.py +186 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/terrain_indirect.py +232 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/terrain_pbr_indirect.py +101 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/test_hypermesh_basic.py +51 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/test_hypermesh_box.py +46 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/projection/deferred_projmap.glfx +179 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/projection/deferred_projmap.py +369 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_grid.py +138 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_points.py +216 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_ptc_sprite.py +108 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_ptc_streak.py +105 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_rigid_model.py +117 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_2d_per_mip.py +130 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_2d_single_mip.py +68 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_2d_subregion.py +66 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_array_slices.py +262 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_array_slices_streaming.py +623 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_completion_sema.py +111 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_daw_mixerview.py +691 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_frqdom.py +133 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_harness.py +493 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_seq.py +131 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_t8x.py +57 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/convolve_td_load_IR.py +60 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/dumpmidi.py +32 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_hirolloff.py +53 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_hishelf.py +53 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_load_IR.py +59 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_lorolloff.py +53 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_loshelf.py +53 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_parametric4.py +61 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_violin.py +68 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_vowels.py +86 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/hwinput_minimal.py +87 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/hwinput_pan2d.py +120 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/hybrid.py +85 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/krz_minimal.py +300 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/krz_romobjects.py +331 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/midiplayer.py +409 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/minimal_cz.py +158 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/minimal_hybrid.py +89 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/minimal_tx81z.py +96 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/pmx.py +138 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/sequencer.py +166 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/simplewave.py +248 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/soundfield.py +247 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/t8x.py +72 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/test_audio_strdev_async.py +62 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/test_audio_strdev_sync.py +127 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/timestamps.py +64 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/waveforms_compute.py +142 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/waveforms_load.py +99 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/waveforms_noui.py +30 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/bevel_test.py +115 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/boolean.py +143 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/clip.py +83 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/component.py +39 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_decomp.py +231 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_hull_1.py +247 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_hull_2.py +111 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_hull_3.py +288 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_volume.py +80 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/dynamic.py +101 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_dict.py +55 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_frustum.py +71 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_obj.py +18 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_trimesh.py +132 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/halfedge.py +48 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/intersections_1.py +261 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/intersections_2.py +251 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/misc.py +162 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/planar_clip.py +275 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/planar_join.py +42 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/planar_slice.py +30 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/to_obj.py +32 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/triquadulate.py +27 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/vtxhash.py +14 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/xatlas.py +144 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/_graphview_waveforms.py +119 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/_themes_overlay.py +102 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/dynagrid.py +189 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/filesystem.py +83 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/filesystem_model.py +535 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/fixed_pack.py +206 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/folder_dialog.py +15 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/folder_dialog_async.py +57 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/fonttest.py +80 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/ged_minimal.py +76 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/globalevents.py +115 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/graphview.py +220 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/imageview_stresstest.py +367 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_grid.py +80 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_rc_replace.py +82 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_rc_std.py +104 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_split.py +175 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/manip.py +136 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/open_dialog.py +16 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/outliner.py +111 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/outliner_model.py +329 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/overlay_dropdown_test.py +130 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/page_widget_example.py +99 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_clock.py +40 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_invaders.py +362 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_layers.py +639 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_pacman.py +393 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_quads.py +159 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_sprites.py +311 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_text.py +163 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_trilist.py +201 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_tristrip.py +143 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/property_sheet.py +193 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/requirements.txt +3 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/save_dialog.py +16 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/scrollcontainer_split.py +242 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/scrollcontainer_vertical.py +94 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_img_charcells.py +152 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_img_simple.py +88 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_img_texture.py +372 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_prims.py +428 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/secondary_window.py +156 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgdualview.glfx +113 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_dualview.py +289 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_mplib.py +151 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_sg.py +173 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_viewgrid.py +82 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_worldgrid.py +80 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_quad_multi.py +30 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_quad_single.py +195 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_secondary_window.py +407 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_single.py +189 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/themes.py +469 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/toolbar.py +149 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/ui.py +57 -0
- orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/widget_pack.py +578 -0
- orkid_bundle/projects/orkid/orkid.cmake +848 -0
- orkid_bundle/share/ffmpeg/examples/Makefile +57 -0
- orkid_bundle/share/ffmpeg/examples/README +25 -0
- orkid_bundle/share/ffmpeg/examples/avio_http_serve_files.c +155 -0
- orkid_bundle/share/ffmpeg/examples/avio_list_dir.c +137 -0
- orkid_bundle/share/ffmpeg/examples/avio_read_callback.c +133 -0
- orkid_bundle/share/ffmpeg/examples/decode_audio.c +237 -0
- orkid_bundle/share/ffmpeg/examples/decode_filter_audio.c +296 -0
- orkid_bundle/share/ffmpeg/examples/decode_filter_video.c +293 -0
- orkid_bundle/share/ffmpeg/examples/decode_video.c +192 -0
- orkid_bundle/share/ffmpeg/examples/demux_decode.c +382 -0
- orkid_bundle/share/ffmpeg/examples/encode_audio.c +240 -0
- orkid_bundle/share/ffmpeg/examples/encode_video.c +216 -0
- orkid_bundle/share/ffmpeg/examples/extract_mvs.c +198 -0
- orkid_bundle/share/ffmpeg/examples/filter_audio.c +360 -0
- orkid_bundle/share/ffmpeg/examples/hw_decode.c +255 -0
- orkid_bundle/share/ffmpeg/examples/mux.c +644 -0
- orkid_bundle/share/ffmpeg/examples/qsv_decode.c +243 -0
- orkid_bundle/share/ffmpeg/examples/qsv_transcode.c +438 -0
- orkid_bundle/share/ffmpeg/examples/remux.c +198 -0
- orkid_bundle/share/ffmpeg/examples/resample_audio.c +220 -0
- orkid_bundle/share/ffmpeg/examples/scale_video.c +141 -0
- orkid_bundle/share/ffmpeg/examples/show_metadata.c +61 -0
- orkid_bundle/share/ffmpeg/examples/transcode.c +660 -0
- orkid_bundle/share/ffmpeg/examples/transcode_aac.c +882 -0
- orkid_bundle/share/ffmpeg/examples/vaapi_encode.c +221 -0
- orkid_bundle/share/ffmpeg/examples/vaapi_transcode.c +305 -0
- orkid_bundle/share/ffmpeg/ffprobe.xsd +409 -0
- orkid_bundle/share/ffmpeg/libvpx-1080p.ffpreset +19 -0
- orkid_bundle/share/ffmpeg/libvpx-1080p50_60.ffpreset +19 -0
- orkid_bundle/share/ffmpeg/libvpx-360p.ffpreset +18 -0
- orkid_bundle/share/ffmpeg/libvpx-720p.ffpreset +19 -0
- orkid_bundle/share/ffmpeg/libvpx-720p50_60.ffpreset +19 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSans-Bold.ttf +0 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSans.ttf +0 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSansMono.ttf +0 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSerif-Bold.ttf +0 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSerif-BoldItalic.ttf +0 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSerif-Italic.ttf +0 -0
- orkid_bundle/share/fonts/OpenImageIO/DroidSerif.ttf +0 -0
- orkid_bundle/share/luajit-2.1/jit/bc.lua +189 -0
- orkid_bundle/share/luajit-2.1/jit/bcsave.lua +637 -0
- orkid_bundle/share/luajit-2.1/jit/dis_arm.lua +689 -0
- orkid_bundle/share/luajit-2.1/jit/dis_arm64.lua +1233 -0
- orkid_bundle/share/luajit-2.1/jit/dis_arm64be.lua +12 -0
- orkid_bundle/share/luajit-2.1/jit/dis_mips.lua +694 -0
- orkid_bundle/share/luajit-2.1/jit/dis_mips64.lua +17 -0
- orkid_bundle/share/luajit-2.1/jit/dis_mips64el.lua +17 -0
- orkid_bundle/share/luajit-2.1/jit/dis_mips64r6.lua +17 -0
- orkid_bundle/share/luajit-2.1/jit/dis_mips64r6el.lua +17 -0
- orkid_bundle/share/luajit-2.1/jit/dis_mipsel.lua +17 -0
- orkid_bundle/share/luajit-2.1/jit/dis_ppc.lua +591 -0
- orkid_bundle/share/luajit-2.1/jit/dis_x64.lua +17 -0
- orkid_bundle/share/luajit-2.1/jit/dis_x86.lua +971 -0
- orkid_bundle/share/luajit-2.1/jit/dump.lua +730 -0
- orkid_bundle/share/luajit-2.1/jit/p.lua +309 -0
- orkid_bundle/share/luajit-2.1/jit/v.lua +174 -0
- orkid_bundle/share/luajit-2.1/jit/vmdef.lua +391 -0
- orkid_bundle/share/luajit-2.1/jit/zone.lua +45 -0
- orkid_data-0.1.0.dist-info/METADATA +5 -0
- orkid_data-0.1.0.dist-info/RECORD +1150 -0
- orkid_data-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__OBT_DEPLOY_SENTINEL__
|
orkid_bundle/.is_deploy
ADDED
|
File without changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
obt_venv/bin/activate
|
|
2
|
+
obt_venv/bin/activate.csh
|
|
3
|
+
obt_venv/bin/activate.fish
|
|
4
|
+
obt_venv/bin/distro
|
|
5
|
+
obt_venv/bin/markdown-it
|
|
6
|
+
obt_venv/bin/pip
|
|
7
|
+
obt_venv/bin/pip3
|
|
8
|
+
obt_venv/bin/pip3.14
|
|
9
|
+
obt_venv/bin/pygmentize
|
|
10
|
+
obt_venv/pyvenv.cfg
|
|
11
|
+
pyvenv/bin/activate
|
|
12
|
+
pyvenv/bin/activate.csh
|
|
13
|
+
pyvenv/bin/activate.fish
|
|
14
|
+
pyvenv/bin/f2py
|
|
15
|
+
pyvenv/bin/idle3.14
|
|
16
|
+
pyvenv/bin/normalizer
|
|
17
|
+
pyvenv/bin/numpy-config
|
|
18
|
+
pyvenv/bin/pip3
|
|
19
|
+
pyvenv/bin/pip3.14
|
|
20
|
+
pyvenv/bin/pydoc3.14
|
|
21
|
+
pyvenv/bin/python3.14t-config
|
|
22
|
+
pyvenv/lib/pkgconfig/python-3.14t-embed.pc
|
|
23
|
+
pyvenv/lib/pkgconfig/python-3.14t.pc
|
|
24
|
+
pyvenv/lib/python3.14t/_sysconfig_vars_t_darwin_darwin.json
|
|
25
|
+
pyvenv/lib/python3.14t/_sysconfigdata_t_darwin_darwin.py
|
|
26
|
+
pyvenv/lib/python3.14t/build-details.json
|
|
27
|
+
pyvenv/pyvenv.cfg
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
builds/moltenvk/Package/Latest/MoltenVK/dylib/macOS/libMoltenVk.dylib ../../../../../../../lib/libMoltenVk.dylib
|
|
Binary file
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
###############################################################################
|
|
3
|
+
# obt-launch-env — Relocatable OBT environment launcher
|
|
4
|
+
# Generated by ork.deploy.macos.relocatable.py (Phase 6)
|
|
5
|
+
#
|
|
6
|
+
# This script is self-locating: it computes all paths relative to its own
|
|
7
|
+
# location, so the deployment can be moved anywhere.
|
|
8
|
+
###############################################################################
|
|
9
|
+
|
|
10
|
+
# Compute DEPLOY_ROOT from this script's location.
|
|
11
|
+
# -P / pwd -P resolves symlinks to their physical target so that a symlink
|
|
12
|
+
# pointing at .staging (e.g. from a nested utilities folder) doesn't make
|
|
13
|
+
# DEPLOY_ROOT differ string-wise from .deploy_path on alternating launches.
|
|
14
|
+
# Without this, the relocation fixup ping-pongs ~170 files every time the
|
|
15
|
+
# user alternates between launching a symlink-routed app and a direct-path
|
|
16
|
+
# app — harmless per-launch but wasteful and confusing.
|
|
17
|
+
SCRIPT_DIR="$(cd -P "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
18
|
+
DEPLOY_ROOT="$SCRIPT_DIR"
|
|
19
|
+
|
|
20
|
+
# Sever all connections to any host OBT/Python environment.
|
|
21
|
+
# Without this, PYTHONPATH from the host leaks in and causes
|
|
22
|
+
# the deploy's Python to import obt from the host's site-packages,
|
|
23
|
+
# which then discovers source-tree projects instead of deploy projects.
|
|
24
|
+
unset PYTHONPATH
|
|
25
|
+
unset PYTHONHOME
|
|
26
|
+
unset VIRTUAL_ENV
|
|
27
|
+
unset OBT_STAGE
|
|
28
|
+
unset OBT_ROOT
|
|
29
|
+
unset OBT_PROJECT_DIRS
|
|
30
|
+
unset OBT_PROJECTS_LIST
|
|
31
|
+
unset OBT_SEARCH_PATH
|
|
32
|
+
unset OBT_BUILDS
|
|
33
|
+
unset OBT_SUBSPACE_DIR
|
|
34
|
+
unset OBT_SUBSPACE_LIB_DIR
|
|
35
|
+
unset OBT_SUBSPACE_BIN_DIR
|
|
36
|
+
unset OBT_SUBSPACE_BUILD_DIR
|
|
37
|
+
unset OBT_TARGET
|
|
38
|
+
unset ORKID_WORKSPACE_DIR
|
|
39
|
+
unset ORKID_ASSET_MANIFEST_DIRS
|
|
40
|
+
unset ORKID_IS_MAIN_PROJECT
|
|
41
|
+
unset LD_LIBRARY_PATH
|
|
42
|
+
unset DYLD_LIBRARY_PATH
|
|
43
|
+
unset DYLD_FALLBACK_LIBRARY_PATH
|
|
44
|
+
unset PKG_CONFIG
|
|
45
|
+
unset PKG_CONFIG_PATH
|
|
46
|
+
unset LUA_PATH
|
|
47
|
+
export PYTHONNOUSERSITE=1
|
|
48
|
+
|
|
49
|
+
# Bootstrap the OBT framework venv.
|
|
50
|
+
# The obt_venv's pyvenv.cfg already tells Python 3.14 where its stdlib is.
|
|
51
|
+
export VIRTUAL_ENV="$DEPLOY_ROOT/obt_venv"
|
|
52
|
+
|
|
53
|
+
# Build PATH: deploy dirs first, then system essentials.
|
|
54
|
+
# No homebrew — the deployment is fully self-contained.
|
|
55
|
+
export PATH="$DEPLOY_ROOT/obt_venv/bin:$DEPLOY_ROOT/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
|
|
56
|
+
|
|
57
|
+
# ---- Bash-level relocation fixup (runs BEFORE Python) ----
|
|
58
|
+
# Python cannot start if pyvenv.cfg contains stale paths, so the rewrite
|
|
59
|
+
# must happen in bash before we exec the interpreter.
|
|
60
|
+
#
|
|
61
|
+
# Bundle time writes every text file containing a build path with the
|
|
62
|
+
# sentinel __OBT_DEPLOY_SENTINEL__ in place of the real path, and emits
|
|
63
|
+
# .relocatable_files listing every such file. Launch time reads that
|
|
64
|
+
# manifest and substitutes sentinel -> DEPLOY_ROOT in each entry — no
|
|
65
|
+
# filesystem walk, O(N) where N = relocatable file count.
|
|
66
|
+
_MARKER_FILE="$DEPLOY_ROOT/.deploy_path"
|
|
67
|
+
_MANIFEST="$DEPLOY_ROOT/.relocatable_files"
|
|
68
|
+
_NEED_FIXUP=0
|
|
69
|
+
if [ -f "$_MARKER_FILE" ]; then
|
|
70
|
+
_OLD_ROOT="$(cat "$_MARKER_FILE")"
|
|
71
|
+
if [ "$_OLD_ROOT" != "$DEPLOY_ROOT" ]; then
|
|
72
|
+
_NEED_FIXUP=1
|
|
73
|
+
fi
|
|
74
|
+
else
|
|
75
|
+
echo "$DEPLOY_ROOT" > "$_MARKER_FILE"
|
|
76
|
+
fi
|
|
77
|
+
|
|
78
|
+
if [ "$_NEED_FIXUP" -eq 1 ]; then
|
|
79
|
+
echo "[deploy-fixup] Relocation detected: $_OLD_ROOT -> $DEPLOY_ROOT"
|
|
80
|
+
if [ ! -f "$_MANIFEST" ]; then
|
|
81
|
+
echo "[deploy-fixup] FATAL: manifest $_MANIFEST missing — cannot relocate" >&2
|
|
82
|
+
exit 1
|
|
83
|
+
fi
|
|
84
|
+
_n=0
|
|
85
|
+
while IFS= read -r _rel; do
|
|
86
|
+
[ -z "$_rel" ] && continue
|
|
87
|
+
_f="$DEPLOY_ROOT/$_rel"
|
|
88
|
+
[ -f "$_f" ] || continue
|
|
89
|
+
[ -L "$_f" ] && continue
|
|
90
|
+
sed -i '' "s|$_OLD_ROOT|$DEPLOY_ROOT|g" "$_f" && _n=$((_n+1))
|
|
91
|
+
done < "$_MANIFEST"
|
|
92
|
+
echo "$DEPLOY_ROOT" > "$_MARKER_FILE"
|
|
93
|
+
echo "[deploy-fixup] Done ($_n files updated)."
|
|
94
|
+
fi
|
|
95
|
+
|
|
96
|
+
# Ensure assetcache symlink points to user's global cache
|
|
97
|
+
_GLOBAL_CACHE="$HOME/.obt-global/assetcache"
|
|
98
|
+
mkdir -p "$_GLOBAL_CACHE"
|
|
99
|
+
if [ ! -e "$DEPLOY_ROOT/assetcache" ]; then
|
|
100
|
+
ln -s "$_GLOBAL_CACHE" "$DEPLOY_ROOT/assetcache"
|
|
101
|
+
fi
|
|
102
|
+
|
|
103
|
+
# Ensure envmaps bake-cache symlink points to user's global cache.
|
|
104
|
+
# Baked IBL/envmaps are regenerable runtime output — keep them out of the
|
|
105
|
+
# bundle so they never bloat it (same pattern as assetcache).
|
|
106
|
+
_GLOBAL_ENVMAPS="$HOME/.obt-global/envmaps"
|
|
107
|
+
mkdir -p "$_GLOBAL_ENVMAPS"
|
|
108
|
+
if [ ! -e "$DEPLOY_ROOT/envmaps" ]; then
|
|
109
|
+
ln -s "$_GLOBAL_ENVMAPS" "$DEPLOY_ROOT/envmaps"
|
|
110
|
+
fi
|
|
111
|
+
|
|
112
|
+
# Source user/machine-specific configuration (audio devices, CDN keys, etc.)
|
|
113
|
+
if [ -f "$DEPLOY_ROOT/obt_config/env.common.sh" ]; then
|
|
114
|
+
source "$DEPLOY_ROOT/obt_config/env.common.sh"
|
|
115
|
+
fi
|
|
116
|
+
|
|
117
|
+
# Discover projects: any directory under projects/ that contains obt.project/
|
|
118
|
+
OBT_PROJECT_ARGS=()
|
|
119
|
+
for proj_dir in "$DEPLOY_ROOT/projects"/*/; do
|
|
120
|
+
if [ -d "${proj_dir}obt.project" ]; then
|
|
121
|
+
# Strip trailing slash for clean path
|
|
122
|
+
OBT_PROJECT_ARGS+=(--project "${proj_dir%/}")
|
|
123
|
+
fi
|
|
124
|
+
done
|
|
125
|
+
|
|
126
|
+
# Detect CPU core count
|
|
127
|
+
NUM_CORES=$(sysctl -n hw.ncpu 2>/dev/null || nproc 2>/dev/null || echo 4)
|
|
128
|
+
|
|
129
|
+
# Launch OBT environment — invoke python explicitly to bypass hardcoded shebangs
|
|
130
|
+
exec "$DEPLOY_ROOT/obt_venv/bin/python3" \
|
|
131
|
+
"$DEPLOY_ROOT/obt_venv/bin/obt.env.launch.py" \
|
|
132
|
+
--stagedir "$DEPLOY_ROOT" \
|
|
133
|
+
--numcores "$NUM_CORES" \
|
|
134
|
+
"${OBT_PROJECT_ARGS[@]}" \
|
|
135
|
+
"$@"
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# env.common.sh — generated by deploy from project manifests
|
|
2
|
+
# This file is sourced by obt-launch-env before launching OBT.
|
|
3
|
+
|
|
4
|
+
export ORKID_AUDIO_FRAMESIZE="128"
|
|
5
|
+
export ORKID_AUDIO_INPUT_DEVICE="MacBook Pro Microphone"
|
|
6
|
+
export ORKID_AUDIO_OUTPUT_DEVICE="MacBook Pro Speakers"
|
|
7
|
+
export ORKID_GRAPHICS_API="VULKAN"
|
|
8
|
+
export MVK_CONFIG_LOG_LEVEL="0"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"projects": [
|
|
3
|
+
{
|
|
4
|
+
"name": "orkid",
|
|
5
|
+
"canonical_name": "orkid",
|
|
6
|
+
"source": "/Users/michael/projects/orkid",
|
|
7
|
+
"dirs": [
|
|
8
|
+
"obt.project",
|
|
9
|
+
"ork.core/pyext/tests",
|
|
10
|
+
"ork.lev2/examples/python",
|
|
11
|
+
"ork.lev2/pyext/tests",
|
|
12
|
+
"ork.ecs/examples/python",
|
|
13
|
+
"ork.data"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# to be executed from ork.blender.export.character.py
|
|
2
|
+
|
|
3
|
+
from obt.path import Path
|
|
4
|
+
from ork import blender
|
|
5
|
+
import os
|
|
6
|
+
|
|
7
|
+
inp_file = Path(os.environ["BLENDER_FILE_PATH"])
|
|
8
|
+
out_file = Path(os.environ["EXPORT_PATH"])
|
|
9
|
+
|
|
10
|
+
blender.export_character_mesh(inp_file, out_file)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import os, re
|
|
2
|
+
|
|
3
|
+
####################################################################
|
|
4
|
+
|
|
5
|
+
def find_executable(exec_name):
|
|
6
|
+
"""Find the executable in PATH or use the provided path."""
|
|
7
|
+
exec_name = os.path.expandvars(exec_name)
|
|
8
|
+
if exec_name.startswith(("./", "../")) or os.path.isabs(exec_name):
|
|
9
|
+
full_path = os.path.abspath(exec_name)
|
|
10
|
+
if os.path.exists(full_path) and os.access(full_path, os.X_OK):
|
|
11
|
+
return full_path
|
|
12
|
+
return None
|
|
13
|
+
for path in os.environ["PATH"].split(os.pathsep):
|
|
14
|
+
full_path = os.path.join(path, exec_name)
|
|
15
|
+
if os.path.exists(full_path) and os.access(full_path, os.X_OK):
|
|
16
|
+
return full_path
|
|
17
|
+
if os.path.exists(exec_name) and os.access(exec_name, os.X_OK):
|
|
18
|
+
return exec_name
|
|
19
|
+
return None
|
|
20
|
+
|
|
21
|
+
####################################################################
|
|
22
|
+
|
|
23
|
+
def is_python_script(executable_path):
|
|
24
|
+
"""Determine if the given file is a Python script."""
|
|
25
|
+
try:
|
|
26
|
+
with open(executable_path, 'r') as f:
|
|
27
|
+
first_line = f.readline().strip()
|
|
28
|
+
return first_line.startswith("#!") and "python" in first_line
|
|
29
|
+
except Exception as e:
|
|
30
|
+
return False
|
|
31
|
+
|
|
32
|
+
####################################################################
|
|
33
|
+
|
|
34
|
+
def get_exec_and_args(parse_args):
|
|
35
|
+
executable_path = find_executable(parse_args.executable_name)
|
|
36
|
+
|
|
37
|
+
if not executable_path:
|
|
38
|
+
print(f"Executable '{parse_args.executable_name}' not found in $PATH.")
|
|
39
|
+
exit(1)
|
|
40
|
+
|
|
41
|
+
exec_args = parse_args.exec_args
|
|
42
|
+
|
|
43
|
+
if is_python_script(executable_path):
|
|
44
|
+
python_path = find_executable("ork.python")
|
|
45
|
+
if not python_path:
|
|
46
|
+
print("python3 not found.")
|
|
47
|
+
exit(1)
|
|
48
|
+
exec_args.insert(0, executable_path)
|
|
49
|
+
executable_path = os.path.realpath(python_path)
|
|
50
|
+
|
|
51
|
+
exec_name = re.sub(r"[^a-zA-Z0-9]", "_", parse_args.executable_name)
|
|
52
|
+
return executable_path, exec_args, exec_name
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
#!/usr/bin/env ork.python
|
|
2
|
+
################################################################################
|
|
3
|
+
# Copyright 1996-2026, Michael T. Mayers. MIT License.
|
|
4
|
+
################################################################################
|
|
5
|
+
# _ork.hypermesh.validate.py — OFFSCREEN hypermesh asset validator (the subprocess ork.hypermesh.viewer.py
|
|
6
|
+
# --watch spawns on a file change). It loads the asset, renders it offscreen through the SAME scene path
|
|
7
|
+
# the viewer uses (headless StandardSceneGraphComponent), captures the rendered frame, runs a cheap
|
|
8
|
+
# content check, and EXITS with a code the parent reads to decide whether the asset is safe to live-reload:
|
|
9
|
+
#
|
|
10
|
+
# exit 0 PASS — rendered, content present -> parent reloads
|
|
11
|
+
# exit 2 BLANK — rendered but empty/flat -> parent skips (asset is structurally fine but draws nothing)
|
|
12
|
+
# exit 3 ERROR — exception while loading/rendering
|
|
13
|
+
# exit 4 TIMEOUT — GPU capture never completed
|
|
14
|
+
# It also prints "HMVALIDATE_RESULT=PASS|BLANK|ERROR|TIMEOUT" to stdout BEFORE teardown, so the decision
|
|
15
|
+
# survives even if GPU teardown SIGABRTs (exit-134 history) — the parent prefers that token.
|
|
16
|
+
#
|
|
17
|
+
# ork.python obt.project/bin/_ork.hypermesh.validate.py RippleGrid ; echo "rc=$?"
|
|
18
|
+
#
|
|
19
|
+
# -o ROUTES BY EXTENSION (works headless with ANY hypermesh asset, search- or -i path-mode):
|
|
20
|
+
# -o foo.obj -> materialize the asset + dump the MESH to foo.obj (the headless equivalent of the
|
|
21
|
+
# viewer's [O] key; no GUI needed). Skips the pixel/content check.
|
|
22
|
+
# -o foo.png -> dump the captured RENDER frame to foo.png (the original render diagnostic).
|
|
23
|
+
# ./_ork.hypermesh.validate.py racer -o /tmp/racer.obj
|
|
24
|
+
################################################################################
|
|
25
|
+
import os; os.environ["PYTHONUNBUFFERED"] = "1"
|
|
26
|
+
import sys, time
|
|
27
|
+
from orkengine.core import vec3, CrcStringProxy # core MUST import before lev2
|
|
28
|
+
from orkengine import lev2
|
|
29
|
+
from ork.app.application import ComponentizedApplication
|
|
30
|
+
from ork.app.std_scenegraph import StandardSceneGraphComponent
|
|
31
|
+
from ork.hypergraph.dflow.hypermesh import make_drawable
|
|
32
|
+
from ork.hypergraph.assets.hypermesh._resolve import (
|
|
33
|
+
resolve_asset, load_asset_from_path, EXIT_OK, EXIT_BLANK, EXIT_LOAD_ERROR, EXIT_TIMEOUT, EXIT_VETFAIL,
|
|
34
|
+
RESULT_TOKEN)
|
|
35
|
+
|
|
36
|
+
tokens = CrcStringProxy()
|
|
37
|
+
|
|
38
|
+
DIM = 512 # offscreen render dimension
|
|
39
|
+
WARMUP_FRAMES = 4 # minimal frames before the first capture poll
|
|
40
|
+
POLL_EVERY = 8 # frames between capture+inspect polls
|
|
41
|
+
SETTLE_S = 0.75 # once a frame is non-black, keep rendering this long before finalizing (lets the
|
|
42
|
+
# async IBL envmap finish loading + any blocking shader recompiles settle) — time
|
|
43
|
+
# ALONE is unreliable, so we gate on actual pixel content, then settle from there
|
|
44
|
+
APPEAR_TIMEOUT_S = 15.0 # max wall-time waiting for ANY content to appear -> else BLANK
|
|
45
|
+
CAP_TIMEOUT_S = 6.0 # max wait for a single GPU readback -> TIMEOUT
|
|
46
|
+
NB_MIN = 0.005 # >=0.5% of sampled px must differ from the (corner-estimated) background.
|
|
47
|
+
# NOT 2%: sparse-but-REAL geometry reads low (delete_demo's open bowl = a dim
|
|
48
|
+
# interior, 1.4% of samples) and was false-negatived as BLANK; a true blank is
|
|
49
|
+
# 0% and a flat fill is still rejected by SPREAD_MIN, so 0.5% loses no safety.
|
|
50
|
+
SPREAD_MIN = 0.03 # AND luminance spread >= this (rejects a flat single-color fill)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
class ValidatorApp(ComponentizedApplication):
|
|
54
|
+
def __init__(self, asset_name, asset_path=None, png_path=None, obj_path=None):
|
|
55
|
+
super().__init__()
|
|
56
|
+
self._asset_name = asset_name
|
|
57
|
+
self._asset_path = asset_path # -i: load from this explicit .py path (overrides search)
|
|
58
|
+
self._label = asset_path or asset_name
|
|
59
|
+
self._png_path = png_path # -o *.png: dump the captured frame to this PNG (diagnostic)
|
|
60
|
+
self._obj_path = obj_path # -o *.obj: dump the materialized mesh to this OBJ (any asset)
|
|
61
|
+
self._obj_written = False
|
|
62
|
+
self._result = EXIT_LOAD_ERROR # pessimistic until proven otherwise
|
|
63
|
+
self._token = "ERROR"
|
|
64
|
+
self._frame = 0
|
|
65
|
+
self._future = None
|
|
66
|
+
self._capbuf = None
|
|
67
|
+
self._cap_start = 0.0
|
|
68
|
+
self._done = False
|
|
69
|
+
self._want_exit = False # set by _finish; the actual signalExit() is issued from onGpuPostFrame, so
|
|
70
|
+
# an error during _onGpuInit doesn't signalExit before the loop is running
|
|
71
|
+
# (which crashes teardown) — it exits cleanly on the first frame instead
|
|
72
|
+
self._start_time = 0.0 # when rendering began (first post-frame)
|
|
73
|
+
self._next_poll = 0 # next frame index to start a capture poll
|
|
74
|
+
self._saw_content = False # have we seen a non-black frame yet?
|
|
75
|
+
self._content_at = 0.0 # wall-time of the first non-black frame
|
|
76
|
+
def _env_vec3(name, dflt): # HMVAL_EYE / HMVAL_TGT = "x,y,z" to orbit the inspect cam
|
|
77
|
+
s = os.environ.get(name)
|
|
78
|
+
if not s: return dflt
|
|
79
|
+
p = [float(c) for c in s.replace(" ", "").split(",")]
|
|
80
|
+
return vec3(p[0], p[1], p[2])
|
|
81
|
+
self.SGC = self.addComponent("std_scenegraph", StandardSceneGraphComponent,
|
|
82
|
+
eye=_env_vec3("HMVAL_EYE", vec3(6, 5, 9)),
|
|
83
|
+
tgt=_env_vec3("HMVAL_TGT", vec3(0, 0, 0)), up=vec3(0, 1, 0),
|
|
84
|
+
grid_variant=None)
|
|
85
|
+
# lockstep mode (mirrors the working ork.lev2/pyext/tests/movie/complex.py): forces offscreen AND
|
|
86
|
+
# composites each frame into fbi->_main_rtg — the buffer the movie recorder / our capture reads.
|
|
87
|
+
self.createEzApp(enable_lockstep_ups=True, enable_lockstep_fps=True,
|
|
88
|
+
enable_freerun_ups=True, enable_freerun_fps=True,
|
|
89
|
+
freerun=False, target_ups=60, target_fps=60,
|
|
90
|
+
width=DIM, height=DIM,
|
|
91
|
+
use_subsystems=['opq', 'core', 'gpu', 'lev2'])
|
|
92
|
+
|
|
93
|
+
def _finish(self, code, token):
|
|
94
|
+
if self._done:
|
|
95
|
+
return
|
|
96
|
+
self._result = code
|
|
97
|
+
self._token = token
|
|
98
|
+
self._done = True
|
|
99
|
+
self._want_exit = True # signalExit() issued from onGpuPostFrame (loop running)
|
|
100
|
+
print(RESULT_TOKEN + token, flush=True) # emit the decision BEFORE any teardown (survives SIGABRT)
|
|
101
|
+
if self._obj_written: # the kept OBJ = the last poll's write (= the captured frame)
|
|
102
|
+
print("hmvalidate: dumped OBJ -> %s (verts=%d faces=%d)"
|
|
103
|
+
% (self._obj_path, self._live.mesh.num_verts, self._live.mesh.num_faces), flush=True)
|
|
104
|
+
|
|
105
|
+
def _onGpuInit(self, ctx):
|
|
106
|
+
self._ctx = ctx
|
|
107
|
+
self.ezapp.topWidget.enableUiDraw() # OFFSCREEN: a windowed app enables UI draw by default; we must
|
|
108
|
+
# do it explicitly so the SGC viewport composites into _main_rtg.
|
|
109
|
+
try:
|
|
110
|
+
asset_cls = (load_asset_from_path(self._asset_path) if self._asset_path
|
|
111
|
+
else resolve_asset(self._asset_name)) # -i path OR search-mode stem
|
|
112
|
+
self._asset_cls = asset_cls # meshvet: VET expectations + baseline location
|
|
113
|
+
import inspect
|
|
114
|
+
try: self._asset_file = self._asset_path or inspect.getsourcefile(asset_cls)
|
|
115
|
+
except Exception: self._asset_file = self._asset_path
|
|
116
|
+
self._asset = asset_cls()
|
|
117
|
+
self._live = self._asset.materialize_live(ctx) # may raise on a bad graph -> ERROR
|
|
118
|
+
cdd, _gmtl = make_drawable(self._live, ctx, animated=False, material_cls=None,
|
|
119
|
+
instances=getattr(self._asset, "instances", None)) # asset opts into instancing
|
|
120
|
+
self.node = self.SGC.layer_fwd.createDrawableNodeFromData("hmvalidate", cdd)
|
|
121
|
+
# keep the skybox LOADED (it's the IBL light source — the geometry must be lit to be visible) but
|
|
122
|
+
# DON'T render it, so the background stays black for the content check.
|
|
123
|
+
self.SGC.pbr_common.enable_skybox = False
|
|
124
|
+
print("hmvalidate: %s materialized verts=%d faces=%d"
|
|
125
|
+
% (self._label, self._live.mesh.num_verts, self._live.mesh.num_faces), flush=True)
|
|
126
|
+
except Exception as e:
|
|
127
|
+
import traceback; traceback.print_exc()
|
|
128
|
+
print("hmvalidate: load/materialize error: %s" % e, flush=True)
|
|
129
|
+
self._finish(EXIT_LOAD_ERROR, "ERROR")
|
|
130
|
+
|
|
131
|
+
def _onUpdate(self, updinfo):
|
|
132
|
+
if not self._done:
|
|
133
|
+
self.SGC.scenegraph.updateScene(self.SGC.cameralut)
|
|
134
|
+
|
|
135
|
+
# onGpuPostFrame is wired to the CONTEXT post-frame callback (ezapp.cpp:1172) — the exact point the movie
|
|
136
|
+
# recorder captures fbi->_main_rtg from (ezapp.cpp:1393). Capturing main_RTG here (after super() lets the
|
|
137
|
+
# SGC composite) gets the finished frame; capturing earlier (e.g. _onGpuUpdate) reads an unrendered buffer.
|
|
138
|
+
def onGpuPostFrame(self, ctx):
|
|
139
|
+
super().onGpuPostFrame(ctx) # broadcast to components (SGC renders the scene into its viewport RTG)
|
|
140
|
+
if self._want_exit: # deferred clean exit (issued here, never from _onGpuInit)
|
|
141
|
+
self._want_exit = False
|
|
142
|
+
self.ezapp.signalExit()
|
|
143
|
+
return
|
|
144
|
+
if self._done:
|
|
145
|
+
return
|
|
146
|
+
self._frame += 1
|
|
147
|
+
now = time.time()
|
|
148
|
+
if self._start_time == 0.0:
|
|
149
|
+
self._start_time = now
|
|
150
|
+
try:
|
|
151
|
+
# --- no capture in flight: start a poll every POLL_EVERY frames ---
|
|
152
|
+
if self._future is None:
|
|
153
|
+
if self._frame >= WARMUP_FRAMES and self._frame >= self._next_poll:
|
|
154
|
+
# the SGC viewport renders the scene into its OWN surface RTG (not the window's _main_rtg).
|
|
155
|
+
rtg = getattr(self.SGC.SGVPW, "rtgroup", None)
|
|
156
|
+
if rtg is None or rtg.numBuffers < 1:
|
|
157
|
+
if now - self._start_time > APPEAR_TIMEOUT_S:
|
|
158
|
+
print("hmvalidate: viewport RTG never ready", flush=True)
|
|
159
|
+
self._finish(EXIT_BLANK, "BLANK")
|
|
160
|
+
return
|
|
161
|
+
self._capbuf = lev2.CaptureBuffer()
|
|
162
|
+
self._future = ctx.FBI.captureAsFormat(rtg.buffer(0), self._capbuf, "RGBA8")
|
|
163
|
+
# -o dumps on the SAME frame as the capture (last poll's write = the kept one = the settled frame),
|
|
164
|
+
# so the OBJ mesh corresponds exactly to the rendered frame / PNG (matters for animated assets).
|
|
165
|
+
if self._png_path:
|
|
166
|
+
from orkengine.core import Path as _CorePath
|
|
167
|
+
ctx.FBI.captureToFile(rtg.buffer(0), _CorePath(self._png_path))
|
|
168
|
+
if self._obj_path:
|
|
169
|
+
lev2.hypermesh.dump_obj(self._live.mesh, ctx, self._obj_path)
|
|
170
|
+
self._obj_written = True
|
|
171
|
+
self._cap_start = now
|
|
172
|
+
return
|
|
173
|
+
# --- capture in flight: wait for the readback ---
|
|
174
|
+
if not self._future.is_ready:
|
|
175
|
+
if now - self._cap_start > CAP_TIMEOUT_S:
|
|
176
|
+
print("hmvalidate: capture timeout", flush=True)
|
|
177
|
+
self._finish(EXIT_TIMEOUT, "TIMEOUT")
|
|
178
|
+
return
|
|
179
|
+
# --- readback ready: inspect this poll ---
|
|
180
|
+
has = _content_check(self._capbuf)
|
|
181
|
+
self._future = None
|
|
182
|
+
self._capbuf = None
|
|
183
|
+
self._next_poll = self._frame + POLL_EVERY
|
|
184
|
+
if has:
|
|
185
|
+
if not self._saw_content:
|
|
186
|
+
self._saw_content = True
|
|
187
|
+
self._content_at = now
|
|
188
|
+
print("hmvalidate: first content at frame %d (t=%.2fs) — settling %.2fs"
|
|
189
|
+
% (self._frame, now - self._start_time, SETTLE_S), flush=True)
|
|
190
|
+
elif now - self._content_at >= SETTLE_S: # content present + settled -> safe
|
|
191
|
+
self._finish(EXIT_OK, "PASS")
|
|
192
|
+
else:
|
|
193
|
+
self._saw_content = False # require content to be STABLE across the settle
|
|
194
|
+
if now - self._start_time > APPEAR_TIMEOUT_S: # never got (stable) content -> blank
|
|
195
|
+
self._finish(EXIT_BLANK, "BLANK")
|
|
196
|
+
except Exception as e:
|
|
197
|
+
import traceback; traceback.print_exc()
|
|
198
|
+
print("hmvalidate: capture/render error: %s" % e, flush=True)
|
|
199
|
+
self._finish(EXIT_LOAD_ERROR, "ERROR")
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
def _content_check(capbuf):
|
|
203
|
+
"""True if the captured RGBA8 frame shows actual geometry: >=NB_MIN of sampled pixels differ from the
|
|
204
|
+
corner-estimated background AND luminance spread >= SPREAD_MIN (rejects a flat single-color fill)."""
|
|
205
|
+
w, h = capbuf.width, capbuf.height
|
|
206
|
+
data = bytes(capbuf) # buffer protocol -> RGBA8, len == w*h*4
|
|
207
|
+
if w <= 0 or h <= 0 or len(data) < w * h * 4:
|
|
208
|
+
print("hmvalidate: capture buffer empty (w=%d h=%d len=%d)" % (w, h, len(data)), flush=True)
|
|
209
|
+
return False
|
|
210
|
+
def px(x, y):
|
|
211
|
+
o = (y * w + x) * 4
|
|
212
|
+
return data[o], data[o + 1], data[o + 2]
|
|
213
|
+
cor = [px(0, 0), px(w - 1, 0), px(0, h - 1), px(w - 1, h - 1)] # background = the 4 corners
|
|
214
|
+
bg = (sum(c[0] for c in cor) // 4, sum(c[1] for c in cor) // 4, sum(c[2] for c in cor) // 4)
|
|
215
|
+
sx, sy = max(1, w // 32), max(1, h // 32)
|
|
216
|
+
n = nb = 0
|
|
217
|
+
lmin, lmax = 1e9, -1e9
|
|
218
|
+
y = 0
|
|
219
|
+
while y < h:
|
|
220
|
+
x = 0
|
|
221
|
+
while x < w:
|
|
222
|
+
r, g, b = px(x, y)
|
|
223
|
+
n += 1
|
|
224
|
+
if max(abs(r - bg[0]), abs(g - bg[1]), abs(b - bg[2])) > 12:
|
|
225
|
+
nb += 1
|
|
226
|
+
lum = 0.299 * r + 0.587 * g + 0.114 * b
|
|
227
|
+
lmin = min(lmin, lum); lmax = max(lmax, lum)
|
|
228
|
+
x += sx
|
|
229
|
+
y += sy
|
|
230
|
+
nb_frac = nb / max(1, n)
|
|
231
|
+
spread = (lmax - lmin) / 255.0
|
|
232
|
+
return (nb_frac >= NB_MIN) and (spread >= SPREAD_MIN)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
def main():
|
|
236
|
+
import argparse
|
|
237
|
+
ap = argparse.ArgumentParser(description="offscreen hypermesh asset validator")
|
|
238
|
+
ap.add_argument("asset", nargs="?", help="asset filename stem (search mode)")
|
|
239
|
+
ap.add_argument("-i", "--input", default=None, help="explicit path to an asset .py (overrides search)")
|
|
240
|
+
ap.add_argument("-o", "--out", default=None,
|
|
241
|
+
help="dump output, routed by extension: <name>.obj -> the materialized MESH as OBJ "
|
|
242
|
+
"(works with ANY hypermesh asset); <name>.png -> the captured frame (render diagnostic)")
|
|
243
|
+
ap.add_argument("--bless", action="store_true",
|
|
244
|
+
help="freeze the CURRENT (visually approved) mesh as the golden baseline next to the asset "
|
|
245
|
+
"(<asset_dir>/.vet/<stem>.vetbase.npz); subsequent vet runs FAIL on drift until re-blessed")
|
|
246
|
+
ap.add_argument("--no-vet", action="store_true", help="skip the meshvet geometric tier (escape hatch)")
|
|
247
|
+
a = ap.parse_args()
|
|
248
|
+
if not a.input and not a.asset:
|
|
249
|
+
print("usage: _ork.hypermesh.validate.py <ASSET_NAME> | -i <path.py> [-o <out.obj|out.png>] [--bless]", flush=True)
|
|
250
|
+
return EXIT_LOAD_ERROR
|
|
251
|
+
out = a.out
|
|
252
|
+
obj_path = out if (out and out.lower().endswith(".obj")) else None # -o *.obj -> mesh OBJ dump
|
|
253
|
+
png_path = out if (out and not obj_path) else None # -o *.png -> frame capture
|
|
254
|
+
app = ValidatorApp(a.asset, asset_path=a.input, png_path=png_path, obj_path=obj_path)
|
|
255
|
+
app.ezapp.mainThreadLoop() # runs until _finish() -> signalExit()
|
|
256
|
+
app.ezapp.shutdown()
|
|
257
|
+
rc = app._result
|
|
258
|
+
# -o *.obj: run the dumped mesh through the MESHVET geometric tier (structural + crossing self-
|
|
259
|
+
# intersection + buried/flip parity + collapse/sliver + fan-fold + VET expectations + golden baseline).
|
|
260
|
+
# A FAIL must BLOCK the watch live-reload: the parent prefers the LAST result token in stdout, so we
|
|
261
|
+
# OVERRIDE the earlier render-tier PASS with VETFAIL (crash-after-render still fails open, as designed).
|
|
262
|
+
if obj_path and rc == EXIT_OK and app._obj_written and not a.no_vet:
|
|
263
|
+
from ork.hypergraph.dflow.hypermesh import meshvet
|
|
264
|
+
stem = (os.path.splitext(os.path.basename(app._asset_file))[0]
|
|
265
|
+
if getattr(app, "_asset_file", None) else (a.asset or "asset"))
|
|
266
|
+
expectations = dict(getattr(getattr(app, "_asset_cls", None), "VET", None) or {})
|
|
267
|
+
verdict, report = meshvet.run(obj_path,
|
|
268
|
+
asset_py=getattr(app, "_asset_file", None), stem=stem,
|
|
269
|
+
expectations=expectations, bless=a.bless)
|
|
270
|
+
print(report, flush=True)
|
|
271
|
+
if verdict == meshvet.FAIL:
|
|
272
|
+
print("\033[1;31mHMVALIDATE_GEOMETRY=FAIL\033[0m — the mesh is not well-formed (see above).", flush=True)
|
|
273
|
+
print(RESULT_TOKEN + "VETFAIL", flush=True) # LAST token wins in the parent -> blocks live-reload
|
|
274
|
+
return EXIT_VETFAIL
|
|
275
|
+
print("HMVALIDATE_GEOMETRY=%s" % verdict, flush=True)
|
|
276
|
+
return rc
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
if __name__ == "__main__":
|
|
280
|
+
sys.exit(main())
|