A state machine is a model for designing systems which change based upon their current state and what input they receive.
-3
votes
0answers
28 views
how to write logic for simulation a cricket match [closed]
I want to develop cricket game which will simulate a match ball by ball depending on player stats (bowler's skill/experience, batsman's skill/exp, fielding/wicketkeeping stats, so on...) and other ...
-1
votes
0answers
12 views
State Machine or Multi Step Form for User Registration
In a Rails project I have a Polymorphic User model that I need to create a multi-step registration process(Signup as different user type, create group, select subscription type, etc). Would it be ...
0
votes
0answers
14 views
periodic state machine with boost statechart
I want to implement a state machine that will periodically monitor some status data (the status of my system) and react to it.
This seems to be something quite basic for a state machine (I've had ...
0
votes
0answers
4 views
How to create activity that can be executed in any state
I have a workflow built with Windows Workflow Foundation 4.5 by using State Machine. Workflow is hosted as Workflow Service (XAMLX) file with Contract First messaging (WCF) activities.
I now have ...
0
votes
1answer
35 views
Using Azure Queues as a State Machine
I'd like to use Azure Queues as a state machine for a high-load/high-scale web service.
The client would submit a request to a web service endpoint, at which point i'd return a request id.
I'd then ...
0
votes
1answer
47 views
state transition falling edge
I am revisiting VHDL after many years. I am trying to setup a basic state machine with a counter trigger at some overflow period.
For some reason I am getting state transitions on the falling edge ...
-2
votes
1answer
61 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
74 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 ...
0
votes
0answers
71 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
52 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
31 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
70 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
81 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
101 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
89 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
28 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
68 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
115 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
60 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
72 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
145 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
84 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
35 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
54 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
100 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
130 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
57 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
79 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
23 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
131 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
116 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
71 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
20 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
29 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
94 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
51 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
75 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
56 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
67 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 ...
3
votes
0answers
36 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
22 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 ...
3
votes
3answers
394 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
26 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
318 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
102 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
305 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
458 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
726 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
66 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 ...





