home *** CD-ROM | disk | FTP | other *** search
/ Sound, Music & MIDI Collection 2 / SMMVOL2.bin / PROG / MIDICOMP.ZIP / MIDIIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-07-03  |  22.5 KB  |  745 lines

  1. { $Header:   F:/delphi/midi/vcs/midiin.pas   1.12   03 Jul 1995 01:51:04   DAVEC  $ }
  2.  
  3. unit MidiIn;
  4.  
  5. {
  6.   Properties:
  7.     DeviceID:     Windows numeric device ID for the MIDI input device.
  8.     Between 0 and NumDevs-1.
  9.     Read-only while device is open, exception when changed while open
  10.  
  11.     MIDIHandle:    The input handle to the MIDI device.
  12.     0 when device is not open
  13.     Read-only, runtime-only
  14.  
  15.     MessageCount:    Number of input messages waiting in input buffer
  16.  
  17.     Capacity:    Number of messages input buffer can hold
  18.     Defaults to 1024
  19.     Limited to (64K/event size)
  20.     Read-only when device is open (exception when changed while open)
  21.  
  22.     SysexBufferSize:    Size in bytes of each sysex buffer
  23.     Defaults to 10K
  24.     Minimum 0K (no buffers), Maximum 64K-1
  25.  
  26.     SysexBufferCount:    Number of sysex buffers
  27.     Defaults to 16
  28.     Minimum 0 (no buffers), Maximum (avail mem/SysexBufferSize)
  29.     Check where these buffers are allocated?
  30.  
  31.     SysexOnly: True to ignore all non-sysex input events. May be changed while
  32.     device is open. Handy for patch editors where you have lots of short MIDI
  33.     events on the wire which you are always going to ignore anyway.
  34.  
  35.     DriverVersion: Version number of MIDI device driver. High-order byte is
  36.     major version, low-order byte is minor version.
  37.  
  38.     ProductName: Name of product (e.g. 'MPU 401 In')
  39.  
  40.     MID and PID: Manufacturer ID and Product ID, see
  41.     "Manufacturer and Product IDs" in MMSYSTEM.HLP for list of possible values.
  42.  
  43.   Methods:
  44.     GetMidiEvent: Read Midi event at the head of the FIFO input buffer.
  45.     Returns a TMidiEvent object containing MIDI message data, timestamp,
  46.     and sysex data if applicable.
  47.     This method automatically removes the event from the input buffer.
  48.     It makes a copy of the received sysex buffer and puts the buffer back
  49.     on the input device.
  50.     The TMidiEvent object must be freed by calling MidiEvent.Free.
  51.  
  52.     Open: Opens device. Note no input will appear until you call the Start
  53.     method.
  54.  
  55.     Close: Closes device. Any pending system exclusive output will be cancelled.
  56.  
  57.     Start: Starts receiving MIDI input.
  58.  
  59.     Stop: Stops receiving MIDI input.
  60.  
  61.   Events:
  62.     OnMidiInput: Called when MIDI input data arrives. Use the GetMidiEvent to
  63.     get the MIDI input data.
  64.  
  65.     OnOverflow: Called if the MIDI input buffer overflows. The caller must
  66.     clear the buffer before any more MIDI input can be received.
  67.  
  68.  Notes:
  69.     Buffering: Uses a circular buffer, separate pointers for next location
  70.     to fill and next location to empty because a MIDI input interrupt may
  71.     be adding data to the buffer while the buffer is being read. Buffer
  72.     pointers wrap around from end to start of buffer automatically. If
  73.     buffer overflows then the OnBufferOverflow event is triggered and no
  74.     further input will be received until the buffer is emptied by calls
  75.     to GetMidiEvent.
  76.  
  77.     Sysex buffers: There are (SysexBufferCount) buffers on the input device.
  78.     When sysex events arrive these buffers are removed from the input device and
  79.     added to the circular buffer by the interrupt handler in the DLL.  When the sysex events
  80.     are removed from the circular buffer by the GetMidiEvent method the buffers are
  81.     put back on the input. If all the buffers are used up there will be no
  82.     more sysex input until at least one sysex event is removed from the input buffer.
  83.     In other    words if you're expecting lots of sysex input you need to set the
  84.     SysexBufferCount property high enough so that you won't run out of
  85.     input buffers before you get a chance to read them with GetMidiEvent.
  86.  
  87.     If the synth sends a block of sysex that's longer than SysexBufferSize it
  88.     will be received as separate events.
  89.     TODO: Component derived from this one that handles >64K sysex blocks cleanly
  90.     and can stream them to disk.
  91.  
  92.     Midi Time Code (MTC) and Active Sensing: The DLL is currently hardcoded
  93.     to filter these short events out, so that we don't spend all our time
  94.     processing them.
  95.     TODO: implement a filter property to select the events that will be filtered
  96.     out.
  97. }
  98.  
  99. interface
  100.  
  101. uses
  102.   SysUtils, WinTypes, Messages, Classes, WinProcs, Graphics, Controls,
  103.   Forms, Dialogs, MMSystem, Circbuf;
  104.  
  105. const
  106.     MIDI_ALLNOTESOFF = $7B;
  107.     MIDI_NOTEON          = $90;
  108.     MIDI_NOTEOFF         = $80;
  109.     MIDI_KEYAFTERTOUCH   = $a0;
  110.     MIDI_CONTROLCHANGE   = $b0;
  111.     MIDI_PROGRAMCHANGE   = $c0;
  112.     MIDI_CHANAFTERTOUCH  = $d0;
  113.     MIDI_PITCHBEND       = $e0;
  114.     MIDI_SYSTEMMESSAGE   = $f0;
  115.     MIDI_BEGINSYSEX      = $f0;
  116.     MIDI_MTCQUARTERFRAME = $f1;
  117.     MIDI_SONGPOSPTR      = $f2;
  118.     MIDI_SONGSELECT      = $f3;
  119.     MIDI_ENDSYSEX        = $F7;
  120.     MIDI_TIMINGCLOCK     = $F8;
  121.     MIDI_START           = $FA;
  122.     MIDI_CONTINUE        = $FB;
  123.     MIDI_STOP            = $FC;
  124.     MIDI_ACTIVESENSING   = $FE;
  125.     MIDI_SYSTEMRESET     = $FF;
  126.  
  127.     MIM_OVERFLOW         = WM_USER;    { Input buffer overflow }
  128. type
  129.     MidiInputState = (misOpen, misClosed);
  130.     EMidiInputError = class(Exception);
  131.  
  132.     {-------------------------------------------------------------------}
  133.     { A MIDI input/output event }
  134.     TMidiEvent = class(TPersistent)
  135.     public
  136.         MidiMessage: Byte;            { MIDI message status byte }
  137.         Data1: Byte;            { MIDI message data 1 byte }
  138.         Data2: Byte;            { MIDI message data 2 byte }
  139.         Time: Longint;            { Time in ms since midiInOpen }
  140.         SysexLength: Word;    { Length of sysex data (0 if none) }
  141.         Sysex: PChar;            { Pointer to sysex data buffer }
  142.  
  143.         destructor Destroy; override;    { Frees sysex data buffer if nec. }
  144.     end;
  145.     PMidiEvent = ^TMidiEvent;
  146.  
  147.     {-------------------------------------------------------------------}
  148.     { This is the information about the control that must be accessed by
  149.       the DLL at interrupt time }
  150.     PMidiCtlInfo = ^TMidiCtlInfo;
  151.     TMidiCtlInfo = record
  152.         hMem: THandle;                 { Memory handle for this record }
  153.         PBuffer: PCircularBuffer;    { Pointer to the MIDI data buffer }
  154.         hWindow: HWnd;                    { Control's window handle }
  155.         SysexOnly: Boolean;            { Only process System Exclusive input }
  156.     end;
  157.  
  158.     {-------------------------------------------------------------------}
  159.     { Encapsulates the MIDIHDR with its memory handle }
  160.     PMyMidiHdr = ^TMyMidiHdr;
  161.     TMyMidiHdr = class(TObject)
  162.     public
  163.         hdrHandle: THandle;
  164.         hdrPointer: PMIDIHDR;
  165.         sysexHandle: THandle;
  166.         sysexPointer: Pointer;
  167.         constructor Create(BufferSize: Word);
  168.         destructor Destroy; override;
  169.     end;
  170.  
  171.     {-------------------------------------------------------------------}
  172.   TMidiInput = class(TComponent)
  173.   private
  174.     Handle: THandle;                { Window handle used for callback notification }
  175.     FDeviceID: Word;                { MIDI device ID }
  176.     FMIDIHandle: HMIDIIn;        { Handle to input device }
  177.     FState: MidiInputState;            { Current device state }
  178.  
  179.     FError: Word;
  180.     FSysexOnly: Boolean;
  181.  
  182.     { Stuff from MIDIINCAPS }
  183.     FDriverVersion: Version;
  184.     FProductName: string;
  185.     FMID: Word;                        { Manufacturer ID }
  186.     FPID: Word;                        { Product ID }
  187.  
  188.     { Queue }
  189.    FCapacity: Word;         { Buffer capacity }
  190.    PBuffer: PCircularBuffer;    { Buffer created by Open method }
  191.    FNumdevs: Word;            { Number of input devices on system }
  192.  
  193.     { Events }
  194.     FOnMIDIInput: TNotifyEvent;    { MIDI Input arrived }
  195.     FOnOverflow: TNotifyEvent;        { Input buffer overflow }
  196.     { TODO: Some sort of error handling event for MIM_ERROR }
  197.  
  198.     { Sysex }
  199.     FSysexBufferSize:  Word;
  200.     FSysexBufferCount: Word;
  201.     MidiHdrs: Tlist;
  202.  
  203.     PCtlInfo: PMidiCtlInfo;    { Pointer to control info for DLL }
  204.  
  205.   protected
  206.     procedure Prepareheaders;
  207.     procedure UnprepareHeaders;
  208.     procedure AddBuffers;
  209.     procedure SetDeviceID(DeviceID: Word);
  210.     procedure SetProductName( NewProductName: String );
  211.     function GetEventCount: Word;
  212.     procedure SetSysexBufferSize(BufferSize: Word);
  213.     procedure SetSysexBufferCount(BufferCount: Word);
  214.     procedure SetSysexOnly(bSysexOnly: Boolean);
  215.     function MidiInErrorString( WError: Word ): String;
  216.  
  217.   public
  218.     constructor Create(AOwner:TComponent); override;
  219.     destructor Destroy; override;
  220.  
  221.     property MIDIHandle: HMIDIIn read FMIDIHandle;
  222.  
  223.     property DriverVersion: Version read FDriverVersion;
  224.     property MID: Word read FMID;                        { Manufacturer ID }
  225.     property PID: Word read FPID;                        { Product ID }
  226.  
  227.     property Numdevs: Word read FNumdevs;
  228.  
  229.     property MessageCount: Word read GetEventCount;
  230.     { TODO: property to select which incoming messages get filtered out }
  231.  
  232.     procedure Open;
  233.     procedure Close;
  234.     procedure Start;
  235.     procedure Stop;
  236.     { Get first message in input queue }
  237.     function GetMidiEvent: TMidiEvent;
  238.     procedure MidiInput(var Message: TMessage);
  239.  
  240.    { Some functions to decode and classify incoming messages would be good }
  241.  
  242.     published
  243.  
  244.     { TODO: Property editor with dropdown list of product names }
  245.     property ProductName: String read FProductName write SetProductName;
  246.  
  247.     property DeviceID: Word read FDeviceID write SetDeviceID default 0;
  248.     property Capacity: Word read FCapacity write FCapacity default 1024;
  249.     property Error: Word read FError;
  250.     property SysexBufferSize: Word
  251.         read FSysexBufferSize
  252.         write SetSysexBufferSize
  253.         default 10000;
  254.     property SysexBufferCount: Word
  255.         read FSysexBufferCount
  256.         write SetSysexBufferCount
  257.         default 16;
  258.     property SysexOnly: Boolean
  259.         read FSysexOnly
  260.         write SetSysexOnly
  261.         default False;
  262.  
  263.     { Events }
  264.     property OnMidiInput: TNotifyEvent read FOnMidiInput write FOnMidiInput;
  265.     property OnOverflow: TNotifyEvent read FOnOverflow write FOnOverflow;
  266.  
  267. end;
  268.  
  269. procedure Register;
  270.  
  271. implementation
  272.  
  273. { This is the callback procedure in the external DLL.
  274.   It's used when midiInOpen is called by the Open method.
  275.   There are special requirements and restrictions for this callback
  276.   procedure (see midiInOpen in MMSYSTEM.HLP) so it's impractical to
  277.   make it an object method }
  278. function midiHandler(
  279.       hMidiIn: HMidiIn;
  280.       wMsg: Word;
  281.       dwInstance: Longint;
  282.       dwParam1: Longint;
  283.       dwParam2: Longint): Boolean; far; external 'DELPHMID';
  284.  
  285. {-------------------------------------------------------------------}
  286. { Free any sysex buffer associated with the event }
  287. destructor TMidiEvent.Destroy;
  288. begin
  289.     if (Sysex <> Nil) then
  290.         Freemem(Sysex, SysexLength);
  291.  
  292.     inherited Destroy;
  293. end;
  294.  
  295. {-------------------------------------------------------------------}
  296. { Allocate memory for the sysex header and buffer }
  297. constructor TMyMidiHdr.Create(BufferSize:Word);
  298. begin
  299.     inherited Create;
  300.  
  301.     if BufferSize > 0 then
  302.         begin
  303.         hdrPointer := GlobalSharedLockedAlloc(sizeof(TMIDIHDR), hdrHandle);
  304.         sysexPointer := GlobalSharedLockedAlloc(BufferSize, sysexHandle);
  305.  
  306.         hdrPointer^.lpData := sysexPointer;
  307.         hdrPointer^.dwBufferLength := BufferSize;
  308.         end;
  309. end;
  310.  
  311. {-------------------------------------------------------------------}
  312. destructor TMyMidiHdr.Destroy;
  313. begin
  314.     GlobalSharedLockedFree( hdrHandle, hdrPointer );
  315.     GlobalSharedLockedFree( sysexHandle, sysexPointer );
  316.     inherited Destroy;
  317. end;
  318.  
  319. {-------------------------------------------------------------------}
  320. constructor TMidiInput.Create(AOwner:TComponent);
  321. begin
  322.     inherited Create(AOwner);
  323.     FState := misClosed;
  324.     FSysexOnly := False;
  325.     FNumDevs := midiInGetNumDevs;
  326.  
  327.     { Set defaults }
  328.     SetDeviceID(0);    { TODO: Exception if no MIDI devices installed? }
  329.     FCapacity := 1024;
  330.     FSysexBufferSize := 10000;
  331.     FSysexBufferCount := 16;
  332.  
  333.     { Create the window for callback notification }
  334.     if not (csDesigning in ComponentState) then
  335.         begin
  336.         Handle := AllocateHwnd(MidiInput);
  337.         end;
  338.  
  339. end;
  340.  
  341. {-------------------------------------------------------------------}
  342. { Close the device if it's open }
  343. destructor TMidiInput.Destroy;
  344. begin
  345.     if (FMidiHandle <> 0) then
  346.         begin
  347.         Close;
  348.         FMidiHandle := 0;
  349.         end;
  350.  
  351.     if (PCtlInfo <> Nil) then
  352.         GlobalSharedLockedFree( PCtlinfo^.hMem, PCtlInfo );
  353.  
  354.     DeallocateHwnd(Handle);
  355.     inherited Destroy;
  356. end;
  357.  
  358. {-------------------------------------------------------------------}
  359. { Convert the numeric return code from an MMSYSTEM function to a string
  360.   using midiInGetErrorText. TODO: These errors aren't very helpful
  361.   (e.g. "an invalid parameter was passed to a system function") so
  362.   sort out some proper error strings. }
  363. function TMidiInput.MidiInErrorString( WError: Word ): String;
  364. var
  365.     errorDesc: PChar;
  366. begin
  367.     try
  368.         errorDesc := StrAlloc(MAXERRORLENGTH);
  369.         if midiInGetErrorText(WError, errorDesc, MAXERRORLENGTH) = 0 then
  370.             result := StrPas(errorDesc)
  371.         else
  372.             result := 'Specified error number is out of range';
  373.     finally
  374.         StrDispose(errorDesc);
  375.     end;
  376. end;
  377.  
  378. {-------------------------------------------------------------------}
  379. { Set the sysex buffer size, fail if device is already open }
  380. procedure TMidiInput.SetSysexBufferSize(BufferSize: Word);
  381. begin
  382.     if FState = misOpen then
  383.         raise EMidiInputError.Create('Change to SysexBufferSize while device was open')
  384.     else
  385.         { TODO: Validate the sysex buffer size }
  386.         FSysexBufferSize := BufferSize;
  387. end;
  388.  
  389. {-------------------------------------------------------------------}
  390. { Set the sysex buffer count, fail if device is already open }
  391. procedure TMidiInput.SetSysexBuffercount(Buffercount: Word);
  392. begin
  393.     if FState = misOpen then
  394.         raise EMidiInputError.Create('Change to SysexBuffercount while device was open')
  395.     else
  396.         { TODO: Validate the sysex buffer count }
  397.         FSysexBuffercount := Buffercount;
  398. end;
  399.  
  400. {-------------------------------------------------------------------}
  401. procedure TMidiInput.SetSysexOnly(bSysexOnly: Boolean);
  402. begin
  403.     FSysexOnly := bSysexOnly;
  404.     { Update the interrupt handler's copy of this property }
  405.     if PCtlInfo <> Nil then
  406.         PCtlInfo^.SysexOnly := bSysexOnly;
  407. end;
  408.  
  409. {-------------------------------------------------------------------}
  410. procedure TMidiInput.SetDeviceID(DeviceID: Word);
  411. var
  412.     MidiInCaps: TMidiInCaps;
  413. begin
  414.     if FState = misOpen then
  415.         raise EMidiInputError.Create('Change to DeviceID while device was open')
  416.     else
  417.         if (DeviceID > midiInGetNumDevs) then
  418.             raise EMidiInputError.Create('Invalid device ID')
  419.         else
  420.             begin
  421.             FDeviceID := DeviceID;
  422.  
  423.             { Set the name and other MIDIINCAPS properties to match the ID }
  424.             FError :=
  425.                 midiInGetDevCaps(DeviceID, @MidiInCaps, sizeof(TMidiInCaps));
  426.             if Ferror > 0 then
  427.                 raise EMidiInputError.Create(MidiInErrorString(FError));
  428.  
  429.             FProductName := StrPas(MidiInCaps.szPname);
  430.             FDriverVersion := MidiInCaps.vDriverVersion;
  431.             FMID := MidiInCaps.wMID;
  432.             FPID := MidiInCaps.wPID;
  433.  
  434.             end;
  435. end;
  436.  
  437. {-------------------------------------------------------------------}
  438. { Set the product name and put the matching input device number in FDeviceID.
  439.   This is handy if you want to save a configured input/output device
  440.   by device name instead of device number, because device numbers may
  441.   change if users add or remove MIDI devices.
  442.   Exception if input device with matching name not found,
  443.   or if input device is open }
  444. procedure TMidiInput.SetProductName( NewProductName: String );
  445. var
  446.     MidiInCaps: TMidiInCaps;
  447.     testDeviceID: Word;
  448.     testProductName: String;
  449. begin
  450.     if FState = misOpen then
  451.         raise EMidiInputError.Create('Change to ProductName while device was open')
  452.     else
  453.         begin
  454.         for testDeviceID := 0 To (midiInGetNumDevs-1) do
  455.             begin
  456.             FError := 
  457.                 midiInGetDevCaps(testDeviceID, @MidiInCaps, sizeof(TMidiInCaps));
  458.             if Ferror > 0 then
  459.                 raise EMidiInputError.Create(MidiInErrorString(FError));
  460.             testProductName := StrPas(MidiInCaps.szPname);
  461.             if testProductName = NewProductName then
  462.                 begin
  463.                 FProductName := NewProductName;
  464.                 Break;
  465.                 end;
  466.             end;
  467.         if FProductName <> NewProductName then
  468.             raise EMidiInputError.Create('MIDI Input Device ' +
  469.                 NewProductName + ' not installed')
  470.         else
  471.             SetDeviceID(testDeviceID);
  472.         end;
  473. end;
  474.  
  475.  
  476. {-------------------------------------------------------------------}
  477. { Get the sysex buffers ready }
  478. procedure TMidiInput.PrepareHeaders;
  479. var
  480.     ctr: Word;
  481.     MyMidiHdr: TMyMidiHdr;
  482.     Debugstr: string[100];
  483. begin
  484.     if (FSysexBufferCount > 0) And (FSysexBufferSize > 0)
  485.         And (FMidiHandle > 0) then
  486.         begin
  487.         Midihdrs := TList.Create;
  488.         for ctr := 1 to FSysexBufferCount do
  489.             begin
  490.             { Initialize the header and allocate buffer memory }
  491.             MyMidiHdr := TMyMidiHdr.Create(FSysexBufferSize);
  492.  
  493.             { Store the MidiHdr address in the header so we can find it again quickly }
  494.             MyMidiHdr.hdrPointer^.dwUser := Longint(MyMidiHdr);
  495.  
  496.             { Get MMSYSTEM's blessing for this header }
  497.             FError := midiInPrepareHeader(FMidiHandle,MyMidiHdr.hdrPointer,
  498.                 sizeof(TMIDIHDR));
  499.             if Ferror > 0 then
  500.                 raise EMidiInputError.Create(MidiInErrorString(FError));
  501.  
  502.             { Save it in our list }
  503.             MidiHdrs.Add(MyMidiHdr);
  504.             end;
  505.         end;
  506.  
  507. end;
  508.  
  509. {-------------------------------------------------------------------}
  510. procedure TMidiInput.UnprepareHeaders;
  511. var
  512.     ctr: Word;
  513. begin
  514.     if (MidiHdrs.Count > 0) and (FMidiHandle > 0) then
  515.         begin
  516.         for ctr := 0 To MidiHdrs.Count-1 do
  517.             begin
  518.             FError := midiInUnprepareHeader( FMidiHandle,
  519.                 TMyMidiHdr(MidiHdrs.Items[ctr]).hdrPointer,
  520.                 sizeof(TMIDIHDR));
  521.             if Ferror > 0 then
  522.                 raise EMidiInputError.Create(MidiInErrorString(FError));
  523.             TMyMidiHdr(MidiHdrs.Items[ctr]).Free;
  524.             end;
  525.         end;
  526.     MidiHdrs.Free;
  527. end;
  528.  
  529. {-------------------------------------------------------------------}
  530. procedure TMidiInput.AddBuffers;
  531. var
  532.     ctr: Word;
  533. begin
  534.     if MidiHdrs.Count > 0 Then
  535.         begin
  536.         for ctr := 0 To MidiHdrs.Count-1 do
  537.             begin
  538.             FError := midiInAddBuffer(FMidiHandle,
  539.                 TMyMidiHdr(MidiHdrs.Items[ctr]).hdrPointer,
  540.                 sizeof(TMIDIHDR));
  541.             If FError > 0 then
  542.                 raise EMidiInputError.Create(MidiInErrorString(FError));
  543.             end;
  544.         end;
  545. end;
  546.  
  547. {-------------------------------------------------------------------}
  548. procedure TMidiInput.Open;
  549. var
  550.     hMem: THandle;
  551. begin
  552.     try
  553.         { Create the input buffer }
  554.         If (PBuffer = Nil) then
  555.             PBuffer := CircBufAlloc( FCapacity );
  556.  
  557.         { Create the control info for the DLL }
  558.         if (PCtlInfo = Nil) then
  559.             begin
  560.             PCtlInfo := GlobalSharedLockedAlloc( Sizeof(TCtlInfo), hMem );
  561.             PctlInfo^.hMem := hMem;
  562.             end;
  563.         PctlInfo^.pBuffer := PBuffer;
  564.         Pctlinfo^.hWindow := Handle;    { Control's window handle }
  565.         PCtlInfo^.SysexOnly := FSysexOnly;
  566.         FError := midiInOpen(@FMidiHandle, FDeviceId,
  567.                         Longint(@midiHandler),
  568.                         Longint(PCtlInfo),
  569.                         CALLBACK_FUNCTION);
  570.         If (FError <> 0) then
  571.             { TODO: use CreateFmtHelp to add MIDI device name/ID to message }
  572.             raise EMidiInputError.Create(MidiInErrorString(FError));
  573.  
  574.         { Add sysex buffers }
  575.         PrepareHeaders;
  576.  
  577.         { Add them to the input }
  578.         AddBuffers;
  579.  
  580.         FState := misOpen;
  581.  
  582.     except
  583.         if PBuffer <> Nil then
  584.             begin
  585.             CircBufFree(PBuffer);
  586.             PBuffer := Nil;
  587.             end;
  588.  
  589.         if PCtlInfo <> Nil then
  590.             begin
  591.             GlobalSharedLockedFree(PCtlInfo^.hMem, PCtlInfo);
  592.             PCtlInfo := Nil;
  593.             end;
  594.  
  595.     end;
  596.  
  597. end;
  598.  
  599. {-------------------------------------------------------------------}
  600. function TMidiInput.GetMidiEvent: TMidiEvent;
  601. var
  602.     thisItem: TMidiInputBufferItem;
  603. begin
  604.     if (FState = misOpen) and
  605.         CircBufReadEvent(PBuffer, @thisItem) then
  606.         begin
  607.         Result := TMidiEvent.Create;
  608.         with thisItem Do
  609.             begin
  610.             Result.Time := Timestamp;
  611.             if (Sysex = Nil) then
  612.                 begin
  613.                 { Short message }
  614.                 Result.MidiMessage := LoByte(LoWord(Data));
  615.                 Result.Data1 := HiByte(LoWord(Data));
  616.                 Result.Data2 := LoByte(HiWord(Data));
  617.                 Result.Sysex := Nil;
  618.                 Result.SysexLength := 0;
  619.                 end
  620.             else
  621.                 begin
  622.                 Result.MidiMessage := MIDI_BEGINSYSEX;
  623.                 Result.Data1 := 0;
  624.                 Result.Data2 := 0;
  625.                 Result.SysexLength := Sysex^.dwBytesRecorded;
  626.                 if Sysex^.dwBytesRecorded > 0 then
  627.                     begin
  628.                     { Put a copy of the sysex buffer in the object }
  629.                     GetMem(Result.Sysex, Sysex^.dwBytesRecorded);
  630.                     StrMove(Result.Sysex, Sysex^.lpData, Sysex^.dwBytesRecorded);
  631.                     end;
  632.  
  633.                 { Put the header back on the input buffer }
  634.                 FError := midiInPrepareHeader(FMidiHandle,Sysex,
  635.                     sizeof(TMIDIHDR));
  636.                 If Ferror = 0 then
  637.                     FError := midiInAddBuffer(FMidiHandle,
  638.                         Sysex, sizeof(TMIDIHDR));
  639.                 if Ferror > 0 then
  640.                     raise EMidiInputError.Create(MidiInErrorString(FError));
  641.                 end;
  642.             end;
  643.         CircbufRemoveEvent(PBuffer);
  644.         end
  645.     else
  646.         { Device isn't open, return a nil event }
  647.         Result := Nil;
  648. end;
  649.  
  650. {-------------------------------------------------------------------}
  651. function TMidiInput.GetEventCount: Word;
  652. begin
  653.     if FState = misOpen then
  654.         Result := PBuffer^.EventCount
  655.     else
  656.         Result := 0;
  657. end;
  658.  
  659. {-------------------------------------------------------------------}
  660. procedure TMidiInput.Close;
  661. begin
  662.     if FState = misOpen then
  663.         begin
  664.         FState := misClosed;
  665.  
  666.         { MidiInReset cancels any pending output.
  667.         Note that midiInReset causes an MIM_LONGDATA callback for each sysex
  668.         buffer on the input, so the callback function and Midi input buffer
  669.         should still be viable at this stage.
  670.         All the resulting MIM_LONGDATA callbacks will be completed by the time
  671.         MidiInReset returns, though. }
  672.         FError := MidiInReset(FMidiHandle);
  673.         if Ferror > 0 then
  674.             raise EMidiInputError.Create(MidiInErrorString(FError));
  675.  
  676.         { Remove sysex buffers from input device and free them }
  677.         UnPrepareHeaders;
  678.  
  679.         { Close the device (finally!) }
  680.         FError := MidiInClose(FMidiHandle);
  681.         if Ferror > 0 then
  682.             raise EMidiInputError.Create(MidiInErrorString(FError));
  683.  
  684.         FMidiHandle := 0;
  685.  
  686.         If (PBuffer <> Nil) then
  687.             begin
  688.             CircBufFree( PBuffer );
  689.             PBuffer := Nil;
  690.             end;
  691.         end;
  692. end;
  693.  
  694. {-------------------------------------------------------------------}
  695. procedure TMidiInput.Start;
  696. begin
  697.     if FState = misOpen then
  698.         begin
  699.         { TODO: Exception }
  700.         FError := MidiInStart(FMidiHandle);
  701.         if Ferror > 0 then
  702.             raise EMidiInputError.Create(MidiInErrorString(FError));
  703.         end;
  704. end;
  705.  
  706. {-------------------------------------------------------------------}
  707. procedure TMidiInput.Stop;
  708. begin
  709.     if FState = misOpen then
  710.         begin
  711.         FError := MidiInStop(FMidiHandle);
  712.         if Ferror > 0 then
  713.             raise EMidiInputError.Create(MidiInErrorString(FError));
  714.         end;
  715. end;
  716.  
  717. {-------------------------------------------------------------------}
  718. procedure TMidiInput.MidiInput( var Message: TMessage );
  719. { Triggered by incoming message from DLL.
  720.   Note DLL has already put the message in the queue }
  721. begin
  722.     case Message.Msg of
  723.     mim_data:
  724.         { Trigger the user's MIDI input event, if they've specified one and
  725.         we're not in the process of closing the device. The check for
  726.         GetEventCount > 0 prevents unnecessary event calls where the user has
  727.         already cleared all the events from the input buffer using a GetMidiEvent
  728.         loop in the OnMidiInput event handler }
  729.         if Assigned(FOnMIDIInput) and (FState = misOpen)
  730.             and (GetEventCount > 0) then
  731.             FOnMIDIInput(Self);
  732.     mim_Overflow:
  733.         if Assigned(FOnOverflow) and (FState = misOpen) then
  734.             FOnOverflow(Self);
  735.     end;
  736. end;
  737.  
  738. {-------------------------------------------------------------------}
  739. procedure Register;
  740. begin
  741.   RegisterComponents('Samples', [TMIDIInput]);
  742. end;
  743.  
  744. end.
  745.