Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunurd/cycles
A FSM (Finite-State Machine) approach to manage entirely the states and data flow of all, one or a bunch units of a application.
https://github.com/brunurd/cycles
Last synced: 13 days ago
JSON representation
A FSM (Finite-State Machine) approach to manage entirely the states and data flow of all, one or a bunch units of a application.
- Host: GitHub
- URL: https://github.com/brunurd/cycles
- Owner: brunurd
- License: mit
- Created: 2019-04-03T15:27:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T15:24:14.000Z (almost 4 years ago)
- Last Synced: 2024-11-17T17:47:23.198Z (about 1 month ago)
- Language: C#
- Size: 30.3 KB
- Stars: 3
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Cycles
![Nuget](https://img.shields.io/nuget/v/cycles)
![C# Version](https://img.shields.io/badge/C%23-7.3-621ee5)
![Framework Version](https://img.shields.io/badge/framework-netstandard2.0-621ee5)
![.NETFramework Version](https://img.shields.io/badge/.NET_Framework-4.6.1-621ee5)
![GitHub](https://img.shields.io/github/license/brunurd/cycles)A strict FSM (Finite-State Machine) architecture implementation.
---
## Core Concept
A FSM where you add states each one with a callback, and this callback has a data type as parameter.
And when you set the state execute the callback sending the data.
Here a illustrative code snippet:
```C#
AddState(/* pass state here... */, (data) => {
// Do something with the data here...
});SetState(/* pass state here... */, /* pass data here... */);
```---
## Why?
OOP (Object Oriented Paradigm) can be painful if you lose the control of the data mutation and of the order which things happen.
My intention with Cycles is turn things easy during the development and in the support of my applications by turning the code more legible and debuggable.
A library for this is not really necessary, but it's help to set a implementation pattern.
---
## Tips
- Avoid to create fields or properties to store data in a Cycle.
- Every Cycle must have at least a state type and a callback.
- Every Cycle with a data type has a data object as input in the state events.---
## Usage example
It's a `Hello World` example without any practical purpose, just to be a simple implementation:```C#
// A state list. It can be any type: enum, string, number, object etc.
public enum State
{
PreLoading,
Executing,
Ending
}// A data to exchange from a state to other.
public struct Data
{
public string name;
}// The cycle class using the state and data declared before.
// The data type is optional, the cycle can be dataless.
public class MyCycle : Cycle
{
// Add your states events in the constructor.
public MyCycle()
{
AddState(State.PreLoading, Preload);
AddState(State.Executing, Execute);
AddState(State.Ending, End);
}// Is a best practice set the first state in a method.
public void Start(string name)
{
SetState(State.PreLoading, new Data { name = name });
}#region Events
private void Preload(Data data)
{
// Do something before load here.SetState(State.Executing, data);
}private void Execute(Data data)
{
Console.WriteLine($"Hello {data.name}!");
SetState(State.Ending, data);
}private void End(Data data)
{
Kill();
}#endregion
}
```