@almadar/std 16.178.0 → 16.179.0
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.
- package/behaviors/lolo/ui/core/molecules/ui-fx-overlay.lolo +63 -0
- package/behaviors/lolo/ui/core/molecules/ui-page-header.lolo +1 -1
- package/behaviors/lolo/ui/core/organisms/ui-form-section.lolo +2 -2
- package/behaviors/lolo/ui/core/organisms/ui-form.lolo +2 -2
- package/behaviors/lolo/ui/core/templates/ui-dashboard-layout.lolo +2 -2
- package/behaviors/lolo/ui/game/atoms/std-fx-particles.lolo +23 -4
- package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +251 -0
- package/behaviors/lolo/ui/game/atoms/ui-draw-fx-layer.lolo +109 -0
- package/behaviors/lolo/ui/game/organisms/std-arcade-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-crew-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-dungeon-board-2d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-market-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-objective-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-platformer-board-2d.lolo +391 -0
- package/behaviors/lolo/ui/game/organisms/std-survival-board-3d.lolo +32 -2
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-2d.lolo +34 -6
- package/behaviors/lolo/ui/game/organisms/std-tactics-board-3d.lolo +34 -4
- package/behaviors/lolo/ui/learning/atoms/std-learn-arrangement.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-classify.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-derivation.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-doser.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-estimate.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-fx-cues.lolo +147 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-goal-seek.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-hotspot.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-predict.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-scatter-fit.lolo +9 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-speed-drill.lolo +8 -0
- package/behaviors/lolo/ui/learning/atoms/std-learn-tour-3d.lolo +9 -0
- package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +281 -0
- package/behaviors/registry/ui/core/molecules/ui-page-header.orb +1 -1
- package/behaviors/registry/ui/core/organisms/ui-form-section.orb +6 -0
- package/behaviors/registry/ui/core/organisms/ui-form.orb +6 -0
- package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +2 -2
- package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +265 -4
- package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +2136 -0
- package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +523 -0
- package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +159 -70
- package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +148 -58
- package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +169 -58
- package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +160 -70
- package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +151 -60
- package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +2981 -0
- package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +150 -60
- package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +163 -316
- package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +156 -184
- package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +62 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +73 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +66 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +1546 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +58 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +71 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +72 -0
- package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +176 -0
- package/dist/behaviors/exports-reader.js +8369 -5005
- package/dist/behaviors/functions/index.d.ts +604 -14
- package/dist/behaviors/functions/index.js +8354 -5006
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +8370 -5006
- package/dist/behaviors/query.js +8369 -5005
- package/dist/behaviors-embeddings.hash.json +3 -3
- package/dist/behaviors-embeddings.json +351 -331
- package/dist/behaviors-registry.json +1879 -344
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8370 -5006
- package/dist/knob-embeddings.hash.json +3 -3
- package/dist/knob-embeddings.json +1 -1
- package/dist/registry/factory-signatures.json +1 -1
- package/package.json +2 -2
|
@@ -91,6 +91,15 @@
|
|
|
91
91
|
"parent": "trt_01M07580VZCAQ803GS0E38Q1J0",
|
|
92
92
|
"renames": []
|
|
93
93
|
},
|
|
94
|
+
"evt_01M0GTSZBCSEV6BAPBGF6979KG": {
|
|
95
|
+
"bakedName": "LEARN_ROUND_COMPLETE",
|
|
96
|
+
"curName": "LEARN_ROUND_COMPLETE",
|
|
97
|
+
"id": "evt_01M0GTSZBCSEV6BAPBGF6979KG",
|
|
98
|
+
"kind": "event",
|
|
99
|
+
"owner": "workspace",
|
|
100
|
+
"parent": "trt_01M07580VZCAQ803GS0E38Q1J0",
|
|
101
|
+
"renames": []
|
|
102
|
+
},
|
|
94
103
|
"orb_01M07580VZ7B4B990TA9QZ36GF": {
|
|
95
104
|
"bakedName": "GoalSeekOrbital",
|
|
96
105
|
"curName": "GoalSeekOrbital",
|
|
@@ -523,6 +532,24 @@
|
|
|
523
532
|
],
|
|
524
533
|
"scope": "external",
|
|
525
534
|
"tier": "domain"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"description": "Fired once when a Check lands within tolerance (the goal is matched) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
538
|
+
"event": "LEARN_ROUND_COMPLETE",
|
|
539
|
+
"eventId": "evt_01M0GTSZBCSEV6BAPBGF6979KG",
|
|
540
|
+
"payloadSchema": [
|
|
541
|
+
{
|
|
542
|
+
"name": "score",
|
|
543
|
+
"type": "number"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "total",
|
|
547
|
+
"type": "number"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"scope": "external",
|
|
551
|
+
"synonyms": "round complete, finished, done, completion, solved",
|
|
552
|
+
"tier": "domain"
|
|
526
553
|
}
|
|
527
554
|
],
|
|
528
555
|
"entityContract": {
|
|
@@ -670,6 +697,24 @@
|
|
|
670
697
|
}
|
|
671
698
|
],
|
|
672
699
|
"tier": "domain"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"description": "Fired once when a Check lands within tolerance (the goal is matched) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
703
|
+
"id": "evt_01M0GTSZBCSEV6BAPBGF6979KG",
|
|
704
|
+
"key": "LEARN_ROUND_COMPLETE",
|
|
705
|
+
"name": "Learn Round Complete",
|
|
706
|
+
"payloadSchema": [
|
|
707
|
+
{
|
|
708
|
+
"name": "score",
|
|
709
|
+
"type": "number"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"name": "total",
|
|
713
|
+
"type": "number"
|
|
714
|
+
}
|
|
715
|
+
],
|
|
716
|
+
"synonyms": "round complete, finished, done, completion, solved",
|
|
717
|
+
"tier": "domain"
|
|
673
718
|
}
|
|
674
719
|
],
|
|
675
720
|
"states": [
|
|
@@ -3373,6 +3418,19 @@
|
|
|
3373
3418
|
"distance": "@entity.distance",
|
|
3374
3419
|
"matched": "@entity.solved"
|
|
3375
3420
|
}
|
|
3421
|
+
],
|
|
3422
|
+
[
|
|
3423
|
+
"if",
|
|
3424
|
+
"@entity.solved",
|
|
3425
|
+
[
|
|
3426
|
+
"emit",
|
|
3427
|
+
"LEARN_ROUND_COMPLETE",
|
|
3428
|
+
{
|
|
3429
|
+
"score": 1.0,
|
|
3430
|
+
"total": 1.0
|
|
3431
|
+
}
|
|
3432
|
+
],
|
|
3433
|
+
null
|
|
3376
3434
|
]
|
|
3377
3435
|
],
|
|
3378
3436
|
"event": "CHECK",
|
|
@@ -82,6 +82,15 @@
|
|
|
82
82
|
"parent": "trt_01M075812DYQGS8RJE0J3FWESF",
|
|
83
83
|
"renames": []
|
|
84
84
|
},
|
|
85
|
+
"evt_01M0GTSZD52FWAWR04FCNHKFEW": {
|
|
86
|
+
"bakedName": "LEARN_ROUND_COMPLETE",
|
|
87
|
+
"curName": "LEARN_ROUND_COMPLETE",
|
|
88
|
+
"id": "evt_01M0GTSZD52FWAWR04FCNHKFEW",
|
|
89
|
+
"kind": "event",
|
|
90
|
+
"owner": "workspace",
|
|
91
|
+
"parent": "trt_01M075812DYQGS8RJE0J3FWESF",
|
|
92
|
+
"renames": []
|
|
93
|
+
},
|
|
85
94
|
"orb_01M075812DM89TK888P4V0J9PT": {
|
|
86
95
|
"bakedName": "HotspotOrbital",
|
|
87
96
|
"curName": "HotspotOrbital",
|
|
@@ -512,6 +521,24 @@
|
|
|
512
521
|
],
|
|
513
522
|
"scope": "external",
|
|
514
523
|
"tier": "domain"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"description": "Fired once when the round finishes (advancing past the final prompt) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
527
|
+
"event": "LEARN_ROUND_COMPLETE",
|
|
528
|
+
"eventId": "evt_01M0GTSZD52FWAWR04FCNHKFEW",
|
|
529
|
+
"payloadSchema": [
|
|
530
|
+
{
|
|
531
|
+
"name": "score",
|
|
532
|
+
"type": "number"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"name": "total",
|
|
536
|
+
"type": "number"
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"scope": "external",
|
|
540
|
+
"synonyms": "round complete, finished, done, completion",
|
|
541
|
+
"tier": "domain"
|
|
515
542
|
}
|
|
516
543
|
],
|
|
517
544
|
"entityContract": {
|
|
@@ -659,6 +686,24 @@
|
|
|
659
686
|
}
|
|
660
687
|
],
|
|
661
688
|
"tier": "domain"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"description": "Fired once when the round finishes (advancing past the final prompt) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
692
|
+
"id": "evt_01M0GTSZD52FWAWR04FCNHKFEW",
|
|
693
|
+
"key": "LEARN_ROUND_COMPLETE",
|
|
694
|
+
"name": "Learn Round Complete",
|
|
695
|
+
"payloadSchema": [
|
|
696
|
+
{
|
|
697
|
+
"name": "score",
|
|
698
|
+
"type": "number"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"name": "total",
|
|
702
|
+
"type": "number"
|
|
703
|
+
}
|
|
704
|
+
],
|
|
705
|
+
"synonyms": "round complete, finished, done, completion",
|
|
706
|
+
"tier": "domain"
|
|
662
707
|
}
|
|
663
708
|
],
|
|
664
709
|
"states": [
|
|
@@ -1892,6 +1937,33 @@
|
|
|
1892
1937
|
},
|
|
1893
1938
|
{
|
|
1894
1939
|
"effects": [
|
|
1940
|
+
[
|
|
1941
|
+
"if",
|
|
1942
|
+
[
|
|
1943
|
+
">=",
|
|
1944
|
+
[
|
|
1945
|
+
"+",
|
|
1946
|
+
"@entity.promptIndex",
|
|
1947
|
+
1.0
|
|
1948
|
+
],
|
|
1949
|
+
[
|
|
1950
|
+
"array/len",
|
|
1951
|
+
"@config.prompts"
|
|
1952
|
+
]
|
|
1953
|
+
],
|
|
1954
|
+
[
|
|
1955
|
+
"emit",
|
|
1956
|
+
"LEARN_ROUND_COMPLETE",
|
|
1957
|
+
{
|
|
1958
|
+
"score": "@entity.score",
|
|
1959
|
+
"total": [
|
|
1960
|
+
"array/len",
|
|
1961
|
+
"@config.prompts"
|
|
1962
|
+
]
|
|
1963
|
+
}
|
|
1964
|
+
],
|
|
1965
|
+
null
|
|
1966
|
+
],
|
|
1895
1967
|
[
|
|
1896
1968
|
"let",
|
|
1897
1969
|
[
|
|
@@ -82,6 +82,15 @@
|
|
|
82
82
|
"parent": "trt_01M07581DD9V8TRJYWFKW9AG1R",
|
|
83
83
|
"renames": []
|
|
84
84
|
},
|
|
85
|
+
"evt_01M0GTSZEG9RBGY1VKMX49HRX9": {
|
|
86
|
+
"bakedName": "LEARN_ROUND_COMPLETE",
|
|
87
|
+
"curName": "LEARN_ROUND_COMPLETE",
|
|
88
|
+
"id": "evt_01M0GTSZEG9RBGY1VKMX49HRX9",
|
|
89
|
+
"kind": "event",
|
|
90
|
+
"owner": "workspace",
|
|
91
|
+
"parent": "trt_01M07581DD9V8TRJYWFKW9AG1R",
|
|
92
|
+
"renames": []
|
|
93
|
+
},
|
|
85
94
|
"orb_01M07581DDJA8E66K21HQZ2YNH": {
|
|
86
95
|
"bakedName": "PredictOrbital",
|
|
87
96
|
"curName": "PredictOrbital",
|
|
@@ -561,6 +570,24 @@
|
|
|
561
570
|
],
|
|
562
571
|
"scope": "external",
|
|
563
572
|
"tier": "domain"
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"description": "Fired once when the round finishes (advancing past the final scenario) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
576
|
+
"event": "LEARN_ROUND_COMPLETE",
|
|
577
|
+
"eventId": "evt_01M0GTSZEG9RBGY1VKMX49HRX9",
|
|
578
|
+
"payloadSchema": [
|
|
579
|
+
{
|
|
580
|
+
"name": "score",
|
|
581
|
+
"type": "number"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"name": "total",
|
|
585
|
+
"type": "number"
|
|
586
|
+
}
|
|
587
|
+
],
|
|
588
|
+
"scope": "external",
|
|
589
|
+
"synonyms": "round complete, finished, done, completion",
|
|
590
|
+
"tier": "domain"
|
|
564
591
|
}
|
|
565
592
|
],
|
|
566
593
|
"entityContract": {
|
|
@@ -696,6 +723,24 @@
|
|
|
696
723
|
}
|
|
697
724
|
],
|
|
698
725
|
"tier": "domain"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"description": "Fired once when the round finishes (advancing past the final scenario) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
729
|
+
"id": "evt_01M0GTSZEG9RBGY1VKMX49HRX9",
|
|
730
|
+
"key": "LEARN_ROUND_COMPLETE",
|
|
731
|
+
"name": "Learn Round Complete",
|
|
732
|
+
"payloadSchema": [
|
|
733
|
+
{
|
|
734
|
+
"name": "score",
|
|
735
|
+
"type": "number"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"name": "total",
|
|
739
|
+
"type": "number"
|
|
740
|
+
}
|
|
741
|
+
],
|
|
742
|
+
"synonyms": "round complete, finished, done, completion",
|
|
743
|
+
"tier": "domain"
|
|
699
744
|
}
|
|
700
745
|
],
|
|
701
746
|
"states": [
|
|
@@ -1610,6 +1655,33 @@
|
|
|
1610
1655
|
},
|
|
1611
1656
|
{
|
|
1612
1657
|
"effects": [
|
|
1658
|
+
[
|
|
1659
|
+
"if",
|
|
1660
|
+
[
|
|
1661
|
+
">=",
|
|
1662
|
+
[
|
|
1663
|
+
"+",
|
|
1664
|
+
"@entity.scenarioIndex",
|
|
1665
|
+
1.0
|
|
1666
|
+
],
|
|
1667
|
+
[
|
|
1668
|
+
"array/len",
|
|
1669
|
+
"@config.scenarios"
|
|
1670
|
+
]
|
|
1671
|
+
],
|
|
1672
|
+
[
|
|
1673
|
+
"emit",
|
|
1674
|
+
"LEARN_ROUND_COMPLETE",
|
|
1675
|
+
{
|
|
1676
|
+
"score": "@entity.score",
|
|
1677
|
+
"total": [
|
|
1678
|
+
"array/len",
|
|
1679
|
+
"@config.scenarios"
|
|
1680
|
+
]
|
|
1681
|
+
}
|
|
1682
|
+
],
|
|
1683
|
+
null
|
|
1684
|
+
],
|
|
1613
1685
|
[
|
|
1614
1686
|
"let",
|
|
1615
1687
|
[
|
|
@@ -91,6 +91,15 @@
|
|
|
91
91
|
"parent": "trt_01M0CGSNDKZW4BAAQ48B923K0C",
|
|
92
92
|
"renames": []
|
|
93
93
|
},
|
|
94
|
+
"evt_01M0GTSZG6B8B6VFWSEN7M2AT4": {
|
|
95
|
+
"bakedName": "LEARN_ROUND_COMPLETE",
|
|
96
|
+
"curName": "LEARN_ROUND_COMPLETE",
|
|
97
|
+
"id": "evt_01M0GTSZG6B8B6VFWSEN7M2AT4",
|
|
98
|
+
"kind": "event",
|
|
99
|
+
"owner": "workspace",
|
|
100
|
+
"parent": "trt_01M0CGSNDKZW4BAAQ48B923K0C",
|
|
101
|
+
"renames": []
|
|
102
|
+
},
|
|
94
103
|
"orb_01M0CGSNDKXGJ1SK9X9MV7YKYG": {
|
|
95
104
|
"bakedName": "LearnScatterFitOrbital",
|
|
96
105
|
"curName": "LearnScatterFitOrbital",
|
|
@@ -749,6 +758,24 @@
|
|
|
749
758
|
"scope": "external",
|
|
750
759
|
"synonyms": "fit update, line of best fit, slope, intercept, correlation, r squared",
|
|
751
760
|
"tier": "domain"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"description": "Fired once when the point that reaches maxPoints lands and the round latches done — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
764
|
+
"event": "LEARN_ROUND_COMPLETE",
|
|
765
|
+
"eventId": "evt_01M0GTSZG6B8B6VFWSEN7M2AT4",
|
|
766
|
+
"payloadSchema": [
|
|
767
|
+
{
|
|
768
|
+
"name": "score",
|
|
769
|
+
"type": "number"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"name": "total",
|
|
773
|
+
"type": "number"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"scope": "external",
|
|
777
|
+
"synonyms": "round complete, finished, done, completion, max points",
|
|
778
|
+
"tier": "domain"
|
|
752
779
|
}
|
|
753
780
|
],
|
|
754
781
|
"entityContract": {
|
|
@@ -891,6 +918,24 @@
|
|
|
891
918
|
],
|
|
892
919
|
"synonyms": "fit update, line of best fit, slope, intercept, correlation, r squared",
|
|
893
920
|
"tier": "domain"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"description": "Fired once when the point that reaches maxPoints lands and the round latches done — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
924
|
+
"id": "evt_01M0GTSZG6B8B6VFWSEN7M2AT4",
|
|
925
|
+
"key": "LEARN_ROUND_COMPLETE",
|
|
926
|
+
"name": "Learn Round Complete",
|
|
927
|
+
"payloadSchema": [
|
|
928
|
+
{
|
|
929
|
+
"name": "score",
|
|
930
|
+
"type": "number"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"name": "total",
|
|
934
|
+
"type": "number"
|
|
935
|
+
}
|
|
936
|
+
],
|
|
937
|
+
"synonyms": "round complete, finished, done, completion, max points",
|
|
938
|
+
"tier": "domain"
|
|
894
939
|
}
|
|
895
940
|
],
|
|
896
941
|
"states": [
|
|
@@ -2894,6 +2939,19 @@
|
|
|
2894
2939
|
""
|
|
2895
2940
|
]
|
|
2896
2941
|
]
|
|
2942
|
+
],
|
|
2943
|
+
[
|
|
2944
|
+
"if",
|
|
2945
|
+
"@nowDone",
|
|
2946
|
+
[
|
|
2947
|
+
"emit",
|
|
2948
|
+
"LEARN_ROUND_COMPLETE",
|
|
2949
|
+
{
|
|
2950
|
+
"score": "@n",
|
|
2951
|
+
"total": "@config.maxPoints"
|
|
2952
|
+
}
|
|
2953
|
+
],
|
|
2954
|
+
null
|
|
2897
2955
|
]
|
|
2898
2956
|
]
|
|
2899
2957
|
],
|
|
@@ -6337,6 +6395,19 @@
|
|
|
6337
6395
|
""
|
|
6338
6396
|
]
|
|
6339
6397
|
]
|
|
6398
|
+
],
|
|
6399
|
+
[
|
|
6400
|
+
"if",
|
|
6401
|
+
"@nowDone",
|
|
6402
|
+
[
|
|
6403
|
+
"emit",
|
|
6404
|
+
"LEARN_ROUND_COMPLETE",
|
|
6405
|
+
{
|
|
6406
|
+
"score": "@n",
|
|
6407
|
+
"total": "@config.maxPoints"
|
|
6408
|
+
}
|
|
6409
|
+
],
|
|
6410
|
+
null
|
|
6340
6411
|
]
|
|
6341
6412
|
]
|
|
6342
6413
|
],
|
|
@@ -82,6 +82,15 @@
|
|
|
82
82
|
"parent": "trt_01M07581K2JSWMZDZSAVQSR6A2",
|
|
83
83
|
"renames": []
|
|
84
84
|
},
|
|
85
|
+
"evt_01M0GTSZHFPPWVV9N240SJMS4J": {
|
|
86
|
+
"bakedName": "LEARN_ROUND_COMPLETE",
|
|
87
|
+
"curName": "LEARN_ROUND_COMPLETE",
|
|
88
|
+
"id": "evt_01M0GTSZHFPPWVV9N240SJMS4J",
|
|
89
|
+
"kind": "event",
|
|
90
|
+
"owner": "workspace",
|
|
91
|
+
"parent": "trt_01M07581K2JSWMZDZSAVQSR6A2",
|
|
92
|
+
"renames": []
|
|
93
|
+
},
|
|
85
94
|
"orb_01M07581K2ME2E69WCC1KWC0X8": {
|
|
86
95
|
"bakedName": "SpeedDrillOrbital",
|
|
87
96
|
"curName": "SpeedDrillOrbital",
|
|
@@ -392,6 +401,24 @@
|
|
|
392
401
|
],
|
|
393
402
|
"scope": "external",
|
|
394
403
|
"tier": "domain"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"description": "Fired once when the round finishes (advancing past the final prompt) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
407
|
+
"event": "LEARN_ROUND_COMPLETE",
|
|
408
|
+
"eventId": "evt_01M0GTSZHFPPWVV9N240SJMS4J",
|
|
409
|
+
"payloadSchema": [
|
|
410
|
+
{
|
|
411
|
+
"name": "score",
|
|
412
|
+
"type": "number"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"name": "total",
|
|
416
|
+
"type": "number"
|
|
417
|
+
}
|
|
418
|
+
],
|
|
419
|
+
"scope": "external",
|
|
420
|
+
"synonyms": "round complete, finished, done, completion",
|
|
421
|
+
"tier": "domain"
|
|
395
422
|
}
|
|
396
423
|
],
|
|
397
424
|
"entityContract": {
|
|
@@ -530,6 +557,24 @@
|
|
|
530
557
|
}
|
|
531
558
|
],
|
|
532
559
|
"tier": "domain"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"description": "Fired once when the round finishes (advancing past the final prompt) — the standard learning completion broadcast a celebration/progression sibling (fx cues, badges) rides.",
|
|
563
|
+
"id": "evt_01M0GTSZHFPPWVV9N240SJMS4J",
|
|
564
|
+
"key": "LEARN_ROUND_COMPLETE",
|
|
565
|
+
"name": "Learn Round Complete",
|
|
566
|
+
"payloadSchema": [
|
|
567
|
+
{
|
|
568
|
+
"name": "score",
|
|
569
|
+
"type": "number"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "total",
|
|
573
|
+
"type": "number"
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"synonyms": "round complete, finished, done, completion",
|
|
577
|
+
"tier": "domain"
|
|
533
578
|
}
|
|
534
579
|
],
|
|
535
580
|
"states": [
|
|
@@ -1411,6 +1456,33 @@
|
|
|
1411
1456
|
},
|
|
1412
1457
|
{
|
|
1413
1458
|
"effects": [
|
|
1459
|
+
[
|
|
1460
|
+
"if",
|
|
1461
|
+
[
|
|
1462
|
+
">=",
|
|
1463
|
+
[
|
|
1464
|
+
"+",
|
|
1465
|
+
"@entity.itemIndex",
|
|
1466
|
+
1.0
|
|
1467
|
+
],
|
|
1468
|
+
[
|
|
1469
|
+
"array/len",
|
|
1470
|
+
"@config.items"
|
|
1471
|
+
]
|
|
1472
|
+
],
|
|
1473
|
+
[
|
|
1474
|
+
"emit",
|
|
1475
|
+
"LEARN_ROUND_COMPLETE",
|
|
1476
|
+
{
|
|
1477
|
+
"score": "@entity.score",
|
|
1478
|
+
"total": [
|
|
1479
|
+
"array/len",
|
|
1480
|
+
"@config.items"
|
|
1481
|
+
]
|
|
1482
|
+
}
|
|
1483
|
+
],
|
|
1484
|
+
null
|
|
1485
|
+
],
|
|
1414
1486
|
[
|
|
1415
1487
|
"let",
|
|
1416
1488
|
[
|