Coroutine 2.1.2-54

The Coroutine logo

Coroutine is a simple implementation of Unity's Coroutines to be used for any C# project

Features

Coroutine adds the ability to run coroutines. Coroutines are methods that run in parallel to the rest of the application through the use of an Enumerator. This allows for the coroutine to pause execution using the yield return statement.

There are two predefined ways to pause a coroutine:

  • Waiting for a certain amount of seconds to have passed
  • Waiting for a certain custom event to occur

Additionally, Coroutine provides the following features:

  • Creation of custom events to wait for
  • Creation of custom wait conditions
  • No multi-threading, which allows for any kind of process to be executed in a coroutine, including rendering

How to Use

Setting up the CoroutineHandler

The CoroutineHandler is the place where coroutines get executed. For this to occur, the Tick method needs to be called continuously. The Tick method takes a single parameter which represents the amount of time since the last time it was called. It can either be called in your application's existing update loop or as follows.

var lastTime = DateTime.Now;
while (true) {
    var currTime = DateTime.Now;
    CoroutineHandler.Tick(currTime - lastTime);
    lastTime = currTime;
    Thread.Sleep(1);
}

Creating a Coroutine

To create a coroutine, simply create a method with the return type IEnumerator<Wait>. Then, you can use yield return to cause the coroutine to wait at any point:

private static IEnumerator<Wait> WaitSeconds() {
    Console.WriteLine("First thing " + DateTime.Now);
    yield return new Wait(1);
    Console.WriteLine("After 1 second " + DateTime.Now);
    yield return new Wait(5);
    Console.WriteLine("After 5 seconds " + DateTime.Now);
    yield return new Wait(10);
    Console.WriteLine("After 10 seconds " + DateTime.Now);
}

Starting a Coroutine

To start a coroutine, simply call Start:

CoroutineHandler.Start(WaitSeconds());

Using Events

To use an event, an Event instance first needs to be created. When not overriding any equality operators, only a single instance of each event should be used.

private static readonly Event TestEvent = new Event();

Waiting for an event in a coroutine works as follows:

private static IEnumerator<Wait> WaitForTestEvent() {
    yield return new Wait(TestEvent);
    Console.WriteLine("Test event received");
}

Of course, having time-based waits and event-based waits in the same coroutine is also supported.

To actually cause the event to be raised, causing all currently waiting coroutines to be continued, simply call RaiseEvent:

CoroutineHandler.RaiseEvent(TestEvent);

Additional Examples

For additional examples, take a look at the Example class.

Showing the top 20 packages that depend on Coroutine.

Packages Downloads
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
41
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
42
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
43
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
46
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
48
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
49
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
50
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
76
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
77
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
96
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
111
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
145
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
167
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
188
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
195
MLEM.Startup
MLEM Library for Extending MonoGame combined with some other useful libraries into a quick Game startup class
781
MLEM.Startup.FNA
MLEM Library for Extending FNA combined with some other useful libraries into a quick Game startup class
41
MLEM.Startup.FNA
MLEM Library for Extending FNA combined with some other useful libraries into a quick Game startup class
44
MLEM.Startup.FNA
MLEM Library for Extending FNA combined with some other useful libraries into a quick Game startup class
47

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
2.1.5-65 27 02/23/2023
2.1.4-64 19 02/23/2023
2.1.4-63 28 02/23/2023
2.1.4-62 36 10/31/2022
2.1.4-61 23 10/22/2022
2.1.4-60 27 10/22/2022
2.1.4-59 17 10/22/2022
2.1.4-58 31 09/14/2022
2.1.3-57 24 09/14/2022
2.1.3-56 83 12/29/2021
2.1.2-55 54 12/29/2021
2.1.2-54 58 12/29/2021
2.1.2-53 52 12/29/2021
2.1.1-51 72 12/29/2021
2.1.1-3 65 12/29/2021
2.1.1-2 57 12/29/2021
2.1.0-52 57 12/29/2021
2.1.0-50 57 12/29/2021
2.1.0-48 57 12/29/2021
2.0.2-47 61 12/29/2021
2.0.2-46 57 12/29/2021
2.0.2-45 51 12/29/2021
2.0.2-44 63 12/29/2021
2.0.2-43 63 12/29/2021
2.0.2-39 50 12/29/2021
2.0.2-38 55 12/29/2021
2.0.2-37 54 12/29/2021
2.0.2-36 51 12/29/2021
2.0.2-35 47 12/29/2021
2.0.2-34 46 12/29/2021
2.0.2-33 55 12/29/2021
2.0.2-32 58 12/29/2021
2.0.2-31 58 12/29/2021
2.0.2-30 60 12/29/2021
2.0.1-29 53 12/29/2021
2.0.1-28 62 12/29/2021
2.0.1-27 51 12/29/2021
2.0.1-26 63 12/29/2021
2.0.1-25 59 12/29/2021
2.0.1-24 58 12/29/2021
2.0.1-23 49 12/29/2021
2.0.1-22 65 12/29/2021
2.0.1-21 52 12/29/2021
2.0.1-2 47 12/29/2021
2.0.1-1 54 12/29/2021
2.0.0-20 61 12/29/2021
2.0.0-18 49 12/29/2021
1.0.4-17 52 12/29/2021
1.0.4-15 51 12/29/2021
1.0.4-14 55 12/29/2021
1.0.3-13 53 12/29/2021
1.0.3-12 61 12/29/2021
1.0.3-11 50 12/29/2021
1.0.3-10 62 12/29/2021
1.0.3-9 63 12/29/2021
1.0.3-8 61 12/29/2021
1.0.3-7 57 12/29/2021
1.0.3-6 50 12/29/2021
1.0.2-5 62 12/29/2021