Tagged Questions
1
vote
2answers
181 views
Is implementing state pattern a good design choice for simple chess game? [closed]
I am trying to write an offline no AI no GUI synchronized command-line chess game that two users play (or one user play both white & black). That means there's only 1 thread.
The chess game ...
1
vote
2answers
226 views
C# State pattern and events
In C#, events can only be fired by the owning class through protected virtual methods such as OnClick, OnExit, etc... What I'm trying to do is implementing GOF State Pattern for some of my complex ...
0
votes
1answer
76 views
Implementing State Pattern using references
I'm trying to refactor my code, among other things, applying state pattern. I'm more of a Java programmer, so please, be nice ;)
So, here I've got my base state class, nothing fancy:
#include ...
0
votes
1answer
66 views
Maximum number of states in State Pattern
I am trying to use state pattern and i have a question. Is state pattern designed only for situtations with limited number of states like this:
TCPState:
1- TCPEstablished
2- TCPLisenting
3- ...
0
votes
1answer
130 views
What is an example of state pattern in Core Java/JSF/Servlets?
I just learnt about the State pattern . I would like to know where in core Java / JSF/Servlets code s can I see this pattern being implemented ? I want to see how the state transition is implemented ...
2
votes
1answer
81 views
Who defines state transitions in the state pattern?
I understand that the State pattern can be used to model objects that changes behavior depending on the state and the various states that the Context can have is encapsulated in concrete classes that ...
3
votes
2answers
346 views
What are design patterns for tasks with storing some state in haskell
What are design patterns for tasks with storing some state in haskell? For example i want to write library with haskell which provide config file reading and storing config params in memory.
For ...
15
votes
2answers
263 views
Scala: collecting updates/changes of immutable state
I'm currently trying to apply a more functional programming style to a project involving low-level (LWJGL-based) GUI development. Obviously, in such a case it is necessary to carry around a lot of ...
0
votes
3answers
1k views
How to implement a FSM - Finite State Machine in Java
I have something to do for work and I need your help.
We want to implement a FSM - Finite State Machine, to identify char sequence(like: A, B, C, A, C), and tell if it accepted.
We think to implement ...
-1
votes
1answer
49 views
OO: Preserve state of an object inside another stateless one
i am looking for a pattern on how to achieve the following.
I have an Object called TestRunner, which is the main class that an external caller will call and which is responsible for instantiating ...
0
votes
1answer
231 views
Enum State pattern for android
I'm trying to create a Enum STATE pattern so I can set the current state of my operations.
In C# (i think) I used this pattern:
Enum State { STARTED, STOPPED, PAUSED };
State _s;
public foo() {
...
0
votes
1answer
136 views
Which design patterns allows managing state of involved objects/ holding (lazy) (im)mutable state, inspect and modify object passed/ returned etc
Consider two problems:
We have a wrapper that detects if the wrapped object started a transaction, keeps the transaction number and makes it available to users of wrapper through a method. Can it be ...
0
votes
5answers
345 views
State Machine example
Could somebody say a good example of usage of State machine in software (except compilators and parsers)? There are examples of a great practical importance and usage of state machine should simplify ...
1
vote
1answer
50 views
Preventing State-Coupling?
I have the following objects and relationships,
Lecture >- Tests
Test >- Questions
Business rules
When the lecture is started, a test can be given
If a test is being given, questions can be ...
2
votes
2answers
288 views
How to manage state in application and URL?
I'm building a web application that manages state internally and via the URL, to allow the user to manipulate state with the browser buttons as well as the site's UI.
I'm using jQuery-BBQ to manage ...
2
votes
1answer
388 views
How to design and implement game according to state diagram?
This is my state diagram:
My game change states only after user action (only exception is "time's up").
I don't know best practice how I should implement my mechanism, which will help my swich ...
1
vote
2answers
860 views
Finite State Machine and enclosing [closed]
Recently in my work I "forced" to learn to program right.
I'm reading a lot of terns, DDD, TDD etc.
To recommend the books "Clean Code" and "Refactoring to Patterns" because they are very good.
In ...
2
votes
1answer
102 views
State pattern, but controlled from 2 different places
I have a class that controls what the user sees on the page. There are a couple of states. The first set of views are controlled by the user object and that object controls the items below.
- ...
1
vote
3answers
169 views
Adding State in Decorator Pattern
I wonder how to add state to the chain of decorators that will be available to the consumer. Given this simplified model:
abstract class AbstractPizza{
public abstract print(...);
}
class ...
4
votes
1answer
516 views
How to unit test a state machine?
Suppose I have an Order class , which can be in three different states : CheckedState, PaidState and OrderedState.
The state machine will be implemented using the standard State Design Pattern (Gof).
...
0
votes
1answer
72 views
Design pattern import files alters behaviour
I am developing an application where the program can do a number of operations. It relies on a XML file being imported and DB connection established. However, some of the functions can work without an ...
2
votes
3answers
167 views
Removing dependencies from statechart framework
I've got lots of problems with project i am currently working on. The project is more than 10 years old and it was based on one of those commercial C++ frameworks which were very populary in the 90's. ...
1
vote
2answers
162 views
State pattern: Which class should I trust to update the state?
I am learning design pattern by reading Head First Design Patterns, and I have just finished the chapter on the State Pattern. However, there is one thing I don't get:
In the book, the class which ...
1
vote
2answers
312 views
Threads or state machine to manage application state?
I have a web application that automatically configures a device. Communication is achieved in a request - response fashion using HTTP. I am currently using a thread to manage the configuration ...
3
votes
2answers
750 views
How can I handle enabling/disabling toolstrip buttons when form state changes without using a Select Case statement?
We all know that it's possible to handle enabling/disabling ToolStrip buttons when a form state changes by using Select Case statements (VB.NET) or switch case statement in C#.
But I remember my ...
1
vote
3answers
108 views
Might a State pattern help if I have only a few states?
If something has only two to three states, is it overkill to use the State pattern?
Thanks in advance
2
votes
2answers
1k views
State pattern and Hibernate without Enum
I've searched for the implementation of the State pattern in Java with Hibernate and found several references to a solution using Enums in order to provide a flexible way to add new States to the ...
0
votes
1answer
270 views
Give me a real-life, non-trivial use of the State Pattern
I'm looking for an example of where the State design pattern has been used to solve or simplify interesting or complicated state transitions. There are plenty of examples with three or four simple ...
1
vote
2answers
459 views
Where to store the state in a MVP architecture
In other MVP-related questions on SO, people talk about the Presenter keeping the state information (could be session state or UI state). What I'm wondering is, since state is basically "transient ...
4
votes
2answers
397 views
Is the state design pattern overkill for a PHP form?
I have a page that, when accessed displays a table of information related to a video:
Embed code
Title
Description
Current gallery
Thumbnail image
This information is read-only when the page is ...
2
votes
2answers
1k views
GOF State Pattern State Transition Implementation Issues
Firstly, can anyone explain how a state object can be shared when the state object has no instance variables ?
This text is taken from GOF, page 308, item 3 (consequences section):
The state ...
3
votes
2answers
811 views
Transition methods in state design pattern
I have a state machine with many states A--B--C--D--E. I have many transitions from C for example to A if some condition is verified. For every state I have a class extending abstract class Stateand I ...
6
votes
6answers
2k views
Designing a state machine in C++
I have a little problem that involves modeling a state machine.
I have managed to do a little bit of knowledge engineering and 'reverse engineer' a set of primitive deterministic rules that determine ...
2
votes
4answers
1k views
How to avoid long switch ..need help refactoring
i needed help refactoring the following class,
Following is a class Operation with variety of Operations in switch :
i want to avoid the switch statement.I read few articles on using polymorphism ...
0
votes
3answers
1k views
combining decorator and state pattern in java - question about OO design
I am in the middle of solving a problem where I think it's best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
0
votes
2answers
340 views
state design pattern from Java to Ruby
I have a working solution in java using a classic state design pattern and facing some difficulties translating it to ruby. I am new in ruby, but the diffuclty I believe lies in the differences on how ...
5
votes
5answers
3k views
State Pattern: How the states of an object should transition when they're involved in complex processes?
I have some doubts about the following implementation of the state pattern:
I have an Order object. For simplicity, let's suppose it has a quantity, productId, price and supplier. Also, there are a ...
1
vote
2answers
605 views
What is the best way to manage Form state?
I'm developing a form in a C# .NET 2.0 application that contains complex logic regarding the state (enabled/disabled) of various controls on the form. (The design is a symptom of a business analyst's ...
5
votes
3answers
3k views
Enum vs Lookup table vs Enum reflection vs State pattern
The software I will be building will involve "application" switching between different status a lot. Certain tasks can be done depends on the status an application is at. I was thinking about using ...
3
votes
2answers
402 views
Handling of UI state
I have application running on Windows written using MFC. The enable/disable state of the menu items depends upon a lot of conditions. For example, I have to enable the menu item if condition A is ...
