Statecharts: hierarchical state machines
51–60 of 91 posts
Re: Statecharts: hierarchical state machines
#52Re: Statecharts: hierarchical state machines
#53I'd like to see a computer language where statecharts are primary control flow construct and ECS are primary data structure.
Re: Statecharts: hierarchical state machines
#54Hierarchical state charts have been formalized as a type of UML diagram. Details: https://en.wikipedia.org/wiki/UML_state_machine
I think it's either "hierarchical state machines" or just "statecharts", otherwise it's a bit like saying ATM machine or CC card.
Re: Statecharts: hierarchical state machines
#55Earlier quoted context omitted.
I think it's either "hierarchical state machines" or just "statecharts", otherwise it's a bit like saying ATM machine or CC card.
Perhaps, but I object to the "machine" phrasing. Ordinary finite state "machines" (without hierarchy) aren't machines either, they are just diagrams of something that could be a machine or something else.
Re: Statecharts: hierarchical state machines
#56I've tried to use state charts for frontend development a couple of times, but bounced off. IIRC, I was using xstate with vue, and I found that they were hard to retrofit to existing systems, and where I tried, I found that the boundary between the part of the system controlled by xstate and the rest of the system problematic. It felt like it would work better with everything "inside" the statechart, but that's a big…
Re: Statecharts: hierarchical state machines
#57Re: Statecharts: hierarchical state machines
#58Re: Statecharts: hierarchical state machines
#59https://doc.qt.io/qt-6/qtstatemachine-overview.html
Qt also supports W3's State Chart XML (SCXML)
Re: Statecharts: hierarchical state machines
#60I've tried to use state charts for frontend development a couple of times, but bounced off. IIRC, I was using xstate with vue, and I found that they were hard to retrofit to existing systems, and where I tried, I found that the boundary between the part of the system controlled by xstate and the rest of the system problematic. It felt like it would work better with everything "inside" the statechart, but that's a big…
Out of curiosity, was that before or after LLM agents?