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.
Files changed (1150) hide show
  1. orkid_bundle/.deploy_path +1 -0
  2. orkid_bundle/.is_deploy +0 -0
  3. orkid_bundle/.relocatable_files +27 -0
  4. orkid_bundle/.symlinks.d/orkid_data.txt +1 -0
  5. orkid_bundle/OrkidLogo.icns +0 -0
  6. orkid_bundle/builds/moltenvk/Package/Latest/MoltenVK/dylib/macOS/MoltenVK_icd.json +8 -0
  7. orkid_bundle/obt-launch-env +135 -0
  8. orkid_bundle/obt_config/env.common.sh +8 -0
  9. orkid_bundle/projects/manifest.json +17 -0
  10. orkid_bundle/projects/orkid/obt.project/.gitignore +2 -0
  11. orkid_bundle/projects/orkid/obt.project/bin/_blender_impl_export_character.py +10 -0
  12. orkid_bundle/projects/orkid/obt.project/bin/_debug_helpers.py +52 -0
  13. orkid_bundle/projects/orkid/obt.project/bin/_ork.hypermesh.validate.py +280 -0
  14. orkid_bundle/projects/orkid/obt.project/bin/_pyqthilighter.py +141 -0
  15. orkid_bundle/projects/orkid/obt.project/bin/imgseq2mov.py +17 -0
  16. orkid_bundle/projects/orkid/obt.project/bin/ork.app.testrunner.py +301 -0
  17. orkid_bundle/projects/orkid/obt.project/bin/ork.audio.ambidump.py +848 -0
  18. orkid_bundle/projects/orkid/obt.project/bin/ork.blender.asset.assistant.py +421 -0
  19. orkid_bundle/projects/orkid/obt.project/bin/ork.blender.export.character.py +35 -0
  20. orkid_bundle/projects/orkid/obt.project/bin/ork.build.py +256 -0
  21. orkid_bundle/projects/orkid/obt.project/bin/ork.bundle.make.py +64 -0
  22. orkid_bundle/projects/orkid/obt.project/bin/ork.cache.clean.py +9 -0
  23. orkid_bundle/projects/orkid/obt.project/bin/ork.cache.prime.py +196 -0
  24. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.asset.info.py +372 -0
  25. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.cache.clear.py +11 -0
  26. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.cache.show.py +12 -0
  27. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.config.info.py +111 -0
  28. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.config.list.py +74 -0
  29. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.fetch.py +185 -0
  30. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.import.py +118 -0
  31. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.location.list.py +159 -0
  32. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.manifest.info.py +131 -0
  33. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.manifest.list.py +50 -0
  34. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.namespace.info.py +208 -0
  35. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.namespace.list.py +21 -0
  36. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.tool.py +1330 -0
  37. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.tree.py +98 -0
  38. orkid_bundle/projects/orkid/obt.project/bin/ork.catalog.upload.py +209 -0
  39. orkid_bundle/projects/orkid/obt.project/bin/ork.claude.py +20 -0
  40. orkid_bundle/projects/orkid/obt.project/bin/ork.claude.repl.py +365 -0
  41. orkid_bundle/projects/orkid/obt.project/bin/ork.crcstring.py +18 -0
  42. orkid_bundle/projects/orkid/obt.project/bin/ork.createunionedsource.py +74 -0
  43. orkid_bundle/projects/orkid/obt.project/bin/ork.data.fetch.py +8 -0
  44. orkid_bundle/projects/orkid/obt.project/bin/ork.dbgedit.py +9 -0
  45. orkid_bundle/projects/orkid/obt.project/bin/ork.dblock.cache.clean.py +9 -0
  46. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.apitrace.py +29 -0
  47. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ix.corebt.py +230 -0
  48. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ix.gdb.py +39 -0
  49. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ix.setupcorefiles.sh +31 -0
  50. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.lldb.py +26 -0
  51. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.lldbclient.py +87 -0
  52. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.lldbserve.py +197 -0
  53. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.ngfx.py +119 -0
  54. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.renderdoc.py +59 -0
  55. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.valgrind.py +27 -0
  56. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.vscode.py +99 -0
  57. orkid_bundle/projects/orkid/obt.project/bin/ork.debug.xcode.py +31 -0
  58. orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.macos.full.py +414 -0
  59. orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.macos.inplace.py +24 -0
  60. orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.macos.relocatable.py +30 -0
  61. orkid_bundle/projects/orkid/obt.project/bin/ork.deploy.py +76 -0
  62. orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.audio.py +72 -0
  63. orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.midi.py +46 -0
  64. orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.monitors.glfw.py +73 -0
  65. orkid_bundle/projects/orkid/obt.project/bin/ork.devicelist.monitors.ix.drm.py +25 -0
  66. orkid_bundle/projects/orkid/obt.project/bin/ork.dflow.cache.clean.py +9 -0
  67. orkid_bundle/projects/orkid/obt.project/bin/ork.dist.make.py +46 -0
  68. orkid_bundle/projects/orkid/obt.project/bin/ork.doxygen.py +31 -0
  69. orkid_bundle/projects/orkid/obt.project/bin/ork.ecsedit.py +24 -0
  70. orkid_bundle/projects/orkid/obt.project/bin/ork.ecsplay.py +317 -0
  71. orkid_bundle/projects/orkid/obt.project/bin/ork.edit.py +8 -0
  72. orkid_bundle/projects/orkid/obt.project/bin/ork.find.py +17 -0
  73. orkid_bundle/projects/orkid/obt.project/bin/ork.fixup.gnome.timeout.py +6 -0
  74. orkid_bundle/projects/orkid/obt.project/bin/ork.font.atlasgen.py +426 -0
  75. orkid_bundle/projects/orkid/obt.project/bin/ork.font.browser.py +255 -0
  76. orkid_bundle/projects/orkid/obt.project/bin/ork.font.browser2.py +278 -0
  77. orkid_bundle/projects/orkid/obt.project/bin/ork.glad.get.loader.py +154 -0
  78. orkid_bundle/projects/orkid/obt.project/bin/ork.hdri.genxir.py +167 -0
  79. orkid_bundle/projects/orkid/obt.project/bin/ork.hdri.studio.py +1607 -0
  80. orkid_bundle/projects/orkid/obt.project/bin/ork.hdri.xirview.py +307 -0
  81. orkid_bundle/projects/orkid/obt.project/bin/ork.hosttimediff.py +110 -0
  82. orkid_bundle/projects/orkid/obt.project/bin/ork.hypermesh.viewer.py +418 -0
  83. orkid_bundle/projects/orkid/obt.project/bin/ork.image.summarize.py +185 -0
  84. orkid_bundle/projects/orkid/obt.project/bin/ork.installdeps.ubuntu19.py +14 -0
  85. orkid_bundle/projects/orkid/obt.project/bin/ork.installpydeps.py +12 -0
  86. orkid_bundle/projects/orkid/obt.project/bin/ork.ios.build.lib.py +357 -0
  87. orkid_bundle/projects/orkid/obt.project/bin/ork.ios.build.testapp.py +110 -0
  88. orkid_bundle/projects/orkid/obt.project/bin/ork.ios.dep.build.py +307 -0
  89. orkid_bundle/projects/orkid/obt.project/bin/ork.ios.test.py +269 -0
  90. orkid_bundle/projects/orkid/obt.project/bin/ork.ipcq.debug.launch.py +114 -0
  91. orkid_bundle/projects/orkid/obt.project/bin/ork.ipcq.simple.launch.py +113 -0
  92. orkid_bundle/projects/orkid/obt.project/bin/ork.ix.allowdebugprivs.sh +4 -0
  93. orkid_bundle/projects/orkid/obt.project/bin/ork.ix.pipewire.start.py +36 -0
  94. orkid_bundle/projects/orkid/obt.project/bin/ork.ix.system.pipewiresetup.py +12 -0
  95. orkid_bundle/projects/orkid/obt.project/bin/ork.launch.py +8 -0
  96. orkid_bundle/projects/orkid/obt.project/bin/ork.llm.read.log.py +287 -0
  97. orkid_bundle/projects/orkid/obt.project/bin/ork.logger.httpserver.py +2369 -0
  98. orkid_bundle/projects/orkid/obt.project/bin/ork.modelviewer.py +661 -0
  99. orkid_bundle/projects/orkid/obt.project/bin/ork.movie.info.py +109 -0
  100. orkid_bundle/projects/orkid/obt.project/bin/ork.movie.player.py +226 -0
  101. orkid_bundle/projects/orkid/obt.project/bin/ork.nfs.cache.invalidate.py +13 -0
  102. orkid_bundle/projects/orkid/obt.project/bin/ork.osx.enable.corefiles.sh +7 -0
  103. orkid_bundle/projects/orkid/obt.project/bin/ork.particle.edit.py +150 -0
  104. orkid_bundle/projects/orkid/obt.project/bin/ork.particle.viewer.py +353 -0
  105. orkid_bundle/projects/orkid/obt.project/bin/ork.poser.py +548 -0
  106. orkid_bundle/projects/orkid/obt.project/bin/ork.prj.new.py +38 -0
  107. orkid_bundle/projects/orkid/obt.project/bin/ork.prj.new_workspace.py +30 -0
  108. orkid_bundle/projects/orkid/obt.project/bin/ork.prj.update.py +37 -0
  109. orkid_bundle/projects/orkid/obt.project/bin/ork.profile.py +30 -0
  110. orkid_bundle/projects/orkid/obt.project/bin/ork.pydocs.generate.py +100 -0
  111. orkid_bundle/projects/orkid/obt.project/bin/ork.pyvenv.regenerate.py +40 -0
  112. orkid_bundle/projects/orkid/obt.project/bin/ork.replace.py +20 -0
  113. orkid_bundle/projects/orkid/obt.project/bin/ork.scene.tojson.py +88 -0
  114. orkid_bundle/projects/orkid/obt.project/bin/ork.scene.viewer.py +140 -0
  115. orkid_bundle/projects/orkid/obt.project/bin/ork.sgedit.py +363 -0
  116. orkid_bundle/projects/orkid/obt.project/bin/ork.shmobject.cleanup.py +121 -0
  117. orkid_bundle/projects/orkid/obt.project/bin/ork.shortcut.macos.py +150 -0
  118. orkid_bundle/projects/orkid/obt.project/bin/ork.singularity.data.package.py +130 -0
  119. orkid_bundle/projects/orkid/obt.project/bin/ork.singularity.k2000.extractprog.py +73 -0
  120. orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.dr_sweep.py +61 -0
  121. orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.imgview.py +132 -0
  122. orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.summarize.py +403 -0
  123. orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.sweep.py +138 -0
  124. orkid_bundle/projects/orkid/obt.project/bin/ork.terrain.viewer2.py +558 -0
  125. orkid_bundle/projects/orkid/obt.project/bin/ork.test.python.unittests.all.py +76 -0
  126. orkid_bundle/projects/orkid/obt.project/bin/ork.test.shmstress.py +160 -0
  127. orkid_bundle/projects/orkid/obt.project/bin/ork.test.xirasset.py +143 -0
  128. orkid_bundle/projects/orkid/obt.project/bin/ork.testcdn.clear.py +71 -0
  129. orkid_bundle/projects/orkid/obt.project/bin/ork.util.testuvrail.py +14 -0
  130. orkid_bundle/projects/orkid/obt.project/bin/ork.uuid.generate.py +6 -0
  131. orkid_bundle/projects/orkid/obt.project/bin/ork.vulkan.run.py +76 -0
  132. orkid_bundle/projects/orkid/obt.project/deployment_manifest.py +83 -0
  133. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/README_CDNTEST.md +65 -0
  134. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/README_UPLOAD.md +272 -0
  135. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/docker-compose-simple.yml +27 -0
  136. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/docker-compose.yml +32 -0
  137. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/generate-certs.sh +19 -0
  138. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/keys/valid_keys.txt +4 -0
  139. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/monitor_logs.py +244 -0
  140. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/api.lua +220 -0
  141. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/auth.lua +53 -0
  142. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/certs/nginx.crt +22 -0
  143. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/certs/nginx.key +28 -0
  144. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/docker-entrypoint.sh +75 -0
  145. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/nginx.conf +190 -0
  146. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/nginx/upload.lua +132 -0
  147. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/ork-devcdn.py +69 -0
  148. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/start-interactive.sh +38 -0
  149. orkid_bundle/projects/orkid/obt.project/modules/docker/ork-devcdn/test_upload.py +132 -0
  150. orkid_bundle/projects/orkid/obt.project/modules/systemd/ork_sysd_test.py +36 -0
  151. orkid_bundle/projects/orkid/obt.project/obt.manifest +4 -0
  152. orkid_bundle/projects/orkid/obt.project/scripts/debug_syspath.py +55 -0
  153. orkid_bundle/projects/orkid/obt.project/scripts/init_env.py +98 -0
  154. orkid_bundle/projects/orkid/obt.project/scripts/ork/__init__.py +1 -0
  155. orkid_bundle/projects/orkid/obt.project/scripts/ork/_envmap_shader.fxv2 +445 -0
  156. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/application.py +974 -0
  157. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/frame_profiler.py +57 -0
  158. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/loggerui.py +178 -0
  159. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/movie_capture.py +45 -0
  160. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/multi_ecs.py +673 -0
  161. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/std_grid.py +16 -0
  162. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/std_imposter.py +188 -0
  163. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/std_scenegraph.py +382 -0
  164. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/chartest.py +497 -0
  165. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/__init__.py +7 -0
  166. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/graphics.py +187 -0
  167. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/__init__.py +4 -0
  168. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/grid_direction.py +58 -0
  169. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/grid_entity.py +145 -0
  170. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/gameutils/grid2d/grid_maze.py +250 -0
  171. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/lfodrone.py +31 -0
  172. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testlib/multiscene1.py +200 -0
  173. orkid_bundle/projects/orkid/obt.project/scripts/ork/app/testrunner.py +1428 -0
  174. orkid_bundle/projects/orkid/obt.project/scripts/ork/assets.py +222 -0
  175. orkid_bundle/projects/orkid/obt.project/scripts/ork/blender.py +132 -0
  176. orkid_bundle/projects/orkid/obt.project/scripts/ork/catalog_import.py +499 -0
  177. orkid_bundle/projects/orkid/obt.project/scripts/ork/catalog_tool.py +1372 -0
  178. orkid_bundle/projects/orkid/obt.project/scripts/ork/catalog_tool_ui.py +1312 -0
  179. orkid_bundle/projects/orkid/obt.project/scripts/ork/cppdb.py +71 -0
  180. orkid_bundle/projects/orkid/obt.project/scripts/ork/demoapp.py +15 -0
  181. orkid_bundle/projects/orkid/obt.project/scripts/ork/deploy.py +445 -0
  182. orkid_bundle/projects/orkid/obt.project/scripts/ork/deploy_phases.py +2139 -0
  183. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/__init__.py +12 -0
  184. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ecs_outliner_model.py +589 -0
  185. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ecs_reference_manager.py +255 -0
  186. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ecsedit.py +2332 -0
  187. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/light_editor.py +69 -0
  188. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/outliner_model.py +173 -0
  189. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/ptc_factories.py +265 -0
  190. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/scene_editor_base.py +801 -0
  191. orkid_bundle/projects/orkid/obt.project/scripts/ork/editor/scene_io.py +219 -0
  192. orkid_bundle/projects/orkid/obt.project/scripts/ork/envmap.py +436 -0
  193. orkid_bundle/projects/orkid/obt.project/scripts/ork/font/__init__.py +34 -0
  194. orkid_bundle/projects/orkid/obt.project/scripts/ork/font/atlas.py +305 -0
  195. orkid_bundle/projects/orkid/obt.project/scripts/ork/font/discovery.py +325 -0
  196. orkid_bundle/projects/orkid/obt.project/scripts/ork/font/polygon_fill.py +123 -0
  197. orkid_bundle/projects/orkid/obt.project/scripts/ork/font/tools.py +193 -0
  198. orkid_bundle/projects/orkid/obt.project/scripts/ork/font/tools_freetype.py +256 -0
  199. orkid_bundle/projects/orkid/obt.project/scripts/ork/fsmviz.py +1392 -0
  200. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/__init__.py +32 -0
  201. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/__init__.py +28 -0
  202. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/drawable/__init__.py +2 -0
  203. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/drawable/vdb_grid.py +2 -0
  204. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/material/__init__.py +3 -0
  205. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/material/freestyle.py +2 -0
  206. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/material/pbr.py +16 -0
  207. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/particle/__init__.py +2 -0
  208. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/particle/system.py +2 -0
  209. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/probe/__init__.py +2 -0
  210. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/probe/hdri_to_xir.py +2 -0
  211. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/__init__.py +5 -0
  212. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/implicit.py +2 -0
  213. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/mesh_derived.py +2 -0
  214. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/mesh_to.py +2 -0
  215. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/asset_core/sdf/vdb_file.py +2 -0
  216. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/__init__.py +10 -0
  217. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/__init__.py +39 -0
  218. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/_resolve.py +100 -0
  219. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/bevel_demo.py +30 -0
  220. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/bitop_demo.py +46 -0
  221. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/box.py +19 -0
  222. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/box_subd.py +22 -0
  223. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/compact_demo.py +23 -0
  224. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/cone.py +27 -0
  225. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/delete_demo.py +20 -0
  226. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/displace_demo.py +35 -0
  227. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/droop_demo.py +59 -0
  228. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/droop_demo_oct.py +61 -0
  229. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/droop_demo_seg.py +71 -0
  230. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/edge_select_test.py +28 -0
  231. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/edge_test.py +26 -0
  232. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/extrude_demo.py +38 -0
  233. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/extrude_expr_demo.py +42 -0
  234. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/genmask_demo.py +33 -0
  235. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/icosphere.py +32 -0
  236. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/inset_demo.py +38 -0
  237. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/instance_demo.py +43 -0
  238. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/mirror_demo.py +24 -0
  239. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/normals_demo.py +36 -0
  240. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/param_pulse.py +40 -0
  241. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/point_select_test.py +25 -0
  242. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/racer.py +64 -0
  243. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/racer.py.bak +54 -0
  244. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/ripplegrid.py +32 -0
  245. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sdf_blocky.py +63 -0
  246. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sdf_boolean.py +61 -0
  247. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sdf_conform.py +105 -0
  248. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/select_demo.py +42 -0
  249. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/sort_test.py +23 -0
  250. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/subdiv_demo.py +30 -0
  251. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/subdiv_mask_demo.py +29 -0
  252. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/transform_demo.py +35 -0
  253. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/twist_test.py +16 -0
  254. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/uvsphere.py +31 -0
  255. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/hypermesh/uvsphere_subdiv.py +28 -0
  256. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/__init__.py +32 -0
  257. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/animal_skin.py +151 -0
  258. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/basketball.py +64 -0
  259. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/beachball.py +53 -0
  260. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/brick.py +92 -0
  261. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/carbon_fiber.py +49 -0
  262. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/cobblestone.py +76 -0
  263. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/cracked_mud.py +65 -0
  264. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/foil.py +53 -0
  265. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/geological.py +171 -0
  266. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/ground.py +228 -0
  267. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hmview.py +254 -0
  268. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/honeycomb.py +49 -0
  269. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/__init__.py +11 -0
  270. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/groupview.py +62 -0
  271. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/lines.py +19 -0
  272. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/hypermesh/topoview.py +47 -0
  273. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/lily_pads.py +65 -0
  274. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/marble.py +77 -0
  275. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/plywood.py +79 -0
  276. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/soccer.py +107 -0
  277. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/solid.py +49 -0
  278. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/spaceship_hull.py +92 -0
  279. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/__init__.py +17 -0
  280. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/fbm.py +30 -0
  281. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/ground.py +56 -0
  282. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/solid.py +36 -0
  283. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/voronoi.py +32 -0
  284. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/terrain/worleyf1.py +32 -0
  285. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/materials/wood.py +107 -0
  286. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/__init__.py +4 -0
  287. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/_common.py +197 -0
  288. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/cone.py +68 -0
  289. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/hollow_funnel.py +5 -0
  290. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/icosphere.py +148 -0
  291. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/mesh/uvsphere.py +152 -0
  292. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/sdf/__init__.py +3 -0
  293. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/sdf/sphere.py +6 -0
  294. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/sdf/thick_saddle.py +6 -0
  295. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/__init__.py +8 -0
  296. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/basintest.py +10 -0
  297. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/curv.py +19 -0
  298. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/erodeflow.py +150 -0
  299. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/erox.py +55 -0
  300. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/flow3d.py +27 -0
  301. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/hf1.py +14 -0
  302. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/lpftest.py +8 -0
  303. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/masked.py +18 -0
  304. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/perlin.py +31 -0
  305. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/pha.py +42 -0
  306. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/scatterdemo.py +67 -0
  307. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/scatterhills.py +43 -0
  308. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/scatterset2.py +71 -0
  309. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/simplex.py +31 -0
  310. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/strata_bake.py +69 -0
  311. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/tilted.py +16 -0
  312. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/voronoi.py +32 -0
  313. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/warp.py +61 -0
  314. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/worleyf1.py +32 -0
  315. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/xxx.py +124 -0
  316. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/xxx2.py +198 -0
  317. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/assets/terrain/xxx3.py +237 -0
  318. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/colors.py +477 -0
  319. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/__init__.py +31 -0
  320. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_bindings.py +731 -0
  321. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_context_classes.py +41 -0
  322. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_expr.py +623 -0
  323. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_lower.py +289 -0
  324. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_parampack.py +261 -0
  325. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/_trace.py +229 -0
  326. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/hypermesh/__init__.py +928 -0
  327. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/hypermesh/meshvet.py +519 -0
  328. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/hypermesh/selexpr.py +340 -0
  329. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/__init__.py +99 -0
  330. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/_artifact_names.py +37 -0
  331. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/base.py +133 -0
  332. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/fragment.py +313 -0
  333. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/__init__.py +59 -0
  334. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/_chain.py +109 -0
  335. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/curl_noise.py +17 -0
  336. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/directional_force.py +17 -0
  337. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/drag.py +8 -0
  338. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/elliptical_attractor.py +8 -0
  339. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/elliptical_emitter.py +16 -0
  340. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/gravity.py +10 -0
  341. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/light_renderer.py +8 -0
  342. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/line_emitter.py +8 -0
  343. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/nozzle_emitter.py +8 -0
  344. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/plane_collider.py +13 -0
  345. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/point_attractor.py +8 -0
  346. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/poly_drag.py +19 -0
  347. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/pool_data.py +60 -0
  348. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/ring_emitter.py +8 -0
  349. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/sph_attractor.py +8 -0
  350. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/sphere_collider.py +13 -0
  351. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/sprite_renderer.py +8 -0
  352. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/streak_renderer.py +21 -0
  353. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/turbulence.py +8 -0
  354. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/vdb_collider.py +38 -0
  355. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/vdb_level_set_renderer.py +57 -0
  356. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/ops/vortex.py +8 -0
  357. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/particles/resolve.py +117 -0
  358. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/sdf/__init__.py +160 -0
  359. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/__init__.py +106 -0
  360. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/_node.py +161 -0
  361. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/base.py +308 -0
  362. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/gpu_chunk.py +192 -0
  363. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/manifest.py +141 -0
  364. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/ops.py +619 -0
  365. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/resolve.py +92 -0
  366. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/scatter.py +187 -0
  367. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/dflow/terrain/scatter_consumer.py +74 -0
  368. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/__init__.py +1 -0
  369. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/runtime.py +256 -0
  370. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/__init__.py +1178 -0
  371. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/assets.py +2005 -0
  372. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/resolve.py +108 -0
  373. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ecs/scene/walk_input_system.py +149 -0
  374. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/__init__.py +49 -0
  375. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/compute_template.py +92 -0
  376. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/dsl.py +1106 -0
  377. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/functions.py +464 -0
  378. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/fxv2_template.py +744 -0
  379. orkid_bundle/projects/orkid/obt.project/scripts/ork/hypergraph/ptex3d/resolve.py +82 -0
  380. orkid_bundle/projects/orkid/obt.project/scripts/ork/imgtools.py +474 -0
  381. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/__init__.py +22 -0
  382. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/app_launcher.py +147 -0
  383. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/boost.py +251 -0
  384. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/cmake_builder.py +230 -0
  385. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/curl.py +184 -0
  386. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/curlpp.py +168 -0
  387. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/device_manager.py +254 -0
  388. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/easyprof.py +91 -0
  389. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/glm.py +91 -0
  390. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/klein.py +91 -0
  391. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/libsodium.py +254 -0
  392. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/libtar.py +293 -0
  393. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/lz4.py +143 -0
  394. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/nlohmann.py +91 -0
  395. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/openblas.py +91 -0
  396. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/openssl.py +250 -0
  397. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/rapidjson.py +91 -0
  398. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/sigslot.py +91 -0
  399. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/xcode_debug.py +225 -0
  400. orkid_bundle/projects/orkid/obt.project/scripts/ork/ios/zmq.py +177 -0
  401. orkid_bundle/projects/orkid/obt.project/scripts/ork/ix_gdb_extensions.py +429 -0
  402. orkid_bundle/projects/orkid/obt.project/scripts/ork/osx_displayplacer.py +162 -0
  403. orkid_bundle/projects/orkid/obt.project/scripts/ork/osxdeploy.py +518 -0
  404. orkid_bundle/projects/orkid/obt.project/scripts/ork/path.py +55 -0
  405. orkid_bundle/projects/orkid/obt.project/scripts/ork/singularity/sampler.py +61 -0
  406. orkid_bundle/projects/orkid/obt.project/scripts/ork/singularity/simplewav.py +132 -0
  407. orkid_bundle/projects/orkid/obt.project/scripts/ork/singularity/testlib.py +137 -0
  408. orkid_bundle/projects/orkid/obt.project/scripts/ork/terrain/terrain_viewer.fxv2 +141 -0
  409. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/__init__.py +1 -0
  410. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/analog_clock.py +450 -0
  411. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/color_picker.py +235 -0
  412. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/__init__.py +16 -0
  413. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/card.py +90 -0
  414. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/constants.py +97 -0
  415. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/converter.py +543 -0
  416. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/design.py +277 -0
  417. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/orkid_design.py +153 -0
  418. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/shapes.py +62 -0
  419. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/figma/swift_design.py +490 -0
  420. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/filesystem_browser.py +561 -0
  421. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/icon_library.py +243 -0
  422. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/standard_icons.py +363 -0
  423. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/test/outliner_data.py +62 -0
  424. orkid_bundle/projects/orkid/obt.project/scripts/ork/ui/transform_edit.py +513 -0
  425. orkid_bundle/projects/orkid/obt.project/template/dist.root.makefile +26 -0
  426. orkid_bundle/projects/orkid/obt.project/template/ork.build.ext_env.py +63 -0
  427. orkid_bundle/projects/orkid/obt.project/template/project/makefile +7 -0
  428. orkid_bundle/projects/orkid/obt.project/template/project/src/main.cpp +7 -0
  429. orkid_bundle/projects/orkid/obt.project/template/project/template.sconstruct +65 -0
  430. orkid_bundle/projects/orkid/ork.core/pyext/tests/actual_upload.py +87 -0
  431. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3.py +144 -0
  432. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_chunks.py +143 -0
  433. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_delimiter.py +89 -0
  434. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_phase1.py +119 -0
  435. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_phase2.py +152 -0
  436. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_phase3_pak.py +186 -0
  437. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_repackage.py +138 -0
  438. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog3_tojson.py +74 -0
  439. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog_cache_dir.py +90 -0
  440. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog_tojson.py +120 -0
  441. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_catalog_upload.py +194 -0
  442. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_entry_repackage.py +145 -0
  443. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_entry_upload.py +156 -0
  444. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_manifest_tojson.py +123 -0
  445. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_manifest_upload.py +154 -0
  446. orkid_bundle/projects/orkid/ork.core/pyext/tests/asset_package_method.py +341 -0
  447. orkid_bundle/projects/orkid/ork.core/pyext/tests/catalog_with_configspace.py +35 -0
  448. orkid_bundle/projects/orkid/ork.core/pyext/tests/cdn_api.py +120 -0
  449. orkid_bundle/projects/orkid/ork.core/pyext/tests/cdn_cdntest.py +113 -0
  450. orkid_bundle/projects/orkid/ork.core/pyext/tests/cdntest_setup.py +100 -0
  451. orkid_bundle/projects/orkid/ork.core/pyext/tests/chunk_assembly.py +179 -0
  452. orkid_bundle/projects/orkid/ork.core/pyext/tests/concurrent_assembly.py +293 -0
  453. orkid_bundle/projects/orkid/ork.core/pyext/tests/concurrent_chunking.py +261 -0
  454. orkid_bundle/projects/orkid/ork.core/pyext/tests/configspace.py +33 -0
  455. orkid_bundle/projects/orkid/ork.core/pyext/tests/crc.py +18 -0
  456. orkid_bundle/projects/orkid/ork.core/pyext/tests/createasset_static.py +59 -0
  457. orkid_bundle/projects/orkid/ork.core/pyext/tests/crypt.py +350 -0
  458. orkid_bundle/projects/orkid/ork.core/pyext/tests/datablock.py +41 -0
  459. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow.py +81 -0
  460. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_bind.py +237 -0
  461. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_bind_vec3.py +217 -0
  462. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_ctxvars.py +168 -0
  463. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_cycle.py +64 -0
  464. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_dsl_chain.py +110 -0
  465. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_dsl_trace.py +85 -0
  466. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_elliptical_per_particle.py +88 -0
  467. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_elliptical_port.py +89 -0
  468. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_expr.py +301 -0
  469. orkid_bundle/projects/orkid/ork.core/pyext/tests/dataflow_lower.py +222 -0
  470. orkid_bundle/projects/orkid/ork.core/pyext/tests/download_group.py +74 -0
  471. orkid_bundle/projects/orkid/ork.core/pyext/tests/download_multi.py +71 -0
  472. orkid_bundle/projects/orkid/ork.core/pyext/tests/download_remote_exists.py +72 -0
  473. orkid_bundle/projects/orkid/ork.core/pyext/tests/download_single.py +135 -0
  474. orkid_bundle/projects/orkid/ork.core/pyext/tests/fsmviz_test.py +230 -0
  475. orkid_bundle/projects/orkid/ork.core/pyext/tests/ipcq.py +46 -0
  476. orkid_bundle/projects/orkid/ork.core/pyext/tests/ipcq_integration.py +318 -0
  477. orkid_bundle/projects/orkid/ork.core/pyext/tests/ipcq_sizes.py +264 -0
  478. orkid_bundle/projects/orkid/ork.core/pyext/tests/logger.py +28 -0
  479. orkid_bundle/projects/orkid/ork.core/pyext/tests/lz4.py +241 -0
  480. orkid_bundle/projects/orkid/ork.core/pyext/tests/math_eigenvalues.py +69 -0
  481. orkid_bundle/projects/orkid/ork.core/pyext/tests/opencl.py +56 -0
  482. orkid_bundle/projects/orkid/ork.core/pyext/tests/orkmath.py +150 -0
  483. orkid_bundle/projects/orkid/ork.core/pyext/tests/reflection.py +18 -0
  484. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_application_kwargs.py +77 -0
  485. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_env_var_expansion.py +177 -0
  486. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_fileenv.py +193 -0
  487. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_fsm.py +547 -0
  488. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_fsm2.py +273 -0
  489. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_orkshader_context.py +67 -0
  490. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_filesystem.py +58 -0
  491. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_import_resolution.py +153 -0
  492. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_resolution.py +149 -0
  493. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_path_simple.py +89 -0
  494. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_subsystem.py +159 -0
  495. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_subsystem.py.readme.md +86 -0
  496. orkid_bundle/projects/orkid/ork.core/pyext/tests/test_subsystem_core.py +72 -0
  497. orkid_bundle/projects/orkid/ork.core/pyext/tests/upload_manager.py +399 -0
  498. orkid_bundle/projects/orkid/ork.core/pyext/tests/url.py +224 -0
  499. orkid_bundle/projects/orkid/ork.core/pyext/tests/writeToDisk.py +76 -0
  500. orkid_bundle/projects/orkid/ork.data/asset_manifests/config.json +49 -0
  501. orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_4k.json +373 -0
  502. orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_8k.json +585 -0
  503. orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_blender.json +232 -0
  504. orkid_bundle/projects/orkid/ork.data/asset_manifests/envmaps_toz.json +153 -0
  505. orkid_bundle/projects/orkid/ork.data/asset_manifests/import_configs/singularity.json +17 -0
  506. orkid_bundle/projects/orkid/ork.data/asset_manifests/importconfigs/ork_envmaps_t2_import.json +13 -0
  507. orkid_bundle/projects/orkid/ork.data/asset_manifests/misc_gltf_samples.json +4078 -0
  508. orkid_bundle/projects/orkid/ork.data/asset_manifests/orkid_t2.json +4611 -0
  509. orkid_bundle/projects/orkid/ork.data/asset_manifests/singularity.json +186 -0
  510. orkid_bundle/projects/orkid/ork.data/asset_manifests/singularity_ext.json +41 -0
  511. orkid_bundle/projects/orkid/ork.data/asset_manifests/test_large.json +836 -0
  512. orkid_bundle/projects/orkid/ork.data/asset_manifests/test_movies.json +623 -0
  513. orkid_bundle/projects/orkid/ork.data/asset_manifests/test_single.json +92 -0
  514. orkid_bundle/projects/orkid/ork.data/cdntest/catalog.json +18 -0
  515. orkid_bundle/projects/orkid/ork.data/cdntest/config.json +15 -0
  516. orkid_bundle/projects/orkid/ork.data/cdntest2/config2.json +5 -0
  517. orkid_bundle/projects/orkid/ork.data/dox/doxylogo.png +0 -0
  518. orkid_bundle/projects/orkid/ork.data/dox/doxylogo.xcf +0 -0
  519. orkid_bundle/projects/orkid/ork.data/ecsscenes/ecsscn1.ecs +532 -0
  520. orkid_bundle/projects/orkid/ork.data/ecsscenes/ecsscn2.ecs +1663 -0
  521. orkid_bundle/projects/orkid/ork.data/ecsscenes/ecsscn3.ecs +1627 -0
  522. orkid_bundle/projects/orkid/ork.data/ecsscenes/saddle2.ecs +3143 -0
  523. orkid_bundle/projects/orkid/ork.data/grammars/shadlang.parser +713 -0
  524. orkid_bundle/projects/orkid/ork.data/grammars/shadlang.scanner +157 -0
  525. orkid_bundle/projects/orkid/ork.data/particles/col_planar.py +99 -0
  526. orkid_bundle/projects/orkid/ork.data/particles/col_sphere.py +99 -0
  527. orkid_bundle/projects/orkid/ork.data/particles/col_vdb.py +235 -0
  528. orkid_bundle/projects/orkid/ork.data/particles/curl.py +84 -0
  529. orkid_bundle/projects/orkid/ork.data/particles/curlbolt.py +84 -0
  530. orkid_bundle/projects/orkid/ork.data/particles/dendrite.py +75 -0
  531. orkid_bundle/projects/orkid/ork.data/particles/elliptical.py +115 -0
  532. orkid_bundle/projects/orkid/ork.data/particles/elliptical_exposed.py +128 -0
  533. orkid_bundle/projects/orkid/ork.data/particles/fireball.py +213 -0
  534. orkid_bundle/projects/orkid/ork.data/particles/gratlas.py +227 -0
  535. orkid_bundle/projects/orkid/ork.data/particles/metaballs.py +104 -0
  536. orkid_bundle/projects/orkid/ork.data/particles/polydrag.py +92 -0
  537. orkid_bundle/projects/orkid/ork.data/particles/solar.py +126 -0
  538. orkid_bundle/projects/orkid/ork.data/particles/varying_test.py +107 -0
  539. orkid_bundle/projects/orkid/ork.data/particles/wobbly.py +79 -0
  540. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/basic.fxml +0 -0
  541. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/modeler.fxml +0 -0
  542. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/solid.fxml +0 -0
  543. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/dummy/ui.fxml +0 -0
  544. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/basic.fxv2 +165 -0
  545. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/blit.fxv2 +284 -0
  546. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/brdftools.i2 +110 -0
  547. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/compositor.fxv2 +274 -0
  548. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/concrete.fxv2 +229 -0
  549. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/cube2equirectangular.fxv2 +70 -0
  550. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/deferred.fxv2 +1008 -0
  551. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/deftools.i2 +157 -0
  552. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/envtools.i2 +164 -0
  553. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/framefx.fxv2 +986 -0
  554. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/fwdtools.i2 +660 -0
  555. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/gbuftools.i2 +236 -0
  556. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/graphview.fxv2 +60 -0
  557. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/grid.fxv2 +430 -0
  558. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/heatdistort.fxv2 +89 -0
  559. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/imposters.fxv2 +73 -0
  560. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/manip.fxv2 +161 -0
  561. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/mathtools.i2 +186 -0
  562. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/misctools.i2 +152 -0
  563. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle.fxv2 +14 -0
  564. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_common.i2 +224 -0
  565. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_comshader.i2 +111 -0
  566. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_geoshader.i2 +224 -0
  567. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/particle_ssbo.i2 +173 -0
  568. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbr.fxv2 +155 -0
  569. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbr_filterenv.fxv2 +439 -0
  570. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbr_lobes.i2 +348 -0
  571. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pbrtools.i2 +768 -0
  572. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/picktools.i2 +126 -0
  573. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/pnoise.i2 +58 -0
  574. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/prim_canvas.fxv2 +74 -0
  575. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/prim_canvas.i2 +309 -0
  576. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/sdf_ui.fxv2 +491 -0
  577. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/sdftools.i2 +244 -0
  578. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/skintools.i2 +56 -0
  579. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/solid.fxv2 +516 -0
  580. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ssaotools.i2 +135 -0
  581. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/stdtools.i2 +357 -0
  582. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/terrain.fxv2 +336 -0
  583. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/test.fxv2 +73 -0
  584. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ui.fxv2 +313 -0
  585. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ui2.fxv2 +205 -0
  586. orkid_bundle/projects/orkid/ork.data/platform_lev2/shaders/fxv2/ui_pickid_viz.fxv2 +122 -0
  587. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata12.png +0 -0
  588. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata13.png +0 -0
  589. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata14.png +0 -0
  590. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata15.png +0 -0
  591. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata16.png +0 -0
  592. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata17.png +0 -0
  593. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata18.png +0 -0
  594. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata20.png +0 -0
  595. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata22.png +0 -0
  596. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata24.png +0 -0
  597. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata26.png +0 -0
  598. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata28.png +0 -0
  599. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata30.png +0 -0
  600. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata32.png +0 -0
  601. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata34.png +0 -0
  602. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata36.png +0 -0
  603. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata38.png +0 -0
  604. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata40.png +0 -0
  605. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/Inconsolata48.png +0 -0
  606. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/gridcell_blue.png +0 -0
  607. orkid_bundle/projects/orkid/ork.data/platform_lev2/textures/transponder24.png +0 -0
  608. orkid_bundle/projects/orkid/ork.data/scenes/hello.py +26 -0
  609. orkid_bundle/projects/orkid/ork.data/scenes/mtl_basketball.py +31 -0
  610. orkid_bundle/projects/orkid/ork.data/scenes/mtl_beachball.py +33 -0
  611. orkid_bundle/projects/orkid/ork.data/scenes/mtl_brick.py +37 -0
  612. orkid_bundle/projects/orkid/ork.data/scenes/mtl_carbon.py +36 -0
  613. orkid_bundle/projects/orkid/ork.data/scenes/mtl_cc.py +103 -0
  614. orkid_bundle/projects/orkid/ork.data/scenes/mtl_cc2.py +150 -0
  615. orkid_bundle/projects/orkid/ork.data/scenes/mtl_cheetah.py +32 -0
  616. orkid_bundle/projects/orkid/ork.data/scenes/mtl_cobblestone.py +47 -0
  617. orkid_bundle/projects/orkid/ork.data/scenes/mtl_colors.py +128 -0
  618. orkid_bundle/projects/orkid/ork.data/scenes/mtl_diftra.py +141 -0
  619. orkid_bundle/projects/orkid/ork.data/scenes/mtl_dirt.py +32 -0
  620. orkid_bundle/projects/orkid/ork.data/scenes/mtl_foil.py +36 -0
  621. orkid_bundle/projects/orkid/ork.data/scenes/mtl_grass.py +32 -0
  622. orkid_bundle/projects/orkid/ork.data/scenes/mtl_gravel.py +32 -0
  623. orkid_bundle/projects/orkid/ork.data/scenes/mtl_honeycomb.py +35 -0
  624. orkid_bundle/projects/orkid/ork.data/scenes/mtl_hull.py +45 -0
  625. orkid_bundle/projects/orkid/ork.data/scenes/mtl_ior.py +83 -0
  626. orkid_bundle/projects/orkid/ork.data/scenes/mtl_iri.py +88 -0
  627. orkid_bundle/projects/orkid/ork.data/scenes/mtl_leopard.py +32 -0
  628. orkid_bundle/projects/orkid/ork.data/scenes/mtl_lilies.py +38 -0
  629. orkid_bundle/projects/orkid/ork.data/scenes/mtl_marble.py +36 -0
  630. orkid_bundle/projects/orkid/ork.data/scenes/mtl_marble_trans.py +45 -0
  631. orkid_bundle/projects/orkid/ork.data/scenes/mtl_mud.py +31 -0
  632. orkid_bundle/projects/orkid/ork.data/scenes/mtl_mud_cracked.py +45 -0
  633. orkid_bundle/projects/orkid/ork.data/scenes/mtl_mud_cracked_pom.py +47 -0
  634. orkid_bundle/projects/orkid/ork.data/scenes/mtl_oak.py +32 -0
  635. orkid_bundle/projects/orkid/ork.data/scenes/mtl_pine.py +32 -0
  636. orkid_bundle/projects/orkid/ork.data/scenes/mtl_plywood.py +32 -0
  637. orkid_bundle/projects/orkid/ork.data/scenes/mtl_reptile.py +32 -0
  638. orkid_bundle/projects/orkid/ork.data/scenes/mtl_rock.py +31 -0
  639. orkid_bundle/projects/orkid/ork.data/scenes/mtl_sand.py +32 -0
  640. orkid_bundle/projects/orkid/ork.data/scenes/mtl_sheen.py +149 -0
  641. orkid_bundle/projects/orkid/ork.data/scenes/mtl_showcase.py +475 -0
  642. orkid_bundle/projects/orkid/ork.data/scenes/mtl_snow.py +31 -0
  643. orkid_bundle/projects/orkid/ork.data/scenes/mtl_soccer.py +33 -0
  644. orkid_bundle/projects/orkid/ork.data/scenes/mtl_spec.py +98 -0
  645. orkid_bundle/projects/orkid/ork.data/scenes/mtl_ss_jade.py +123 -0
  646. orkid_bundle/projects/orkid/ork.data/scenes/mtl_ss_skin.py +107 -0
  647. orkid_bundle/projects/orkid/ork.data/scenes/mtl_teak.py +32 -0
  648. orkid_bundle/projects/orkid/ork.data/scenes/mtl_transmission.py +93 -0
  649. orkid_bundle/projects/orkid/ork.data/scenes/mtl_volume.py +102 -0
  650. orkid_bundle/projects/orkid/ork.data/scenes/mtl_zebra.py +32 -0
  651. orkid_bundle/projects/orkid/ork.data/scenes/ptc_vdb.py +113 -0
  652. orkid_bundle/projects/orkid/ork.data/scenes/ren_gid.py +105 -0
  653. orkid_bundle/projects/orkid/ork.data/scenes/ren_hypermesh.py +86 -0
  654. orkid_bundle/projects/orkid/ork.data/scenes/ren_saddle.py +114 -0
  655. orkid_bundle/projects/orkid/ork.data/scenes/ren_saddle2.py +189 -0
  656. orkid_bundle/projects/orkid/ork.data/scenes/ren_scatter.py +257 -0
  657. orkid_bundle/projects/orkid/ork.data/scenes/ren_terrain.py +84 -0
  658. orkid_bundle/projects/orkid/ork.data/src/effect_textures/L0D.png +0 -0
  659. orkid_bundle/projects/orkid/ork.data/src/effect_textures/NoiseKern.dds +0 -0
  660. orkid_bundle/projects/orkid/ork.data/src/effect_textures/adama.png +0 -0
  661. orkid_bundle/projects/orkid/ork.data/src/effect_textures/black.dds +0 -0
  662. orkid_bundle/projects/orkid/ork.data/src/effect_textures/blue_64.dds +0 -0
  663. orkid_bundle/projects/orkid/ork.data/src/effect_textures/default_normal.dds +0 -0
  664. orkid_bundle/projects/orkid/ork.data/src/effect_textures/green.dds +0 -0
  665. orkid_bundle/projects/orkid/ork.data/src/effect_textures/knob2.png +0 -0
  666. orkid_bundle/projects/orkid/ork.data/src/effect_textures/ptc1.png +0 -0
  667. orkid_bundle/projects/orkid/ork.data/src/effect_textures/ptc3.png +0 -0
  668. orkid_bundle/projects/orkid/ork.data/src/effect_textures/ptc4.png +0 -0
  669. orkid_bundle/projects/orkid/ork.data/src/effect_textures/spinner.dds +0 -0
  670. orkid_bundle/projects/orkid/ork.data/src/effect_textures/uvmap_A.dds +0 -0
  671. orkid_bundle/projects/orkid/ork.data/src/effect_textures/uvmap_A.png +0 -0
  672. orkid_bundle/projects/orkid/ork.data/src/effect_textures/voltex_pn2.dds +0 -0
  673. orkid_bundle/projects/orkid/ork.data/src/effect_textures/white.dds +0 -0
  674. orkid_bundle/projects/orkid/ork.data/src/effect_textures/white_64.dds +0 -0
  675. orkid_bundle/projects/orkid/ork.data/src/particle_textures/crescent.dds +0 -0
  676. orkid_bundle/projects/orkid/ork.data/src/particle_textures/mask_crack1.dds +0 -0
  677. orkid_bundle/projects/orkid/ork.data/src/particle_textures/ptc4.dds +0 -0
  678. orkid_bundle/projects/orkid/ork.data/src/particle_textures/ptc4.png +0 -0
  679. orkid_bundle/projects/orkid/ork.data/src/particle_textures/skull1.dds +0 -0
  680. orkid_bundle/projects/orkid/ork.data/src/particle_textures/skull1.png +0 -0
  681. orkid_bundle/projects/orkid/ork.data/src/scripts/BlenderOrkidPbr.spexp +0 -0
  682. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/diver.lua +97 -0
  683. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/physball.lua +43 -0
  684. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposXY.lua +43 -0
  685. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposXYZ.lua +60 -0
  686. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposXZ.lua +43 -0
  687. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/randposYZ.lua +43 -0
  688. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/spinny.lua +44 -0
  689. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/terplayer.lua +67 -0
  690. orkid_bundle/projects/orkid/ork.data/src/scripts/arch/yo.lua +57 -0
  691. orkid_bundle/projects/orkid/ork.data/src/scripts/scene/nop.lua +85 -0
  692. orkid_bundle/projects/orkid/ork.data/src/scripts/scene/physpawnscene.lua +69 -0
  693. orkid_bundle/projects/orkid/ork.data/src/scripts/scene/spawntest.lua +77 -0
  694. orkid_bundle/projects/orkid/ork.data/src/scripts/std/ansicolors.lua +64 -0
  695. orkid_bundle/projects/orkid/ork.data/src/scripts/std/inspect.lua +328 -0
  696. orkid_bundle/projects/orkid/ork.data/src/scripts/std/orklib.lua +39 -0
  697. orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.NX.png +0 -0
  698. orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.NY.png +0 -0
  699. orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.NZ.png +0 -0
  700. orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.PX.png +0 -0
  701. orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.PY.png +0 -0
  702. orkid_bundle/projects/orkid/ork.data/tests/environ/BAKE.PZ.png +0 -0
  703. orkid_bundle/projects/orkid/ork.data/tests/environ/roomtest_lightmaps.glb +0 -0
  704. orkid_bundle/projects/orkid/ork.data/tests/environ/roomtest_lightmaps.orkid.json +15 -0
  705. orkid_bundle/projects/orkid/ork.data/tests/pbr_calib.glb +0 -0
  706. orkid_bundle/projects/orkid/ork.ecs/examples/python/misc/statehooks.py +165 -0
  707. orkid_bundle/projects/orkid/ork.ecs/examples/python/particles/ptc1.py +166 -0
  708. orkid_bundle/projects/orkid/ork.ecs/examples/python/particles/ptc2.py +211 -0
  709. orkid_bundle/projects/orkid/ork.ecs/examples/python/particles/ptc3.py +168 -0
  710. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/FPS.py +638 -0
  711. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/FPS2.py +631 -0
  712. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/FPSa.py +133 -0
  713. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/_fps_game.py +441 -0
  714. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/instanced.py +281 -0
  715. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/minimal.py +265 -0
  716. orkid_bundle/projects/orkid/ork.ecs/examples/python/physics/submesh.py +503 -0
  717. orkid_bundle/projects/orkid/ork.ecs/examples/python/pysys/_controller.py +350 -0
  718. orkid_bundle/projects/orkid/ork.ecs/examples/python/pysys/_system.py +162 -0
  719. orkid_bundle/projects/orkid/ork.ecs/examples/python/pysys/minimal.py +54 -0
  720. orkid_bundle/projects/orkid/ork.ecs/examples/python/requirements.txt +5 -0
  721. orkid_bundle/projects/orkid/ork.lev2/examples/python/audio/nodata.py +73 -0
  722. orkid_bundle/projects/orkid/ork.lev2/examples/python/audio/sampler.py +154 -0
  723. orkid_bundle/projects/orkid/ork.lev2/examples/python/audio/utils.py +201 -0
  724. orkid_bundle/projects/orkid/ork.lev2/examples/python/browser_shm_producer.py +153 -0
  725. orkid_bundle/projects/orkid/ork.lev2/examples/python/data/nub1.obj +306 -0
  726. orkid_bundle/projects/orkid/ork.lev2/examples/python/jupyter.ipynb +105 -0
  727. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2app.py +84 -0
  728. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/cameras.py +107 -0
  729. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/compositorsetup.glfx +112 -0
  730. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/imgui.py +447 -0
  731. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/lighting.py +99 -0
  732. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/misc.py +28 -0
  733. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/primitives.py +222 -0
  734. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/ptc_harness.py +281 -0
  735. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/pyopengl.py +164 -0
  736. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/scenegraph.py +72 -0
  737. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/shaders.py +437 -0
  738. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/submeshes.py +178 -0
  739. orkid_bundle/projects/orkid/ork.lev2/examples/python/lev2utils/testapp.py +170 -0
  740. orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/meshproc_client.py +202 -0
  741. orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/meshproc_server.py +33 -0
  742. orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/pymesh_Dockerfile +12 -0
  743. orkid_bundle/projects/orkid/ork.lev2/examples/python/meshproc/submesh.py +93 -0
  744. orkid_bundle/projects/orkid/ork.lev2/examples/python/primitives/cubeprim.py +118 -0
  745. orkid_bundle/projects/orkid/ork.lev2/examples/python/primitives/customprim.py +129 -0
  746. orkid_bundle/projects/orkid/ork.lev2/examples/python/primitives/frustumprim.py +166 -0
  747. orkid_bundle/projects/orkid/ork.lev2/examples/python/qt5py.py +20 -0
  748. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/_sg_boilerplate.py +122 -0
  749. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/compositor_setup.py +111 -0
  750. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/fwd_transparency.py +139 -0
  751. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase0.py +150 -0
  752. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase0_marble.fxv2 +162 -0
  753. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase0_proto.fxv2 +171 -0
  754. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase1.py +166 -0
  755. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase2.py +136 -0
  756. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase3.py +174 -0
  757. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/geov2_phase3a.py +134 -0
  758. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/minimal.py +122 -0
  759. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/models.py +244 -0
  760. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles1.py +86 -0
  761. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles2.py +204 -0
  762. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles3.py +177 -0
  763. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles4.py +237 -0
  764. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles5.py +253 -0
  765. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles6.py +277 -0
  766. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles6b.py +259 -0
  767. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles6c.py +259 -0
  768. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles7.py +253 -0
  769. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles8.py +253 -0
  770. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles_worldspace.py +198 -0
  771. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/particles_worldspace2.py +233 -0
  772. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/picking.py +79 -0
  773. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/points.py +181 -0
  774. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/points_animated.py +212 -0
  775. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/pseudowire.py +124 -0
  776. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/shaderballs.py +391 -0
  777. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skin_override_test.fxv2 +94 -0
  778. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning.py +151 -0
  779. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning2.py +315 -0
  780. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning3.py +290 -0
  781. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning4.py +753 -0
  782. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/skinning5.py +249 -0
  783. orkid_bundle/projects/orkid/ork.lev2/examples/python/scenegraph/uicamera.py +115 -0
  784. orkid_bundle/projects/orkid/ork.lev2/examples/python/shmtexture_demo.py +310 -0
  785. orkid_bundle/projects/orkid/ork.lev2/examples/python/ui/uiminimal.py +64 -0
  786. orkid_bundle/projects/orkid/ork.lev2/examples/python/vpfenc.py +141 -0
  787. orkid_bundle/projects/orkid/ork.lev2/examples/python/vpfenc_server.py +183 -0
  788. orkid_bundle/projects/orkid/ork.lev2/examples/python/windowed_minimal.py +126 -0
  789. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/__init__.py +1 -0
  790. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/_boilerplate.py +462 -0
  791. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/__init__.py +1 -0
  792. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_componentized_subsystems.py +240 -0
  793. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_componentized_subsystems3.py +273 -0
  794. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_ezapp_creation.py +69 -0
  795. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/application/test_ezapp_subsystems.py +111 -0
  796. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/_pixel_pick_boilerplate.py +327 -0
  797. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_capture_fence_sync.py +193 -0
  798. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_capture_rgba16f.py +184 -0
  799. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_basic.py +137 -0
  800. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_cull.py +171 -0
  801. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_indirect_dispatch.py +98 -0
  802. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_pnoise.py +178 -0
  803. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_compute_shared.py +143 -0
  804. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_ecs_walk.py +144 -0
  805. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_exr_hang.py +106 -0
  806. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_filter_steps.py +487 -0
  807. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_filter_steps2.py +280 -0
  808. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_envmap_format_isolate.py +424 -0
  809. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_fxpipeline_rebind.py +35 -0
  810. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hyperecs_d4_bindings.py +130 -0
  811. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_cookcache.py +122 -0
  812. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_displace.py +205 -0
  813. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_edgecache.py +52 -0
  814. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_extrude_oracle.py +119 -0
  815. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_foundation.py +33 -0
  816. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_gid.py +130 -0
  817. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_hostdata.py +151 -0
  818. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_inset_oracle.py +135 -0
  819. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_instedge.py +135 -0
  820. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_livepath.py +108 -0
  821. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_matgen.py +89 -0
  822. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_oracles.py +150 -0
  823. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_paramsink.py +111 -0
  824. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_reflection.py +119 -0
  825. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_roundtrip.py +101 -0
  826. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_scan_oracle.py +73 -0
  827. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_skewgates.py +108 -0
  828. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_subdiv_oracle.py +112 -0
  829. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_triangulation.py +35 -0
  830. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_hypermesh_wirestep.py +68 -0
  831. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_multiframe_tiles.py +217 -0
  832. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_basic.py +77 -0
  833. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_capture.py +122 -0
  834. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_capture_multi.py +141 -0
  835. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_offscreen_movie_capture.py +122 -0
  836. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_particles_modelb.py +82 -0
  837. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_particles_sdfref.py +85 -0
  838. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_multi.py +291 -0
  839. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba16f.py +33 -0
  840. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba16ui.py +199 -0
  841. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba32f.py +31 -0
  842. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba32ui.py +200 -0
  843. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_pixel_pick_single_rgba8u.py +33 -0
  844. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rgba16f_color_verify.py +230 -0
  845. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rgba16f_exr_roundtrip.py +316 -0
  846. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rgba16f_texture_sampling.py +300 -0
  847. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_rtg_rgba16f.py +119 -0
  848. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_sdfgrid.py +436 -0
  849. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_asset.py +100 -0
  850. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_asset_wrapper.py +52 -0
  851. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_bake.py +42 -0
  852. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_cache.py +35 -0
  853. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_dsl.py +103 -0
  854. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_hfbake.py +77 -0
  855. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_ops.py +47 -0
  856. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_pybind.py +71 -0
  857. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_terrain_scatter_parity.py +146 -0
  858. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/llgfx/test_xirasset.py +64 -0
  859. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/midi/simple.py +154 -0
  860. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/ctx_state_debug.py +123 -0
  861. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/gfxanim.py +75 -0
  862. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/movieandmidi.py +149 -0
  863. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/serialize_testobj.py +59 -0
  864. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/misc/vdbbench.py +59 -0
  865. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/model.py +115 -0
  866. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/complex.py +214 -0
  867. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/hwdec_basic.py +228 -0
  868. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/hwdec_stresstest.py +239 -0
  869. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/movie/minimal.py +149 -0
  870. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/_computeshader.fxv2 +195 -0
  871. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/_lavalamp.py +341 -0
  872. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/_sys_testgrid.py +168 -0
  873. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/computeshader.py +224 -0
  874. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/marchingcubes.py +142 -0
  875. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/marchingcubes2.py +207 -0
  876. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/mplib.py +251 -0
  877. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/pixelart.py +183 -0
  878. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/solidpython.py +199 -0
  879. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/texfrompybuf.py +227 -0
  880. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/texfrompybuf2.py +186 -0
  881. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/texfrompybuf3.py +261 -0
  882. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_ax_dynamic_points.py +272 -0
  883. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_ax_static_points.py +196 -0
  884. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_lavalamp.py +36 -0
  885. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vdb_sculpt.py +336 -0
  886. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/datasources/vectorfield.py +82 -0
  887. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/drawable_string.py +232 -0
  888. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_basic.fxv2 +289 -0
  889. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_basic.glfx +162 -0
  890. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_basic.py +327 -0
  891. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain.fxv2 +275 -0
  892. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain.glfx +306 -0
  893. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain.py +266 -0
  894. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain1b.fxv2 +269 -0
  895. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain1b.glfx +297 -0
  896. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain1b.py +326 -0
  897. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain2.fxv2 +176 -0
  898. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain2.glfx +194 -0
  899. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_terrain2.py +311 -0
  900. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_test.fxv2 +126 -0
  901. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_test.glfx +135 -0
  902. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_test.py +150 -0
  903. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_water.fxv2 +488 -0
  904. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_water.glfx +417 -0
  905. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/geoclipmesh_water.py +334 -0
  906. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/water1.glfx +241 -0
  907. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/water1.py +209 -0
  908. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/geoclip/water2.py +213 -0
  909. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/_boilerplate.py +57 -0
  910. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i1.fxv2 +168 -0
  911. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i1.py +126 -0
  912. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i5.fxv2 +186 -0
  913. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/imposters/i5.py +148 -0
  914. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/instancing/instanced_model.py +136 -0
  915. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/lightmap1.py +93 -0
  916. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/probe.py +285 -0
  917. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/spotlight_rigid_model.py +126 -0
  918. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/spotlight_skinned_model.py +226 -0
  919. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/lighting/ssao.py +153 -0
  920. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/ambocc.py +181 -0
  921. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/ambocc_render.glfx +166 -0
  922. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/override1.py +89 -0
  923. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/override2.py +204 -0
  924. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_displaced.fxv2 +266 -0
  925. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_displaced.py +205 -0
  926. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_flat.fxv2 +236 -0
  927. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_flat.py +205 -0
  928. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_projected.fxv2 +259 -0
  929. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/material/water_projected.py +199 -0
  930. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/micromesh/uvs.py +674 -0
  931. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/_ptc_harness.py +282 -0
  932. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_elliptical.py +196 -0
  933. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_elliptical2.py +175 -0
  934. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_elliptical3.py +203 -0
  935. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_emitter_line.py +249 -0
  936. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_lights.py +178 -0
  937. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_sprite.py +66 -0
  938. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_streak.py +68 -0
  939. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_texgrid.py +172 -0
  940. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_xfcurve.py +137 -0
  941. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_xfmath.py +128 -0
  942. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/particles/ptc_xfmath2.py +140 -0
  943. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/postfx/hsvg.py +139 -0
  944. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/postfx/user.py +173 -0
  945. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/postfx/usertest.fxv2 +171 -0
  946. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/compute_drawable.py +131 -0
  947. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/gpu_mesh_primitive.py +209 -0
  948. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/primitive_indirect.py +243 -0
  949. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/primitive_types.py +434 -0
  950. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/basic_cube_sphere_light.py +200 -0
  951. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/instancing.py +302 -0
  952. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/point_lights.py +195 -0
  953. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/procedural_envmaps.py +254 -0
  954. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/transparency.py +242 -0
  955. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/procedural_pbr/vtxcolor_materials.py +186 -0
  956. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/terrain_indirect.py +232 -0
  957. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/terrain_pbr_indirect.py +101 -0
  958. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/test_hypermesh_basic.py +51 -0
  959. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/primitives/test_hypermesh_box.py +46 -0
  960. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/projection/deferred_projmap.glfx +179 -0
  961. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/projection/deferred_projmap.py +369 -0
  962. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_grid.py +138 -0
  963. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_points.py +216 -0
  964. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_ptc_sprite.py +108 -0
  965. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_ptc_streak.py +105 -0
  966. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/stereo/stereo_rigid_model.py +117 -0
  967. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_2d_per_mip.py +130 -0
  968. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_2d_single_mip.py +68 -0
  969. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_2d_subregion.py +66 -0
  970. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_array_slices.py +262 -0
  971. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_array_slices_streaming.py +623 -0
  972. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/renderer/texture/chunked_completion_sema.py +111 -0
  973. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_daw_mixerview.py +691 -0
  974. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_frqdom.py +133 -0
  975. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_harness.py +493 -0
  976. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_seq.py +131 -0
  977. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/_t8x.py +57 -0
  978. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/convolve_td_load_IR.py +60 -0
  979. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/dumpmidi.py +32 -0
  980. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_hirolloff.py +53 -0
  981. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_hishelf.py +53 -0
  982. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_load_IR.py +59 -0
  983. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_lorolloff.py +53 -0
  984. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_loshelf.py +53 -0
  985. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_parametric4.py +61 -0
  986. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_violin.py +68 -0
  987. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/frqdom_vowels.py +86 -0
  988. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/hwinput_minimal.py +87 -0
  989. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/hwinput_pan2d.py +120 -0
  990. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/hybrid.py +85 -0
  991. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/krz_minimal.py +300 -0
  992. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/krz_romobjects.py +331 -0
  993. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/midiplayer.py +409 -0
  994. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/minimal_cz.py +158 -0
  995. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/minimal_hybrid.py +89 -0
  996. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/minimal_tx81z.py +96 -0
  997. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/pmx.py +138 -0
  998. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/sequencer.py +166 -0
  999. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/simplewave.py +248 -0
  1000. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/soundfield.py +247 -0
  1001. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/t8x.py +72 -0
  1002. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/test_audio_strdev_async.py +62 -0
  1003. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/test_audio_strdev_sync.py +127 -0
  1004. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/timestamps.py +64 -0
  1005. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/waveforms_compute.py +142 -0
  1006. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/waveforms_load.py +99 -0
  1007. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/singularity/waveforms_noui.py +30 -0
  1008. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/bevel_test.py +115 -0
  1009. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/boolean.py +143 -0
  1010. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/clip.py +83 -0
  1011. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/component.py +39 -0
  1012. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_decomp.py +231 -0
  1013. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_hull_1.py +247 -0
  1014. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_hull_2.py +111 -0
  1015. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_hull_3.py +288 -0
  1016. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/convex_volume.py +80 -0
  1017. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/dynamic.py +101 -0
  1018. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_dict.py +55 -0
  1019. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_frustum.py +71 -0
  1020. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_obj.py +18 -0
  1021. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/from_trimesh.py +132 -0
  1022. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/halfedge.py +48 -0
  1023. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/intersections_1.py +261 -0
  1024. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/intersections_2.py +251 -0
  1025. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/misc.py +162 -0
  1026. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/planar_clip.py +275 -0
  1027. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/planar_join.py +42 -0
  1028. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/planar_slice.py +30 -0
  1029. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/to_obj.py +32 -0
  1030. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/triquadulate.py +27 -0
  1031. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/vtxhash.py +14 -0
  1032. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/submesh/xatlas.py +144 -0
  1033. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/_graphview_waveforms.py +119 -0
  1034. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/_themes_overlay.py +102 -0
  1035. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/dynagrid.py +189 -0
  1036. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/filesystem.py +83 -0
  1037. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/filesystem_model.py +535 -0
  1038. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/fixed_pack.py +206 -0
  1039. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/folder_dialog.py +15 -0
  1040. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/folder_dialog_async.py +57 -0
  1041. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/fonttest.py +80 -0
  1042. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/ged_minimal.py +76 -0
  1043. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/globalevents.py +115 -0
  1044. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/graphview.py +220 -0
  1045. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/imageview_stresstest.py +367 -0
  1046. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_grid.py +80 -0
  1047. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_rc_replace.py +82 -0
  1048. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_rc_std.py +104 -0
  1049. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/layouttest_split.py +175 -0
  1050. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/manip.py +136 -0
  1051. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/open_dialog.py +16 -0
  1052. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/outliner.py +111 -0
  1053. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/outliner_model.py +329 -0
  1054. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/overlay_dropdown_test.py +130 -0
  1055. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/page_widget_example.py +99 -0
  1056. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_clock.py +40 -0
  1057. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_invaders.py +362 -0
  1058. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_layers.py +639 -0
  1059. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_pacman.py +393 -0
  1060. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_quads.py +159 -0
  1061. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_sprites.py +311 -0
  1062. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_text.py +163 -0
  1063. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_trilist.py +201 -0
  1064. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/prim_canvas_tristrip.py +143 -0
  1065. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/property_sheet.py +193 -0
  1066. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/requirements.txt +3 -0
  1067. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/save_dialog.py +16 -0
  1068. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/scrollcontainer_split.py +242 -0
  1069. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/scrollcontainer_vertical.py +94 -0
  1070. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_img_charcells.py +152 -0
  1071. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_img_simple.py +88 -0
  1072. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_img_texture.py +372 -0
  1073. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sdf_prims.py +428 -0
  1074. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/secondary_window.py +156 -0
  1075. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgdualview.glfx +113 -0
  1076. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_dualview.py +289 -0
  1077. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_mplib.py +151 -0
  1078. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_sg.py +173 -0
  1079. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_viewgrid.py +82 -0
  1080. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_emb_worldgrid.py +80 -0
  1081. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_quad_multi.py +30 -0
  1082. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_quad_single.py +195 -0
  1083. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_secondary_window.py +407 -0
  1084. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/sgui_single.py +189 -0
  1085. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/themes.py +469 -0
  1086. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/toolbar.py +149 -0
  1087. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/ui.py +57 -0
  1088. orkid_bundle/projects/orkid/ork.lev2/pyext/tests/ui/widget_pack.py +578 -0
  1089. orkid_bundle/projects/orkid/orkid.cmake +848 -0
  1090. orkid_bundle/share/ffmpeg/examples/Makefile +57 -0
  1091. orkid_bundle/share/ffmpeg/examples/README +25 -0
  1092. orkid_bundle/share/ffmpeg/examples/avio_http_serve_files.c +155 -0
  1093. orkid_bundle/share/ffmpeg/examples/avio_list_dir.c +137 -0
  1094. orkid_bundle/share/ffmpeg/examples/avio_read_callback.c +133 -0
  1095. orkid_bundle/share/ffmpeg/examples/decode_audio.c +237 -0
  1096. orkid_bundle/share/ffmpeg/examples/decode_filter_audio.c +296 -0
  1097. orkid_bundle/share/ffmpeg/examples/decode_filter_video.c +293 -0
  1098. orkid_bundle/share/ffmpeg/examples/decode_video.c +192 -0
  1099. orkid_bundle/share/ffmpeg/examples/demux_decode.c +382 -0
  1100. orkid_bundle/share/ffmpeg/examples/encode_audio.c +240 -0
  1101. orkid_bundle/share/ffmpeg/examples/encode_video.c +216 -0
  1102. orkid_bundle/share/ffmpeg/examples/extract_mvs.c +198 -0
  1103. orkid_bundle/share/ffmpeg/examples/filter_audio.c +360 -0
  1104. orkid_bundle/share/ffmpeg/examples/hw_decode.c +255 -0
  1105. orkid_bundle/share/ffmpeg/examples/mux.c +644 -0
  1106. orkid_bundle/share/ffmpeg/examples/qsv_decode.c +243 -0
  1107. orkid_bundle/share/ffmpeg/examples/qsv_transcode.c +438 -0
  1108. orkid_bundle/share/ffmpeg/examples/remux.c +198 -0
  1109. orkid_bundle/share/ffmpeg/examples/resample_audio.c +220 -0
  1110. orkid_bundle/share/ffmpeg/examples/scale_video.c +141 -0
  1111. orkid_bundle/share/ffmpeg/examples/show_metadata.c +61 -0
  1112. orkid_bundle/share/ffmpeg/examples/transcode.c +660 -0
  1113. orkid_bundle/share/ffmpeg/examples/transcode_aac.c +882 -0
  1114. orkid_bundle/share/ffmpeg/examples/vaapi_encode.c +221 -0
  1115. orkid_bundle/share/ffmpeg/examples/vaapi_transcode.c +305 -0
  1116. orkid_bundle/share/ffmpeg/ffprobe.xsd +409 -0
  1117. orkid_bundle/share/ffmpeg/libvpx-1080p.ffpreset +19 -0
  1118. orkid_bundle/share/ffmpeg/libvpx-1080p50_60.ffpreset +19 -0
  1119. orkid_bundle/share/ffmpeg/libvpx-360p.ffpreset +18 -0
  1120. orkid_bundle/share/ffmpeg/libvpx-720p.ffpreset +19 -0
  1121. orkid_bundle/share/ffmpeg/libvpx-720p50_60.ffpreset +19 -0
  1122. orkid_bundle/share/fonts/OpenImageIO/DroidSans-Bold.ttf +0 -0
  1123. orkid_bundle/share/fonts/OpenImageIO/DroidSans.ttf +0 -0
  1124. orkid_bundle/share/fonts/OpenImageIO/DroidSansMono.ttf +0 -0
  1125. orkid_bundle/share/fonts/OpenImageIO/DroidSerif-Bold.ttf +0 -0
  1126. orkid_bundle/share/fonts/OpenImageIO/DroidSerif-BoldItalic.ttf +0 -0
  1127. orkid_bundle/share/fonts/OpenImageIO/DroidSerif-Italic.ttf +0 -0
  1128. orkid_bundle/share/fonts/OpenImageIO/DroidSerif.ttf +0 -0
  1129. orkid_bundle/share/luajit-2.1/jit/bc.lua +189 -0
  1130. orkid_bundle/share/luajit-2.1/jit/bcsave.lua +637 -0
  1131. orkid_bundle/share/luajit-2.1/jit/dis_arm.lua +689 -0
  1132. orkid_bundle/share/luajit-2.1/jit/dis_arm64.lua +1233 -0
  1133. orkid_bundle/share/luajit-2.1/jit/dis_arm64be.lua +12 -0
  1134. orkid_bundle/share/luajit-2.1/jit/dis_mips.lua +694 -0
  1135. orkid_bundle/share/luajit-2.1/jit/dis_mips64.lua +17 -0
  1136. orkid_bundle/share/luajit-2.1/jit/dis_mips64el.lua +17 -0
  1137. orkid_bundle/share/luajit-2.1/jit/dis_mips64r6.lua +17 -0
  1138. orkid_bundle/share/luajit-2.1/jit/dis_mips64r6el.lua +17 -0
  1139. orkid_bundle/share/luajit-2.1/jit/dis_mipsel.lua +17 -0
  1140. orkid_bundle/share/luajit-2.1/jit/dis_ppc.lua +591 -0
  1141. orkid_bundle/share/luajit-2.1/jit/dis_x64.lua +17 -0
  1142. orkid_bundle/share/luajit-2.1/jit/dis_x86.lua +971 -0
  1143. orkid_bundle/share/luajit-2.1/jit/dump.lua +730 -0
  1144. orkid_bundle/share/luajit-2.1/jit/p.lua +309 -0
  1145. orkid_bundle/share/luajit-2.1/jit/v.lua +174 -0
  1146. orkid_bundle/share/luajit-2.1/jit/vmdef.lua +391 -0
  1147. orkid_bundle/share/luajit-2.1/jit/zone.lua +45 -0
  1148. orkid_data-0.1.0.dist-info/METADATA +5 -0
  1149. orkid_data-0.1.0.dist-info/RECORD +1150 -0
  1150. orkid_data-0.1.0.dist-info/WHEEL +4 -0
@@ -0,0 +1 @@
1
+ __OBT_DEPLOY_SENTINEL__
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,8 @@
1
+ {
2
+ "file_format_version" : "1.0.0",
3
+ "ICD": {
4
+ "library_path": "./libMoltenVK.dylib",
5
+ "api_version" : "1.4.0",
6
+ "is_portability_driver" : true
7
+ }
8
+ }
@@ -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,2 @@
1
+ *.pyc
2
+
@@ -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())