@benev/tact 0.1.0-2 → 0.1.0-4

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 (419) hide show
  1. package/README.md +205 -133
  2. package/package.json +8 -7
  3. package/s/core/{port → bindings}/action.ts +15 -5
  4. package/s/core/bindings/parts/defaults.ts +31 -0
  5. package/s/core/{port/resolution → bindings/parts}/lens-algo.ts +23 -20
  6. package/s/core/bindings/resolver.ts +96 -0
  7. package/s/core/bindings/sample-map.ts +25 -0
  8. package/s/core/bindings/types.ts +45 -42
  9. package/s/core/core.test.ts +46 -34
  10. package/s/core/devices/auto-gamepads.ts +8 -0
  11. package/s/core/devices/device.ts +12 -0
  12. package/s/core/devices/infra/group.ts +24 -0
  13. package/s/core/devices/infra/sampler.ts +22 -0
  14. package/s/core/devices/standard/gamepad.ts +83 -0
  15. package/s/core/{controllers → devices}/standard/index.ts +2 -1
  16. package/s/core/devices/standard/keyboard.ts +31 -0
  17. package/s/core/{controllers → devices}/standard/pointer.ts +18 -20
  18. package/s/core/devices/standard/primary.ts +20 -0
  19. package/s/core/devices/standard/stick.ts +27 -0
  20. package/s/core/{controllers/standard/virtual-gamepad.ts → devices/standard/vpad.ts} +9 -9
  21. package/s/core/{controllers → devices}/types.ts +0 -1
  22. package/s/core/hub/hub.ts +78 -62
  23. package/s/core/hub/meta-bindings.ts +23 -0
  24. package/s/core/hub/parts/connected.ts +15 -0
  25. package/s/core/hub/port.ts +26 -0
  26. package/s/core/hub/types.ts +13 -0
  27. package/s/core/index.ts +13 -13
  28. package/s/core/testing/testing.ts +22 -17
  29. package/s/deck/deck.ts +77 -0
  30. package/s/deck/index.ts +14 -0
  31. package/s/deck/parts/catalog.ts +58 -0
  32. package/s/deck/parts/db.ts +66 -0
  33. package/s/deck/parts/device-skins/device-icons.ts +38 -0
  34. package/s/deck/parts/device-skins/device-skin.ts +29 -0
  35. package/s/deck/parts/local-storage-kv.ts +8 -0
  36. package/s/deck/parts/merge-bindings.ts +21 -0
  37. package/s/deck/parts/overlay-visibility.ts +49 -0
  38. package/s/deck/views/deck-overlay/component.ts +48 -0
  39. package/s/deck/views/deck-overlay/style.css.ts +112 -0
  40. package/s/deck/views/framework.ts +14 -0
  41. package/s/demo/game/game.ts +85 -0
  42. package/s/demo/game/parts/agent.ts +10 -0
  43. package/s/demo/game/parts/game-bindings.ts +20 -0
  44. package/s/demo/game/parts/logic.ts +24 -0
  45. package/s/demo/game/parts/player.ts +32 -0
  46. package/s/demo/game/parts/renderer.ts +113 -0
  47. package/s/demo/game/parts/state.ts +24 -0
  48. package/s/demo/game/parts/virtual-device.ts +13 -0
  49. package/s/demo/main.bundle.ts +6 -12
  50. package/s/demo/main.css +30 -2
  51. package/s/demo/ui/tact-demo/component.ts +13 -0
  52. package/s/demo/ui/tact-demo/style.css.ts +4 -0
  53. package/s/demo/ui/theater/styles.css.ts +57 -0
  54. package/s/demo/ui/theater/view.ts +53 -0
  55. package/s/demo/ui/theater/virtual/style.css.ts +43 -0
  56. package/s/demo/ui/theater/virtual/view.ts +31 -0
  57. package/s/demo/ui/utils/loader.ts +5 -0
  58. package/s/index.html.ts +16 -6
  59. package/s/index.ts +3 -1
  60. package/s/nubs/components.ts +14 -0
  61. package/s/nubs/index.ts +6 -0
  62. package/s/nubs/lookpad/component.ts +45 -0
  63. package/s/nubs/stick/component.ts +115 -0
  64. package/s/nubs/stick/style.css.ts +70 -0
  65. package/s/nubs/{virtual-gamepad/view.ts → vpad/component.ts} +21 -11
  66. package/s/nubs/{virtual-gamepad → vpad}/styles.css.ts +1 -0
  67. package/s/utils/circular-clamp.ts +15 -0
  68. package/s/utils/dispensers.ts +20 -0
  69. package/s/utils/split-axis.ts +10 -2
  70. package/x/core/{port → bindings}/action.d.ts +3 -1
  71. package/x/core/{port → bindings}/action.js +13 -5
  72. package/x/core/bindings/action.js.map +1 -0
  73. package/x/core/bindings/parts/defaults.d.ts +3 -0
  74. package/x/core/bindings/parts/defaults.js +25 -0
  75. package/x/core/bindings/parts/defaults.js.map +1 -0
  76. package/x/core/bindings/parts/is-pressed.js.map +1 -0
  77. package/x/core/bindings/parts/lens-algo.d.ts +2 -0
  78. package/x/core/{port/resolution → bindings/parts}/lens-algo.js +18 -11
  79. package/x/core/bindings/parts/lens-algo.js.map +1 -0
  80. package/x/core/bindings/resolver.d.ts +9 -0
  81. package/x/core/bindings/resolver.js +89 -0
  82. package/x/core/bindings/resolver.js.map +1 -0
  83. package/x/core/bindings/sample-map.d.ts +7 -0
  84. package/x/core/bindings/sample-map.js +22 -0
  85. package/x/core/bindings/sample-map.js.map +1 -0
  86. package/x/core/bindings/types.d.ts +34 -38
  87. package/x/core/bindings/types.js +0 -1
  88. package/x/core/bindings/types.js.map +1 -1
  89. package/x/core/core.test.d.ts +5 -4
  90. package/x/core/core.test.js +45 -34
  91. package/x/core/core.test.js.map +1 -1
  92. package/x/core/devices/auto-gamepads.d.ts +2 -0
  93. package/x/core/devices/auto-gamepads.js +6 -0
  94. package/x/core/devices/auto-gamepads.js.map +1 -0
  95. package/x/core/devices/device.d.ts +5 -0
  96. package/x/core/devices/device.js +7 -0
  97. package/x/core/devices/device.js.map +1 -0
  98. package/x/core/devices/infra/group.d.ts +8 -0
  99. package/x/core/devices/infra/group.js +21 -0
  100. package/x/core/devices/infra/group.js.map +1 -0
  101. package/x/core/devices/infra/sampler.d.ts +9 -0
  102. package/x/core/devices/infra/sampler.js +18 -0
  103. package/x/core/devices/infra/sampler.js.map +1 -0
  104. package/x/core/devices/standard/gamepad.d.ts +11 -0
  105. package/x/core/devices/standard/gamepad.js +65 -0
  106. package/x/core/devices/standard/gamepad.js.map +1 -0
  107. package/x/core/{controllers → devices}/standard/index.d.ts +2 -1
  108. package/x/core/{controllers → devices}/standard/index.js +2 -1
  109. package/x/core/devices/standard/index.js.map +1 -0
  110. package/x/core/devices/standard/keyboard.d.ts +9 -0
  111. package/x/core/devices/standard/keyboard.js +28 -0
  112. package/x/core/devices/standard/keyboard.js.map +1 -0
  113. package/x/core/devices/standard/pointer.d.ts +15 -0
  114. package/x/core/{controllers → devices}/standard/pointer.js +17 -19
  115. package/x/core/devices/standard/pointer.js.map +1 -0
  116. package/x/core/devices/standard/primary.d.ts +10 -0
  117. package/x/core/devices/standard/primary.js +17 -0
  118. package/x/core/devices/standard/primary.js.map +1 -0
  119. package/x/core/devices/standard/stick.d.ts +15 -0
  120. package/x/core/devices/standard/stick.js +24 -0
  121. package/x/core/devices/standard/stick.js.map +1 -0
  122. package/x/core/devices/standard/vpad.d.ts +7 -0
  123. package/x/core/{controllers/standard/virtual-gamepad.js → devices/standard/vpad.js} +10 -10
  124. package/x/core/devices/standard/vpad.js.map +1 -0
  125. package/x/core/{controllers → devices}/types.d.ts +0 -1
  126. package/x/core/{port → devices}/types.js.map +1 -1
  127. package/x/core/hub/hub.d.ts +27 -24
  128. package/x/core/hub/hub.js +71 -61
  129. package/x/core/hub/hub.js.map +1 -1
  130. package/x/core/hub/meta-bindings.d.ts +2 -0
  131. package/x/core/hub/meta-bindings.js +21 -0
  132. package/x/core/hub/meta-bindings.js.map +1 -0
  133. package/x/core/hub/parts/connected.d.ts +14 -0
  134. package/x/core/hub/parts/connected.js +12 -0
  135. package/x/core/hub/parts/connected.js.map +1 -0
  136. package/x/core/hub/port.d.ts +10 -0
  137. package/x/core/hub/port.js +19 -0
  138. package/x/core/hub/port.js.map +1 -0
  139. package/x/core/hub/types.d.ts +9 -0
  140. package/x/core/hub/types.js +2 -0
  141. package/x/core/hub/types.js.map +1 -0
  142. package/x/core/index.d.ts +13 -12
  143. package/x/core/index.js +13 -12
  144. package/x/core/index.js.map +1 -1
  145. package/x/core/testing/testing.d.ts +20 -38
  146. package/x/core/testing/testing.js +17 -16
  147. package/x/core/testing/testing.js.map +1 -1
  148. package/x/deck/deck.d.ts +35 -0
  149. package/x/deck/deck.js +50 -0
  150. package/x/deck/deck.js.map +1 -0
  151. package/x/deck/index.d.ts +10 -0
  152. package/x/deck/index.js +11 -0
  153. package/x/deck/index.js.map +1 -0
  154. package/x/deck/parts/catalog.d.ts +23 -0
  155. package/x/deck/parts/catalog.js +35 -0
  156. package/x/deck/parts/catalog.js.map +1 -0
  157. package/x/deck/parts/db.d.ts +20 -0
  158. package/x/deck/parts/db.js +52 -0
  159. package/x/deck/parts/db.js.map +1 -0
  160. package/x/deck/parts/device-skins/device-icons.d.ts +12 -0
  161. package/x/deck/parts/device-skins/device-icons.js +27 -0
  162. package/x/deck/parts/device-skins/device-icons.js.map +1 -0
  163. package/x/deck/parts/device-skins/device-skin.d.ts +14 -0
  164. package/x/deck/parts/device-skins/device-skin.js +22 -0
  165. package/x/deck/parts/device-skins/device-skin.js.map +1 -0
  166. package/x/deck/parts/local-storage-kv.d.ts +2 -0
  167. package/x/deck/parts/local-storage-kv.js +6 -0
  168. package/x/deck/parts/local-storage-kv.js.map +1 -0
  169. package/x/deck/parts/merge-bindings.d.ts +2 -0
  170. package/x/deck/parts/merge-bindings.js +15 -0
  171. package/x/deck/parts/merge-bindings.js.map +1 -0
  172. package/x/deck/parts/overlay-visibility.d.ts +21 -0
  173. package/x/deck/parts/overlay-visibility.js +35 -0
  174. package/x/deck/parts/overlay-visibility.js.map +1 -0
  175. package/x/deck/views/deck-overlay/component.d.ts +2 -0
  176. package/x/deck/views/deck-overlay/component.js +40 -0
  177. package/x/deck/views/deck-overlay/component.js.map +1 -0
  178. package/x/deck/views/deck-overlay/style.css.js +109 -0
  179. package/x/deck/views/deck-overlay/style.css.js.map +1 -0
  180. package/x/deck/views/framework.d.ts +3 -0
  181. package/x/deck/views/framework.js +8 -0
  182. package/x/deck/views/framework.js.map +1 -0
  183. package/x/demo/game/game.d.ts +20 -0
  184. package/x/demo/game/game.js +63 -0
  185. package/x/demo/game/game.js.map +1 -0
  186. package/x/demo/game/parts/agent.d.ts +7 -0
  187. package/x/demo/game/parts/agent.js +8 -0
  188. package/x/demo/game/parts/agent.js.map +1 -0
  189. package/x/demo/game/parts/game-bindings.d.ts +15 -0
  190. package/x/demo/game/parts/game-bindings.js +10 -0
  191. package/x/demo/game/parts/game-bindings.js.map +1 -0
  192. package/x/demo/game/parts/logic.d.ts +8 -0
  193. package/x/demo/game/parts/logic.js +21 -0
  194. package/x/demo/game/parts/logic.js.map +1 -0
  195. package/x/demo/game/parts/player.d.ts +14 -0
  196. package/x/demo/game/parts/player.js +26 -0
  197. package/x/demo/game/parts/player.js.map +1 -0
  198. package/x/demo/game/parts/renderer.d.ts +13 -0
  199. package/x/demo/game/parts/renderer.js +91 -0
  200. package/x/demo/game/parts/renderer.js.map +1 -0
  201. package/x/demo/game/parts/state.d.ts +8 -0
  202. package/x/demo/game/parts/state.js +20 -0
  203. package/x/demo/game/parts/state.js.map +1 -0
  204. package/x/demo/game/parts/virtual-device.d.ts +8 -0
  205. package/x/demo/game/parts/virtual-device.js +11 -0
  206. package/x/demo/game/parts/virtual-device.js.map +1 -0
  207. package/x/demo/main.bundle.js +4 -10
  208. package/x/demo/main.bundle.js.map +1 -1
  209. package/x/demo/main.bundle.min.js +315 -54
  210. package/x/demo/main.bundle.min.js.map +4 -4
  211. package/x/demo/main.css +30 -2
  212. package/x/demo/ui/tact-demo/component.d.ts +4 -0
  213. package/x/demo/ui/tact-demo/component.js +12 -0
  214. package/x/demo/ui/tact-demo/component.js.map +1 -0
  215. package/x/demo/ui/tact-demo/style.css.d.ts +2 -0
  216. package/x/demo/ui/tact-demo/style.css.js +3 -0
  217. package/x/demo/ui/tact-demo/style.css.js.map +1 -0
  218. package/x/demo/ui/theater/styles.css.js +56 -0
  219. package/x/demo/ui/theater/styles.css.js.map +1 -0
  220. package/x/demo/ui/theater/view.d.ts +2 -0
  221. package/x/demo/ui/theater/view.js +42 -0
  222. package/x/demo/ui/theater/view.js.map +1 -0
  223. package/x/demo/ui/theater/virtual/style.css.d.ts +2 -0
  224. package/x/demo/ui/theater/virtual/style.css.js +42 -0
  225. package/x/demo/ui/theater/virtual/style.css.js.map +1 -0
  226. package/x/demo/ui/theater/virtual/view.d.ts +4 -0
  227. package/x/demo/ui/theater/virtual/view.js +19 -0
  228. package/x/demo/ui/theater/virtual/view.js.map +1 -0
  229. package/x/demo/ui/utils/loader.d.ts +1 -0
  230. package/x/demo/ui/utils/loader.js +3 -0
  231. package/x/demo/ui/utils/loader.js.map +1 -0
  232. package/x/index.d.ts +3 -1
  233. package/x/index.html +47 -8
  234. package/x/index.html.js +16 -6
  235. package/x/index.html.js.map +1 -1
  236. package/x/index.js +3 -1
  237. package/x/index.js.map +1 -1
  238. package/x/nubs/components.d.ts +9 -0
  239. package/x/nubs/components.js +11 -0
  240. package/x/nubs/components.js.map +1 -0
  241. package/x/nubs/index.d.ts +4 -0
  242. package/x/nubs/index.js +5 -0
  243. package/x/nubs/index.js.map +1 -0
  244. package/x/nubs/lookpad/component.d.ts +4 -0
  245. package/x/nubs/lookpad/component.js +36 -0
  246. package/x/nubs/lookpad/component.js.map +1 -0
  247. package/x/nubs/stick/component.d.ts +368 -0
  248. package/x/nubs/stick/component.js +101 -0
  249. package/x/nubs/stick/component.js.map +1 -0
  250. package/x/nubs/stick/style.css.d.ts +2 -0
  251. package/x/nubs/stick/style.css.js +69 -0
  252. package/x/nubs/stick/style.css.js.map +1 -0
  253. package/x/nubs/vpad/component.d.ts +368 -0
  254. package/x/nubs/{virtual-gamepad/view.js → vpad/component.js} +20 -11
  255. package/x/nubs/vpad/component.js.map +1 -0
  256. package/x/nubs/vpad/styles.css.d.ts +2 -0
  257. package/x/nubs/vpad/styles.css.js.map +1 -0
  258. package/x/nubs/vpad/utils/gamepad-inputs.js.map +1 -0
  259. package/x/nubs/vpad/utils/prevent-default-touch-shenanigans.js.map +1 -0
  260. package/x/nubs/vpad/utils/touch-tracking.js.map +1 -0
  261. package/x/utils/circular-clamp.d.ts +2 -0
  262. package/x/utils/circular-clamp.js +8 -0
  263. package/x/utils/circular-clamp.js.map +1 -0
  264. package/x/utils/dispensers.d.ts +7 -0
  265. package/x/utils/dispensers.js +16 -0
  266. package/x/utils/dispensers.js.map +1 -0
  267. package/x/utils/split-axis.d.ts +7 -0
  268. package/x/utils/split-axis.js +7 -2
  269. package/x/utils/split-axis.js.map +1 -1
  270. package/s/core/controllers/controller.ts +0 -7
  271. package/s/core/controllers/infra/group.ts +0 -17
  272. package/s/core/controllers/infra/sampler.ts +0 -22
  273. package/s/core/controllers/standard/gamepad.ts +0 -81
  274. package/s/core/controllers/standard/keyboard.ts +0 -53
  275. package/s/core/controllers/standard/stick.ts +0 -30
  276. package/s/core/controllers/utils/modprefix.ts +0 -16
  277. package/s/core/hub/auto-gamepads.ts +0 -8
  278. package/s/core/hub/bindings.ts +0 -21
  279. package/s/core/port/port.ts +0 -34
  280. package/s/core/port/resolution/defaults.ts +0 -30
  281. package/s/core/port/resolution/resolver.ts +0 -77
  282. package/s/core/port/resolution/types.ts +0 -9
  283. package/s/core/port/types.ts +0 -10
  284. package/s/core/port/utils/aggregate_samples_into_map.ts +0 -20
  285. package/s/core/port/utils/wipe_samples_map.ts +0 -8
  286. package/s/nubs/lookpad/utils/listeners.ts +0 -53
  287. package/s/nubs/lookpad/view.ts +0 -32
  288. package/s/nubs/stick/styles.ts +0 -22
  289. package/s/nubs/stick/utils/calculate_new_vector_from_pointer_position.ts +0 -27
  290. package/s/nubs/stick/utils/find_closest_point_on_circle.ts +0 -15
  291. package/s/nubs/stick/utils/make_pointer_listeners.ts +0 -50
  292. package/s/nubs/stick/utils/within_radius.ts +0 -6
  293. package/s/nubs/stick/view.ts +0 -50
  294. package/s/nubs/stick-graphic/styles.ts +0 -38
  295. package/s/nubs/stick-graphic/types/basis.ts +0 -5
  296. package/s/nubs/stick-graphic/utils/calculate_basis.ts +0 -19
  297. package/s/nubs/stick-graphic/utils/stick_vector_to_pixels.ts +0 -13
  298. package/s/nubs/stick-graphic/utils/transform.ts +0 -10
  299. package/s/nubs/stick-graphic/view.ts +0 -43
  300. package/x/core/controllers/controller.d.ts +0 -4
  301. package/x/core/controllers/controller.js +0 -3
  302. package/x/core/controllers/controller.js.map +0 -1
  303. package/x/core/controllers/infra/group.d.ts +0 -7
  304. package/x/core/controllers/infra/group.js +0 -13
  305. package/x/core/controllers/infra/group.js.map +0 -1
  306. package/x/core/controllers/infra/sampler.d.ts +0 -8
  307. package/x/core/controllers/infra/sampler.js +0 -17
  308. package/x/core/controllers/infra/sampler.js.map +0 -1
  309. package/x/core/controllers/standard/gamepad.d.ts +0 -10
  310. package/x/core/controllers/standard/gamepad.js +0 -70
  311. package/x/core/controllers/standard/gamepad.js.map +0 -1
  312. package/x/core/controllers/standard/index.js.map +0 -1
  313. package/x/core/controllers/standard/keyboard.d.ts +0 -9
  314. package/x/core/controllers/standard/keyboard.js +0 -42
  315. package/x/core/controllers/standard/keyboard.js.map +0 -1
  316. package/x/core/controllers/standard/pointer.d.ts +0 -11
  317. package/x/core/controllers/standard/pointer.js.map +0 -1
  318. package/x/core/controllers/standard/stick.d.ts +0 -15
  319. package/x/core/controllers/standard/stick.js +0 -27
  320. package/x/core/controllers/standard/stick.js.map +0 -1
  321. package/x/core/controllers/standard/virtual-gamepad.d.ts +0 -7
  322. package/x/core/controllers/standard/virtual-gamepad.js.map +0 -1
  323. package/x/core/controllers/types.js.map +0 -1
  324. package/x/core/controllers/utils/modprefix.d.ts +0 -1
  325. package/x/core/controllers/utils/modprefix.js +0 -16
  326. package/x/core/controllers/utils/modprefix.js.map +0 -1
  327. package/x/core/hub/auto-gamepads.d.ts +0 -2
  328. package/x/core/hub/auto-gamepads.js +0 -6
  329. package/x/core/hub/auto-gamepads.js.map +0 -1
  330. package/x/core/hub/bindings.d.ts +0 -2
  331. package/x/core/hub/bindings.js +0 -19
  332. package/x/core/hub/bindings.js.map +0 -1
  333. package/x/core/port/action.js.map +0 -1
  334. package/x/core/port/port.d.ts +0 -12
  335. package/x/core/port/port.js +0 -25
  336. package/x/core/port/port.js.map +0 -1
  337. package/x/core/port/resolution/defaults.d.ts +0 -4
  338. package/x/core/port/resolution/defaults.js +0 -23
  339. package/x/core/port/resolution/defaults.js.map +0 -1
  340. package/x/core/port/resolution/lens-algo.d.ts +0 -2
  341. package/x/core/port/resolution/lens-algo.js.map +0 -1
  342. package/x/core/port/resolution/resolver.d.ts +0 -9
  343. package/x/core/port/resolution/resolver.js +0 -64
  344. package/x/core/port/resolution/resolver.js.map +0 -1
  345. package/x/core/port/resolution/types.d.ts +0 -6
  346. package/x/core/port/resolution/types.js +0 -2
  347. package/x/core/port/resolution/types.js.map +0 -1
  348. package/x/core/port/types.d.ts +0 -7
  349. package/x/core/port/types.js +0 -2
  350. package/x/core/port/utils/aggregate_samples_into_map.d.ts +0 -3
  351. package/x/core/port/utils/aggregate_samples_into_map.js +0 -11
  352. package/x/core/port/utils/aggregate_samples_into_map.js.map +0 -1
  353. package/x/core/port/utils/is-pressed.js.map +0 -1
  354. package/x/core/port/utils/wipe_samples_map.d.ts +0 -2
  355. package/x/core/port/utils/wipe_samples_map.js +0 -5
  356. package/x/core/port/utils/wipe_samples_map.js.map +0 -1
  357. package/x/nubs/lookpad/utils/listeners.d.ts +0 -19
  358. package/x/nubs/lookpad/utils/listeners.js +0 -37
  359. package/x/nubs/lookpad/utils/listeners.js.map +0 -1
  360. package/x/nubs/lookpad/view.d.ts +0 -1
  361. package/x/nubs/lookpad/view.js +0 -24
  362. package/x/nubs/lookpad/view.js.map +0 -1
  363. package/x/nubs/stick/styles.d.ts +0 -1
  364. package/x/nubs/stick/styles.js +0 -22
  365. package/x/nubs/stick/styles.js.map +0 -1
  366. package/x/nubs/stick/utils/calculate_new_vector_from_pointer_position.d.ts +0 -3
  367. package/x/nubs/stick/utils/calculate_new_vector_from_pointer_position.js +0 -16
  368. package/x/nubs/stick/utils/calculate_new_vector_from_pointer_position.js.map +0 -1
  369. package/x/nubs/stick/utils/find_closest_point_on_circle.d.ts +0 -2
  370. package/x/nubs/stick/utils/find_closest_point_on_circle.js +0 -6
  371. package/x/nubs/stick/utils/find_closest_point_on_circle.js.map +0 -1
  372. package/x/nubs/stick/utils/make_pointer_listeners.d.ts +0 -16
  373. package/x/nubs/stick/utils/make_pointer_listeners.js +0 -34
  374. package/x/nubs/stick/utils/make_pointer_listeners.js.map +0 -1
  375. package/x/nubs/stick/utils/within_radius.d.ts +0 -2
  376. package/x/nubs/stick/utils/within_radius.js +0 -4
  377. package/x/nubs/stick/utils/within_radius.js.map +0 -1
  378. package/x/nubs/stick/view.d.ts +0 -2
  379. package/x/nubs/stick/view.js +0 -38
  380. package/x/nubs/stick/view.js.map +0 -1
  381. package/x/nubs/stick-graphic/styles.js +0 -38
  382. package/x/nubs/stick-graphic/styles.js.map +0 -1
  383. package/x/nubs/stick-graphic/types/basis.d.ts +0 -4
  384. package/x/nubs/stick-graphic/types/basis.js +0 -2
  385. package/x/nubs/stick-graphic/types/basis.js.map +0 -1
  386. package/x/nubs/stick-graphic/utils/calculate_basis.d.ts +0 -2
  387. package/x/nubs/stick-graphic/utils/calculate_basis.js +0 -10
  388. package/x/nubs/stick-graphic/utils/calculate_basis.js.map +0 -1
  389. package/x/nubs/stick-graphic/utils/stick_vector_to_pixels.d.ts +0 -2
  390. package/x/nubs/stick-graphic/utils/stick_vector_to_pixels.js +0 -7
  391. package/x/nubs/stick-graphic/utils/stick_vector_to_pixels.js.map +0 -1
  392. package/x/nubs/stick-graphic/utils/transform.d.ts +0 -2
  393. package/x/nubs/stick-graphic/utils/transform.js +0 -7
  394. package/x/nubs/stick-graphic/utils/transform.js.map +0 -1
  395. package/x/nubs/stick-graphic/view.d.ts +0 -3
  396. package/x/nubs/stick-graphic/view.js +0 -30
  397. package/x/nubs/stick-graphic/view.js.map +0 -1
  398. package/x/nubs/virtual-gamepad/styles.css.js.map +0 -1
  399. package/x/nubs/virtual-gamepad/utils/gamepad-inputs.js.map +0 -1
  400. package/x/nubs/virtual-gamepad/utils/prevent-default-touch-shenanigans.js.map +0 -1
  401. package/x/nubs/virtual-gamepad/utils/touch-tracking.js.map +0 -1
  402. package/x/nubs/virtual-gamepad/view.d.ts +0 -2
  403. package/x/nubs/virtual-gamepad/view.js.map +0 -1
  404. /package/s/core/{port/utils → bindings/parts}/is-pressed.ts +0 -0
  405. /package/s/nubs/{virtual-gamepad → vpad}/utils/gamepad-inputs.ts +0 -0
  406. /package/s/nubs/{virtual-gamepad → vpad}/utils/prevent-default-touch-shenanigans.ts +0 -0
  407. /package/s/nubs/{virtual-gamepad → vpad}/utils/touch-tracking.ts +0 -0
  408. /package/x/core/{port/utils → bindings/parts}/is-pressed.d.ts +0 -0
  409. /package/x/core/{port/utils → bindings/parts}/is-pressed.js +0 -0
  410. /package/x/core/{controllers → devices}/types.js +0 -0
  411. /package/x/{nubs/virtual-gamepad/styles.css.d.ts → deck/views/deck-overlay/style.css.d.ts} +0 -0
  412. /package/x/{nubs/stick-graphic/styles.d.ts → demo/ui/theater/styles.css.d.ts} +0 -0
  413. /package/x/nubs/{virtual-gamepad → vpad}/styles.css.js +0 -0
  414. /package/x/nubs/{virtual-gamepad → vpad}/utils/gamepad-inputs.d.ts +0 -0
  415. /package/x/nubs/{virtual-gamepad → vpad}/utils/gamepad-inputs.js +0 -0
  416. /package/x/nubs/{virtual-gamepad → vpad}/utils/prevent-default-touch-shenanigans.d.ts +0 -0
  417. /package/x/nubs/{virtual-gamepad → vpad}/utils/prevent-default-touch-shenanigans.js +0 -0
  418. /package/x/nubs/{virtual-gamepad → vpad}/utils/touch-tracking.d.ts +0 -0
  419. /package/x/nubs/{virtual-gamepad → vpad}/utils/touch-tracking.js +0 -0
@@ -0,0 +1,35 @@
1
+ import { Kv } from "@e280/kv";
2
+ import { Db } from "./parts/db.js";
3
+ import { Hub } from "../core/hub/hub.js";
4
+ import { Bindings } from "../core/bindings/types.js";
5
+ import { MetaBindings } from "../core/hub/types.js";
6
+ import { DeviceSkins } from "./parts/device-skins/device-skin.js";
7
+ import { OverlayVisibility } from "./parts/overlay-visibility.js";
8
+ import { PrimaryDevice } from "../core/devices/standard/primary.js";
9
+ export type DeckOptions<B extends Bindings, MB extends MetaBindings = any> = {
10
+ kv: Kv;
11
+ bindings: B;
12
+ portCount: number;
13
+ metaBindings?: MB;
14
+ };
15
+ export declare class Deck<B extends Bindings, MB extends MetaBindings = any> {
16
+ hub: Hub<B, MB>;
17
+ db: Db;
18
+ static load<B extends Bindings, MB extends MetaBindings = any>(options: DeckOptions<B, MB>): Promise<Deck<B, any>>;
19
+ dispose: {
20
+ (): void;
21
+ schedule(fn: () => void): any;
22
+ };
23
+ deviceSkins: DeviceSkins;
24
+ overlayVisibility: OverlayVisibility;
25
+ primaryDevice: PrimaryDevice;
26
+ views: {
27
+ DeckOverlay: import("@e280/sly").View<[]>;
28
+ };
29
+ components: {
30
+ DeckOverlay: import("@e280/sly").ComponentClass<import("@e280/stz").Constructor<import("@e280/sly").BaseElement>, []>;
31
+ };
32
+ registerComponents(): void;
33
+ constructor(hub: Hub<B, MB>, db: Db);
34
+ get catalog(): import("./index.js").Catalog;
35
+ }
package/x/deck/deck.js ADDED
@@ -0,0 +1,50 @@
1
+ import { disposer, ob, range } from "@e280/stz";
2
+ import { Db } from "./parts/db.js";
3
+ import { Hub } from "../core/hub/hub.js";
4
+ import { Port } from "../core/hub/port.js";
5
+ import { mergeBindings } from "./parts/merge-bindings.js";
6
+ import { metaMode } from "../core/hub/types.js";
7
+ import { DeckOverlay } from "./views/deck-overlay/component.js";
8
+ import { makeMetaBindings } from "../core/hub/meta-bindings.js";
9
+ import { DeviceSkins } from "./parts/device-skins/device-skin.js";
10
+ import { OverlayVisibility } from "./parts/overlay-visibility.js";
11
+ import { PrimaryDevice } from "../core/devices/standard/primary.js";
12
+ import { dom } from "@e280/sly";
13
+ export class Deck {
14
+ hub;
15
+ db;
16
+ static async load(options) {
17
+ const db = await Db.load(options.kv.store("catalog"));
18
+ const ports = range(options.portCount)
19
+ .map(index => db.$catalog().getProfileForPort(index))
20
+ .map(profile => mergeBindings(options.bindings, profile?.bindings))
21
+ .map(bindings => new Port(bindings));
22
+ const hub = new Hub(ports, db.$catalog().metaBindings
23
+ ?? options.metaBindings
24
+ ?? makeMetaBindings());
25
+ return new this(hub, db);
26
+ }
27
+ dispose = disposer();
28
+ deviceSkins = new DeviceSkins();
29
+ overlayVisibility;
30
+ primaryDevice = new PrimaryDevice();
31
+ views = ob({ DeckOverlay }).map(fn => fn(this));
32
+ components = ob(this.views).map(v => v.component().props(_c => []));
33
+ registerComponents() {
34
+ dom.register(this.components);
35
+ }
36
+ constructor(hub, db) {
37
+ this.hub = hub;
38
+ this.db = db;
39
+ this.overlayVisibility = new OverlayVisibility(hub, this.deviceSkins);
40
+ // meta reveal overlay
41
+ this.dispose.schedule(hub.metaPort.actions[metaMode].revealOverlay.on(action => {
42
+ if (action.pressed)
43
+ this.overlayVisibility.bump();
44
+ }));
45
+ }
46
+ get catalog() {
47
+ return this.db.$catalog();
48
+ }
49
+ }
50
+ //# sourceMappingURL=deck.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deck.js","sourceRoot":"","sources":["../../s/deck/deck.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAC,MAAM,WAAW,CAAA;AAE7C,OAAO,EAAC,EAAE,EAAC,MAAM,eAAe,CAAA;AAChC,OAAO,EAAC,GAAG,EAAC,MAAM,oBAAoB,CAAA;AACtC,OAAO,EAAC,IAAI,EAAC,MAAM,qBAAqB,CAAA;AAExC,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAA;AACvD,OAAO,EAAe,QAAQ,EAAC,MAAM,sBAAsB,CAAA;AAE3D,OAAO,EAAC,WAAW,EAAC,MAAM,mCAAmC,CAAA;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAA;AAC7D,OAAO,EAAC,WAAW,EAAC,MAAM,qCAAqC,CAAA;AAC/D,OAAO,EAAC,iBAAiB,EAAC,MAAM,+BAA+B,CAAA;AAC/D,OAAO,EAAC,aAAa,EAAC,MAAM,qCAAqC,CAAA;AACjE,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAA;AAS/B,MAAM,OAAO,IAAI;IAgCP;IACA;IAhCT,MAAM,CAAC,KAAK,CAAC,IAAI,CAAoD,OAA2B;QAC/F,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAA;QAErD,MAAM,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,SAAS,CAAC;aACpC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC;aACpD,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,aAAa,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;aAClE,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,IAAI,IAAI,CAAI,QAAa,CAAC,CAAC,CAAA;QAE7C,MAAM,GAAG,GAAG,IAAI,GAAG,CAClB,KAAK,EACL,EAAE,CAAC,QAAQ,EAAE,CAAC,YAAY;eACtB,OAAO,CAAC,YAAY;eACpB,gBAAgB,EAAE,CACtB,CAAA;QAED,OAAO,IAAI,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAA;IACzB,CAAC;IAED,OAAO,GAAG,QAAQ,EAAE,CAAA;IACpB,WAAW,GAAG,IAAI,WAAW,EAAE,CAAA;IAC/B,iBAAiB,CAAmB;IACpC,aAAa,GAAG,IAAI,aAAa,EAAE,CAAA;IAEnC,KAAK,GAAG,EAAE,CAAC,EAAC,WAAW,EAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAA;IAC7C,UAAU,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IAEnE,kBAAkB;QACjB,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;IAC9B,CAAC;IAED,YACS,GAAe,EACf,EAAM;QADN,QAAG,GAAH,GAAG,CAAY;QACf,OAAE,GAAF,EAAE,CAAI;QAGd,IAAI,CAAC,iBAAiB,GAAG,IAAI,iBAAiB,CAAC,GAAG,EAAE,IAAI,CAAC,WAAW,CAAC,CAAA;QAErE,sBAAsB;QACtB,IAAI,CAAC,OAAO,CAAC,QAAQ,CACpB,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,EAAE;YACxD,IAAI,MAAM,CAAC,OAAO;gBACjB,IAAI,CAAC,iBAAiB,CAAC,IAAI,EAAE,CAAA;QAC/B,CAAC,CAAC,CACF,CAAA;IACF,CAAC;IAED,IAAI,OAAO;QACV,OAAO,IAAI,CAAC,EAAE,CAAC,QAAQ,EAAE,CAAA;IAC1B,CAAC;CACD"}
@@ -0,0 +1,10 @@
1
+ export * from "./parts/device-skins/device-icons.js";
2
+ export * from "./parts/device-skins/device-skin.js";
3
+ export * from "./parts/catalog.js";
4
+ export * from "./parts/db.js";
5
+ export * from "./parts/local-storage-kv.js";
6
+ export * from "./parts/merge-bindings.js";
7
+ export * from "./parts/overlay-visibility.js";
8
+ export * from "./views/deck-overlay/component.js";
9
+ export * from "./views/deck-overlay/style.css.js";
10
+ export * from "./deck.js";
@@ -0,0 +1,11 @@
1
+ export * from "./parts/device-skins/device-icons.js";
2
+ export * from "./parts/device-skins/device-skin.js";
3
+ export * from "./parts/catalog.js";
4
+ export * from "./parts/db.js";
5
+ export * from "./parts/local-storage-kv.js";
6
+ export * from "./parts/merge-bindings.js";
7
+ export * from "./parts/overlay-visibility.js";
8
+ export * from "./views/deck-overlay/component.js";
9
+ export * from "./views/deck-overlay/style.css.js";
10
+ export * from "./deck.js";
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../s/deck/index.ts"],"names":[],"mappings":"AACA,cAAc,sCAAsC,CAAA;AACpD,cAAc,qCAAqC,CAAA;AACnD,cAAc,oBAAoB,CAAA;AAClC,cAAc,eAAe,CAAA;AAC7B,cAAc,6BAA6B,CAAA;AAC3C,cAAc,2BAA2B,CAAA;AACzC,cAAc,+BAA+B,CAAA;AAE7C,cAAc,mCAAmC,CAAA;AACjD,cAAc,mCAAmC,CAAA;AAEjD,cAAc,WAAW,CAAA"}
@@ -0,0 +1,23 @@
1
+ import { MapG } from "@e280/stz";
2
+ import { MetaBindings } from "../../core/hub/types.js";
3
+ import { Bindings } from "../../core/bindings/types.js";
4
+ export type Profile = {
5
+ id: string;
6
+ label: string;
7
+ bindings: Bindings;
8
+ };
9
+ export type CatalogData = {
10
+ profiles: Profile[];
11
+ portProfiles: (string | null)[];
12
+ metaBindings: MetaBindings | null;
13
+ };
14
+ export declare class Catalog {
15
+ profiles: MapG<string, Profile>;
16
+ portProfiles: (string | null)[];
17
+ metaBindings: MetaBindings | null;
18
+ constructor(data?: CatalogData);
19
+ toJSON(): CatalogData;
20
+ clone(): Catalog;
21
+ getProfile(profileId: string): Profile | undefined;
22
+ getProfileForPort(portIndex: number): Profile | undefined;
23
+ }
@@ -0,0 +1,35 @@
1
+ import { deep, MapG } from "@e280/stz";
2
+ export class Catalog {
3
+ profiles = new MapG();
4
+ portProfiles = [];
5
+ metaBindings = null;
6
+ constructor(data) {
7
+ if (data) {
8
+ for (const profile of data.profiles)
9
+ this.profiles.set(profile.id, profile);
10
+ this.portProfiles = data.portProfiles
11
+ .map(id => id && (this.profiles.has(id) ? id : null));
12
+ this.metaBindings = data.metaBindings;
13
+ }
14
+ }
15
+ toJSON() {
16
+ return deep.clone({
17
+ profiles: [...this.profiles.values()],
18
+ portProfiles: this.portProfiles,
19
+ metaBindings: this.metaBindings,
20
+ });
21
+ }
22
+ clone() {
23
+ return new Catalog(this.toJSON());
24
+ }
25
+ getProfile(profileId) {
26
+ return this.profiles.get(profileId);
27
+ }
28
+ getProfileForPort(portIndex) {
29
+ const profileId = this.portProfiles.at(portIndex);
30
+ return profileId
31
+ ? this.getProfile(profileId)
32
+ : undefined;
33
+ }
34
+ }
35
+ //# sourceMappingURL=catalog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.js","sourceRoot":"","sources":["../../../s/deck/parts/catalog.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,IAAI,EAAE,IAAI,EAAC,MAAM,WAAW,CAAA;AAgBpC,MAAM,OAAO,OAAO;IACnB,QAAQ,GAAG,IAAI,IAAI,EAAmB,CAAA;IACtC,YAAY,GAAsB,EAAE,CAAA;IACpC,YAAY,GAAwB,IAAI,CAAA;IAExC,YAAY,IAAkB;QAC7B,IAAI,IAAI,EAAE,CAAC;YACV,KAAK,MAAM,OAAO,IAAI,IAAI,CAAC,QAAQ;gBAClC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,EAAE,OAAO,CAAC,CAAA;YAEvC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY;iBACnC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA,EAAE,CAAC,CAAC,CAAA,IAAI,CAAC,CAAC,CAAA;YAEpD,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAA;QACtC,CAAC;IACF,CAAC;IAED,MAAM;QACL,OAAO,IAAI,CAAC,KAAK,CAAC;YACjB,QAAQ,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;YACrC,YAAY,EAAE,IAAI,CAAC,YAAY;YAC/B,YAAY,EAAE,IAAI,CAAC,YAAY;SAC/B,CAAC,CAAA;IACH,CAAC;IAED,KAAK;QACJ,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;IAClC,CAAC;IAED,UAAU,CAAC,SAAiB;QAC3B,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IACpC,CAAC;IAED,iBAAiB,CAAC,SAAiB;QAClC,MAAM,SAAS,GAAG,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC,SAAS,CAAC,CAAA;QACjD,OAAO,SAAS;YACf,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC;YAC5B,CAAC,CAAC,SAAS,CAAA;IACb,CAAC;CACD"}
@@ -0,0 +1,20 @@
1
+ import { SignalFn } from "@e280/strata";
2
+ import { Store } from "@e280/kv";
3
+ import { Bindings } from "../../core/bindings/types.js";
4
+ import { Catalog, CatalogData, Profile } from "./catalog.js";
5
+ export declare class Db {
6
+ #private;
7
+ private store;
8
+ $catalog: SignalFn<Catalog>;
9
+ static load(store: Store<CatalogData>): Promise<Db>;
10
+ dispose: {
11
+ (): void;
12
+ schedule(fn: () => void): any;
13
+ };
14
+ constructor(store: Store<CatalogData>, $catalog: SignalFn<Catalog>);
15
+ reload(): Promise<void>;
16
+ save(catalog: Catalog): Promise<void>;
17
+ createProfile(label: string, bindings: Bindings): Promise<Profile>;
18
+ deleteProfile(id: string): Promise<void>;
19
+ assignPortToProfile(index: number, profileId: string | null): Promise<void>;
20
+ }
@@ -0,0 +1,52 @@
1
+ import { disposer, Hex } from "@e280/stz";
2
+ import { signal } from "@e280/strata";
3
+ import { StorageDriver } from "@e280/kv";
4
+ import { Catalog } from "./catalog.js";
5
+ export class Db {
6
+ store;
7
+ $catalog;
8
+ static async load(store) {
9
+ const $catalog = signal(new Catalog(await store.get()));
10
+ return new this(store, $catalog);
11
+ }
12
+ dispose = disposer();
13
+ constructor(store, $catalog) {
14
+ this.store = store;
15
+ this.$catalog = $catalog;
16
+ this.dispose.schedule(StorageDriver.onStorageEvent(async () => this.reload()));
17
+ }
18
+ async reload() {
19
+ const fresh = new Catalog(await this.store.get());
20
+ await this.$catalog.set(fresh);
21
+ }
22
+ async save(catalog) {
23
+ await this.store.set(catalog.toJSON());
24
+ await this.$catalog(catalog);
25
+ }
26
+ async #mutateAndSave(fn) {
27
+ const catalog = this.$catalog().clone();
28
+ const result = fn(catalog);
29
+ await this.store.set(catalog.toJSON());
30
+ await this.$catalog(catalog);
31
+ return result;
32
+ }
33
+ async createProfile(label, bindings) {
34
+ return this.#mutateAndSave(catalog => {
35
+ const id = Hex.random();
36
+ const profile = { id, label, bindings };
37
+ catalog.profiles.set(id, profile);
38
+ return profile;
39
+ });
40
+ }
41
+ async deleteProfile(id) {
42
+ return this.#mutateAndSave(catalog => {
43
+ catalog.profiles.delete(id);
44
+ });
45
+ }
46
+ async assignPortToProfile(index, profileId) {
47
+ return this.#mutateAndSave(catalog => {
48
+ catalog.portProfiles[index] = profileId;
49
+ });
50
+ }
51
+ }
52
+ //# sourceMappingURL=db.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"db.js","sourceRoot":"","sources":["../../../s/deck/parts/db.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,QAAQ,EAAE,GAAG,EAAC,MAAM,WAAW,CAAA;AACvC,OAAO,EAAC,MAAM,EAAW,MAAM,cAAc,CAAA;AAC7C,OAAO,EAAC,aAAa,EAAQ,MAAM,UAAU,CAAA;AAG7C,OAAO,EAAC,OAAO,EAAuB,MAAM,cAAc,CAAA;AAE1D,MAAM,OAAO,EAAE;IASJ;IACD;IATT,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,KAAyB;QAC1C,MAAM,QAAQ,GAAG,MAAM,CAAC,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,GAAG,EAAE,CAAC,CAAC,CAAA;QACvD,OAAO,IAAI,IAAI,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;IACjC,CAAC;IAED,OAAO,GAAG,QAAQ,EAAE,CAAA;IAEpB,YACU,KAAyB,EAC1B,QAA2B;QAD1B,UAAK,GAAL,KAAK,CAAoB;QAC1B,aAAQ,GAAR,QAAQ,CAAmB;QAGnC,IAAI,CAAC,OAAO,CAAC,QAAQ,CACpB,aAAa,CAAC,cAAc,CAAC,KAAK,IAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CACtD,CAAA;IACF,CAAC;IAED,KAAK,CAAC,MAAM;QACX,MAAM,KAAK,GAAG,IAAI,OAAO,CAAC,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC,CAAA;QACjD,MAAM,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;IAC/B,CAAC;IAED,KAAK,CAAC,IAAI,CAAC,OAAgB;QAC1B,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;QACtC,MAAM,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAA;IAC7B,CAAC;IAED,KAAK,CAAC,cAAc,CAAI,EAA2B;QAClD,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,CAAA;QACvC,MAAM,MAAM,GAAG,EAAE,CAAC,OAAO,CAAC,CAAA;QAC1B,MAAM,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;QACtC,MAAM,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAA;QAC5B,OAAO,MAAM,CAAA;IACd,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,KAAa,EAAE,QAAkB;QACpD,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YACpC,MAAM,EAAE,GAAG,GAAG,CAAC,MAAM,EAAE,CAAA;YACvB,MAAM,OAAO,GAAY,EAAC,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAC,CAAA;YAC9C,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE,EAAE,OAAO,CAAC,CAAA;YACjC,OAAO,OAAO,CAAA;QACf,CAAC,CAAC,CAAA;IACH,CAAC;IAED,KAAK,CAAC,aAAa,CAAC,EAAU;QAC7B,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YACpC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CAAC,CAAA;QAC5B,CAAC,CAAC,CAAA;IACH,CAAC;IAED,KAAK,CAAC,mBAAmB,CAAC,KAAa,EAAE,SAAwB;QAChE,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,EAAE;YACpC,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC,GAAG,SAAS,CAAA;QACxC,CAAC,CAAC,CAAA;IACH,CAAC;CACD"}
@@ -0,0 +1,12 @@
1
+ import { Content } from "@e280/sly";
2
+ import { Constructor } from "@e280/stz";
3
+ import { Device } from "../../../core/devices/device.js";
4
+ export type DeviceIconEntry = [DeviceClass: Constructor<Device>, icon: Content];
5
+ export declare class DeviceIcons {
6
+ #private;
7
+ fallback: Content;
8
+ constructor(entries?: DeviceIconEntry[]);
9
+ get(DeviceClass: Constructor<Device>): Content;
10
+ add(...entries: DeviceIconEntry[]): this;
11
+ clear(): this;
12
+ }
@@ -0,0 +1,27 @@
1
+ import { VpadDevice } from "../../../core/devices/standard/vpad.js";
2
+ import { PrimaryDevice } from "../../../core/devices/standard/primary.js";
3
+ import { GamepadDevice } from "../../../core/devices/standard/gamepad.js";
4
+ export class DeviceIcons {
5
+ fallback = "❔";
6
+ #map = new Map();
7
+ constructor(entries = [
8
+ [PrimaryDevice, "💻"],
9
+ [GamepadDevice, "🎮"],
10
+ [VpadDevice, "📱"],
11
+ ]) {
12
+ this.add(...entries);
13
+ }
14
+ get(DeviceClass) {
15
+ return this.#map.get(DeviceClass) ?? this.fallback;
16
+ }
17
+ add(...entries) {
18
+ for (const [dc, icon] of entries)
19
+ this.#map.set(dc, icon);
20
+ return this;
21
+ }
22
+ clear() {
23
+ this.#map.clear();
24
+ return this;
25
+ }
26
+ }
27
+ //# sourceMappingURL=device-icons.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"device-icons.js","sourceRoot":"","sources":["../../../../s/deck/parts/device-skins/device-icons.ts"],"names":[],"mappings":"AAIA,OAAO,EAAC,UAAU,EAAC,MAAM,wCAAwC,CAAA;AACjE,OAAO,EAAC,aAAa,EAAC,MAAM,2CAA2C,CAAA;AACvE,OAAO,EAAC,aAAa,EAAC,MAAM,2CAA2C,CAAA;AAIvE,MAAM,OAAO,WAAW;IACvB,QAAQ,GAAY,GAAG,CAAA;IACvB,IAAI,GAAG,IAAI,GAAG,EAAgC,CAAA;IAE9C,YAAY,UAA6B;QACvC,CAAC,aAAa,EAAE,IAAI,CAAC;QACrB,CAAC,aAAa,EAAE,IAAI,CAAC;QACrB,CAAC,UAAU,EAAE,IAAI,CAAC;KAClB;QACD,IAAI,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAA;IACrB,CAAC;IAED,GAAG,CAAC,WAAgC;QACnC,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAA;IACnD,CAAC;IAED,GAAG,CAAC,GAAG,OAA0B;QAChC,KAAK,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,IAAI,OAAO;YAC/B,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,EAAE,IAAI,CAAC,CAAA;QACxB,OAAO,IAAI,CAAA;IACZ,CAAC;IAED,KAAK;QACJ,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAA;QACjB,OAAO,IAAI,CAAA;IACZ,CAAC;CACD"}
@@ -0,0 +1,14 @@
1
+ import { Content } from "@e280/sly";
2
+ import { DeviceIcons } from "./device-icons.js";
3
+ import { Device } from "../../../core/devices/device.js";
4
+ export declare class DeviceSkin {
5
+ icon: Content;
6
+ label: string;
7
+ color: string;
8
+ constructor(icon: Content, label: string, color: string);
9
+ }
10
+ export declare class DeviceSkins {
11
+ #private;
12
+ icons: DeviceIcons;
13
+ get(device: Device): DeviceSkin;
14
+ }
@@ -0,0 +1,22 @@
1
+ import { Hex, WeakMapG } from "@e280/stz";
2
+ import { DeviceIcons } from "./device-icons.js";
3
+ import { ColorDispenser } from "../../../utils/dispensers.js";
4
+ export class DeviceSkin {
5
+ icon;
6
+ label;
7
+ color;
8
+ constructor(icon, label, color) {
9
+ this.icon = icon;
10
+ this.label = label;
11
+ this.color = color;
12
+ }
13
+ }
14
+ export class DeviceSkins {
15
+ icons = new DeviceIcons();
16
+ #map = new WeakMapG();
17
+ #colors = new ColorDispenser();
18
+ get(device) {
19
+ return this.#map.guarantee(device, () => new DeviceSkin(this.icons.get(device.constructor), Hex.random(4), this.#colors.takeFirst()));
20
+ }
21
+ }
22
+ //# sourceMappingURL=device-skin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"device-skin.js","sourceRoot":"","sources":["../../../../s/deck/parts/device-skins/device-skin.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,GAAG,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AACvC,OAAO,EAAC,WAAW,EAAC,MAAM,mBAAmB,CAAA;AAE7C,OAAO,EAAC,cAAc,EAAC,MAAM,8BAA8B,CAAA;AAE3D,MAAM,OAAO,UAAU;IAEd;IACA;IACA;IAHR,YACQ,IAAa,EACb,KAAa,EACb,KAAa;QAFb,SAAI,GAAJ,IAAI,CAAS;QACb,UAAK,GAAL,KAAK,CAAQ;QACb,UAAK,GAAL,KAAK,CAAQ;IAClB,CAAC;CACJ;AAED,MAAM,OAAO,WAAW;IACvB,KAAK,GAAG,IAAI,WAAW,EAAE,CAAA;IACzB,IAAI,GAAG,IAAI,QAAQ,EAAsB,CAAA;IACzC,OAAO,GAAG,IAAI,cAAc,EAAE,CAAA;IAE9B,GAAG,CAAC,MAAc;QACjB,OAAO,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,IAAI,UAAU,CACtD,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,WAAkB,CAAC,EACzC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,EACb,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,CACxB,CAAC,CAAA;IACH,CAAC;CACD"}
@@ -0,0 +1,2 @@
1
+ import { Kv } from "@e280/kv";
2
+ export declare function localStorageKv(): Kv<any>;
@@ -0,0 +1,6 @@
1
+ import { Kv, StorageDriver } from "@e280/kv";
2
+ export function localStorageKv() {
3
+ const driver = new StorageDriver(window.localStorage);
4
+ return new Kv(driver).scope("tact");
5
+ }
6
+ //# sourceMappingURL=local-storage-kv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"local-storage-kv.js","sourceRoot":"","sources":["../../../s/deck/parts/local-storage-kv.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,EAAE,EAAE,aAAa,EAAC,MAAM,UAAU,CAAA;AAE1C,MAAM,UAAU,cAAc;IAC7B,MAAM,MAAM,GAAG,IAAI,aAAa,CAAC,MAAM,CAAC,YAAY,CAAC,CAAA;IACrD,OAAO,IAAI,EAAE,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;AACpC,CAAC"}
@@ -0,0 +1,2 @@
1
+ import { Bindings } from "../../core/bindings/types.js";
2
+ export declare function mergeBindings<B extends Bindings>(normative: B, sus?: B): B;
@@ -0,0 +1,15 @@
1
+ import { deep } from "@e280/stz";
2
+ export function mergeBindings(normative, sus) {
3
+ const bindings = deep.clone(normative);
4
+ if (!sus)
5
+ return bindings;
6
+ for (const [mode, bracket] of Object.entries(bindings)) {
7
+ for (const actionKey of Object.keys(bracket)) {
8
+ const susAction = sus[mode]?.[actionKey];
9
+ if (susAction)
10
+ bracket[actionKey] = susAction;
11
+ }
12
+ }
13
+ return bindings;
14
+ }
15
+ //# sourceMappingURL=merge-bindings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"merge-bindings.js","sourceRoot":"","sources":["../../../s/deck/parts/merge-bindings.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,IAAI,EAAC,MAAM,WAAW,CAAA;AAG9B,MAAM,UAAU,aAAa,CAAqB,SAAY,EAAE,GAAO;IACtE,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAA;IAEtC,IAAI,CAAC,GAAG;QACP,OAAO,QAAQ,CAAA;IAEhB,KAAK,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;QACxD,KAAK,MAAM,SAAS,IAAI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAC;YAC9C,MAAM,SAAS,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,SAAS,CAAC,CAAA;YACxC,IAAI,SAAS;gBACZ,OAAO,CAAC,SAAS,CAAC,GAAG,SAAS,CAAA;QAChC,CAAC;IACF,CAAC;IAED,OAAO,QAAQ,CAAA;AAChB,CAAC"}
@@ -0,0 +1,21 @@
1
+ import { Hub } from "../../core/hub/hub.js";
2
+ import { DeviceSkins } from "./device-skins/device-skin.js";
3
+ export declare class OverlayVisibility {
4
+ #private;
5
+ hub: Hub<any>;
6
+ deviceSkins: DeviceSkins;
7
+ auto: boolean;
8
+ dispose: {
9
+ (): void;
10
+ schedule(fn: () => void): any;
11
+ };
12
+ /** manual override for whether the ports view should be visible */
13
+ readonly $manual: import("@e280/strata").SignalFn<boolean>;
14
+ /** derived signal about whether the ports view should be visible */
15
+ readonly $visible: import("@e280/strata").DerivedFn<boolean>;
16
+ /** whether or not to show labels in the overlay ui */
17
+ readonly $showLabels: import("@e280/strata").SignalFn<boolean>;
18
+ constructor(hub: Hub<any>, deviceSkins?: DeviceSkins);
19
+ bump(): Promise<void>;
20
+ toggle(active?: boolean): Promise<boolean>;
21
+ }
@@ -0,0 +1,35 @@
1
+ import { signal } from "@e280/strata";
2
+ import { debounce, disposer } from "@e280/stz";
3
+ import { DeviceSkins } from "./device-skins/device-skin.js";
4
+ export class OverlayVisibility {
5
+ hub;
6
+ deviceSkins;
7
+ auto = true;
8
+ dispose = disposer();
9
+ #created = Date.now();
10
+ #$auto = signal(false);
11
+ /** manual override for whether the ports view should be visible */
12
+ $manual = signal(false);
13
+ /** derived signal about whether the ports view should be visible */
14
+ $visible = signal.derived(() => (this.$manual() || (this.auto && this.#$auto())));
15
+ /** whether or not to show labels in the overlay ui */
16
+ $showLabels = signal(false);
17
+ constructor(hub, deviceSkins = new DeviceSkins()) {
18
+ this.hub = hub;
19
+ this.deviceSkins = deviceSkins;
20
+ this.dispose.schedule(hub.on(async () => {
21
+ const since = Date.now() - this.#created;
22
+ if (since > 100)
23
+ await this.bump();
24
+ }));
25
+ }
26
+ #autoOff = debounce(1500, () => this.#$auto(false));
27
+ async bump() {
28
+ await this.#$auto(true);
29
+ await this.#autoOff();
30
+ }
31
+ async toggle(active = !this.$manual()) {
32
+ return this.$manual.set(active);
33
+ }
34
+ }
35
+ //# sourceMappingURL=overlay-visibility.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"overlay-visibility.js","sourceRoot":"","sources":["../../../s/deck/parts/overlay-visibility.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,MAAM,EAAC,MAAM,cAAc,CAAA;AACnC,OAAO,EAAC,QAAQ,EAAE,QAAQ,EAAC,MAAM,WAAW,CAAA;AAE5C,OAAO,EAAC,WAAW,EAAC,MAAM,+BAA+B,CAAA;AAEzD,MAAM,OAAO,iBAAiB;IAmBpB;IACA;IAnBT,IAAI,GAAG,IAAI,CAAA;IACX,OAAO,GAAG,QAAQ,EAAE,CAAA;IAEpB,QAAQ,GAAG,IAAI,CAAC,GAAG,EAAE,CAAA;IACrB,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;IAEtB,mEAAmE;IAC1D,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;IAEhC,oEAAoE;IAC3D,QAAQ,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC,CACxC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,EAAE,CAAC,CAC9C,CAAC,CAAA;IAEF,sDAAsD;IAC7C,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;IAEpC,YACS,GAAa,EACb,cAAc,IAAI,WAAW,EAAE;QAD/B,QAAG,GAAH,GAAG,CAAU;QACb,gBAAW,GAAX,WAAW,CAAoB;QAGvC,IAAI,CAAC,OAAO,CAAC,QAAQ,CACpB,GAAG,CAAC,EAAE,CAAC,KAAK,IAAG,EAAE;YAChB,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,QAAQ,CAAA;YACxC,IAAI,KAAK,GAAG,GAAG;gBAAE,MAAM,IAAI,CAAC,IAAI,EAAE,CAAA;QACnC,CAAC,CAAC,CACF,CAAA;IACF,CAAC;IAED,QAAQ,GAAG,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAA;IAEnD,KAAK,CAAC,IAAI;QACT,MAAM,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QACvB,MAAM,IAAI,CAAC,QAAQ,EAAE,CAAA;IACtB,CAAC;IAED,KAAK,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;IAChC,CAAC;CACD"}
@@ -0,0 +1,2 @@
1
+ import { Deck } from "../../deck.js";
2
+ export declare const DeckOverlay: (deck: Deck<any>) => import("@e280/sly").View<[]>;
@@ -0,0 +1,40 @@
1
+ import { html } from "lit";
2
+ import { cssReset } from "@e280/sly";
3
+ import styleCss from "./style.css.js";
4
+ import { deckView } from "../framework.js";
5
+ export const DeckOverlay = deckView(deck => use => {
6
+ use.css(cssReset, styleCss);
7
+ use.attrs.string.deck = "overlay";
8
+ const { hub, deviceSkins, overlayVisibility: { $visible, $showLabels } } = deck;
9
+ function renderDevice(device) {
10
+ const skin = deviceSkins.get(device);
11
+ const style = `--color: ${skin.color};`;
12
+ const next = () => hub.shimmy(device, 1);
13
+ const previous = () => hub.shimmy(device, -1);
14
+ return html `
15
+ <div class=device style="${style}">
16
+ <div class="primary row">
17
+ <button @click="${previous}">&lt;</button>
18
+ <div class=icon>${skin.icon}</div>
19
+ <button @click="${next}">&gt;</button>
20
+ </div>
21
+ ${$showLabels() ? html `
22
+ <div class="secondary row">
23
+ <div class=label>${skin.label}</div>
24
+ </div>
25
+ ` : null}
26
+ </div>
27
+ `;
28
+ }
29
+ return html `
30
+ <div class=portlist ?data-active="${$visible()}">
31
+ ${hub.ports.map((port, index) => html `
32
+ <div class=port>
33
+ <header>P${index + 1}</header>
34
+ ${port.devices.array().map(renderDevice)}
35
+ </div>
36
+ `)}
37
+ </div>
38
+ `;
39
+ });
40
+ //# sourceMappingURL=component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../s/deck/views/deck-overlay/component.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAA;AACxB,OAAO,EAAC,QAAQ,EAAC,MAAM,WAAW,CAAA;AAElC,OAAO,QAAQ,MAAM,gBAAgB,CAAA;AACrC,OAAO,EAAC,QAAQ,EAAC,MAAM,iBAAiB,CAAA;AAGxC,MAAM,CAAC,MAAM,WAAW,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE;IACjD,GAAG,CAAC,GAAG,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;IAC3B,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,GAAG,SAAS,CAAA;IAEjC,MAAM,EAAC,GAAG,EAAE,WAAW,EAAE,iBAAiB,EAAE,EAAC,QAAQ,EAAE,WAAW,EAAC,EAAC,GAAG,IAAI,CAAA;IAE3E,SAAS,YAAY,CAAC,MAAc;QACnC,MAAM,IAAI,GAAG,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,CAAA;QACpC,MAAM,KAAK,GAAG,YAAY,IAAI,CAAC,KAAK,GAAG,CAAA;QACvC,MAAM,IAAI,GAAG,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAAA;QACxC,MAAM,QAAQ,GAAG,GAAG,EAAE,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,CAAA;QAC7C,OAAO,IAAI,CAAA;8BACiB,KAAK;;uBAEZ,QAAQ;uBACR,IAAI,CAAC,IAAI;uBACT,IAAI;;MAErB,WAAW,EAAE,CAAC,CAAC,CAAC,IAAI,CAAA;;yBAED,IAAI,CAAC,KAAK;;KAE9B,CAAC,CAAC,CAAC,IAAI;;GAET,CAAA;IACF,CAAC;IAED,OAAO,IAAI,CAAA;sCAC0B,QAAQ,EAAE;KAC3C,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE,CAAC,IAAI,CAAA;;gBAExB,KAAK,GAAG,CAAC;OAClB,IAAI,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,GAAG,CAAC,YAAY,CAAC;;IAEzC,CAAC;;EAEH,CAAA;AAEF,CAAC,CAAC,CAAA"}
@@ -0,0 +1,109 @@
1
+ import { css } from "lit";
2
+ export default css `
3
+
4
+ :host {
5
+ --gap: 0.3em;
6
+ pointer-events: none;
7
+ cursor: default;
8
+ user-select: none;
9
+ }
10
+
11
+ .portlist {
12
+ pointer-events: none;
13
+
14
+ display: flex;
15
+ align-items: start;
16
+
17
+ width: max-content;
18
+ gap: var(--gap);
19
+ padding: 0.5em;
20
+
21
+ color: #fff8;
22
+ background: #222a;
23
+ border-radius: 1em;
24
+
25
+ opacity: 0;
26
+ transition: opacity 300ms linear;
27
+
28
+ &[data-active] {
29
+ opacity: 1;
30
+ pointer-events: all;
31
+ }
32
+
33
+ .port {
34
+ flex: 1 0 0;
35
+ display: flex;
36
+ flex-direction: column;
37
+
38
+ min-width: 6em;
39
+ gap: var(--gap);
40
+
41
+ > * {
42
+ color: white;
43
+ font-weight: bold;
44
+ text-shadow: 0.05em 0.05em 0.1em #0008;
45
+ text-transform: uppercase;
46
+ }
47
+
48
+ header {
49
+ text-align: center;
50
+ color: #fff8;
51
+ }
52
+
53
+ .device {
54
+ display: flex;
55
+ flex-direction: column;
56
+ gap: var(--gap);
57
+
58
+ box-shadow: 0.1em 0.2em 0.7em #0004;
59
+ background: color-mix(in srgb, #fffa, var(--color) 50%);
60
+ border-top: 2px solid #fff8;
61
+ border-bottom: 2px solid #0004;
62
+ border-radius: 0.5em;
63
+
64
+ .row {
65
+ display: flex;
66
+ align-items: center;
67
+
68
+ &.primary {
69
+ justify-content: space-between;
70
+ }
71
+
72
+ &.secondary {
73
+ justify-content: center;
74
+ }
75
+ }
76
+
77
+ .icon {
78
+ font-size: 1.5em;
79
+ }
80
+
81
+ .label {
82
+ font-family: monospace;
83
+ font-size: 0.8em;
84
+ opacity: 0.5;
85
+ line-height: 0.9em;
86
+ }
87
+
88
+ button {
89
+ opacity: 0.2;
90
+ cursor: pointer;
91
+ padding: 0 0.2em;
92
+ font-family: monospace;
93
+ font-size: 1.5em;
94
+ font-weight: bold;
95
+
96
+ background: transparent;
97
+ border: 1px solid transparent;
98
+ text-shadow: inherit;
99
+
100
+ &:is(:hover, :focus-visible) {
101
+ opacity: 1;
102
+ }
103
+ }
104
+ }
105
+ }
106
+ }
107
+
108
+ `;
109
+ //# sourceMappingURL=style.css.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"style.css.js","sourceRoot":"","sources":["../../../../s/deck/views/deck-overlay/style.css.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,GAAG,EAAC,MAAM,KAAK,CAAA;AACvB,eAAe,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0GjB,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { Content, Use } from "@e280/sly";
2
+ import { Deck } from "../deck.js";
3
+ export declare function deckView(fn: (deck: Deck<any>) => (use: Use) => Content): (deck: Deck<any>) => import("@e280/sly").View<[]>;
@@ -0,0 +1,8 @@
1
+ import { view } from "@e280/sly";
2
+ export function deckView(fn) {
3
+ return (deck) => {
4
+ const fn2 = fn(deck);
5
+ return view(use => () => fn2(use));
6
+ };
7
+ }
8
+ //# sourceMappingURL=framework.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"framework.js","sourceRoot":"","sources":["../../../s/deck/views/framework.ts"],"names":[],"mappings":"AACA,OAAO,EAAe,IAAI,EAAC,MAAM,WAAW,CAAA;AAG5C,MAAM,UAAU,QAAQ,CACtB,EAA8C;IAG/C,OAAO,CAAC,IAAe,EAAE,EAAE;QAC1B,MAAM,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,CAAA;QACpB,OAAO,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAA;IACnC,CAAC,CAAA;AACF,CAAC"}