cueOS  2.4
cueOS - Universal Show Control OS for ARM
DMX512_engine.c
1/***============================================================================================================================
2 * Depedencies inclusion
3 * Necessary dependencies should be declared here. Header file should contain as little dependecies declarations as possible
4 *=============================================================================================================================*/
5
6#if cueOS_CONFIG_NODETYPE == cueOS_NODETYPE_SLAVE_DMX
7
8#include "cueos_config.h"
9#include <string.h>
10#include <stdlib.h>
11#include <stdio.h>
12#include "cmsis_os.h"
13#include "DMX512_driver.h"
14#include "DMX512_engine.h"
15#include "leds_driver.h"
16#include "QLSF_manager.h"
17
18
19/***============================================================================================================================
20 * Private variables definitions
21 * These variables are only accessible from within the file's scope
22 *=============================================================================================================================*/
23
24static DMX512_engine_s engine;
25static osThreadId_t DMX512engineThread = NULL;
26
27
28/***============================================================================================================================
29 * Private functions definitions
30 * These functions are only accessible from within the file's scope
31 *=============================================================================================================================*/
32
42static void _DMX512_engine_manage(void *arg){
43 for(;;){
47 }
48}
49
50//TODO: add engine reset to clear everything ?
51
52/***============================================================================================================================
53 * Public functions definitions
54 * These functions can be accessed outside of the file's scope
55 * @see DMX512_engine.h for declarations
56 *=============================================================================================================================*/
57
62
63 //TODO: modify pool instances to return value instead of pointer to value since engine is a singleton
64 //and should keep the values safe until it is exited
65
69
70 QLFS_manager_load("show.qlsf");
71
72 if(DMX512_driver_get_status() != DMX512_DRIVER_INITIALISED){
74 }
75
77
78}
79
80//TODO: maybe add a "started state" to prevent recursive calls to start/stop function
81
88 osThreadAttr_t attr = {.stack_size = 2048,.priority = (osPriority_t) osPriorityNormal};
90 DMX512engineThread = osThreadNew(_DMX512_engine_manage, NULL, &attr);
91}
92
98 osThreadTerminate(DMX512engineThread);
99}
100
111DMX512_engine_err_e DMX512_engine_patch_add(uint16_t fixture_id, uint16_t address, uint16_t ch_count){
112 DMX512_fixture_s fixture = DMX512_fixture_new(fixture_id, address, ch_count);
113 return DMX512_fixture_pool_add(engine.fixtures, fixture);
114}
115
125 return DMX512_fixture_pool_get(engine.fixtures, fixture_id, fixture);
126}
127
134 return engine.fixtures;
135}
136
145 return DMX512_fixture_pool_del(engine.fixtures, fixture_id);
146}
147
158DMX512_engine_err_e DMX512_engine_scene_add(uint16_t scene_id, uint16_t fadein_time, uint16_t fadeout_time){
159 DMX512_scene_s scene = DMX512_scene_new(scene_id, fadein_time, fadeout_time);
160 return DMX512_scene_pool_add(engine.scenes, scene);
161}
162
173DMX512_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){
174
175 DMX512_scene_s *scene = NULL;
176 DMX512_fixture_s *fixture = NULL;
177
178 DMX512_fixture_pool_get(engine.fixtures, fixture_id, &fixture);
179 DMX512_scene_pool_get(engine.scenes, scene_id, &scene);
180
181 DMX512_fixture_preset_s preset = DMX512_fixture_preset_new(fixture, channel_count, channels, values);
182
183 return DMX512_scene_add_fixture_preset(scene, preset);
184
185}
186
196 return DMX512_scene_pool_get(engine.scenes, scene_id, scene);
197}
198
205 return engine.scenes;
206}
207
216 return DMX512_fixture_pool_del(engine.fixtures, scene_id);
217}
218
230 DMX512_chaser_s chaser = DMX512_chaser_new(chaser_id, mode, direction);
231 return DMX512_chaser_pool_add(engine.chasers, chaser);
232}
233
243 return DMX512_chaser_pool_get(engine.chasers, chaser_id, chaser);
244}
245
252 return engine.chasers;
253}
254
263 return DMX512_fixture_pool_del(engine.fixtures, chaser_id);
264}
265
270
272
276
278 engine.scenes = DMX512_scene_pool_new();
280
282
283}
284
285#endif
DMX512_engine_err_e DMX512_chaser_pool_add(DMX512_chaser_pool_s *chaser_pool, DMX512_chaser_s chaser)
Adds a chaser instance into the pool.
DMX512_engine_err_e DMX512_chaser_pool_get(DMX512_chaser_pool_s *chaser_pool, uint16_t id, DMX512_chaser_s **chaser)
Gets a chaser instance from the pool.
DMX512_chaser_pool_s * DMX512_chaser_pool_new(void)
Creates a new chaser pool instance.
void DMX512_chaser_pool_free(DMX512_chaser_pool_s *chaser_pool)
Frees instance pool.
void DMX512_chaser_pool_manage(DMX512_chaser_pool_s *chaser_pool)
Manages execution of chaser instances for a whole pool.
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
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_driver_status_e DMX512_driver_get_status(void)
Returns the status of the DMX512 driver.
DMX512_driver_err_e DMX512_driver_start(void)
Starts the DMX512 driver thread.
void DMX512_driver_init(void)
Initialises DMX512 driver periphals.
DMX512_driver_err_e DMX512_driver_stop(void)
Terminates the DMX512 driver thread.
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...
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)
#define DMX512_ENGINE_THREAD_DELAY
Definition: DMX512_engine.h:32
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_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_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...
void DMX512_fixture_pool_free(DMX512_fixture_pool_s *fixture_pool)
Frees instance pool.
DMX512_engine_err_e DMX512_fixture_pool_del(DMX512_fixture_pool_s *this, uint16_t id)
Deletes a fixture instance from the pool.
DMX512_fixture_pool_s * DMX512_fixture_pool_new(void)
Creates a new fixture pool instance.
DMX512_engine_err_e DMX512_fixture_pool_add(DMX512_fixture_pool_s *this, DMX512_fixture_s fixture)
Adds a fixture instance into the pool.
DMX512_engine_err_e DMX512_fixture_pool_get(DMX512_fixture_pool_s *this, uint16_t id, DMX512_fixture_s **fixture)
Gets a fixture instance from the pool.
DMX512_fixture_preset_s DMX512_fixture_preset_new(DMX512_fixture_s *fixture, uint16_t channel_count, uint16_t *channels, uint8_t *values)
Creates a new scene fixture preset instance.
DMX512_fixture_s DMX512_fixture_new(uint16_t id, uint16_t addr, uint16_t ch_count)
Creates a new scene fixture instance.
void DMX512_scene_pool_manage(DMX512_scene_pool_s *scene_pool)
Manages all scenes contained within the pool.
void DMX512_scene_pool_free(DMX512_scene_pool_s *scene_pool)
Safely Frees instance pool.
DMX512_engine_err_e DMX512_scene_pool_get(DMX512_scene_pool_s *scene_pool, uint16_t id, DMX512_scene_s **scene)
Gets a scene instance from the pool.
DMX512_engine_err_e DMX512_scene_pool_add(DMX512_scene_pool_s *scene_pool, DMX512_scene_s scene)
Adds a scene instance into the pool.
DMX512_scene_pool_s * DMX512_scene_pool_new(void)
Creates a new scene pool instance.
DMX512_scene_s DMX512_scene_new(uint16_t id, uint16_t fadein_time, uint16_t fadeout_time)
Creates and initialises a new scene instance.
Definition: DMX512_scene.c:96
DMX512_engine_err_e DMX512_scene_add_fixture_preset(DMX512_scene_s *scene, DMX512_fixture_preset_s fp)
Adds a fixture preset instance into the scene.
Definition: DMX512_scene.c:112
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 preset structure object.
DMX512 fixture structure object.
DMX512 scene pool structure object.
DMX512 scene structure object.
Definition: DMX512_scene.h:54