source: roaraudio/roard/include/ssynth.h @ 2489:266b1a6c9683

Last change on this file since 2489:266b1a6c9683 was 2489:266b1a6c9683, checked in by phi, 15 years ago

support to disable ssynth

File size: 2.3 KB
Line 
1//ssynth.h:
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#ifndef _SSYNTH_H_
26#define _SSYNTH_H_
27
28#include <roaraudio.h>
29
30#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
31
32#define SSYNTH_NOTES_MAX            16
33
34#define SSYNTH_STAGE_NONE            0
35#define SSYNTH_STAGE_UNUSED          SSYNTH_STAGE_NONE
36#define SSYNTH_STAGE_KEYSTROKE       1
37#define SSYNTH_STAGE_MIDSECTION      2
38#define SSYNTH_STAGE_KEYRELEASE      3
39
40#define SSYNTH_POLY_KEYDOWN          0
41#define SSYNTH_POLY_KEYUP            1
42#define SSYNTH_POLY_POLYMAX          2
43
44#define SSYNTH_POLY_COEFF            4
45
46float ssynth_polys[SSYNTH_POLY_POLYMAX][SSYNTH_POLY_COEFF];
47
48struct {
49 int enable;
50} ssynth_conf;
51
52struct {
53 int stream;
54 struct {
55  int stage;
56  char vv_down, vv_up;
57  struct roar_note_octave   note;
58  struct roar_synth_state   synth;
59  struct roar_fader_state   fader;
60  struct roar_buffer      * buf;
61 } notes[SSYNTH_NOTES_MAX];
62} g_ssynth;
63
64int ssynth_init_config(void);
65
66int ssynth_init (void);
67int ssynth_free (void);
68
69int ssynth_update (void);
70
71int ssynth_note_new(struct roar_note_octave * note, char vv);
72int ssynth_note_free(int id);
73int ssynth_note_find(struct roar_note_octave * note);
74
75int ssynth_note_set_stage(int id, int stage);
76
77int ssynth_note_render   (int id, void * data);
78
79int ssynth_note_on       (struct roar_note_octave * note, char vv);
80int ssynth_note_off      (struct roar_note_octave * note, char vv);
81
82int ssynth_eval_message (struct midi_message * mes);
83
84#endif
85
86#endif
87
88//ll
Note: See TracBrowser for help on using the repository browser.