summaryrefslogtreecommitdiffstats
path: root/include/xas/script.h
blob: 102d421966a1f583fb4bc94248800b01c4699ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#ifndef _XAS_SCRIPT_H
#define _XAS_SCRIPT_H

#include <sys/types.h>
#include <sys/time.h>

#include <xas/audio.h>
#include <xas/vox.h>
#include <xas/bank.h>
#include <xas/synth.h>
#include <xas/spatial.h>

enum xas_script_event_type {
    XAS_SCRIPT_EVENT_OFF,
    XAS_SCRIPT_EVENT_ON,
    XAS_SCRIPT_EVENT_SET_POSITION,
    XAS_SCRIPT_EVENT_SET_GAIN,
    XAS_SCRIPT_EVENT_SET_BANK_INDEX,
    XAS_SCRIPT_EVENT_SET_FREQUENCY
};

typedef struct _xas_script_event xas_script_event;

struct _xas_script_event {
    enum xas_script_event_type type;

    xas_spatial_object *object;

    struct timeval timestamp;

    union {
        float gain;
        xas_spatial_coord point;
        size_t index;
        size_t frequency;
    };

    xas_script_event *next;
};

typedef struct _xas_script {
    xas_spatial_scene *scene;

    xas_script_event *first;

    struct timeval timestamp;

    size_t buffer_size,
           current_index;
} xas_script;

xas_script *xas_script_new(xas_spatial_scene *scene, size_t buffer_size);

void xas_script_destroy(xas_script *script);

int xas_script_add_event_off(xas_script *script,
                               xas_spatial_object *object,
                               struct timeval timestamp);

int xas_script_add_event_on(xas_script *script,
                              xas_spatial_object *object,
                              struct timeval timestamp);

int xas_script_add_position_set(xas_script *script,
                                  xas_spatial_object *object,
                                  struct timeval timestamp,
                                  xas_spatial_coord point);

int xas_script_add_gain_set(xas_script *script,
                              xas_spatial_object *object,
                              struct timeval timestamp,
                              float gain);

int xas_script_add_bank_set(xas_script *script,
                              xas_spatial_object *object,
                              struct timeval timestamp,
                              size_t index);

int xas_script_add_frequency_set(xas_script *script,
                                   xas_spatial_object *object,
                                   struct timeval timestamp,
                                   size_t frequency);

int xas_script_play(xas_script *script, xas_audio_stream *sink);

#endif /* _XAS_SCRIPT_H */