Cycles 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Cycles --version 1.0.0
NuGet\Install-Package Cycles -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cycles" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cycles --version 1.0.0
#r "nuget: Cycles, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cycles as a Cake Addin
#addin nuget:?package=Cycles&version=1.0.0

// Install Cycles as a Cake Tool
#tool nuget:?package=Cycles&version=1.0.0

Cycles

A strict FSM (Finite-State Machine) architecture implementation.

License: MIT


What is a Cycle?

A generic FSM class:

Cycle<StateType, DataType>

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.


Rules

  • Don't create fields or properties in a Cycle.
  • Must have a state type.
  • Every state of the Cycle must have a function.
  • Every Cycle with a data type has a data object as input in the state events.
  • A data must be related to just one Cycle.

Inspirations


Usage example

It's a Hello World example without any practical purpose, just to be a simple implementation:

// 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<State, Data>
{
    // 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
}
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 497 6/26/2020
1.0.1 618 7/1/2019
1.0.0 565 5/28/2019

Package distribution.