Generalize constraints to observables #48

Merged
glen merged 25 commits from Vectornaut/dyna3:observables_on_main into main 2025-03-10 23:43:25 +00:00

25 commits

Author SHA1 Message Date
Aaron Fenyes
08ec838334 Consolidate constructions from empty specification
To reduce the potential for inconsistency, we should only have one piece
of code that constructs a `SpecifiedValue` from the empty specification.
2025-03-08 15:11:37 -08:00
Aaron Fenyes
b9db7a5699 Make use declarations more compact 2025-03-08 15:02:57 -08:00
Aaron Fenyes
6eeeb1c6fd Bring back try_set as inline code
This essentially reverts commit 894931a and then inlines `try_set` in
the one place where it's used. If we ever want to reuse that code, we'll
factor it out again.
2025-03-05 15:05:00 -08:00
Aaron Fenyes
84bfdefccb Rewrite SpecifiedValue as a read-only structure 2025-03-03 23:10:28 -08:00
Aaron Fenyes
8b4a72c60c Simplify match to if let 2025-03-03 15:15:30 -08:00
Aaron Fenyes
c58fed073d Drop the is_present utility method 2025-03-03 13:10:08 -08:00
Aaron Fenyes
309b0881df Move SpecifiedValue into its own module 2025-03-03 13:10:08 -08:00
Aaron Fenyes
894931a6e7 Replace try_set with set_if_ok 2025-03-03 13:10:08 -08:00
874c823dbe Minor wording changes in description of Element.regulators. 2025-03-01 01:27:45 +00:00
Aaron Fenyes
7cbd92618b Improve the comments in the assembly module
Also, remove trailing comma.
2025-02-27 00:26:54 -08:00
Aaron Fenyes
c368a38803 Make insert_regulator private 2025-02-26 22:22:58 -08:00
Aaron Fenyes
6c31a25822 Consolidate set point data 2025-02-23 23:51:24 -08:00
Aaron Fenyes
befadd25c9 Get the read-only set point signal more simply 2025-02-19 01:22:42 -08:00
Aaron Fenyes
c54b6bc165 Tie invalidity indicator to regulator input
Invalid attempts to specify a regulator's set point are now local to
each view of the regulator, and don't affect the regulator model. In
particular, a regulator will be valid and in force even when one of its
regulator input views is showing an invalid specification attempt. The
invalidity indicator should therefore be tied to the input showing
the invalid specification, not to the whole regulator outline item.
2025-02-18 13:37:30 -08:00
Aaron Fenyes
f2e84fb64a Enforce the validity of set point specifications
Make a regulator's set point specification private, and split the set
point into a private writable signal and a public read-only signal. The
set point can now be initialized only through the factory method
`insert_new_regulator` and changed only through the setter method
`try_specify_set_point`, which both ensure that the set point
specification is valid and consistent with the set point.
2025-02-18 13:29:10 -08:00
Aaron Fenyes
bbd0835a8f Move set point spec validation into Regulator 2025-02-18 12:42:49 -08:00
Aaron Fenyes
302d93638d Require regulators to have valid specifications
When an invalid specification is entered into a regulator input, keep it
confined to that input. Reset a regulator input by pressing *escape*.
2025-02-18 01:27:11 -08:00
Aaron Fenyes
fef4127f69 Only sync regulator inputs on change
This lets us infer a regulator's role from whether it has a set point
and what text specifies the set point.
2025-02-17 14:01:27 -08:00
Aaron Fenyes
b3e4e902f3 Rename Regulator fields 2025-02-12 11:55:45 -08:00
Aaron Fenyes
24139ad5e9 Rename observables to regulators 2025-02-12 11:35:07 -08:00
Aaron Fenyes
de7122d871 Label observable type
Right now, there's only one type of observable, so the label can be
hard-coded.
2025-02-12 10:37:48 -08:00
Aaron Fenyes
dc8330df6a Revise observable styling
Distinguish constraints from observables using dark background rather
than marker. Customize focus highlighting. Drop the input type selector
that used to make styling apply to the Lorentz product field but not the
constraint activation check box.
2025-02-10 00:16:36 -08:00
Aaron Fenyes
af2724f934 Rename ObservableRole variants
Also rename corresponding CSS classes and add methods to check roles.
2025-02-10 00:16:36 -08:00
Aaron Fenyes
677ef47544 Rename constraints to observables 2025-02-10 00:16:36 -08:00
Aaron Fenyes
fb8e391587 Generalize constraints to observables 2025-02-10 00:08:32 -08:00