-
Notifications
You must be signed in to change notification settings - Fork 2
/
sftovkb.c
72 lines (66 loc) · 1.82 KB
/
sftovkb.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* convert from SoundFont file to vkeybd preset list file
*
* Copyright (c) 1999-2000 by Takashi Iwai
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include <stdarg.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <stdlib.h>
#include "util.h"
#include "sffile.h"
/* parse soundfont file and give the preset list */
int main(int argc, char **argv)
{
FILE *fp;
SFInfo sf;
int i;
if (argc < 2) {
fprintf(stderr, "usage: sftovkb soundfont\n");
exit(1);
}
/*fprintf(stderr, "opening %s..\n", argv[1]);*/
if ((fp = fopen(argv[1], "r")) == NULL) {
fprintf(stderr, "can't open soundfont file\n");
exit(1);
}
if (load_soundfont(&sf, fp, TRUE)) {
fprintf(stderr, "fail to read soundfont file\n");
exit(1);
}
fclose(fp);
for (i = 0; i < sf.npresets-1; i++) {
char *p;
/* convert illegal characters */
for (p = sf.preset[i].hdr.name; *p; p++) {
if (!isprint(*p) || *p == '{' || *p == '}')
*p = ' ';
else if (*p == '[')
*p = '(';
else if (*p == ']')
*p = ')';
}
printf("%d %d %s\n",
sf.preset[i].bank,
sf.preset[i].preset,
sf.preset[i].hdr.name);
}
free_soundfont(&sf);
return 0;
}