GuiCodron

Results 9 comments of GuiCodron

Hello, I also encountered this problem. For me it was due to a bad `minPixelValue` or `maxPixelValue` in the loadedImage which was set either too high or too low creating...

Encountered the same erroneous behaviour on an armv7 processor. On x86 do you also compile using gcc with the same version ? It might be due to some compiler shenanigans...

I use the syntax ``` ,power_on [ guard_is_cool] = idle_state ,power_on [ ! guard_is_cool] = cooling ``` and it operates as expected. However, for automatic transition with guard, there is...

Like @lumpidu I think that composite state is the solution to your problem. In your case, you sm would become: ``` #include #include #include namespace sml = boost::sml; namespace {...

Orthogonal regions all process the event. There is no need to add defer to allow all state machine to transition to X. Defer is used to allow the next state...

I don't know of a built-in way to do it, I think it goes a bit against how orthogonal regions are meant to be used. My guess would be to...

Do you consider it a bug? Each event is a bit different, you have an on_exit, the event itself and on_entry_, my_event>. You can check for on_entry and on_exit by...

I also notices those changes and had to backport some fixes for one of my pull request to pass CI See #331 Le sam. 23 mai 2020 à 12:52, Erik...

The `process` method exists to enqueue event during action that will then be processed once the first event run to completion has been executed. Le jeu. 10 sept. 2020 à...