OSDN Git Service

added more instructions
[proj16/16.git] / src / sountest.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2015 sparky4 & pngwen & andrius4669\r
3  *\r
4  * This file is part of Project 16.\r
5  *\r
6  * Project 16 is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Project 16 is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
19  * Fifth Floor, Boston, MA 02110-1301 USA.\r
20  *\r
21  */
22
23 #include <stdio.h>
24
25 #include "src/lib/16_in.h"
26 #include "src/lib/16_snd.h"
27
28 void main(int argc, char near *argv[])\r
29 {
30         static FMInstrument testInst =\r
31 {\r
32 0x00, 0x01,     /* modulator frequency multiple... 0x20 */\r
33 0x00, 0x00,     /* modulator frequency level...    0x40 */\r
34 0xF0, 0xF0,     /* modulator attack/decay...       0x60 */\r
35 0x73, 0x73,     /* modulator sustain/release...    0x80 */\r
36 0x03, 0x00,     /* output waveform distortion      0xE0 */\r
37 0x36,                           /* feedback algorithm and strength 0xC0 */\r
38 };
39
40         IN_Startup();
41         FMReset();
42         FMSetVoice(0, &testInst);
43         printf("press Z!  to noise\npress ESC to quit");
44         printf("p");
45         while(!IN_qb(1))
46         {
47                 if(IN_qb(44))
48                 {
49                         printf("e");\r
50                         FMKeyOn(0, 0x106, 4);
51                 }
52                 else
53                 {
54                         FMKeyOff(0);
55                 }\r
56         }
57         printf("!\n");
58         IN_Shutdown();
59 }