1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
4 * Sample MIDI Wine Driver for Open Sound System (basically Linux)
6 * Copyright 1994 Martin Ayotte
7 * Copyright 1998 Luiz Otavio L. Zorzella (init procedures)
8 * Copyright 1998/1999 Eric POUECH :
9 * 98/7 changes for making this MIDI driver work on OSS
10 * current support is limited to MIDI ports of OSS systems
11 * 98/9 rewriting MCI code for MIDI
12 * 98/11 splitted in midi.c and mcimidi.c
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
34 #ifdef HAVE_SYS_IOCTL_H
35 # include <sys/ioctl.h>
44 #include "wine/debug.h"
46 WINE_DEFAULT_DEBUG_CHANNEL(midi
);
50 #define MIDI_SEQ "/dev/sequencer"
55 MIDIOPENDESC midiDesc
;
59 unsigned char incoming
[3];
60 unsigned char incPrev
;
68 MIDIOPENDESC midiDesc
;
72 void* lpExtra
; /* according to port type (MIDI, FM...), extra data when needed */
75 static WINE_MIDIIN MidiInDev
[MAX_MIDIINDRV
];
76 static WINE_MIDIOUT MidiOutDev
[MAX_MIDIOUTDRV
];
78 /* this is the total number of MIDI out devices found */
79 static int MODM_NUMDEVS
= 0;
80 /* this is the number of FM synthetizers (index from 0 to
81 NUMFMSYNTHDEVS - 1) */
82 static int MODM_NUMFMSYNTHDEVS
= 0;
83 /* this is the number of Midi ports (index from NUMFMSYNTHDEVS to
84 NUMFMSYNTHDEVS + NUMMIDIDEVS - 1) */
85 static int MODM_NUMMIDIDEVS
= 0;
87 /* this is the total number of MIDI out devices found */
88 static int MIDM_NUMDEVS
= 0;
90 static int midiSeqFD
= -1;
91 static int numOpenMidiSeq
= 0;
92 static UINT midiInTimerID
= 0;
93 static int numStartedMidiIn
= 0;
95 /* this structure holds pointers with information for each MIDI
98 static LPMIDIOUTCAPSA midiOutDevices
[MAX_MIDIOUTDRV
];
100 /* this structure holds pointers with information for each MIDI
103 static LPMIDIINCAPSA midiInDevices
[MAX_MIDIINDRV
];
106 * FIXME : all tests on device ID for midXXX and modYYY are made against
107 * MAX_MIDIxxDRV (when they are made) but should be done against the actual
108 * number of midi devices found...
111 /*======================================================================*
112 * Low level MIDI implementation *
113 *======================================================================*/
115 static int midiOpenSeq(void);
116 static int midiCloseSeq(void);
118 /**************************************************************************
119 * unixToWindowsDeviceType [internal]
121 * return the Windows equivalent to a Unix Device Type
124 static int MIDI_UnixToWindowsDeviceType(int type
)
126 /* MOD_MIDIPORT output port
127 * MOD_SYNTH generic internal synth
128 * MOD_SQSYNTH square wave internal synth
129 * MOD_FMSYNTH FM internal synth
130 * MOD_MAPPER MIDI mapper
133 /* FIXME Is this really the correct equivalence from UNIX to
134 Windows Sound type */
137 case SYNTH_TYPE_FM
: return MOD_FMSYNTH
;
138 case SYNTH_TYPE_SAMPLE
: return MOD_SYNTH
;
139 case SYNTH_TYPE_MIDI
: return MOD_MIDIPORT
;
141 ERR("Cannot determine the type of this midi device. "
142 "Assuming FM Synth\n");
148 /**************************************************************************
149 * OSS_MidiInit [internal]
151 * Initializes the MIDI devices information variables
153 BOOL
OSS_MidiInit(void)
155 int i
, status
, numsynthdevs
= 255, nummididevs
= 255;
156 struct synth_info sinfo
;
157 struct midi_info minfo
;
158 static BOOL bInitDone
= FALSE
;
163 TRACE("Initializing the MIDI variables.\n");
166 /* try to open device */
167 if (midiOpenSeq() == -1) {
171 /* find how many Synth devices are there in the system */
172 status
= ioctl(midiSeqFD
, SNDCTL_SEQ_NRSYNTHS
, &numsynthdevs
);
175 ERR("ioctl for nr synth failed.\n");
180 if (numsynthdevs
> MAX_MIDIOUTDRV
) {
181 ERR("MAX_MIDIOUTDRV (%d) was enough for the number of devices (%d). "
182 "Some FM devices will not be available.\n",MAX_MIDIOUTDRV
,numsynthdevs
);
183 numsynthdevs
= MAX_MIDIOUTDRV
;
186 for (i
= 0; i
< numsynthdevs
; i
++) {
187 LPMIDIOUTCAPSA tmplpCaps
;
190 status
= ioctl(midiSeqFD
, SNDCTL_SYNTH_INFO
, &sinfo
);
192 ERR("ioctl for synth info failed.\n");
197 tmplpCaps
= HeapAlloc(GetProcessHeap(), 0, sizeof(MIDIOUTCAPSA
));
200 /* We also have the information sinfo.synth_subtype, not used here
203 /* Manufac ID. We do not have access to this with soundcard.h
204 * Does not seem to be a problem, because in mmsystem.h only
205 * Microsoft's ID is listed.
207 tmplpCaps
->wMid
= 0x00FF;
208 tmplpCaps
->wPid
= 0x0001; /* FIXME Product ID */
209 /* Product Version. We simply say "1" */
210 tmplpCaps
->vDriverVersion
= 0x001;
211 strcpy(tmplpCaps
->szPname
, sinfo
.name
);
213 tmplpCaps
->wTechnology
= MIDI_UnixToWindowsDeviceType(sinfo
.synth_type
);
214 tmplpCaps
->wVoices
= sinfo
.nr_voices
;
216 /* FIXME Is it possible to know the maximum
217 * number of simultaneous notes of a soundcard ?
218 * I believe we don't have this information, but
219 * it's probably equal or more than wVoices
221 tmplpCaps
->wNotes
= sinfo
.nr_voices
;
222 tmplpCaps
->wChannelMask
= 0xFFFF;
224 /* FIXME Do we have this information?
225 * Assuming the soundcards can handle
226 * MIDICAPS_VOLUME and MIDICAPS_LRVOLUME but
227 * not MIDICAPS_CACHE.
229 tmplpCaps
->dwSupport
= MIDICAPS_VOLUME
|MIDICAPS_LRVOLUME
;
231 midiOutDevices
[i
] = tmplpCaps
;
233 if (sinfo
.capabilities
& SYNTH_CAP_INPUT
) {
234 FIXME("Synthesizer support MIDI in. Not supported yet (please report)\n");
237 TRACE("SynthOut[%d]\tname='%s' techn=%d voices=%d notes=%d chnMsk=%04x support=%ld\n"
238 "\tOSS info: synth subtype=%d capa=%lx\n",
239 i
, tmplpCaps
->szPname
, tmplpCaps
->wTechnology
, tmplpCaps
->wVoices
,
240 tmplpCaps
->wNotes
, tmplpCaps
->wChannelMask
, tmplpCaps
->dwSupport
,
241 sinfo
.synth_subtype
, (long)sinfo
.capabilities
);
244 /* find how many MIDI devices are there in the system */
245 status
= ioctl(midiSeqFD
, SNDCTL_SEQ_NRMIDIS
, &nummididevs
);
247 ERR("ioctl on nr midi failed.\n");
252 /* FIXME: the two restrictions below could be loosen in some cases */
253 if (numsynthdevs
+ nummididevs
> MAX_MIDIOUTDRV
) {
254 ERR("MAX_MIDIOUTDRV was not enough for the number of devices. "
255 "Some MIDI devices will not be available.\n");
256 nummididevs
= MAX_MIDIOUTDRV
- numsynthdevs
;
259 if (nummididevs
> MAX_MIDIINDRV
) {
260 ERR("MAX_MIDIINDRV (%d) was not enough for the number of devices (%d). "
261 "Some MIDI devices will not be available.\n",MAX_MIDIINDRV
,nummididevs
);
262 nummididevs
= MAX_MIDIINDRV
;
265 for (i
= 0; i
< nummididevs
; i
++) {
266 LPMIDIOUTCAPSA tmplpOutCaps
;
267 LPMIDIINCAPSA tmplpInCaps
;
270 status
= ioctl(midiSeqFD
, SNDCTL_MIDI_INFO
, &minfo
);
272 ERR("ioctl on midi info for device %d failed.\n", i
);
277 tmplpOutCaps
= HeapAlloc(GetProcessHeap(), 0, sizeof(MIDIOUTCAPSA
));
280 /* This whole part is somewhat obscure to me. I'll keep trying to dig
281 info about it. If you happen to know, please tell us. The very
282 descritive minfo.dev_type was not used here.
284 /* Manufac ID. We do not have access to this with soundcard.h
285 Does not seem to be a problem, because in mmsystem.h only
286 Microsoft's ID is listed */
287 tmplpOutCaps
->wMid
= 0x00FF;
288 tmplpOutCaps
->wPid
= 0x0001; /* FIXME Product ID */
289 /* Product Version. We simply say "1" */
290 tmplpOutCaps
->vDriverVersion
= 0x001;
291 strcpy(tmplpOutCaps
->szPname
, minfo
.name
);
293 tmplpOutCaps
->wTechnology
= MOD_MIDIPORT
; /* FIXME Is this right? */
294 /* Does it make any difference? */
295 tmplpOutCaps
->wVoices
= 16;
296 /* Does it make any difference? */
297 tmplpOutCaps
->wNotes
= 16;
298 tmplpOutCaps
->wChannelMask
= 0xFFFF;
300 /* FIXME Does it make any difference? */
301 tmplpOutCaps
->dwSupport
= MIDICAPS_VOLUME
|MIDICAPS_LRVOLUME
;
303 midiOutDevices
[numsynthdevs
+ i
] = tmplpOutCaps
;
305 tmplpInCaps
= HeapAlloc(GetProcessHeap(), 0, sizeof(MIDIINCAPSA
));
308 /* This whole part is somewhat obscure to me. I'll keep trying to dig
309 info about it. If you happen to know, please tell us. The very
310 descritive minfo.dev_type was not used here.
312 /* Manufac ID. We do not have access to this with soundcard.h
313 Does not seem to be a problem, because in mmsystem.h only
314 Microsoft's ID is listed */
315 tmplpInCaps
->wMid
= 0x00FF;
316 tmplpInCaps
->wPid
= 0x0001; /* FIXME Product ID */
317 /* Product Version. We simply say "1" */
318 tmplpInCaps
->vDriverVersion
= 0x001;
319 strcpy(tmplpInCaps
->szPname
, minfo
.name
);
321 /* FIXME : could we get better information than that ? */
322 tmplpInCaps
->dwSupport
= MIDICAPS_VOLUME
|MIDICAPS_LRVOLUME
;
324 midiInDevices
[i
] = tmplpInCaps
;
326 TRACE("MidiOut[%d]\tname='%s' techn=%d voices=%d notes=%d chnMsk=%04x support=%ld\n"
327 "MidiIn [%d]\tname='%s' support=%ld\n"
328 "\tOSS info: midi dev-type=%d, capa=%lx\n",
329 i
, tmplpOutCaps
->szPname
, tmplpOutCaps
->wTechnology
,
330 tmplpOutCaps
->wVoices
, tmplpOutCaps
->wNotes
,
331 tmplpOutCaps
->wChannelMask
, tmplpOutCaps
->dwSupport
,
332 i
, tmplpInCaps
->szPname
, tmplpInCaps
->dwSupport
,
333 minfo
.dev_type
, (long)minfo
.capabilities
);
336 /* windows does not seem to differentiate Synth from MIDI devices */
337 MODM_NUMFMSYNTHDEVS
= numsynthdevs
;
338 MODM_NUMMIDIDEVS
= nummididevs
;
339 MODM_NUMDEVS
= numsynthdevs
+ nummididevs
;
341 MIDM_NUMDEVS
= nummididevs
;
343 /* close file and exit */
349 /**************************************************************************
350 * MIDI_NotifyClient [internal]
352 static DWORD
MIDI_NotifyClient(UINT wDevID
, WORD wMsg
,
353 DWORD dwParam1
, DWORD dwParam2
)
360 TRACE("wDevID = %04X wMsg = %d dwParm1 = %04lX dwParam2 = %04lX\n",
361 wDevID
, wMsg
, dwParam1
, dwParam2
);
367 if (wDevID
> MAX_MIDIOUTDRV
)
368 return MCIERR_INTERNAL
;
370 dwCallBack
= MidiOutDev
[wDevID
].midiDesc
.dwCallback
;
371 uFlags
= MidiOutDev
[wDevID
].wFlags
;
372 hDev
= MidiOutDev
[wDevID
].midiDesc
.hMidi
;
373 dwInstance
= MidiOutDev
[wDevID
].midiDesc
.dwInstance
;
380 if (wDevID
> MAX_MIDIINDRV
)
381 return MCIERR_INTERNAL
;
383 dwCallBack
= MidiInDev
[wDevID
].midiDesc
.dwCallback
;
384 uFlags
= MidiInDev
[wDevID
].wFlags
;
385 hDev
= MidiInDev
[wDevID
].midiDesc
.hMidi
;
386 dwInstance
= MidiInDev
[wDevID
].midiDesc
.dwInstance
;
389 WARN("Unsupported MSW-MIDI message %u\n", wMsg
);
390 return MCIERR_INTERNAL
;
393 return DriverCallback(dwCallBack
, uFlags
, hDev
, wMsg
, dwInstance
, dwParam1
, dwParam2
) ?
397 static int midi_warn
= 1;
398 /**************************************************************************
399 * midiOpenSeq [internal]
401 static int midiOpenSeq(void)
403 if (numOpenMidiSeq
== 0) {
404 midiSeqFD
= open(MIDI_SEQ
, O_RDWR
, 0);
405 if (midiSeqFD
== -1) {
408 WARN("Can't open MIDI device '%s' ! (%s). If your "
409 "program needs this (probably not): %s\n",
410 MIDI_SEQ
, strerror(errno
),
412 "create it ! (\"man MAKEDEV\" ?)" :
414 "load MIDI sequencer kernel driver !" :
416 "grant access ! (\"man chmod\")" : ""
422 if (fcntl(midiSeqFD
, F_SETFL
, O_NONBLOCK
) < 0) {
423 WARN("can't set sequencer fd to non-blocking, errno %d (%s)\n", errno
, strerror(errno
));
428 fcntl(midiSeqFD
, F_SETFD
, 1); /* set close on exec flag */
429 ioctl(midiSeqFD
, SNDCTL_SEQ_RESET
);
435 /**************************************************************************
436 * midiCloseSeq [internal]
438 static int midiCloseSeq(void)
440 if (--numOpenMidiSeq
== 0) {
447 /* FIXME: this is a bad idea, it's even not static... */
450 /* FIXME: this is not reentrant, not static - because of global variable
453 /**************************************************************************
454 * seqbuf_dump [internal]
456 void seqbuf_dump(void)
459 if (write(midiSeqFD
, _seqbuf
, _seqbufptr
) == -1) {
460 WARN("Can't write data to sequencer %d, errno %d (%s)!\n",
461 midiSeqFD
, errno
, strerror(errno
));
464 * in any case buffer is lost so that if many errors occur the buffer
471 static void midReceiveChar(WORD wDevID
, unsigned char value
, DWORD dwTime
)
475 TRACE("Adding %02xh to %d[%d]\n", value
, wDevID
, MidiInDev
[wDevID
].incLen
);
477 if (wDevID
>= MAX_MIDIINDRV
) {
481 if (MidiInDev
[wDevID
].state
== 0) {
482 TRACE("input not started, thrown away\n");
486 if (MidiInDev
[wDevID
].state
& 2) { /* system exclusive */
487 LPMIDIHDR lpMidiHdr
= MidiInDev
[wDevID
].lpQueueHdr
;
491 LPBYTE lpData
= lpMidiHdr
->lpData
;
493 lpData
[lpMidiHdr
->dwBytesRecorded
++] = value
;
494 if (lpMidiHdr
->dwBytesRecorded
== lpMidiHdr
->dwBufferLength
) {
498 if (value
== 0xF7) { /* then end */
499 MidiInDev
[wDevID
].state
&= ~2;
502 if (sbfb
&& lpMidiHdr
!= NULL
) {
503 lpMidiHdr
= MidiInDev
[wDevID
].lpQueueHdr
;
504 lpMidiHdr
->dwFlags
&= ~MHDR_INQUEUE
;
505 lpMidiHdr
->dwFlags
|= MHDR_DONE
;
506 MidiInDev
[wDevID
].lpQueueHdr
= (LPMIDIHDR
)lpMidiHdr
->lpNext
;
507 if (MIDI_NotifyClient(wDevID
, MIM_LONGDATA
, (DWORD
)lpMidiHdr
, dwTime
) != MMSYSERR_NOERROR
) {
508 WARN("Couldn't notify client\n");
514 #define IS_CMD(_x) (((_x) & 0x80) == 0x80)
515 #define IS_SYS_CMD(_x) (((_x) & 0xF0) == 0xF0)
517 if (!IS_CMD(value
) && MidiInDev
[wDevID
].incLen
== 0) { /* try to reuse old cmd */
518 if (IS_CMD(MidiInDev
[wDevID
].incPrev
) && !IS_SYS_CMD(MidiInDev
[wDevID
].incPrev
)) {
519 MidiInDev
[wDevID
].incoming
[0] = MidiInDev
[wDevID
].incPrev
;
520 MidiInDev
[wDevID
].incLen
= 1;
521 TRACE("Reusing old command %02xh\n", MidiInDev
[wDevID
].incPrev
);
523 FIXME("error for midi-in, should generate MIM_ERROR notification:"
524 " prev=%02Xh, incLen=%02Xh\n",
525 MidiInDev
[wDevID
].incPrev
, MidiInDev
[wDevID
].incLen
);
529 MidiInDev
[wDevID
].incoming
[(int)(MidiInDev
[wDevID
].incLen
++)] = value
;
530 if (MidiInDev
[wDevID
].incLen
== 1 && !IS_SYS_CMD(MidiInDev
[wDevID
].incoming
[0])) {
531 /* store new cmd, just in case */
532 MidiInDev
[wDevID
].incPrev
= MidiInDev
[wDevID
].incoming
[0];
538 switch (MidiInDev
[wDevID
].incoming
[0] & 0xF0) {
541 case MIDI_KEY_PRESSURE
:
542 case MIDI_CTL_CHANGE
:
543 case MIDI_PITCH_BEND
:
544 if (MidiInDev
[wDevID
].incLen
== 3) {
545 toSend
= (MidiInDev
[wDevID
].incoming
[2] << 16) |
546 (MidiInDev
[wDevID
].incoming
[1] << 8) |
547 (MidiInDev
[wDevID
].incoming
[0] << 0);
550 case MIDI_PGM_CHANGE
:
551 case MIDI_CHN_PRESSURE
:
552 if (MidiInDev
[wDevID
].incLen
== 2) {
553 toSend
= (MidiInDev
[wDevID
].incoming
[1] << 8) |
554 (MidiInDev
[wDevID
].incoming
[0] << 0);
557 case MIDI_SYSTEM_PREFIX
:
558 if (MidiInDev
[wDevID
].incoming
[0] == 0xF0) {
559 MidiInDev
[wDevID
].state
|= 2;
560 MidiInDev
[wDevID
].incLen
= 0;
562 if (MidiInDev
[wDevID
].incLen
== 1) {
563 toSend
= (MidiInDev
[wDevID
].incoming
[0] << 0);
568 WARN("This shouldn't happen (%02X)\n", MidiInDev
[wDevID
].incoming
[0]);
571 TRACE("Sending event %08lx\n", toSend
);
572 MidiInDev
[wDevID
].incLen
= 0;
573 dwTime
-= MidiInDev
[wDevID
].startTime
;
574 if (MIDI_NotifyClient(wDevID
, MIM_DATA
, toSend
, dwTime
) != MMSYSERR_NOERROR
) {
575 WARN("Couldn't notify client\n");
580 static VOID WINAPI
midTimeCallback(HWND hwnd
, UINT msg
, UINT id
, DWORD dwTime
)
582 unsigned char buffer
[256];
585 TRACE("(%04X, %d, %d, %lu)\n", hwnd
, msg
, id
, dwTime
);
587 len
= read(midiSeqFD
, buffer
, sizeof(buffer
));
590 if ((len
% 4) != 0) {
591 WARN("Bad length %d, errno %d (%s)\n", len
, errno
, strerror(errno
));
595 for (idx
= 0; idx
< len
; ) {
596 if (buffer
[idx
] & 0x80) {
598 "Reading<8> %02x %02x %02x %02x %02x %02x %02x %02x\n",
599 buffer
[idx
+ 0], buffer
[idx
+ 1],
600 buffer
[idx
+ 2], buffer
[idx
+ 3],
601 buffer
[idx
+ 4], buffer
[idx
+ 5],
602 buffer
[idx
+ 6], buffer
[idx
+ 7]);
605 switch (buffer
[idx
+ 0]) {
610 midReceiveChar(buffer
[idx
+ 2], buffer
[idx
+ 1], dwTime
);
613 TRACE("Unsupported event %d\n", buffer
[idx
+ 0]);
621 /**************************************************************************
622 * midGetDevCaps [internal]
624 static DWORD
midGetDevCaps(WORD wDevID
, LPMIDIINCAPSA lpCaps
, DWORD dwSize
)
626 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpCaps
, dwSize
);
628 if (wDevID
>= MIDM_NUMDEVS
) return MMSYSERR_BADDEVICEID
;
629 if (lpCaps
== NULL
) return MMSYSERR_INVALPARAM
;
631 memcpy(lpCaps
, midiInDevices
[wDevID
], min(dwSize
, sizeof(*lpCaps
)));
633 return MMSYSERR_NOERROR
;
636 /**************************************************************************
639 static DWORD
midOpen(WORD wDevID
, LPMIDIOPENDESC lpDesc
, DWORD dwFlags
)
641 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpDesc
, dwFlags
);
643 if (lpDesc
== NULL
) {
644 WARN("Invalid Parameter !\n");
645 return MMSYSERR_INVALPARAM
;
649 * how to check that content of lpDesc is correct ?
651 if (wDevID
>= MAX_MIDIINDRV
) {
652 WARN("wDevID too large (%u) !\n", wDevID
);
653 return MMSYSERR_BADDEVICEID
;
655 if (MidiInDev
[wDevID
].midiDesc
.hMidi
!= 0) {
656 WARN("device already open !\n");
657 return MMSYSERR_ALLOCATED
;
659 if ((dwFlags
& MIDI_IO_STATUS
) != 0) {
660 WARN("No support for MIDI_IO_STATUS in dwFlags yet, ignoring it\n");
661 dwFlags
&= ~MIDI_IO_STATUS
;
663 if ((dwFlags
& ~CALLBACK_TYPEMASK
) != 0) {
664 FIXME("Bad dwFlags\n");
665 return MMSYSERR_INVALFLAG
;
668 if (midiOpenSeq() < 0) {
669 return MMSYSERR_ERROR
;
672 if (numStartedMidiIn
++ == 0) {
673 midiInTimerID
= SetTimer(0, 0, 250, midTimeCallback
);
674 if (!midiInTimerID
) {
675 numStartedMidiIn
= 0;
676 WARN("Couldn't start timer for midi-in\n");
678 return MMSYSERR_ERROR
;
680 TRACE("Starting timer (%u) for midi-in\n", midiInTimerID
);
683 MidiInDev
[wDevID
].wFlags
= HIWORD(dwFlags
& CALLBACK_TYPEMASK
);
685 MidiInDev
[wDevID
].lpQueueHdr
= NULL
;
686 MidiInDev
[wDevID
].dwTotalPlayed
= 0;
687 MidiInDev
[wDevID
].bufsize
= 0x3FFF;
688 MidiInDev
[wDevID
].midiDesc
= *lpDesc
;
689 MidiInDev
[wDevID
].state
= 0;
690 MidiInDev
[wDevID
].incLen
= 0;
691 MidiInDev
[wDevID
].startTime
= 0;
693 if (MIDI_NotifyClient(wDevID
, MIM_OPEN
, 0L, 0L) != MMSYSERR_NOERROR
) {
694 WARN("can't notify client !\n");
695 return MMSYSERR_INVALPARAM
;
697 return MMSYSERR_NOERROR
;
700 /**************************************************************************
701 * midClose [internal]
703 static DWORD
midClose(WORD wDevID
)
705 int ret
= MMSYSERR_NOERROR
;
707 TRACE("(%04X);\n", wDevID
);
709 if (wDevID
>= MAX_MIDIINDRV
) {
710 WARN("wDevID too big (%u) !\n", wDevID
);
711 return MMSYSERR_BADDEVICEID
;
713 if (MidiInDev
[wDevID
].midiDesc
.hMidi
== 0) {
714 WARN("device not opened !\n");
715 return MMSYSERR_ERROR
;
717 if (MidiInDev
[wDevID
].lpQueueHdr
!= 0) {
718 return MIDIERR_STILLPLAYING
;
721 if (midiSeqFD
== -1) {
723 return MMSYSERR_ERROR
;
725 if (--numStartedMidiIn
== 0) {
726 TRACE("Stopping timer for midi-in\n");
727 if (!KillTimer(0, midiInTimerID
)) {
728 WARN("Couldn't stop timer for midi-in\n");
734 MidiInDev
[wDevID
].bufsize
= 0;
735 if (MIDI_NotifyClient(wDevID
, MIM_CLOSE
, 0L, 0L) != MMSYSERR_NOERROR
) {
736 WARN("can't notify client !\n");
737 ret
= MMSYSERR_INVALPARAM
;
739 MidiInDev
[wDevID
].midiDesc
.hMidi
= 0;
743 /**************************************************************************
744 * midAddBuffer [internal]
746 static DWORD
midAddBuffer(WORD wDevID
, LPMIDIHDR lpMidiHdr
, DWORD dwSize
)
748 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpMidiHdr
, dwSize
);
750 if (lpMidiHdr
== NULL
) return MMSYSERR_INVALPARAM
;
751 if (sizeof(MIDIHDR
) > dwSize
) return MMSYSERR_INVALPARAM
;
752 if (lpMidiHdr
->dwBufferLength
== 0) return MMSYSERR_INVALPARAM
;
753 if (lpMidiHdr
->dwFlags
& MHDR_INQUEUE
) return MIDIERR_STILLPLAYING
;
754 if (!(lpMidiHdr
->dwFlags
& MHDR_PREPARED
)) return MIDIERR_UNPREPARED
;
756 if (MidiInDev
[wDevID
].lpQueueHdr
== 0) {
757 MidiInDev
[wDevID
].lpQueueHdr
= lpMidiHdr
;
761 for (ptr
= MidiInDev
[wDevID
].lpQueueHdr
;
763 ptr
= (LPMIDIHDR
)ptr
->lpNext
);
764 ptr
->lpNext
= (struct midihdr_tag
*)lpMidiHdr
;
766 return MMSYSERR_NOERROR
;
769 /**************************************************************************
770 * midPrepare [internal]
772 static DWORD
midPrepare(WORD wDevID
, LPMIDIHDR lpMidiHdr
, DWORD dwSize
)
774 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpMidiHdr
, dwSize
);
776 if (dwSize
< sizeof(MIDIHDR
) || lpMidiHdr
== 0 ||
777 lpMidiHdr
->lpData
== 0 || lpMidiHdr
->dwFlags
!= 0 ||
778 lpMidiHdr
->dwBufferLength
>= 0x10000ul
)
779 return MMSYSERR_INVALPARAM
;
781 lpMidiHdr
->lpNext
= 0;
782 lpMidiHdr
->dwFlags
|= MHDR_PREPARED
;
783 lpMidiHdr
->dwBytesRecorded
= 0;
785 return MMSYSERR_NOERROR
;
788 /**************************************************************************
789 * midUnprepare [internal]
791 static DWORD
midUnprepare(WORD wDevID
, LPMIDIHDR lpMidiHdr
, DWORD dwSize
)
793 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpMidiHdr
, dwSize
);
795 if (dwSize
< sizeof(MIDIHDR
) || lpMidiHdr
== 0 ||
796 lpMidiHdr
->lpData
== 0 || lpMidiHdr
->dwBufferLength
>= 0x10000ul
)
797 return MMSYSERR_INVALPARAM
;
799 if (!(lpMidiHdr
->dwFlags
& MHDR_PREPARED
)) return MIDIERR_UNPREPARED
;
800 if (lpMidiHdr
->dwFlags
& MHDR_INQUEUE
) return MIDIERR_STILLPLAYING
;
802 lpMidiHdr
->dwFlags
&= ~MHDR_PREPARED
;
804 return MMSYSERR_NOERROR
;
807 /**************************************************************************
808 * midReset [internal]
810 static DWORD
midReset(WORD wDevID
)
812 DWORD dwTime
= GetTickCount();
814 TRACE("(%04X);\n", wDevID
);
816 while (MidiInDev
[wDevID
].lpQueueHdr
) {
817 MidiInDev
[wDevID
].lpQueueHdr
->dwFlags
&= ~MHDR_INQUEUE
;
818 MidiInDev
[wDevID
].lpQueueHdr
->dwFlags
|= MHDR_DONE
;
819 /* FIXME: when called from 16 bit, lpQueueHdr needs to be a segmented ptr */
820 if (MIDI_NotifyClient(wDevID
, MIM_LONGDATA
,
821 (DWORD
)MidiInDev
[wDevID
].lpQueueHdr
, dwTime
) != MMSYSERR_NOERROR
) {
822 WARN("Couldn't notify client\n");
824 MidiInDev
[wDevID
].lpQueueHdr
= (LPMIDIHDR
)MidiInDev
[wDevID
].lpQueueHdr
->lpNext
;
827 return MMSYSERR_NOERROR
;
831 /**************************************************************************
832 * midStart [internal]
834 static DWORD
midStart(WORD wDevID
)
836 TRACE("(%04X);\n", wDevID
);
838 /* FIXME : should test value of wDevID */
840 MidiInDev
[wDevID
].state
= 1;
841 MidiInDev
[wDevID
].startTime
= GetTickCount();
842 return MMSYSERR_NOERROR
;
845 /**************************************************************************
848 static DWORD
midStop(WORD wDevID
)
850 TRACE("(%04X);\n", wDevID
);
852 /* FIXME : should test value of wDevID */
853 MidiInDev
[wDevID
].state
= 0;
854 return MMSYSERR_NOERROR
;
857 /*-----------------------------------------------------------------------*/
859 typedef struct sVoice
{
860 int note
; /* 0 means not used */
862 unsigned cntMark
: 30,
865 #define sVS_PLAYING 1
866 #define sVS_SUSTAINED 2
869 typedef struct sChannel
{
875 int bank
; /* CTL_BANK_SELECT */
876 int volume
; /* CTL_MAIN_VOLUME */
877 int balance
; /* CTL_BALANCE */
878 int expression
; /* CTL_EXPRESSION */
879 int sustain
; /* CTL_SUSTAIN */
881 unsigned char nrgPmtMSB
; /* Non register Parameters */
882 unsigned char nrgPmtLSB
;
883 unsigned char regPmtMSB
; /* Non register Parameters */
884 unsigned char regPmtLSB
;
887 typedef struct sFMextra
{
890 sChannel channel
[16]; /* MIDI has only 16 channels */
891 sVoice voice
[1]; /* dyn allocated according to sound card */
892 /* do not append fields below voice[1] since the size of this structure
893 * depends on the number of available voices on the FM synth...
897 extern unsigned char midiFMInstrumentPatches
[16 * 128];
898 extern unsigned char midiFMDrumsPatches
[16 * 128];
900 /**************************************************************************
901 * modFMLoad [internal]
903 static int modFMLoad(int dev
)
906 struct sbi_instrument sbi
;
911 memset(sbi
.operators
+ 16, 0, 16);
912 for (i
= 0; i
< 128; i
++) {
914 memcpy(sbi
.operators
, midiFMInstrumentPatches
+ i
* 16, 16);
916 if (write(midiSeqFD
, (char*)&sbi
, sizeof(sbi
)) == -1) {
917 WARN("Couldn't write patch for instrument %d, errno %d (%s)!\n", sbi
.channel
, errno
, strerror(errno
));
921 for (i
= 0; i
< 128; i
++) {
922 sbi
.channel
= 128 + i
;
923 memcpy(sbi
.operators
, midiFMDrumsPatches
+ i
* 16, 16);
925 if (write(midiSeqFD
, (char*)&sbi
, sizeof(sbi
)) == -1) {
926 WARN("Couldn't write patch for drum %d, errno %d (%s)!\n", sbi
.channel
, errno
, strerror(errno
));
933 /**************************************************************************
934 * modFMReset [internal]
936 static void modFMReset(WORD wDevID
)
938 sFMextra
* extra
= (sFMextra
*)MidiOutDev
[wDevID
].lpExtra
;
939 sVoice
* voice
= extra
->voice
;
940 sChannel
* channel
= extra
->channel
;
943 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
944 if (voice
[i
].status
!= sVS_UNUSED
) {
945 SEQ_STOP_NOTE(wDevID
, i
, voice
[i
].note
, 64);
947 SEQ_KEY_PRESSURE(wDevID
, i
, 127, 0);
948 SEQ_CONTROL(wDevID
, i
, SEQ_VOLMODE
, VOL_METHOD_LINEAR
);
950 voice
[i
].channel
= -1;
951 voice
[i
].cntMark
= 0;
952 voice
[i
].status
= sVS_UNUSED
;
954 for (i
= 0; i
< 16; i
++) {
955 channel
[i
].program
= 0;
956 channel
[i
].bender
= 8192;
957 channel
[i
].benderRange
= 2;
959 channel
[i
].volume
= 127;
960 channel
[i
].balance
= 64;
961 channel
[i
].expression
= 0;
962 channel
[i
].sustain
= 0;
965 extra
->drumSetMask
= 1 << 9; /* channel 10 is normally drums, sometimes 16 also */
969 #define IS_DRUM_CHANNEL(_xtra, _chn) ((_xtra)->drumSetMask & (1 << (_chn)))
971 /**************************************************************************
972 * modGetDevCaps [internal]
974 static DWORD
modGetDevCaps(WORD wDevID
, LPMIDIOUTCAPSA lpCaps
, DWORD dwSize
)
976 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpCaps
, dwSize
);
978 if (wDevID
>= MODM_NUMDEVS
) return MMSYSERR_BADDEVICEID
;
979 if (lpCaps
== NULL
) return MMSYSERR_INVALPARAM
;
981 memcpy(lpCaps
, midiOutDevices
[wDevID
], min(dwSize
, sizeof(*lpCaps
)));
983 return MMSYSERR_NOERROR
;
986 /**************************************************************************
989 static DWORD
modOpen(WORD wDevID
, LPMIDIOPENDESC lpDesc
, DWORD dwFlags
)
991 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpDesc
, dwFlags
);
992 if (lpDesc
== NULL
) {
993 WARN("Invalid Parameter !\n");
994 return MMSYSERR_INVALPARAM
;
996 if (wDevID
>= MAX_MIDIOUTDRV
) {
997 TRACE("MAX_MIDIOUTDRV reached !\n");
998 return MMSYSERR_BADDEVICEID
;
1000 if (MidiOutDev
[wDevID
].midiDesc
.hMidi
!= 0) {
1001 WARN("device already open !\n");
1002 return MMSYSERR_ALLOCATED
;
1004 if ((dwFlags
& ~CALLBACK_TYPEMASK
) != 0) {
1005 WARN("bad dwFlags\n");
1006 return MMSYSERR_INVALFLAG
;
1008 if (midiOutDevices
[wDevID
] == NULL
) {
1009 TRACE("un-allocated wDevID\n");
1010 return MMSYSERR_BADDEVICEID
;
1013 MidiOutDev
[wDevID
].lpExtra
= 0;
1015 switch (midiOutDevices
[wDevID
]->wTechnology
) {
1018 void* extra
= HeapAlloc(GetProcessHeap(), 0,
1019 sizeof(struct sFMextra
) +
1020 sizeof(struct sVoice
) * (midiOutDevices
[wDevID
]->wVoices
- 1));
1023 WARN("can't alloc extra data !\n");
1024 return MMSYSERR_NOMEM
;
1026 MidiOutDev
[wDevID
].lpExtra
= extra
;
1027 if (midiOpenSeq() < 0) {
1028 MidiOutDev
[wDevID
].lpExtra
= 0;
1029 HeapFree(GetProcessHeap(), 0, extra
);
1030 return MMSYSERR_ERROR
;
1032 if (modFMLoad(wDevID
) < 0) {
1034 MidiOutDev
[wDevID
].lpExtra
= 0;
1035 HeapFree(GetProcessHeap(), 0, extra
);
1036 return MMSYSERR_ERROR
;
1042 if (midiOpenSeq() < 0) {
1043 return MMSYSERR_ALLOCATED
;
1047 WARN("Technology not supported (yet) %d !\n",
1048 midiOutDevices
[wDevID
]->wTechnology
);
1049 return MMSYSERR_NOTENABLED
;
1052 MidiOutDev
[wDevID
].wFlags
= HIWORD(dwFlags
& CALLBACK_TYPEMASK
);
1054 MidiOutDev
[wDevID
].lpQueueHdr
= NULL
;
1055 MidiOutDev
[wDevID
].dwTotalPlayed
= 0;
1056 MidiOutDev
[wDevID
].bufsize
= 0x3FFF;
1057 MidiOutDev
[wDevID
].midiDesc
= *lpDesc
;
1059 if (MIDI_NotifyClient(wDevID
, MOM_OPEN
, 0L, 0L) != MMSYSERR_NOERROR
) {
1060 WARN("can't notify client !\n");
1061 return MMSYSERR_INVALPARAM
;
1063 TRACE("Successful !\n");
1064 return MMSYSERR_NOERROR
;
1068 /**************************************************************************
1069 * modClose [internal]
1071 static DWORD
modClose(WORD wDevID
)
1073 int ret
= MMSYSERR_NOERROR
;
1075 TRACE("(%04X);\n", wDevID
);
1077 if (MidiOutDev
[wDevID
].midiDesc
.hMidi
== 0) {
1078 WARN("device not opened !\n");
1079 return MMSYSERR_ERROR
;
1081 /* FIXME: should test that no pending buffer is still in the queue for
1084 if (midiSeqFD
== -1) {
1085 WARN("can't close !\n");
1086 return MMSYSERR_ERROR
;
1089 switch (midiOutDevices
[wDevID
]->wTechnology
) {
1095 WARN("Technology not supported (yet) %d !\n",
1096 midiOutDevices
[wDevID
]->wTechnology
);
1097 return MMSYSERR_NOTENABLED
;
1100 if (MidiOutDev
[wDevID
].lpExtra
!= 0) {
1101 HeapFree(GetProcessHeap(), 0, MidiOutDev
[wDevID
].lpExtra
);
1102 MidiOutDev
[wDevID
].lpExtra
= 0;
1105 MidiOutDev
[wDevID
].bufsize
= 0;
1106 if (MIDI_NotifyClient(wDevID
, MOM_CLOSE
, 0L, 0L) != MMSYSERR_NOERROR
) {
1107 WARN("can't notify client !\n");
1108 ret
= MMSYSERR_INVALPARAM
;
1110 MidiOutDev
[wDevID
].midiDesc
.hMidi
= 0;
1114 /**************************************************************************
1115 * modData [internal]
1117 static DWORD
modData(WORD wDevID
, DWORD dwParam
)
1119 WORD evt
= LOBYTE(LOWORD(dwParam
));
1120 WORD d1
= HIBYTE(LOWORD(dwParam
));
1121 WORD d2
= LOBYTE(HIWORD(dwParam
));
1123 TRACE("(%04X, %08lX);\n", wDevID
, dwParam
);
1125 if (midiSeqFD
== -1) {
1126 WARN("can't play !\n");
1127 return MIDIERR_NODEVICE
;
1129 switch (midiOutDevices
[wDevID
]->wTechnology
) {
1132 * - chorus depth controller is not used
1135 sFMextra
* extra
= (sFMextra
*)MidiOutDev
[wDevID
].lpExtra
;
1136 sVoice
* voice
= extra
->voice
;
1137 sChannel
* channel
= extra
->channel
;
1138 int chn
= (evt
& 0x0F);
1141 switch (evt
& 0xF0) {
1143 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1144 /* don't stop sustained notes */
1145 if (voice
[i
].status
== sVS_PLAYING
&& voice
[i
].channel
== chn
&& voice
[i
].note
== d1
) {
1146 voice
[i
].status
= sVS_UNUSED
;
1147 SEQ_STOP_NOTE(wDevID
, i
, d1
, d2
);
1152 if (d2
== 0) { /* note off if velocity == 0 */
1153 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1154 /* don't stop sustained notes */
1155 if (voice
[i
].status
== sVS_PLAYING
&& voice
[i
].channel
== chn
&& voice
[i
].note
== d1
) {
1156 voice
[i
].status
= sVS_UNUSED
;
1157 SEQ_STOP_NOTE(wDevID
, i
, d1
, 64);
1162 /* finding out in this order :
1164 * - if replaying the same note on the same channel
1165 * - the older voice (LRU)
1167 for (i
= nv
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1168 if (voice
[i
].status
== sVS_UNUSED
||
1169 (voice
[i
].note
== d1
&& voice
[i
].channel
== chn
)) {
1173 if (voice
[i
].cntMark
< voice
[0].cntMark
) {
1178 "playing on voice=%d, pgm=%d, pan=0x%02X, vol=0x%02X, "
1179 "bender=0x%02X, note=0x%02X, vel=0x%02X\n",
1180 nv
, channel
[chn
].program
,
1181 channel
[chn
].balance
,
1182 channel
[chn
].volume
,
1183 channel
[chn
].bender
, d1
, d2
);
1185 SEQ_SET_PATCH(wDevID
, nv
, IS_DRUM_CHANNEL(extra
, chn
) ?
1186 (128 + d1
) : channel
[chn
].program
);
1187 SEQ_BENDER_RANGE(wDevID
, nv
, channel
[chn
].benderRange
* 100);
1188 SEQ_BENDER(wDevID
, nv
, channel
[chn
].bender
);
1189 SEQ_CONTROL(wDevID
, nv
, CTL_PAN
, channel
[chn
].balance
);
1190 SEQ_CONTROL(wDevID
, nv
, CTL_EXPRESSION
, channel
[chn
].expression
);
1192 /* FIXME: does not really seem to work on my SB card and
1193 * screws everything up... so lay it down
1195 SEQ_CONTROL(wDevID
, nv
, CTL_MAIN_VOLUME
, channel
[chn
].volume
);
1197 SEQ_START_NOTE(wDevID
, nv
, d1
, d2
);
1198 voice
[nv
].status
= channel
[chn
].sustain
? sVS_SUSTAINED
: sVS_PLAYING
;
1199 voice
[nv
].note
= d1
;
1200 voice
[nv
].channel
= chn
;
1201 voice
[nv
].cntMark
= extra
->counter
++;
1203 case MIDI_KEY_PRESSURE
:
1204 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1205 if (voice
[i
].status
!= sVS_UNUSED
&& voice
[i
].channel
== chn
&& voice
[i
].note
== d1
) {
1206 SEQ_KEY_PRESSURE(wDevID
, i
, d1
, d2
);
1210 case MIDI_CTL_CHANGE
:
1212 case CTL_BANK_SELECT
: channel
[chn
].bank
= d2
; break;
1213 case CTL_MAIN_VOLUME
: channel
[chn
].volume
= d2
; break;
1214 case CTL_PAN
: channel
[chn
].balance
= d2
; break;
1215 case CTL_EXPRESSION
: channel
[chn
].expression
= d2
; break;
1216 case CTL_SUSTAIN
: channel
[chn
].sustain
= d2
;
1218 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1219 if (voice
[i
].status
== sVS_PLAYING
&& voice
[i
].channel
== chn
) {
1220 voice
[i
].status
= sVS_SUSTAINED
;
1224 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1225 if (voice
[i
].status
== sVS_SUSTAINED
&& voice
[i
].channel
== chn
) {
1226 voice
[i
].status
= sVS_UNUSED
;
1227 SEQ_STOP_NOTE(wDevID
, i
, voice
[i
].note
, 64);
1232 case CTL_NONREG_PARM_NUM_LSB
: channel
[chn
].nrgPmtLSB
= d2
; break;
1233 case CTL_NONREG_PARM_NUM_MSB
: channel
[chn
].nrgPmtMSB
= d2
; break;
1234 case CTL_REGIST_PARM_NUM_LSB
: channel
[chn
].regPmtLSB
= d2
; break;
1235 case CTL_REGIST_PARM_NUM_MSB
: channel
[chn
].regPmtMSB
= d2
; break;
1236 case CTL_DATA_ENTRY
:
1237 switch ((channel
[chn
].regPmtMSB
<< 8) | channel
[chn
].regPmtLSB
) {
1239 if (channel
[chn
].benderRange
!= d2
) {
1240 channel
[chn
].benderRange
= d2
;
1241 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1242 if (voice
[i
].channel
== chn
) {
1243 SEQ_BENDER_RANGE(wDevID
, i
, channel
[chn
].benderRange
);
1250 channel
[chn
].benderRange
= 2;
1251 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1252 if (voice
[i
].channel
== chn
) {
1253 SEQ_BENDER_RANGE(wDevID
, i
, channel
[chn
].benderRange
);
1258 TRACE("Data entry: regPmt=0x%02x%02x, nrgPmt=0x%02x%02x with %x\n",
1259 channel
[chn
].regPmtMSB
, channel
[chn
].regPmtLSB
,
1260 channel
[chn
].nrgPmtMSB
, channel
[chn
].nrgPmtLSB
,
1266 case 0x78: /* all sounds off */
1267 /* FIXME: I don't know if I have to take care of the channel
1268 * for this control ?
1270 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1271 if (voice
[i
].status
!= sVS_UNUSED
&& voice
[i
].channel
== chn
) {
1272 voice
[i
].status
= sVS_UNUSED
;
1273 SEQ_STOP_NOTE(wDevID
, i
, voice
[i
].note
, 64);
1277 case 0x7B: /* all notes off */
1278 /* FIXME: I don't know if I have to take care of the channel
1279 * for this control ?
1281 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1282 if (voice
[i
].status
== sVS_PLAYING
&& voice
[i
].channel
== chn
) {
1283 voice
[i
].status
= sVS_UNUSED
;
1284 SEQ_STOP_NOTE(wDevID
, i
, voice
[i
].note
, 64);
1289 TRACE("Dropping MIDI control event 0x%02x(%02x) on channel %d\n",
1294 case MIDI_PGM_CHANGE
:
1295 channel
[chn
].program
= d1
;
1297 case MIDI_CHN_PRESSURE
:
1298 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1299 if (voice
[i
].status
!= sVS_UNUSED
&& voice
[i
].channel
== chn
) {
1300 SEQ_KEY_PRESSURE(wDevID
, i
, voice
[i
].note
, d1
);
1304 case MIDI_PITCH_BEND
:
1305 channel
[chn
].bender
= (d2
<< 7) + d1
;
1306 for (i
= 0; i
< midiOutDevices
[wDevID
]->wVoices
; i
++) {
1307 if (voice
[i
].channel
== chn
) {
1308 SEQ_BENDER(wDevID
, i
, channel
[chn
].bender
);
1312 case MIDI_SYSTEM_PREFIX
:
1313 switch (evt
& 0x0F) {
1314 case 0x0F: /* Reset */
1318 WARN("Unsupported (yet) system event %02x\n", evt
& 0x0F);
1322 WARN("Internal error, shouldn't happen (event=%08x)\n", evt
& 0xF0);
1323 return MMSYSERR_NOTENABLED
;
1329 int dev
= wDevID
- MODM_NUMFMSYNTHDEVS
;
1331 WARN("Internal error on devID (%u) !\n", wDevID
);
1332 return MIDIERR_NODEVICE
;
1335 switch (evt
& 0xF0) {
1338 case MIDI_KEY_PRESSURE
:
1339 case MIDI_CTL_CHANGE
:
1340 case MIDI_PITCH_BEND
:
1341 SEQ_MIDIOUT(dev
, evt
);
1342 SEQ_MIDIOUT(dev
, d1
);
1343 SEQ_MIDIOUT(dev
, d2
);
1345 case MIDI_PGM_CHANGE
:
1346 case MIDI_CHN_PRESSURE
:
1347 SEQ_MIDIOUT(dev
, evt
);
1348 SEQ_MIDIOUT(dev
, d1
);
1350 case MIDI_SYSTEM_PREFIX
:
1351 switch (evt
& 0x0F) {
1352 case 0x00: /* System Exclusive, don't do it on modData,
1353 * should require modLongData*/
1354 case 0x01: /* Undefined */
1355 case 0x04: /* Undefined. */
1356 case 0x05: /* Undefined. */
1357 case 0x07: /* End of Exclusive. */
1358 case 0x09: /* Undefined. */
1359 case 0x0D: /* Undefined. */
1361 case 0x06: /* Tune Request */
1362 case 0x08: /* Timing Clock. */
1363 case 0x0A: /* Start. */
1364 case 0x0B: /* Continue */
1365 case 0x0C: /* Stop */
1366 case 0x0E: /* Active Sensing. */
1367 SEQ_MIDIOUT(dev
, evt
);
1369 case 0x0F: /* Reset */
1370 /* SEQ_MIDIOUT(dev, evt);
1371 this other way may be better */
1372 SEQ_MIDIOUT(dev
, MIDI_SYSTEM_PREFIX
);
1373 SEQ_MIDIOUT(dev
, 0x7e);
1374 SEQ_MIDIOUT(dev
, 0x7f);
1375 SEQ_MIDIOUT(dev
, 0x09);
1376 SEQ_MIDIOUT(dev
, 0x01);
1377 SEQ_MIDIOUT(dev
, 0xf7);
1379 case 0x03: /* Song Select. */
1380 SEQ_MIDIOUT(dev
, evt
);
1381 SEQ_MIDIOUT(dev
, d1
);
1382 case 0x02: /* Song Position Pointer. */
1383 SEQ_MIDIOUT(dev
, evt
);
1384 SEQ_MIDIOUT(dev
, d1
);
1385 SEQ_MIDIOUT(dev
, d2
);
1392 WARN("Technology not supported (yet) %d !\n",
1393 midiOutDevices
[wDevID
]->wTechnology
);
1394 return MMSYSERR_NOTENABLED
;
1399 return MMSYSERR_NOERROR
;
1402 /**************************************************************************
1403 * modLongData [internal]
1405 static DWORD
modLongData(WORD wDevID
, LPMIDIHDR lpMidiHdr
, DWORD dwSize
)
1410 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpMidiHdr
, dwSize
);
1412 if (midiSeqFD
== -1) {
1413 WARN("can't play !\n");
1414 return MIDIERR_NODEVICE
;
1417 lpData
= lpMidiHdr
->lpData
;
1420 return MIDIERR_UNPREPARED
;
1421 if (!(lpMidiHdr
->dwFlags
& MHDR_PREPARED
))
1422 return MIDIERR_UNPREPARED
;
1423 if (lpMidiHdr
->dwFlags
& MHDR_INQUEUE
)
1424 return MIDIERR_STILLPLAYING
;
1425 lpMidiHdr
->dwFlags
&= ~MHDR_DONE
;
1426 lpMidiHdr
->dwFlags
|= MHDR_INQUEUE
;
1428 /* FIXME: MS doc is not 100% clear. Will lpData only contain system exclusive
1429 * data, or can it also contain raw MIDI data, to be split up and sent to
1431 * If the latest is true, then the following WARNing will fire up
1433 if (lpData
[0] != 0xF0 || lpData
[lpMidiHdr
->dwBufferLength
- 1] != 0xF7) {
1434 WARN("Alledged system exclusive buffer is not correct\n\tPlease report with MIDI file\n");
1437 TRACE("dwBufferLength=%lu !\n", lpMidiHdr
->dwBufferLength
);
1438 TRACE(" %02X %02X %02X ... %02X %02X %02X\n",
1439 lpData
[0], lpData
[1], lpData
[2], lpData
[lpMidiHdr
->dwBufferLength
-3],
1440 lpData
[lpMidiHdr
->dwBufferLength
-2], lpData
[lpMidiHdr
->dwBufferLength
-1]);
1442 switch (midiOutDevices
[wDevID
]->wTechnology
) {
1444 /* FIXME: I don't think there is much to do here */
1447 if (lpData
[0] != 0xF0) {
1448 /* Send end of System Exclusive */
1449 SEQ_MIDIOUT(wDevID
- MODM_NUMFMSYNTHDEVS
, 0xF0);
1450 WARN("Adding missing 0xF0 marker at the beginning of "
1451 "system exclusive byte stream\n");
1453 for (count
= 0; count
< lpMidiHdr
->dwBytesRecorded
; count
++) {
1454 SEQ_MIDIOUT(wDevID
- MODM_NUMFMSYNTHDEVS
, lpData
[count
]);
1456 if (lpData
[count
- 1] != 0xF7) {
1457 /* Send end of System Exclusive */
1458 SEQ_MIDIOUT(wDevID
- MODM_NUMFMSYNTHDEVS
, 0xF7);
1459 WARN("Adding missing 0xF7 marker at the end of "
1460 "system exclusive byte stream\n");
1465 WARN("Technology not supported (yet) %d !\n",
1466 midiOutDevices
[wDevID
]->wTechnology
);
1467 return MMSYSERR_NOTENABLED
;
1470 lpMidiHdr
->dwFlags
&= ~MHDR_INQUEUE
;
1471 lpMidiHdr
->dwFlags
|= MHDR_DONE
;
1472 if (MIDI_NotifyClient(wDevID
, MOM_DONE
, (DWORD
)lpMidiHdr
, 0L) != MMSYSERR_NOERROR
) {
1473 WARN("can't notify client !\n");
1474 return MMSYSERR_INVALPARAM
;
1476 return MMSYSERR_NOERROR
;
1479 /**************************************************************************
1480 * modPrepare [internal]
1482 static DWORD
modPrepare(WORD wDevID
, LPMIDIHDR lpMidiHdr
, DWORD dwSize
)
1484 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpMidiHdr
, dwSize
);
1486 if (midiSeqFD
== -1) {
1487 WARN("can't prepare !\n");
1488 return MMSYSERR_NOTENABLED
;
1491 /* MS doc says taht dwFlags must be set to zero, but (kinda funny) MS mciseq drivers
1492 * asks to prepare MIDIHDR which dwFlags != 0.
1493 * So at least check for the inqueue flag
1495 if (dwSize
< sizeof(MIDIHDR
) || lpMidiHdr
== 0 ||
1496 lpMidiHdr
->lpData
== 0 || (lpMidiHdr
->dwFlags
& MHDR_INQUEUE
) != 0 ||
1497 lpMidiHdr
->dwBufferLength
>= 0x10000ul
) {
1498 WARN("%p %p %08lx %d/%ld\n", lpMidiHdr
, lpMidiHdr
->lpData
,
1499 lpMidiHdr
->dwFlags
, sizeof(MIDIHDR
), dwSize
);
1500 return MMSYSERR_INVALPARAM
;
1503 lpMidiHdr
->lpNext
= 0;
1504 lpMidiHdr
->dwFlags
|= MHDR_PREPARED
;
1505 lpMidiHdr
->dwFlags
&= ~MHDR_DONE
;
1506 return MMSYSERR_NOERROR
;
1509 /**************************************************************************
1510 * modUnprepare [internal]
1512 static DWORD
modUnprepare(WORD wDevID
, LPMIDIHDR lpMidiHdr
, DWORD dwSize
)
1514 TRACE("(%04X, %p, %08lX);\n", wDevID
, lpMidiHdr
, dwSize
);
1516 if (midiSeqFD
== -1) {
1517 WARN("can't unprepare !\n");
1518 return MMSYSERR_NOTENABLED
;
1521 if (dwSize
< sizeof(MIDIHDR
) || lpMidiHdr
== 0)
1522 return MMSYSERR_INVALPARAM
;
1523 if (lpMidiHdr
->dwFlags
& MHDR_INQUEUE
)
1524 return MIDIERR_STILLPLAYING
;
1525 lpMidiHdr
->dwFlags
&= ~MHDR_PREPARED
;
1526 return MMSYSERR_NOERROR
;
1529 /**************************************************************************
1530 * modReset [internal]
1532 static DWORD
modReset(WORD wDevID
)
1536 TRACE("(%04X);\n", wDevID
);
1538 /* stop all notes */
1539 /* FIXME: check if 0x78B0 is channel dependant or not. I coded it so that
1540 * it's channel dependent...
1542 for (chn
= 0; chn
< 16; chn
++) {
1543 /* turn off every note */
1544 modData(wDevID
, 0x7800 | MIDI_CTL_CHANGE
| chn
);
1545 /* remove sustain on all channels */
1546 modData(wDevID
, (CTL_SUSTAIN
<< 8) | MIDI_CTL_CHANGE
| chn
);
1548 /* FIXME: the LongData buffers must also be returned to the app */
1549 return MMSYSERR_NOERROR
;
1552 #endif /* HAVE_OSS_MIDI */
1554 /*======================================================================*
1555 * MIDI entry points *
1556 *======================================================================*/
1558 /**************************************************************************
1559 * midMessage (WINEOSS.4)
1561 DWORD WINAPI
OSS_midMessage(UINT wDevID
, UINT wMsg
, DWORD dwUser
,
1562 DWORD dwParam1
, DWORD dwParam2
)
1564 TRACE("(%04X, %04X, %08lX, %08lX, %08lX);\n",
1565 wDevID
, wMsg
, dwUser
, dwParam1
, dwParam2
);
1567 #ifdef HAVE_OSS_MIDI
1571 /* FIXME: Pretend this is supported */
1574 return midOpen(wDevID
, (LPMIDIOPENDESC
)dwParam1
, dwParam2
);
1576 return midClose(wDevID
);
1577 case MIDM_ADDBUFFER
:
1578 return midAddBuffer(wDevID
, (LPMIDIHDR
)dwParam1
, dwParam2
);
1580 return midPrepare(wDevID
, (LPMIDIHDR
)dwParam1
, dwParam2
);
1581 case MIDM_UNPREPARE
:
1582 return midUnprepare(wDevID
, (LPMIDIHDR
)dwParam1
, dwParam2
);
1583 case MIDM_GETDEVCAPS
:
1584 return midGetDevCaps(wDevID
, (LPMIDIINCAPSA
)dwParam1
,dwParam2
);
1585 case MIDM_GETNUMDEVS
:
1586 return MIDM_NUMDEVS
;
1588 return midReset(wDevID
);
1590 return midStart(wDevID
);
1592 return midStop(wDevID
);
1595 TRACE("Unsupported message\n");
1597 return MMSYSERR_NOTSUPPORTED
;
1600 /**************************************************************************
1601 * modMessage (WINEOSS.5)
1603 DWORD WINAPI
OSS_modMessage(UINT wDevID
, UINT wMsg
, DWORD dwUser
,
1604 DWORD dwParam1
, DWORD dwParam2
)
1606 TRACE("(%04X, %04X, %08lX, %08lX, %08lX);\n",
1607 wDevID
, wMsg
, dwUser
, dwParam1
, dwParam2
);
1610 #ifdef HAVE_OSS_MIDI
1615 /* FIXME: Pretend this is supported */
1618 return modOpen(wDevID
, (LPMIDIOPENDESC
)dwParam1
, dwParam2
);
1620 return modClose(wDevID
);
1622 return modData(wDevID
, dwParam1
);
1624 return modLongData(wDevID
, (LPMIDIHDR
)dwParam1
, dwParam2
);
1626 return modPrepare(wDevID
, (LPMIDIHDR
)dwParam1
, dwParam2
);
1627 case MODM_UNPREPARE
:
1628 return modUnprepare(wDevID
, (LPMIDIHDR
)dwParam1
, dwParam2
);
1629 case MODM_GETDEVCAPS
:
1630 return modGetDevCaps(wDevID
, (LPMIDIOUTCAPSA
)dwParam1
, dwParam2
);
1631 case MODM_GETNUMDEVS
:
1632 return MODM_NUMDEVS
;
1633 case MODM_GETVOLUME
:
1635 case MODM_SETVOLUME
:
1638 return modReset(wDevID
);
1641 TRACE("Unsupported message\n");
1643 return MMSYSERR_NOTSUPPORTED
;
1646 /*-----------------------------------------------------------------------*/