summaryrefslogtreecommitdiffstats
path: root/src/script.c
blob: 8c58f7f6cb9572f844c40d6e18312613d9350d1e (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#include <stdlib.h>
#include <string.h>

#include <xas/script.h>

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

    if ((script = malloc(sizeof(*script))) == NULL) {
        goto error_malloc_script;
    }

    script->scene = scene;
    script->first = NULL;

    timerclear(&script->timestamp);

    script->buffer_size   = buffer_size;
    script->current_index = 0;

    return script;

error_malloc_script:
    return NULL;
}

void xas_script_destroy(xas_script *script) {
    xas_script_event *event = script->first;

    while (event) {
        xas_script_event *next = event->next;

        free(event);

        event = next;
    }

    free(script);
}

static void add_event(xas_script *script, xas_script_event *ev) {
    xas_script_event *current = script->first;

    if (script->first == NULL) {
        script->first = ev;

        return;
    }

    while (current) {
        xas_script_event *next = current->next;

        if (next == NULL) {
            current->next = ev;

            return;
        }

        if (!timercmp(&current->timestamp, &ev->timestamp,   <)
         &&  timercmp(&current->timestamp, &next->timestamp, <)) {
            current->next = ev;
            ev->next      = next;

            return;
        }

        current = next;
    }
}

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

    if ((ev = malloc(sizeof(*ev))) == NULL) {
        goto error_malloc_ev;
    }

    ev->type      = XAS_SCRIPT_EVENT_OFF;
    ev->object    = object;
    ev->timestamp = timestamp;
    ev->next      = NULL;

    add_event(script, ev);

    return 0;

error_malloc_ev:
    return -1;
}

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

    if ((ev = malloc(sizeof(*ev))) == NULL) {
        goto error_malloc_ev;
    }

    ev->type      = XAS_SCRIPT_EVENT_ON;
    ev->object    = object;
    ev->timestamp = timestamp;
    ev->next      = NULL;

    add_event(script, ev);

    return 0;

error_malloc_ev:
    return -1;
}

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

    if ((ev = malloc(sizeof(*ev))) == NULL) {
        goto error_malloc_ev;
    }

    ev->type      = XAS_SCRIPT_EVENT_SET_POSITION;
    ev->object    = object;
    ev->timestamp = timestamp;
    ev->point     = point;
    ev->next      = NULL;

    add_event(script, ev);

    return 0;

error_malloc_ev:
    return -1;
}

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

    if ((ev = malloc(sizeof(*ev))) == NULL) {
        goto error_malloc_ev;
    }

    ev->type      = XAS_SCRIPT_EVENT_ON;
    ev->object    = object;
    ev->timestamp = timestamp;
    ev->gain      = gain;
    ev->next      = NULL;

    add_event(script, ev);

    return 0;

error_malloc_ev:
    return -1;
}

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

    if ((ev = malloc(sizeof(*ev))) == NULL) {
        goto error_malloc_ev;
    }

    ev->type      = XAS_SCRIPT_EVENT_SET_BANK_INDEX;
    ev->object    = object;
    ev->timestamp = timestamp;
    ev->next      = NULL;
    ev->index     = index;

    add_event(script, ev);

    return 0;

error_malloc_ev:
    return -1;
}

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

    if ((ev = malloc(sizeof(*ev))) == NULL) {
        goto error_malloc_ev;
    }

    ev->type      = XAS_SCRIPT_EVENT_SET_FREQUENCY;
    ev->object    = object;
    ev->timestamp = timestamp;
    ev->next      = NULL;
    ev->frequency = frequency;

    add_event(script, ev);

    return 0;

error_malloc_ev:
    return -1;
}

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