source: roaraudio/roard/midi.c @ 5305:80ba5004e4e7

Last change on this file since 5305:80ba5004e4e7 was 5305:80ba5004e4e7, checked in by phi, 12 years ago

some improvements with buffer usage (See: #126)

File size: 23.1 KB
Line 
1//midi.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include "roard.h"
27
28#ifndef ROAR_WITHOUT_DCOMP_MIDI
29
30// declared 'extern'
31struct midi_config midi_config;
32struct midi_state_mess g_midi_mess;
33#ifndef ROAR_WITHOUT_DCOMP_CB
34struct midi_state_cb g_midi_cb;
35#endif
36struct midi_clock g_midi_clock;
37struct midi_mixer g_midi_mixer;
38// //
39
40#if defined(ROAR_HAVE_IO_POSIX) && !defined(ROAR_TARGET_WIN32)
41#define _HAVE_CONSOLE
42#endif
43
44int midi_init_config(void) {
45 midi_config.init        = 1;
46 midi_config.inited      = 0;
47
48#ifndef ROAR_WITHOUT_DCOMP_CB
49 midi_config.init_cb     = 0;
50 midi_config.console_dev = NULL;
51#endif
52
53 return 0;
54}
55
56int midi_init (void) {
57 struct roar_stream_server * ss;
58 char cmap[16];
59 int i;
60
61 midi_config.inited = 0;
62
63 if ( midi_config.init ) {
64#ifndef ROAR_WITHOUT_DCOMP_CB
65  if ( midi_config.init_cb ) {
66   if ( midi_cb_init() == -1 ) {
67    ROAR_WARN("Can not initialize MIDI subsystem component CB");
68   }
69  } else {
70   g_midi_cb.console = -1;
71  }
72#endif
73
74  if ( midi_clock_init() == -1 ) {
75   ROAR_WARN("Can not initialize MIDI subsystem component clock");
76  }
77
78 }
79
80 g_midi_mess.buf = NULL;
81
82 if ( (g_midi_mixer.stream = add_mixer(ROAR_SUBSYS_MIDI, _MIXER_NAME("MIDI"), &ss)) == -1 ) {
83  ROAR_WARN("Can not create MIDI mixer");
84 }
85
86 roardsp_chanlist_init(cmap,   16, ROARDSP_CHANLIST_MAP_MIDI);
87 streams_set_map(g_midi_mixer.stream, cmap, 16);
88
89 ss->state = ROAR_STREAMSTATE_OLD;
90
91 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
92  if ( g_streams[i] != NULL ) {
93   if ( streams_get_subsys(i) == ROAR_SUBSYS_MIDI ) {
94    streams_set_mixer_stream(i, g_midi_mixer.stream);
95   }
96  }
97 }
98
99 midi_config.inited |= MIDI_INITED_MAIN;
100
101 return 0;
102}
103
104int midi_free (void) {
105 if ( midi_reinit() == -1 )
106  return -1;
107
108#ifndef ROAR_WITHOUT_DCOMP_CB
109 if ( midi_cb_free() == -1 )
110  return -1;
111#endif
112
113 return 0;
114}
115
116int midi_update(void) {
117
118 if ( g_midi_clock.stream != -1 )
119  midi_check_bridge(g_midi_clock.stream);
120
121#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
122 midi_conv_mes2ssynth();
123#endif
124
125#ifndef ROAR_WITHOUT_DCOMP_CB
126 return midi_cb_update();
127#else
128 return 0;
129#endif
130}
131
132int midi_reinit(void) {
133
134 if ( g_midi_mess.buf != NULL )
135  roar_buffer_free(g_midi_mess.buf);
136
137 g_midi_mess.buf = NULL;
138
139 return 0;
140}
141
142// STREAMS:
143
144int midi_check_stream  (int id) {
145 struct roar_stream        *   s;
146 struct roar_stream_server *  ss;
147 struct roar_buffer        *   b;
148 void                      * buf;
149 ssize_t                     len;
150
151 if ( g_streams[id] == NULL )
152  return -1;
153
154 ROAR_DBG("midi_check_stream(id=%i) = ?", id);
155
156 s = ROAR_STREAM(ss = g_streams[id]);
157
158 if ( s->dir == ROAR_DIR_BRIDGE )
159  return midi_check_bridge(id);
160
161 switch (s->info.codec) {
162  case ROAR_CODEC_MIDI:
163   break;
164  default:
165    streams_delete(id);
166    return -1;
167 }
168
169 if ( roar_buffer_new_data(&b, MIDI_READ_SIZE, &buf) == -1 ) {
170  ROAR_ERR("midi_check_stream(id=%i): Can not alloc buffer space!", id);
171  ROAR_DBG("midi_check_stream(id=%i) = -1", id);
172  return -1;
173 }
174
175 if ( (len = stream_vio_s_read(ss, buf, MIDI_READ_SIZE)) < 1 ) {
176  streams_delete(id);
177  roar_buffer_free(b);
178  return -1;
179 }
180
181 if ( roar_buffer_set_len(b, len) == -1 ) {
182  ROAR_WARN("midi_check_stream(id=%i): Can not set buffer size. BAD.", id);
183  roar_buffer_free(b);
184  streams_delete(id);
185  return -1;
186 }
187
188 if ( stream_add_buffer(id, &b) == -1 ) {
189  roar_buffer_free(b);
190  streams_delete(id);
191  return -1;
192 }
193
194 switch (s->info.codec) {
195  case ROAR_CODEC_MIDI:
196    return midi_conv_midi2mes(id);
197   break;
198  default:
199    streams_delete(id);
200    return -1;
201 }
202
203 ROAR_DBG("midi_check_stream(id=%i) = 0", id);
204 return 0;
205}
206
207int midi_send_stream   (int id) {
208 struct roar_stream        *   s;
209 struct roar_stream_server *  ss;
210
211 if ( g_streams[id] == NULL )
212  return -1;
213
214 ROAR_DBG("midi_send_stream(id=%i) = ?", id);
215
216 s = ROAR_STREAM(ss = g_streams[id]);
217
218 switch (s->info.codec) {
219  case ROAR_CODEC_MIDI:
220    return midi_conv_mes2midi(id);
221   break;
222  default:
223    streams_delete(id);
224    return -1;
225 }
226
227 return 0;
228}
229
230#if 1
231static int _cache_to_mes(struct midi_message * mes, unsigned char * data, size_t len,
232                         int id, struct roar_stream_server * ss) {
233 unsigned char type = *data;
234
235 ROAR_DBG("_cache_to_mes(*): type=0x%.2X", (unsigned int)type);
236
237 if (type == MIDI_TYPE_CLOCK_TICK || type == MIDI_TYPE_CLOCK_START || type == MIDI_TYPE_CLOCK_STOP ) {
238  if ( len != 1 )
239   return -1;
240
241  mes->type = type;
242
243  if ( type == MIDI_TYPE_CLOCK_TICK ) {
244// TODO:
245   ROAR_STREAM(ss)->pos = ROAR_MATH_OVERFLOW_ADD(ROAR_STREAM(ss)->pos, 1);
246  }
247 } else {
248  mes->type    = type & 0xF0;
249  mes->channel = type & 0x0F;
250
251  switch (mes->type) {
252   case MIDI_TYPE_NOTE_ON:
253   case MIDI_TYPE_NOTE_OFF:
254     if ( len != 3 )
255      return -1;
256     roar_midi_note_from_midiid(&(mes->d.note), data[1]);
257
258     // if velocity is zero we have a NOTE OFF event
259     if ( data[2] == 0 )
260      mes->type = MIDI_TYPE_NOTE_OFF;
261   case MIDI_TYPE_PA:
262   case MIDI_TYPE_CONTROLER:
263     mes->kk = data[1];
264     mes->vv = data[2];
265    break;
266   case MIDI_TYPE_PROGRAM:
267   case MIDI_TYPE_MA:
268     if ( len != 2 )
269      return -1;
270     mes->vv = data[1];
271    break;
272   case MIDI_TYPE_PB:
273   case MIDI_TYPE_SYSEX:
274     ROAR_WARN("_cache_to_mes(id=%i): Message of Type 0x%.2X (PB or SysEx) not yet supported", id, (unsigned int)type);
275     return -1;
276    break;
277  }
278 }
279
280 switch (mes->type) {
281  case MIDI_TYPE_CONTROLER:
282    switch (mes->kk) {
283     case MIDI_CCE_MAIN_VOL:
284       if ( (516U * (unsigned int)mes->vv) > 65100 ) { // max volume
285        ss->mixer.mixer[mes->channel] = 65535;
286       } else {
287        ss->mixer.mixer[mes->channel] = 516 * mes->vv;
288       }
289      break;
290    }
291   break;
292 }
293
294 ROAR_DBG("_cache_to_mes(*) = 0");
295 return 0;
296}
297
298int midi_conv_midi2mes (int id) {
299 struct roar_stream        *   s;
300 struct roar_stream_server *  ss;
301 size_t have;
302 void * bufdata;
303 unsigned char * data;
304 unsigned char   cache[3];
305 size_t cachepos = 0;
306 int sync = 1;
307 struct roar_buffer        * buf = NULL;
308 struct midi_message       * mes = NULL;
309
310 if ( g_streams[id] == NULL )
311  return -1;
312
313 ROAR_DBG("midi_conv_midi2mes(id=%i) = ?", id);
314
315 s = ROAR_STREAM(ss = g_streams[id]);
316
317 while (ss->buffer != NULL) {
318  if ( roar_buffer_get_len(ss->buffer, &have) == -1 )
319   return -1;
320  if ( roar_buffer_get_data(ss->buffer, &bufdata) == -1 )
321   return -1;
322  data = bufdata;
323
324  while (have) {
325   if ( !sync ) {
326    if ( *data & 0x80 ) {
327     cachepos = 0;
328     sync = 1;
329    } else {
330     data++;
331     have--;
332     continue;
333    }
334   }
335
336   if ( (*data & 0x80) && cachepos != 0 ) {
337    // submit cache.
338
339    if ( midi_new_bufmes(&buf, &mes) == -1 ) {
340     // this is bad.
341     // TODO: handle better.
342     return -1;
343    }
344
345    if ( _cache_to_mes(mes, cache, cachepos, id, ss) == -1 ) {
346     ROAR_WARN("midi_conv_midi2mes(id=%i): Message can not be parsed.", id);
347     roar_buffer_free(buf);
348    } else {
349     midi_add_buf(id, &buf); // FIXME: don't we need error handling here?
350    }
351
352    cachepos = 0;
353   } else if ( cachepos == sizeof(cache) ) {
354    // lost sync.
355    sync = 0;
356    continue;
357   }
358
359   ROAR_DBG("midi_conv_midi2mes(id=%i): cache[%u] = 0x%.2X", id, (unsigned int)cachepos, (unsigned int)*data);
360   cache[cachepos++] = *data;
361   data++;
362   have--;
363  }
364
365  if ( roar_buffer_next(&(ss->buffer)) == -1 ) {
366   ROAR_WARN("midi_conv_midi2mes(id=%i): Can not move to next buffer segment. BAD.", id);
367   break;
368  }
369 }
370
371 if ( cachepos ) {
372  if ( midi_new_bufmes(&buf, &mes) == -1 ) {
373   // this is bad.
374   // TODO: handle better.
375   return -1;
376  }
377
378  if ( _cache_to_mes(mes, cache, cachepos, id, ss) == -1 ) {
379   roar_buffer_free(buf);
380  } else {
381   midi_add_buf(id, &buf); // FIXME: don't we need error handling here?
382   cachepos = 0;
383  }
384 }
385
386 if ( cachepos ) {
387  if ( roar_buffer_new_data(&buf, cachepos, &bufdata) == -1 )
388   return -1;
389
390  memcpy(bufdata, cache, cachepos);
391
392  ss->buffer = buf;
393 }
394
395 return 0;
396}
397#else
398int midi_conv_midi2mes (int id) {
399 void          * bufdata;
400 unsigned char * data;
401 struct roar_stream        *   s;
402 struct roar_stream_server *  ss;
403 struct roar_buffer        * buf = NULL;
404 struct midi_message       * mes = NULL;
405 size_t need = 0, have = 0, last_have = 0, old_have = 0;
406 int alive = 1;
407
408 if ( g_streams[id] == NULL )
409  return -1;
410
411 ROAR_DBG("midi_conv_midi2mes(id=%i) = ?", id);
412
413 s = ROAR_STREAM(ss = g_streams[id]);
414
415 while (ss->buffer != NULL && alive) {
416  ROAR_DBG("midi_conv_midi2mes(id=%i): ss->buffer=%p, alive=%i", id, ss->buffer, alive);
417
418  if ( roar_buffer_get_data(ss->buffer, &bufdata) == -1 ) {
419   alive = 0;
420   continue;
421  }
422
423  data = bufdata;
424
425  if ( roar_buffer_get_len(ss->buffer, &have) == -1 ) {
426   alive = 0;
427   continue;
428  }
429  old_have = have;
430
431  while (have && alive) {
432   ROAR_DBG("midi_conv_midi2mes(id=%i): have=%llu, alive=%i", id, (long long unsigned int)have, alive);
433
434   if ( *data & 0x80 ) {
435    if ( buf != NULL ) {
436     midi_add_buf(id, buf);
437     buf = NULL;
438    }
439
440    last_have = have;
441
442    need = 0;
443    if ( midi_new_bufmes(&buf, &mes) == -1 ) {
444     alive = 0;
445     continue;
446    }
447
448    if (*data == MIDI_TYPE_CLOCK_TICK || *data == MIDI_TYPE_CLOCK_START || *data == MIDI_TYPE_CLOCK_STOP ) {
449     mes->type = *data;
450
451     if ( *data == MIDI_TYPE_CLOCK_TICK ) {
452      s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, 1);
453     }
454    } else {
455     mes->type    = *data & 0xF0;
456     mes->channel = *data & 0x0F;
457     switch (*data & 0xF0) {
458      case MIDI_TYPE_NOTE_ON:
459      case MIDI_TYPE_NOTE_OFF:
460        need = 2;
461       break;
462      case MIDI_TYPE_PA:
463        need = 2;
464       break;
465      case MIDI_TYPE_CONTROLER:
466        need = 2;
467       break;
468      case MIDI_TYPE_PROGRAM:
469        need = 1;
470       break;
471      case MIDI_TYPE_MA:
472        need = 1;
473       break;
474      case MIDI_TYPE_PB:
475      case MIDI_TYPE_SYSEX:
476        need = 1;
477       break;
478     }
479    }
480
481   } else {
482
483    if ( mes == NULL ) {
484     ROAR_WARN("midi_conv_midi2mes(id=%i): Lost sync.", id);
485     data++;
486     have--;
487     continue;
488    }
489
490    switch (mes->type) {
491      case MIDI_TYPE_NOTE_ON:
492      case MIDI_TYPE_NOTE_OFF:
493       if ( need == 2 ) {
494        roar_midi_note_from_midiid(&(mes->d.note), *data);
495
496        // if velocity is zero we have a NOTE OFF event
497        if ( data[1] == 0 )
498         mes->type = MIDI_TYPE_NOTE_OFF;
499       }
500      case MIDI_TYPE_PA:
501      case MIDI_TYPE_CONTROLER:
502        if ( need == 2 ) {
503         mes->kk = *data;
504        } else {
505         mes->vv = *data;
506        }
507       break;
508      case MIDI_TYPE_PROGRAM:
509      case MIDI_TYPE_MA:
510        mes->vv = *data;
511       break;
512      case MIDI_TYPE_PB:
513      case MIDI_TYPE_SYSEX:
514        ROAR_WARN("midi_conv_midi2mes(id=%i): Message of Type 0x%.2X (PB or SysEx) not yet supported", id, mes->type);
515       break;
516    }
517
518    if ( need )
519     need--;
520
521    if ( !need ) {
522     switch (mes->type) {
523      case MIDI_TYPE_CONTROLER:
524       switch (mes->kk) {
525        case MIDI_CCE_MAIN_VOL:
526         if ( 516 * mes->vv > 65100 ) { // max volume
527          ss->mixer.mixer[mes->channel] = 65535;
528         } else {
529          ss->mixer.mixer[mes->channel] = 516 * mes->vv;
530         }
531         break;
532       }
533      break;
534     }
535    }
536
537   }
538   data++;
539   have--;
540  }
541
542  if ( need ) {
543   ROAR_DBG("midi_conv_midi2mes(id=%i) = ?", id);
544   if ( roar_buffer_set_offset(ss->buffer, old_have - last_have) == -1 ) {
545    ROAR_ERR("midi_conv_midi2mes(*): FIXME: BUG!!! Need to restore buffer here with corrected length");
546   }
547  } else if ( !have ) {
548   roar_buffer_next(&(ss->buffer));
549  }
550
551  if ( need && buf != NULL ) {
552   roar_buffer_free(buf);
553   buf = NULL;
554  } else if ( buf != NULL ) {
555   midi_add_buf(id, buf);
556   buf = NULL;
557  }
558 }
559
560 return 0;
561}
562#endif
563
564#define _nb  len++; *(d++)
565int midi_conv_mes2midi (int id) {
566 struct roar_stream        *   s;
567 struct roar_stream_server *  ss;
568 struct roar_buffer        * buf = g_midi_mess.buf;
569 struct midi_message       * mes = NULL;
570 void                      * bufdata;
571 unsigned char               data[3];
572 unsigned char             * d;
573 int                         len;
574 int                         send_clock;
575
576 if ( g_streams[id] == NULL )
577  return -1;
578
579 ROAR_DBG("midi_conv_mes2midi(id=%i) = ?", id);
580
581 s = ROAR_STREAM(ss = g_streams[id]);
582
583 send_clock = streams_get_flag(id, ROAR_FLAG_SYNC);
584
585 roar_buffer_foreach(buf) {
586  if ( roar_buffer_get_data(buf, &bufdata) == -1 ) {
587   return -1;
588  }
589
590  mes = bufdata;
591
592  if (mes->type == MIDI_TYPE_CLOCK_TICK || mes->type == MIDI_TYPE_CLOCK_START || mes->type == MIDI_TYPE_CLOCK_STOP ) {
593   if ( send_clock ) {
594    if ( stream_vio_s_write(ss, &(mes->type), 1) != 1 ) {
595     streams_delete(id);
596     return -1;
597    }
598   }
599
600   if ( mes->type == MIDI_TYPE_CLOCK_TICK ) {
601    s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, 1);
602   }
603  } else {
604   len = 0;
605   d   = data;
606
607   _nb = (mes->type & 0xF0) | (mes->channel & 0x0F);
608
609   switch (mes->type) {
610    case MIDI_TYPE_CONTROLER:
611      switch (mes->kk) {
612       case MIDI_CCE_MAIN_VOL:
613         if ( 516U * (unsigned int)mes->vv > 65100 ) { // max volume
614          ss->mixer.mixer[mes->channel] = 65535;
615         } else {
616          ss->mixer.mixer[mes->channel] = 516 * mes->vv;
617         }
618        break;
619      }
620    case MIDI_TYPE_NOTE_ON:
621    case MIDI_TYPE_NOTE_OFF:
622    case MIDI_TYPE_PA:
623      _nb = mes->kk;
624      _nb = mes->vv;
625     break;
626    case MIDI_TYPE_PROGRAM:
627    case MIDI_TYPE_MA:
628      _nb = mes->vv;
629     break;
630    case MIDI_TYPE_PB:
631    case MIDI_TYPE_SYSEX:
632     break;
633   }
634
635   if ( stream_vio_s_write(ss, data, len) != len ) {
636    streams_delete(id);
637    return -1;
638   }
639  }
640 }
641
642 return 0;
643}
644#undef _nb
645
646#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
647int midi_conv_mes2ssynth(void) {
648 struct roar_buffer        * buf = g_midi_mess.buf;
649 struct midi_message       * mes = NULL;
650 void                      * bufdata;
651
652 roar_buffer_foreach(buf) {
653  if ( roar_buffer_get_data(buf, &bufdata) == -1 ) {
654   return -1;
655  }
656
657  mes = bufdata;
658
659  if ( ssynth_eval_message(mes) == -1 )
660   return -1;
661 }
662
663 return 0;
664}
665#endif
666
667int midi_new_bufmes    (struct roar_buffer ** buf, struct midi_message ** mes) {
668 if ( buf == NULL || mes == NULL )
669  return -1;
670
671 *buf = (void*)(*mes = NULL);
672
673 if ( roar_buffer_new_data(buf, sizeof(struct midi_message), (void**)mes) == -1 ) {
674  *buf = (void*)(*mes = NULL);
675  return -1;
676 }
677
678 memset((void*)*mes, 0, sizeof(struct midi_message));
679
680 (*mes)->type = MIDI_TYPE_NONE;
681
682 return 0;
683}
684
685int midi_add_buf       (int id, struct roar_buffer ** buf) {
686#ifdef DEBUG
687 struct midi_message * mes;
688 void * bufdata;
689#endif
690
691 if ( id == -1 || buf == NULL || *buf == NULL )
692  return -1;
693
694#ifdef DEBUG
695 if ( roar_buffer_get_data(*buf, &bufdata) == -1 )
696  return -1;
697
698 mes = bufdata;
699
700 ROAR_DBG("midi_add_buf(id=%i, buf=%p) = ?", id, buf);
701 ROAR_DBG("midi_add_buf(*): MIDI Message of Type 0x%.2X", mes->type);
702 ROAR_DBG("midi_add_buf(*): Channel: %i", mes->channel);
703 ROAR_DBG("midi_add_buf(*): flags=0x%.2X", mes->flags);
704 ROAR_DBG("midi_add_buf(*): kk=0x%.2X, vv=0x%.2X", mes->kk, mes->vv);
705#endif
706
707 if ( g_midi_mess.buf == NULL ) {
708  g_midi_mess.buf = *buf;
709 } else {
710  if ( roar_buffer_moveinto(g_midi_mess.buf, buf) == -1 ) {
711   ROAR_DBG("midi_add_buf(*) = -1");
712   return -1;
713  }
714 }
715
716 ROAR_DBG("midi_add_buf(*) = 0");
717 return 0;
718}
719
720// bridges:
721int midi_check_bridge  (int id) {
722
723 ROAR_DBG("midi_check_bridge(id=%i) = ?", id);
724
725 if ( id == g_midi_clock.stream ) {
726  midi_clock_tick();
727
728  return 0;
729 }
730
731 return -1;
732}
733
734// clock:
735
736int midi_clock_init (void) {
737 struct roar_stream * s;
738 struct roar_stream_server * ss;
739
740 if ( (g_midi_clock.stream = streams_new()) == -1 ) {
741  ROAR_WARN("Error while initializing MIDI subsystem component clock");
742  return -1;
743 }
744
745 client_stream_add(g_self_client, g_midi_clock.stream);
746
747 midi_vio_set_dummy(g_midi_clock.stream);
748
749 streams_get(g_midi_clock.stream, &ss);
750 s = ROAR_STREAM(ss);
751
752 memcpy(&(s->info), g_sa, sizeof(struct roar_audio_info));
753
754 s->pos_rel_id    =  g_midi_clock.stream;
755
756 s->info.codec    =  ROAR_CODEC_MIDI;
757 ss->codec_orgi   =  ROAR_CODEC_MIDI;
758
759 s->info.channels = 1; // we have only one channel, ticking on channel 0
760 s->info.rate     = ROAR_MIDI_TICKS_PER_BEAT; // one beat per sec
761 s->info.bits     = ROAR_MIDI_BITS;
762
763 if ( streams_set_dir(g_midi_clock.stream, ROAR_DIR_BRIDGE, 1) == -1 ) {
764  ROAR_WARN("Error while initializing MIDI subsystem component clock");
765  return -1;
766 }
767
768 streams_set_name(g_midi_clock.stream, "MIDI Clock");
769
770 streams_set_flag(g_midi_clock.stream, ROAR_FLAG_PRIMARY);
771 streams_set_flag(g_midi_clock.stream, ROAR_FLAG_SYNC);
772
773 midi_clock_set_bph(3600); // one beat per sec
774
775 ss->state = ROAR_STREAMSTATE_NEW;
776
777 midi_config.inited |= MIDI_INITED_CLOCK;
778
779 return 0;
780}
781
782int midi_clock_set_bph (uint_least32_t bph) {
783 uint_least32_t sph = g_sa->rate/2 * 75 * g_sa->channels; // samples per houre
784
785 g_midi_clock.bph  = bph;
786
787 g_midi_clock.spt  = sph/bph;
788
789 g_midi_clock.nt   = ROAR_MATH_OVERFLOW_ADD(g_pos, g_midi_clock.spt);
790
791 return 0;
792}
793
794int midi_clock_tick (void) {
795 struct roar_buffer  * buf;
796 struct midi_message * mes;
797 struct roar_stream_server * ss;
798 unsigned int diff;
799
800 if ( streams_get(g_midi_clock.stream, &ss) == -1 ) {
801  ROAR_ERR("midi_clock_tick(void): Something very BAD happend: can not get stream object of my own stream!");
802  g_midi_clock.stream = -1;
803  ROAR_WARN("midi_clock_tick(void): Disabled MIDI Clock");
804  return -1;
805 }
806
807 while ( g_pos >= g_midi_clock.nt ) {
808  diff = g_pos - g_midi_clock.nt;
809  ROAR_DBG("midi_clock_tick(void): g_pos is %u samples (%5.2f%%) after of nt.", diff, (float)diff/g_midi_clock.spt);
810
811  g_midi_clock.nt   = ROAR_MATH_OVERFLOW_ADD(g_midi_clock.nt, g_midi_clock.spt);
812
813  if ( streams_get_flag(g_midi_clock.stream, ROAR_FLAG_SYNC) ) {
814   ROAR_DBG("midi_clock_tick(void): TICK! (nt=%lu)", g_midi_clock.nt);
815   if ( midi_new_bufmes(&buf, &mes) == -1 ) {
816    ROAR_ERR("midi_clock_tick(void): Can not create Clock-Tick-Message");
817   }
818
819   mes->type = MIDI_TYPE_CLOCK_TICK;
820
821   if ( midi_add_buf(g_midi_clock.stream, &buf) == -1 ) {
822    ROAR_ERR("midi_clock_tick(void): Can not add Clock-Tick-Message");
823    roar_buffer_free(buf);
824    return -1;
825   }
826
827   ROAR_STREAM(ss)->pos = ROAR_MATH_OVERFLOW_ADD(ROAR_STREAM(ss)->pos, 1);
828   ss->state = ROAR_STREAMSTATE_OLD;
829  } else {
830   ROAR_DBG("midi_clock_tick(void): silent tick. (nt=%lu)", g_midi_clock.nt);
831  }
832 }
833
834 return 0;
835}
836
837// CB:
838
839#ifndef ROAR_WITHOUT_DCOMP_CB
840int midi_cb_init (void) {
841#ifdef _HAVE_CONSOLE
842 struct roar_stream * s;
843 struct roar_stream_server * ss;
844 int i;
845 char * files[] = {
846                   "/NX",
847                   "/dev/roarconsole",
848                   "/dev/console",
849#ifdef __linux__
850                   "/dev/tty0",
851                   "/dev/vc/0",
852#endif
853                   NULL
854                  };
855
856 g_midi_cb.console  = -1;
857 g_midi_cb.stream   = -1;
858 g_midi_cb.stoptime =  0;
859 g_midi_cb.playing  =  0;
860
861 if ( midi_config.console_dev != NULL ) {
862  files[0] = midi_config.console_dev;
863 }
864
865 for (i = 0; files[i] != NULL; i++) {
866  if ( (g_midi_cb.console = open(files[i], O_WRONLY|O_NOCTTY, 0)) != -1 )
867   break;
868 }
869
870 if ( g_midi_cb.console == -1 )
871  return -1;
872
873 if ( (g_midi_cb.stream = streams_new()) == -1 ) {
874  ROAR_WARN("Error while initializing MIDI subsystem component CB");
875  midi_cb_free();
876  return -1;
877 }
878
879 client_stream_add(g_self_client, g_midi_clock.stream);
880
881 midi_vio_set_dummy(g_midi_cb.stream);
882
883 streams_get(g_midi_cb.stream, &ss);
884 s = ROAR_STREAM(ss);
885
886 memcpy(&(s->info), g_sa, sizeof(struct roar_audio_info));
887
888 s->pos_rel_id    = -1;
889
890 s->info.codec    =  0;
891 ss->codec_orgi   =  0;
892
893 s->info.channels =  1;
894 s->info.rate     = 1193180;
895 s->info.bits     =  8;
896
897 if ( streams_set_dir(g_midi_cb.stream, ROAR_DIR_BRIDGE, 1) == -1 ) {
898  ROAR_WARN("Error while initializing MIDI subsystem component CB");
899  midi_cb_free();
900  return -1;
901 }
902
903 streams_set_name(g_midi_cb.stream, "Console speaker bridge");
904
905 streams_set_flag(g_midi_cb.stream, ROAR_FLAG_OUTPUT);
906 streams_set_flag(g_midi_cb.stream, ROAR_FLAG_PRIMARY);
907 streams_set_flag(g_midi_cb.stream, ROAR_FLAG_HWMIXER);
908 streams_set_flag(g_midi_cb.stream, ROAR_FLAG_MUTE);
909
910 midi_config.inited |= MIDI_INITED_CB;
911
912 return 0;
913#else
914 g_midi_cb.console  = -1;
915 g_midi_cb.stream   = -1;
916
917 return -1;
918#endif
919}
920
921int midi_cb_free (void) {
922#ifdef _HAVE_CONSOLE
923
924 midi_cb_stop();
925
926 if ( g_midi_cb.stream != -1 )
927  streams_delete(g_midi_cb.stream);
928
929 if ( g_midi_cb.console != -1 )
930  close(g_midi_cb.console);
931
932 return 0;
933#else
934 return -1;
935#endif
936}
937
938int midi_cb_play(float t, float freq, int override) {
939 float samples_per_sec /* S/s */ = g_sa->rate * g_sa->channels;
940
941/*
942#define MIDI_CB_NOOVERRIDE 0
943#define MIDI_CB_OVERRIDE   1
944*/
945 if ( g_midi_cb.playing && override != MIDI_CB_OVERRIDE )
946  return -1;
947
948 g_midi_cb.stoptime = ROAR_MATH_OVERFLOW_ADD(g_pos, samples_per_sec*t);
949 midi_cb_start(freq);
950
951 return 0;
952}
953
954int midi_cb_update (void) {
955
956 if ( !streams_get_flag(g_midi_cb.stream, ROAR_FLAG_MUTE) ) {
957  if ( midi_cb_readbuf() == -1 )
958   return -1;
959 } else if ( g_midi_cb.playing ) {
960  midi_cb_stop();
961 }
962
963 if ( !g_midi_cb.playing )
964  return 0;
965
966/*
967 if ( g_midi_cb.stoptime <= g_pos )
968  midi_cb_stop();
969*/
970
971 ROAR_DBG("midi_cb_update(void) = ?");
972
973 return 0;
974}
975
976int midi_cb_start(float freq) {
977// On linux this uses ioctl KIOCSOUND
978#ifdef __linux__
979 if ( g_midi_cb.console == -1 )
980  return -1;
981
982 if ( ioctl(g_midi_cb.console, KIOCSOUND, freq == 0 ? 0 : (int)(1193180.0/freq)) == -1 )
983  return -1;
984
985 g_midi_cb.playing = 1;
986
987 return 0;
988#else
989 return -1;
990#endif
991}
992
993int midi_cb_stop (void) {
994#ifdef __linux__
995 int ret;
996
997 ret = midi_cb_start(0);
998 g_midi_cb.playing = 0;
999
1000 return ret;
1001#else
1002 return -1;
1003#endif
1004}
1005
1006int midi_cb_readbuf(void) {
1007 struct roar_buffer        * buf = g_midi_mess.buf;
1008 struct midi_message       * mes = NULL;
1009 void                      * bufdata;
1010
1011 ROAR_DBG("midi_cb_readbuf(void) = ?");
1012
1013 roar_buffer_foreach(buf) {
1014  ROAR_DBG("midi_cb_readbuf(void): buf=%p", buf);
1015
1016  if ( roar_buffer_get_data(buf, &bufdata) == -1 ) {
1017   return -1;
1018  }
1019
1020  mes = bufdata;
1021
1022  switch (mes->type) {
1023   case MIDI_TYPE_NOTE_ON:
1024     midi_cb_start(mes->d.note.freq);
1025    break;
1026   case MIDI_TYPE_NOTE_OFF:
1027     midi_cb_stop();
1028    break;
1029   case MIDI_TYPE_CONTROLER:
1030     if ( mes->kk == MIDI_CCE_ALL_NOTE_OFF ) /* all note off */
1031      midi_cb_stop();
1032    break;
1033  }
1034 }
1035
1036 return 0;
1037}
1038#endif
1039
1040// VIO:
1041
1042static int midi_vio_ctl(struct roar_vio_calls * vio, roar_vio_ctl_t cmd, void * data) {
1043 if ( cmd == ROAR_VIO_CTL_NONBLOCK )
1044  return 0;
1045 return -1;
1046}
1047
1048static int     midi_vio_ok(struct roar_vio_calls * vio, ...) {
1049 return 0;
1050}
1051
1052int     midi_vio_set_dummy(int stream) {
1053 struct roar_stream_server * ss;
1054
1055 if ( streams_get(stream, &ss) == -1 )
1056  return -1;
1057
1058 ss->vio.read     = NULL;
1059 ss->vio.write    = NULL;
1060 ss->vio.lseek    = NULL;
1061 ss->vio.sync     = (int (*)(struct roar_vio_calls * vio))midi_vio_ok;
1062 ss->vio.ctl      = midi_vio_ctl;
1063 ss->vio.close    = (int (*)(struct roar_vio_calls * vio))midi_vio_ok;
1064
1065 return 0;
1066}
1067
1068#endif
1069
1070//ll
Note: See TracBrowser for help on using the repository browser.