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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
#ifndef PATCH_PATH
#define PATCH_PATH "/usr/local/lib/midia/instruments"
#endif
#define OLD_PATCH_PATH "/dos/ultrasnd/midi"
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include "../../include/soundcard.h"
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "gmidi.h"
static int instrmap[256] = { -1, 0 };
static int initialized = 0;
struct pat_header
{
char magic[12];
char version[10];
char description[60];
unsigned char instruments;
char voices;
char channels;
unsigned short nr_waveforms;
unsigned short master_volume;
unsigned long data_size;
};
struct sample_header
{
char name[7];
unsigned char fractions;
long len;
long loop_start;
long loop_end;
unsigned short base_freq;
long low_note;
long high_note;
long base_note;
short detune;
unsigned char panning;
unsigned char envelope_rate[6];
unsigned char envelope_offset[6];
unsigned char tremolo_sweep;
unsigned char tremolo_rate;
unsigned char tremolo_depth;
unsigned char vibrato_sweep;
unsigned char vibrato_rate;
unsigned char vibrato_depth;
char modes;
short scale_frequency;
unsigned short scale_factor;
};
SEQ_USE_EXTBUF ();
int
get_dint (unsigned char *p)
{
int i;
unsigned int v = 0;
for (i = 0; i < 4; i++)
{
v |= (p[i] << (i * 8));
}
return (int) v;
}
unsigned short
get_word (unsigned char *p)
{
int i;
unsigned short v = 0;
for (i = 0; i < 2; i++)
v |= (*p++ << (i * 8));
return (short) v;
}
short
get_int (unsigned char *p)
{
return (short) get_word (p);
}
int
gusinit (int seqfd, int dev)
{
initialized = 1;
if (ioctl (seqfd, SNDCTL_SEQ_RESETSAMPLES, &dev) == -1)
{
fprintf (stderr, "OSSlib: Can't reset GM programs. Device %d\n", dev);
perror ("GUS init");
exit (-1);
}
return 0;
}
static char *gusdir = NULL;
int
gusload (int seqfd, int type, int dev, int pgm)
{
int i, n, patfd, print_only = 0;
struct synth_info info;
struct pat_header header;
struct sample_header sample;
unsigned char buf[256];
char name[256];
long offset;
struct patch_info *patch = NULL;
if (!initialized)
gusinit (seqfd, dev);
if (pgm < 0 || pgm > 255)
return 0;
if (instrmap[pgm] == pgm)
return 0;
instrmap[pgm] = pgm;
if (patch_names[pgm][0] == 0) /* Not defined */
return 0;
if (gusdir == NULL)
{
if ((gusdir = getenv ("GUSPATCHDIR")) == NULL)
{
#if 0
struct stat st;
gusdir = PATCH_PATH;
if (stat (gusdir, &st) == -1)
if (stat (OLD_PATCH_PATH, &st) == 0)
gusdir = OLD_PATCH_PATH;
#else
gusdir = PATCH_PATH;
#endif
}
}
sprintf (name, "%s/%s.pat", gusdir, patch_names[pgm]);
/* fprintf(stderr, "Loading instrument %d from %s\n", pgm, name); */
if ((patfd = open (name, O_RDONLY, 0)) == -1)
{
static int warned = 0;
if (!warned)
{
perror (name);
fprintf (stderr,
"\tThe GUS patch set doesn't appear to be installed.\n");
fprintf (stderr,
"\tOSSlib expects to find the \"Gravis\" or \"Midia\" patchset.\n");
fprintf (stderr, "\tin %s.\n", gusdir);
fprintf (stderr,
"\tYou can set the GUSPATCHDIR environment variable in case\n");
fprintf (stderr,
"\tthe .pat files are installed in some other directory.\n");
}
warned = 1;
return 0;
}
if (read (patfd, buf, 0xef) != 0xef)
{
fprintf (stderr, "%s: Short file\n", name);
exit (-1);
}
memcpy ((char *) &header, buf, sizeof (header));
if (strncmp (header.magic, "GF1PATCH110", 12))
{
fprintf (stderr, "%s: Not a patch file\n", name);
exit (-1);
}
if (strncmp (header.version, "ID#000002", 10))
{
fprintf (stderr, "%s: Incompatible patch file version\n", name);
exit (-1);
}
header.nr_waveforms = get_word (&buf[85]);
header.master_volume = get_word (&buf[87]);
offset = 0xef;
for (i = 0; i < header.nr_waveforms; i++)
{
if (lseek (patfd, offset, 0) == -1)
{
perror (name);
exit (-1);
}
if (read (patfd, &buf, sizeof (sample)) != sizeof (sample))
{
fprintf (stderr, "%s: Short file\n", name);
exit (-1);
}
memcpy ((char *) &sample, buf, sizeof (sample));
sample.fractions = (char) buf[7];
sample.len = get_dint (&buf[8]);
sample.loop_start = get_dint (&buf[12]);
sample.loop_end = get_dint (&buf[16]);
sample.base_freq = get_word (&buf[20]);
sample.low_note = get_dint (&buf[22]);
sample.high_note = get_dint (&buf[26]);
sample.base_note = get_dint (&buf[30]);
sample.detune = get_int (&buf[34]);
sample.panning = (unsigned char) buf[36];
memcpy (sample.envelope_rate, &buf[37], 6);
memcpy (sample.envelope_offset, &buf[43], 6);
sample.tremolo_sweep = (unsigned char) buf[49];
sample.tremolo_rate = (unsigned char) buf[50];
sample.tremolo_depth = (unsigned char) buf[51];
sample.vibrato_sweep = (unsigned char) buf[52];
sample.vibrato_rate = (unsigned char) buf[53];
sample.vibrato_depth = (unsigned char) buf[54];
sample.modes = (unsigned char) buf[55];
sample.scale_frequency = get_int (&buf[56]);
sample.scale_factor = get_word (&buf[58]);
offset = offset + 96;
patch = (struct patch_info *) malloc (sizeof (*patch) + sample.len);
if (patch == NULL)
{
fprintf (stderr, "Failed to allocate %ld bytes of memory\n",
sizeof (*patch) + sample.len);
exit (0);
}
patch->key = GUS_PATCH;
patch->device_no = dev;
patch->instr_no = pgm;
patch->mode = sample.modes | WAVE_TREMOLO | WAVE_VIBRATO | WAVE_SCALE;
patch->len = sample.len;
patch->loop_start = sample.loop_start;
patch->loop_end = sample.loop_end;
patch->base_note = sample.base_note;
patch->high_note = sample.high_note;
patch->low_note = sample.low_note;
patch->base_freq = sample.base_freq;
patch->detuning = sample.detune;
patch->panning = (sample.panning - 7) * 16;
memcpy (patch->env_rate, sample.envelope_rate, 6);
memcpy (patch->env_offset, sample.envelope_offset, 6);
patch->tremolo_sweep = sample.tremolo_sweep;
patch->tremolo_rate = sample.tremolo_rate;
patch->tremolo_depth = sample.tremolo_depth;
patch->vibrato_sweep = sample.vibrato_sweep;
patch->vibrato_rate = sample.vibrato_rate;
patch->vibrato_depth = sample.vibrato_depth;
patch->scale_frequency = sample.scale_frequency;
patch->scale_factor = sample.scale_factor;
patch->volume = header.master_volume;
if (lseek (patfd, offset, 0) == -1)
{
perror (name);
exit (-1);
}
if (read (patfd, patch->data, sample.len) != sample.len)
{
fprintf (stderr, "%s: Short file\n", name);
exit (-1);
}
SEQ_WRPATCH (patch, sizeof (*patch) + sample.len);
offset = offset + sample.len;
}
close (patfd);
free (patch);
return 0;
}
|