cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_engine.h
1
11#ifndef DMX512_engine_H
12#define DMX512_engine_H
13
14#include <stdint.h>
15#include "fs.h"
16#include "DMX512_chaser_pool.h"
17#include "DMX512_defs.h"
18#include "DMX512_fixture_pool.h"
19#include "DMX512_scene_pool.h"
20
21
22//TODO: move these in a separate file, Project manager for example ?
23
24
25#define DMX512_ENGINE_CONFIG_HEADER_SIZE 0x03U
26#define DMX512_ENGINE_CONFIG_PATCH_DATA_SIZE 0x03U
27#define DMX512_ENGINE_CONFIG_SCENE_HEADER_SIZE 0x02U
28#define DMX512_ENGINE_CONFIG_FIXTURE_PRESET_HEADER_SIZE 0x02U
29#define DMX512_ENGINE_CONFIG_CHASER_HEADER_SIZE 0x04U
30#define DMX512_ENGINE_CONFIG_FILE_EXT ".qlsf"
31#define DMX512_ENGINE_CONFIG_TEMP_FILE_EXT ".tmp"
32#define DMX512_ENGINE_THREAD_DELAY 30
41typedef enum{
42
48
55typedef enum{
60
67typedef enum{
71
78typedef enum{
82
89typedef enum{
95
102typedef enum{
108
109
113typedef struct{
118
119
120void DMX512_engine_init(void);
121void DMX512_engine_start(void);
122void DMX512_engine_stop(void);
123void DMX512_engine_reset(void);
124
125DMX512_engine_err_e DMX512_engine_patch_add(uint16_t fixture_id, uint16_t address, uint16_t ch_count);
126DMX512_engine_err_e DMX512_engine_patch_get(uint16_t fixture_id, DMX512_fixture_s **fixture);
129
130DMX512_engine_err_e DMX512_engine_scene_add(uint16_t scene_id, uint16_t fadein_time, uint16_t fadeout_time);
131DMX512_engine_err_e DMX512_engine_scene_add_preset(uint16_t scene_id, uint16_t fixture_id, uint16_t channel_count, uint16_t *channels, uint8_t *values);
135
140
141#endif
142
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_engine_err_e
DMX512 engine error index constants.
Definition: DMX512_defs.h:24
DMX512_engine_err_e DMX512_engine_scene_add_preset(uint16_t scene_id, uint16_t fixture_id, uint16_t channel_count, uint16_t *channels, uint8_t *values)
Wrapper for "DMX512_scene_pool_add" function. Provides context to the specified function using DMX512...
DMX512_engine_config_fixture_preset_byte_indexes_e
QLSF fixture preset chunk byte indexes.
Definition: DMX512_engine.h:78
DMX512_engine_config_patch_chunk_byte_indexes_e
QLSF patch chunk byte indexes.
Definition: DMX512_engine.h:55
void DMX512_engine_start(void)
Starts the DMX512 driver and launches the DMX512 engine management thread.
Definition: DMX512_engine.c:87
DMX512_engine_err_e DMX512_engine_scene_get(uint16_t scene_id, DMX512_scene_s **scene)
Wrapper for "DMX512_scene_pool_get" function. Provides context to the specified function using DMX512...
DMX512_engine_err_e DMX512_engine_patch_add(uint16_t fixture_id, uint16_t address, uint16_t ch_count)
Wrapper for "DMX512_fixture_pool_add" function. Provides context to the specified function using DMX5...
DMX512_engine_err_e DMX512_engine_chaser_get(uint16_t chaser_id, DMX512_chaser_s **chaser)
Wrapper for "DMX512_chaser_pool_get" function. Provides context to the specified function using DMX51...
DMX512_engine_err_e DMX512_engine_patch_get(uint16_t fixture_id, DMX512_fixture_s **fixture)
Wrapper for "DMX512_fixture_pool_get" function. Provides context to the specified function using DMX5...
void DMX512_engine_reset(void)
DMX512_engine_err_e DMX512_engine_scene_add(uint16_t scene_id, uint16_t fadein_time, uint16_t fadeout_time)
Wrapper for "DMX512_scene_pool_add" function. Provides context to the specified function using DMX512...
DMX512_engine_err_e DMX512_engine_chaser_add(uint16_t chaser_id, DMX512_chaser_mode_e mode, DMX512_chaser_direction_e direction)
Wrapper for "DMX512_chaser_pool_add" function. Provides context to the specified function using DMX51...
DMX512_engine_config_chaser_step_byte_indexes_e
QLSF chaser step chunk byte indexes.
DMX512_engine_config_chaser_byte_indexes_e
QLSF chaser chunk byte indexes.
Definition: DMX512_engine.h:89
DMX512_fixture_pool_s * DMX512_engine_patch_get_all(void)
Returns the current engine fixture patch.
DMX512_engine_err_e DMX512_engine_scene_delete(uint16_t scene_id)
Wrapper for "DMX512_scene_pool_del" function. Provides context to the specified function using DMX512...
void DMX512_engine_init(void)
Initialises the DMX512 engine singleton.
Definition: DMX512_engine.c:61
DMX512_scene_pool_s * DMX512_engine_scene_get_all(void)
Returns the current engine scenes.
DMX512_chaser_pool_s * DMX512_engine_chaser_get_all(void)
Returns the current engine chasers.
void DMX512_engine_stop(void)
Stops the DMX512 driver and terminates the DMX512 engine management thread.
Definition: DMX512_engine.c:96
DMX512_engine_config_header_byte_indexes_e
QLSF header byte indexes.
Definition: DMX512_engine.h:41
DMX512_engine_config_scene_byte_indexes_e
QLSF scene chunk byte indexes.
Definition: DMX512_engine.h:67
DMX512_engine_err_e DMX512_engine_patch_delete(uint16_t fixture_id)
Wrapper for "DMX512_fixture_pool_del" function. Provides context to the specified function using DMX5...
DMX512_engine_err_e DMX512_engine_chaser_delete(uint16_t chaser_id)
Wrapper for "DMX512_chaser_pool_del" function. Provides context to the specified function using DMX51...
@ DMX512_ENGINE_CONFIG_FIXTURE_PRESET_CHANNEL_CNT_INDEX
Definition: DMX512_engine.h:80
@ DMX512_ENGINE_CONFIG_FIXTURE_PRESET_ID_INDEX
Definition: DMX512_engine.h:79
@ DMX512_ENGINE_CONFIG_PATCH_CHUNK_ADDR_INDEX
Definition: DMX512_engine.h:57
@ DMX512_ENGINE_CONFIG_PATCH_CHUNK_ID_INDEX
Definition: DMX512_engine.h:56
@ DMX512_ENGINE_CONFIG_PATCH_CHUNK_CHN_INDEX
Definition: DMX512_engine.h:58
@ DMX512_ENGINE_CONFIG_STEP_FADEIN_INDEX
@ DMX512_ENGINE_CONFIG_STEP_ID_INDEX
@ DMX512_ENGINE_CONFIG_STEP_HOLD_INDEX
@ DMX512_ENGINE_CONFIG_STEP_FADEOUT_INDEX
@ DMX512_ENGINE_CONFIG_CHASER_STEP_COUNT_INDEX
Definition: DMX512_engine.h:93
@ DMX512_ENGINE_CONFIG_CHASER_ID_INDEX
Definition: DMX512_engine.h:90
@ DMX512_ENGINE_CONFIG_CHASER_DIR_MODE_INDEX
Definition: DMX512_engine.h:91
@ DMX512_ENGINE_CONFIG_CHASER_RUN_MODE_INDEX
Definition: DMX512_engine.h:92
@ DMX512_ENGINE_CONFIG_HEADER_SCENE_CNT_INDEX
Definition: DMX512_engine.h:44
@ DMX512_ENGINE_CONFIG_HEADER_EFFEX_CNT_INDEX
Definition: DMX512_engine.h:46
@ DMX512_ENGINE_CONFIG_HEADER_CHASE_CNT_INDEX
Definition: DMX512_engine.h:45
@ DMX512_ENGINE_CONFIG_HEADER_PATCH_CNT_INDEX
Definition: DMX512_engine.h:43
@ DMX512_ENGINE_CONFIG_SCENE_ID_INDEX
Definition: DMX512_engine.h:68
@ DMX512_ENGINE_CONFIG_SCENE_FIXTURE_PRESET_CNT_INDEX
Definition: DMX512_engine.h:69
Defines a DMX512 chaser pool object.
DMX512 chaser structure object.
Definition: DMX512_chaser.h:88
Defines a DMX512 engine instance.
DMX512_chaser_pool_s * chasers
DMX512_fixture_pool_s * fixtures
DMX512_scene_pool_s * scenes
DMX512 fixture pool structure object.
DMX512 fixture structure object.
DMX512 scene pool structure object.
DMX512 scene structure object.
Definition: DMX512_scene.h:54