cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_chaser.h
1
11#ifndef DMX512_CHASER_H
12#define DMX512_CHASER_H
13
14#include <stdint.h>
15#include <stdlib.h>
16#include <string.h>
17#include "DMX512_chaser_step.h"
18#include "DMX512_defs.h"
19
20
27#define DMX512_CHASER_DEFAULT {0, NULL, DMX512_CHASER_MODE_LOOP, DMX512_CHASER_DIRECTION_FORWARD, 0, 0, DMX512_CHASER_IDLE, DMX512_CHASER_UNINITIALISED, DMX512_CHASER_PINGPONG_PING}
28
29
35typedef enum{
39
45typedef enum{
49
55typedef enum{
61
68typedef enum{
72
79typedef enum{
83
84
88typedef struct{
89 uint16_t id;
93 uint16_t step_count;
94 uint16_t current_step;
99
100
107
108#endif
109
DMX512_chaser_state_e
Current playing state of a chaser.
Definition: DMX512_chaser.h:79
DMX512_engine_err_e DMX512_chaser_del_step(DMX512_chaser_s *chaser, uint16_t id)
Deletes a fixture preset instance from the chaser.
DMX512_chaser_pingpong_state_e
Current pingpong state.
Definition: DMX512_chaser.h:68
DMX512_chaser_status_e
Status of a chaser instance.
Definition: DMX512_chaser.h:35
void DMX512_chaser_start(DMX512_chaser_s *chaser)
Starts a scene fade-in process.
DMX512_engine_err_e DMX512_chaser_add_step(DMX512_chaser_s *chaser, DMX512_chaser_step_s step)
Adds a scene preset instance into the chaser.
DMX512_chaser_s DMX512_chaser_new(uint16_t id, DMX512_chaser_mode_e mode, DMX512_chaser_direction_e direction)
Creates and initialises a new chaser instance.
Definition: DMX512_chaser.c:92
void DMX512_chaser_manage(DMX512_chaser_s *chaser)
Handles step selection and trigger over time.
DMX512_chaser_step_s * DMX512_chaser_get_step(DMX512_chaser_s *chaser, uint16_t id)
Gets a fixture instance from the pool.
DMX512_chaser_mode_e
Playing mode of a chsaer.
Definition: DMX512_chaser.h:45
DMX512_chaser_direction_e
Playing direction of a chaser.
Definition: DMX512_chaser.h:55
@ DMX512_CHASER_IDLE
Definition: DMX512_chaser.h:81
@ DMX512_CHASER_PLAYING
Definition: DMX512_chaser.h:80
@ DMX512_CHASER_PINGPONG_PING
Definition: DMX512_chaser.h:69
@ DMX512_CHASER_PINGPONG_PONG
Definition: DMX512_chaser.h:70
@ DMX512_CHASER_INITIALISED
Definition: DMX512_chaser.h:37
@ DMX512_CHASER_UNINITIALISED
Definition: DMX512_chaser.h:36
@ DMX512_CHASER_MODE_LOOP
Definition: DMX512_chaser.h:46
@ DMX512_CHASER_MODE_SINGLE_SHOT
Definition: DMX512_chaser.h:47
@ DMX512_CHASER_DIRECTION_BACKWARD
Definition: DMX512_chaser.h:57
@ DMX512_CHASER_DIRECTION_PINGPONG
Definition: DMX512_chaser.h:58
@ DMX512_CHASER_DIRECTION_FORWARD
Definition: DMX512_chaser.h:56
@ DMX512_CHASER_DIRECTION_RANDOM
Definition: DMX512_chaser.h:59
DMX512_engine_err_e
DMX512 engine error index constants.
Definition: DMX512_defs.h:24
DMX512 chaser structure object.
Definition: DMX512_chaser.h:88
DMX512_chaser_pingpong_state_e pingpong
Definition: DMX512_chaser.h:97
uint16_t step_count
Definition: DMX512_chaser.h:93
DMX512_chaser_status_e status
Definition: DMX512_chaser.h:96
DMX512_chaser_mode_e mode
Definition: DMX512_chaser.h:91
uint16_t current_step
Definition: DMX512_chaser.h:94
DMX512_chaser_direction_e direction
Definition: DMX512_chaser.h:92
DMX512_chaser_step_s * steps
Definition: DMX512_chaser.h:90
DMX512_chaser_state_e state
Definition: DMX512_chaser.h:95
DMX512 chaser step structure object.