source: roaraudio/roard/include/ssynth.h @ 2456:333b6b385ccc

Last change on this file since 2456:333b6b385ccc was 2456:333b6b385ccc, checked in by phi, 15 years ago

added prototype for ssynth_note_set_stage()

File size: 1.9 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#define SSYNTH_NOTES_MAX            16
31
32#define SSYNTH_STAGE_NONE            0
33#define SSYNTH_STAGE_UNUSED          SSYNTH_STAGE_NONE
34#define SSYNTH_STAGE_KEYSTROKE       1
35#define SSYNTH_STAGE_MIDSECTION      2
36#define SSYNTH_STAGE_KEYRELEASE      3
37
38#define SSYNTH_POLY_KEYDOWN          0
39#define SSYNTH_POLY_KEYUP            1
40#define SSYNTH_POLY_POLYMAX          2
41
42#define SSYNTH_POLY_COEFF            4
43
44float ssynth_polys[SSYNTH_POLY_POLYMAX][SSYNTH_POLY_COEFF];
45
46struct {
47 int enable;
48} ssynth_conf;
49
50struct {
51 int stream;
52 struct {
53  int stage;
54  char vv_down, vv_up;
55  struct roar_note_octave note;
56  struct roar_synth_state synth;
57  struct roar_fader_state fader;
58 } notes[SSYNTH_NOTES_MAX];
59} g_ssynth;
60
61int ssynth_init_config(void);
62
63int ssynth_init (void);
64int ssynth_free (void);
65
66int ssynth_note_new(struct roar_note_octave * note, char vv);
67int ssynth_note_free(int id);
68int ssynth_note_find(struct roar_note_octave * note);
69
70int ssynth_note_set_stage(int id, int stage);
71
72#endif
73
74//ll
Note: See TracBrowser for help on using the repository browser.