source: roaraudio/roard/ssynth.c @ 2468:945d9052f13a

Last change on this file since 2468:945d9052f13a was 2468:945d9052f13a, checked in by phi, 15 years ago

spacing

File size: 4.3 KB
Line 
1//ssynth.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009
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, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include "roard.h"
26
27float ssynth_polys[SSYNTH_POLY_POLYMAX][SSYNTH_POLY_COEFF] = {
28       {0.300000,  0.958333, -0.550000,  0.091667},
29       {0.700010, -0.083333, -0.150000,  0.033333}
30      };
31
32int ssynth_init_config(void) {
33 memset(&ssynth_conf, 0, sizeof(ssynth_conf));
34
35 return 0;
36}
37
38#define _err() streams_delete(sid); return -1
39int ssynth_init (void) {
40 struct roar_stream_server * ss;
41 struct roar_stream        *  s;
42 int sid;
43
44 if ( !ssynth_conf.enable )
45  return 0;
46
47 memset(&g_ssynth, 0, sizeof(g_ssynth));
48 g_ssynth.stream = -1;
49
50 if ( (sid = streams_new()) == -1 )
51  return -1;
52
53 if ( streams_set_client(sid, g_self_client) == -1 ) {
54  _err();
55 }
56
57 if ( streams_set_dir(sid, ROAR_DIR_BRIDGE, 1) == -1 ) {
58  _err();
59 }
60
61 if ( streams_set_flag(sid, ROAR_FLAG_PRIMARY) == -1 ) {
62  _err();
63 }
64
65 if ( streams_set_name(sid, "Simple Synthesizer") == -1 ) {
66  _err();
67 }
68
69 if ( streams_get(sid, &ss) == -1 ) {
70  _err();
71 }
72
73 s = ROAR_STREAM(ss);
74
75 memcpy(&(s->info), g_sa, sizeof(struct roar_audio_info));
76
77 s->info.channels = 1;
78 s->info.codec    = ROAR_CODEC_DEFAULT;
79
80 g_ssynth.stream  = sid;
81
82 return 0;
83}
84
85int ssynth_free (void) {
86 if ( !ssynth_conf.enable )
87  return 0;
88
89 return streams_delete(g_ssynth.stream);
90}
91
92int ssynth_update (void) {
93 return -1;
94}
95
96
97int ssynth_note_new(struct roar_note_octave * note, char vv) {
98 int i;
99
100 for (i = 0; i < SSYNTH_NOTES_MAX; i++) {
101  if ( g_ssynth.notes[i].stage == SSYNTH_STAGE_UNUSED ) {
102   // TODO: do some error checking here
103   g_ssynth.notes[i].vv_down = vv;
104   memcpy(&(g_ssynth.notes[i].note), note, sizeof(struct roar_note_octave));
105   roar_synth_init(&(g_ssynth.notes[i].synth), &(g_ssynth.notes[i].note), g_sa->rate);
106   ssynth_note_set_stage(i, SSYNTH_STAGE_KEYSTROKE);
107   return i;
108  }
109 }
110
111 return -1;
112}
113
114int ssynth_note_free(int id) {
115 g_ssynth.notes[id].stage = SSYNTH_STAGE_UNUSED;
116 return 0;
117}
118
119int ssynth_note_find(struct roar_note_octave * note) {
120 struct roar_note_octave * cn;
121 int i;
122
123 for (i = 0; i < SSYNTH_NOTES_MAX; i++) {
124  if ( g_ssynth.notes[i].stage == SSYNTH_STAGE_UNUSED )
125   continue;
126
127  cn = &(g_ssynth.notes[i].note);
128
129  if ( !(note->note == cn->note && note->octave == cn->octave) )
130   continue;
131
132  return i;
133 }
134
135 return -1;
136}
137
138int ssynth_note_set_stage(int id, int stage) {
139 int r = -1;
140
141 switch (stage) {
142  case SSYNTH_STAGE_UNUSED:
143    r = ssynth_note_free(id);
144   break;
145  case SSYNTH_STAGE_KEYSTROKE:
146    r = roar_fader_init(&(g_ssynth.notes[id].fader), ssynth_polys[SSYNTH_POLY_KEYDOWN], SSYNTH_POLY_COEFF);
147   break;
148  case SSYNTH_STAGE_MIDSECTION:
149    r = 0;
150   break;
151  case SSYNTH_STAGE_KEYRELEASE:
152    r = roar_fader_init(&(g_ssynth.notes[id].fader), ssynth_polys[SSYNTH_POLY_KEYUP], SSYNTH_POLY_COEFF);
153   break;
154 }
155
156 if ( r == 0 )
157  g_ssynth.notes[id].stage = stage;
158
159 return r;
160}
161
162int ssynth_note_on       (struct roar_note_octave * note, char vv) {
163 return ssynth_note_new(note, vv);
164}
165
166int ssynth_note_off      (struct roar_note_octave * note, char vv) {
167 int id;
168
169 if ( (id = ssynth_note_find(note)) == -1 )
170  return -1;
171
172 // add support to for keyups...
173
174 return ssynth_note_free(id);
175}
176
177int ssynth_eval_message (struct midi_message * mes) {
178 if ( !ssynth_conf.enable )
179  return -1;
180
181 switch (mes->type) {
182  case MIDI_TYPE_NOTE_OFF:
183    return ssynth_note_off(&(mes->d.note), mes->vv);
184   break;
185  case MIDI_TYPE_NOTE_ON:
186    return ssynth_note_off(&(mes->d.note), mes->vv);
187   break;
188  default:
189    /* ignore all other events at the moment */
190    return 0;
191 }
192
193 return -1;
194}
195
196//ll
Note: See TracBrowser for help on using the repository browser.