Vectornaut
  • Joined on 2019-09-28
Vectornaut opened issue StudioInfinity/dyna3#58 2025-02-27 18:54:18 +00:00
Tidy up match expressions
Vectornaut opened issue StudioInfinity/dyna3#57 2025-02-27 09:33:26 +00:00
Curate debug output
Vectornaut opened issue StudioInfinity/dyna3#56 2025-02-27 09:28:16 +00:00
Turn off debug output in release
Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:39:30 +00:00
Generalize constraints to observables

Suppose you add an i.d. regulator to A and B, and set it to 2, and then it one of its input boxes (say with both showing), replace the set point with a and hit enter. You get an error indicator…

Vectornaut commented on issue StudioInfinity/dyna3#38 2025-02-27 08:38:22 +00:00
Self-documentation of UI

Another hard-to-discover keyboard control: pressing escape to reset a regulator input. This came up during review of #48.

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:35:27 +00:00
Generalize constraints to observables

Done (7cbd926).

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:34:49 +00:00
Generalize constraints to observables

I definitely think we should give the Absent variant a specification field if we end up with more than one way to specify absence. However, I'm not sure it makes sense to add that field now. It…

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:34:08 +00:00
Generalize constraints to observables

Nice catch! I've changed "above" to "at" to resolve the ambiguity (7cbd926). Does that read all right to you?

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:32:14 +00:00
Generalize constraints to observables

I've added a comment to this effect (7cbd926). Let me know if I should make it more detailed.

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:30:56 +00:00
Generalize constraints to observables

Good point! I've made insert_regulator private for now (c368a38).

Vectornaut pushed to observables_on_main at Vectornaut/dyna3 2025-02-27 08:28:32 +00:00
7cbd92618b Improve the comments in the assembly module
c368a38803 Make insert_regulator private
Compare 2 commits »
Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:23:18 +00:00
Generalize constraints to observables

Specified values and assemblies do seem like pretty independent concepts, so putting SpecifiedValue in its own module might be reasonable.

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 08:17:18 +00:00
Generalize constraints to observables

Several enums from the standard library have similar methods.

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-27 07:31:29 +00:00
Generalize constraints to observables

Or doesn't the Regulator already have a ReadSignal for its SpecifiedValue?

Yes: the set_point field is public. Thus, there's no need for try_set to return something that gives you access…

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-26 20:56:09 +00:00
Generalize constraints to observables

I think tuples are designed with arbitrary combinations of types in mind, so I'd be surprised to find utility methods to broadcast over tuples of the same type—and indeed, I haven't managed to…

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-26 20:44:25 +00:00
Generalize constraints to observables

I take it the .with method is how we manipulate the "payload" (or whatever the correct term is) that is wrapped by a Signal?

Yes: [with](https://docs.rs/sycamore/latest/sycamore/reactive/str

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-26 20:36:56 +00:00
Generalize constraints to observables

The declaration

use SpecifiedValue::*;

puts all variants in scope. I currently have it just after the definition of SpecifiedValue, because it felt out of context elsewhere. For…

Vectornaut commented on pull request StudioInfinity/dyna3#48 2025-02-26 20:28:57 +00:00
Generalize constraints to observables

We could indeed modify try_set so that it returns a clone of the Result<SpecifiedValue> computed from the given specification. This might be useful if the caller wants a detailed error report…

Vectornaut opened issue StudioInfinity/dyna3#55 2025-02-25 19:48:13 +00:00
Introduce curvature regulators
Vectornaut commented on issue StudioInfinity/dyna3#54 2025-02-25 18:18:26 +00:00
Integrate engine into application prototype

Addressed by pull request #15.