A state machine is a model for designing systems which change based upon their current state and what input they receive.

learn more… | top users | synonyms (2)

-2
votes
1answer
43 views

State machines everywhere? [closed]

After learning about state machines, I want to place it in every class of my code. That's a great pleasure for me to declaratively (or "fluently") construct a machine, handle events and be sure that ...
0
votes
3answers
54 views

Arduino sketch that responds to certain commands, how is it done?

Alright I have a half complete Arduino sketch at the moment. Basically the sketch below will blink an LED on a kegboard-mini shield if a string of chars equals *{blink_Flow_A}* However the LED only ...
-1
votes
0answers
6 views

Interrogating a boost:msm state machine

I'm using the state machine classes provided by boost msm and would like to interrogate my state machine to see if, in its current state, it can handle a certain type of event. Is there a way to do ...
0
votes
0answers
36 views

state machine implementation of a simple sequential odd parity generator/checker for a 7 bit memory

I have been able to create an AND-OR 3 bit parity generator/checker before. But im not sure how to do the 7bit. I think I have to use MUX. How would I go about designing it? Do I need a truth table? ...
0
votes
1answer
35 views

JS event triggers a backend state change in a state machine (rails)?

I am working on a new project: the backend has Users which has_many "Courses" which also has_many "Steps". I want javascript to validate the user's answer - ie let's say the user enters "6", which is ...
0
votes
0answers
20 views

Developing a State Machine - Handling Multiple Outcomes Per State

So I'm trying to develop a simple state machine for a game I'm making, and I'd like to start off the Character Controller with the basics. I'm just confused on how to handle transitions from one ...
-1
votes
1answer
57 views

use a state-machine for level advancing? [closed]

Level by level quiz game: I would like to have the user progress be saved and return to the appropriate level & step when clicked. Does it make sense to use a state machine as the user advances ...
1
vote
0answers
64 views

Developing state-machines with R: something like Matlab's Stateflow available for R?

My Matlab's student version does not come with Stateflow but with Simulink. I need something like it to participate in a robotic project like here. Is there anything possible to bundle with R to ...
3
votes
2answers
89 views

More .net approach for dynamic state machine

I wrote a simple dynamic FSM. Dynamic means the state transitions are dynamic and not static as shown in ConcreteStateB. namespace FSM_Example { using System; class Program { ...
1
vote
1answer
76 views

State machine event generation in multi-processor architecture

I'm having a small architecture argument with a coworker at the moment. I was hoping some of you could help settle it by strongly suggesting one approach over another. We have a DSP and Cortex-M3 ...
0
votes
1answer
23 views

Issues with validates_uniqueness_of and state_machine transition

I have a problem with the rails 'validates_uniqueness_of' function and the state_machine gem. Please look at the code below: state_machine :initial => :foo do state :bar do ...
1
vote
2answers
66 views

alphabetic search from telephone numeric pad

I'm implementing an alphabetic search based on telephone keypad, like Phone keypad1 When user types , say 2, I get {A, B, C} in the combination. When user types 23, I get {AD, AE, AF, BD, BE, BF, CD, ...
3
votes
0answers
113 views

Is there a state machine framework which implements UML semantics for the D programming language?

Is there a state machine framework in the D programming language which implements UML semantics similar to boost.MSM, boost.statecharts, QP or Machine Objects ?
2
votes
1answer
46 views

When exactly should the transition action be executed on hierarchical state machine?

Given this HSM example model - http://www.embedded.com/design/system-integration/4008251/8/A-crash-course-in-UML-state-machines-Part-2 - I'm wondering what should be the RIGHT moment of executing ...
0
votes
1answer
61 views

Statemachine with multiple transtions with same trigger/event but different guard

If I have a state S1 with 2 transitions both with triggered by an event 'A', but one of them has as a guard x !=0 and the other doesn't. What would be the expected behavior when guard is valid (x ...
-2
votes
1answer
120 views

Finite state machine rules [closed]

I'm currently building a finite state machine implementation where the states all will be classes implementing a specific interface: public interface ISolidState { void Entering(object context); ...
0
votes
0answers
66 views

Implementation model of hierarchical state machine [closed]

This question is not about specific "how-to code HSM in your-language-of-choice", but about two different "models" of implementation. I'm wondering which one is better in your opinion. The first ...
0
votes
0answers
27 views

Rails: Displaying state_machine validation errors

I'm using state_machine for an online purchasing process in Ruby on Rails. One of the states consists of the user filling in a form with billing information. This form is required, so I'm validating ...
0
votes
1answer
42 views

Can I custom react to a event in multiple states in different orthogonal reigions using boost.statecharts?

My use case is similar to this SSCCE. The problem is that if no transition occurs I need to forward the events, which seems unnatural, for them to be processed by the other orthogonal regions. More ...
1
vote
0answers
85 views

State machine pattern with overlapping responsibilities

So, I'm working on a project in Unity (with C# scripts, though the question is largely language-agnostic), and I'm representing the various game states with a very simple state machine. public enum ...
0
votes
1answer
115 views

Multi-tier complex state machine

I'm currently trying to come up with a clean design for coding a multi-tier state machine, and so far, I haven't found the solution in articles about normal state machine usage in C++ or other. On ...
0
votes
1answer
46 views

papertrail, set the admin user

I am using state_machine and papertrail gems on a model (rails 3.2) I want to track all state changes and who has originated it, papertrail works like a charm. Now I have a situation where the ...
0
votes
2answers
68 views

How to record when a state changes in Workflow Gem in Ruby

I'm using the Workflow gem (https://github.com/geekq/workflow) in my Rails App as a state machine. As an object passes through various states, I'd like to record the datetime when it changes, but not ...
0
votes
1answer
16 views

Accessing non-current state_machine states

I've got six states on my order.rb file. I want to access each of the non-current states to populate a drop-down menu so the state can readily be changed. I've come up with this. The function doesn't ...
1
vote
1answer
99 views

Create a timeout in an SCXML state machine

In an SCXML state machine, how can I say "Fire an event 3 minutes after I enter this state, but not if I sit in the state for 2.9 minutes and then leave. If I re-enter the state, restart the timer ...
0
votes
1answer
112 views

State Machines, Sub-Classes, and Function Pointers

I'm having trouble implementing a state machine for class. I keep getting the errors: state.cpp:5: error: have0 was not declared in this scope state.cpp:10: error: redefinition of State* ...
1
vote
1answer
64 views

Synchronous PySCXML

I'm currently looking into idioms and libraries for Python helping me with state machine design for a control task. I've found good suggestions in this other SO question: Python state-machine design. ...
0
votes
0answers
18 views

State machine for graphical editor

Could you give me an advise, how name states for state machine for graphical editor. Now i decided that best way is adjective_noun_ verb. So states must look like: FREE_SCENE_OBSERVING ...
0
votes
1answer
24 views

What is a way I can measure a performance difference before and after implementing state_machine gem?

I'm almost finished implementing pluginaweek's state_machine gem and I'd like to try and measure something before I implement it so I can remeasure afterwards and see a difference. Right now there's a ...
1
vote
0answers
87 views

Simple statemachine for LOB app (Design)

I'm working on a quite simple LOB application: Every Business Object is in a certain state, defined by a state object. Admin users can add/remove state objects. Additionally they can define rules ...
0
votes
1answer
45 views

How to not contain timestamp when changing state on update object?

I am using workflow as state machine. I want on after every update move state to awaiting_review but I have also current_sign_in_at attribute after user log in his state changes to awaiting_review how ...
0
votes
1answer
56 views

How can I cause the state_machine block to use the default accessor instead of my custom accessor?

I'm implementing pluginaweek's state_machine gem. I narrowed the code down to just this so I can understand the problem more easily. Let's assume I only have one status for now: class Event < ...
1
vote
0answers
53 views

Sequential circuit design

A sequential circuit has two inputs, x1 and x2. Five-bit sequences representing decimal digits coded in the 2-out-of-5 code appear from time to time on line a:,, synchronized with a clock pulse on a ...
3
votes
4answers
74 views

Which of these approaches to method naming is better and why?

In my app, we have Users who can perform actions on one another - like poking on Facebook. I'm writing the methods just now and am not really sure which approach to take. I mean, I know they're both ...
0
votes
0answers
57 views

How to add a continuous state in state machine diagram?

Is there any way to create a state Like this: Suppose there is a bid for a Project. After accepting the bid by hirer, coder may reject or accept the offer (he has 1 day deadline), but during this ...
2
votes
0answers
27 views

Trigger events on multiple records in state_machine gem

I am using state_machine for the transition of states in one of my models. The transition is successfully happening on single records. But what to do if I have to trigger an event on multiple records. ...
0
votes
1answer
17 views

Returning all records in a certain state with state_machine

How would you return a list of records in a certain state with state_machine? Something along the lines of: @locked = current_user.docs.locked? Cheers. EDIT It seems like ...
2
votes
3answers
248 views

What is a Finite State Machine and What is it Used For? [closed]

Recently, I've begun doing some research into Finite State Machines in JavaScript and I even found a library that makes them easier to implement. While I think I've grasped the idea that a state ...
0
votes
0answers
23 views

How to generate the path taken in the state_machine?

I have been using the state_machine gem and I love it. I generate the state machine graph as explained in the doc: rails generate model Vehicle state:string $ rake db:migrate Works like a charms. ...
0
votes
2answers
240 views

Implement a UI state machine using MVVM pattern

I'm working on a state machine program with wpf as UI layer, I used this link: http://elijahm.ninjuro.com/2012/01/04/visual-states-in-wpf-4-0/#comment-312 article to change contents of active window ...
0
votes
2answers
91 views

“Passive” state machine - correct term?

I am looking for the correct term of a logical construct that I would call "passive state machine". Imagine this embedded device: Some lower program layer handles a chip card reader and reacts on the ...
0
votes
0answers
255 views

Quartus II - State Machine Viewer doesn't display the bubble-diagram

I use Quartus II Web Edition 12.1 and ModelSim SE 10.1c (not Altera Edition). I have projected a synchronous single process state machine with a reset state and other 11 states. After the successful ...
4
votes
3answers
378 views

C++ code for state machine

This was an interview question to be coded in C++: Write code for a vending machine: Start with a simple one where it just vends one type of item. So two state variables: money and inventory, ...
1
vote
2answers
509 views

Unity Performance - Coroutines vs FSM on update

I just started studying Unity scripting and I'm having a hard time to understand why some people prefer coroutines over state machines. I do understand that the code might be more readable for some ...
0
votes
0answers
48 views

How should admins interact with State Machine?

I've got a ruby app that uses a state machine pattern. Users submit applications and, when approved and vetted, those applications will be visible to other users. The app also uses ActiveAdmin to ...
1
vote
0answers
55 views

triggering intermediary transition between states in ruby state_machine

i am using https://github.com/pluginaweek/state_machine my code is event :set_running do transition any => :runnning end event :restart do transition :failed => :restarting end ...
0
votes
1answer
67 views

How do I create dynamic definitions for state machine based on user defined data in DB

I am trying to write an application that will allow users to manage workflows using the State Machine gem but I am not sure how to proceed in allowing users to define their own state machines using ...
0
votes
0answers
74 views

Capsule diagram based Java multy-thread program

I have a java program based ona capsule diagram, where i have 3 classes capsule, port and state_machine. A stat machina at a state prnts the nr of its state. The working principle of the program is ...
0
votes
2answers
106 views

Cricket as a state machine

I'm creating a cricket manager stats game. I need to create a ball-by-ball simulation of the game. The game/ball outcome will be influenced by player stats and other external factors like weather or ...
1
vote
1answer
129 views

Xml Parsing using state machines [closed]

Is it a good practise to implement xml parsing in a state machine? If yes what are the major states we have to handle?

1 2 3 4 5 9