Zitat von
hesubat:
Ich gebe zu, dass ich Probleme mit objektorientierter Programmierung habe und im Alter von 59J auch meine Probleme mit dem Hinzulernen.
Das versteh ich schon.
OOP macht aber Spass und ich gar nicht so schwer, so lange man sich
nur auf das Benützen von Komponenten und/oder Klassen beschränkt.
Zitat von
hesubat:
Dennoch wiederhole ich meine Frage: Gibt es im Bereich der LOW-Level Programmierung einen einfachen Weg fuer polyphone Ausgabe?
Bei MIDI kann jeden Ton anschalten (
NoteOn) und ausschalten (
NoteOff).
Hier mal die Liste der Statusbytes:
Delphi-Quellcode:
const
// MIDI Status Bytes for Channel Voice Messages
MIDIMsgNoteOff = $80;
MIDIMsgNoteOn = $90;
MIDIMsgPolyKeyPressure = $A0;
MIDIMsgControlChange = $B0;
MIDIMsgProgramChange = $C0;
MIDIMsgChannelKeyPressure = $D0;
MIDIMsgAftertouch = MIDIMsgChannelKeyPressure;
// Synonym
MIDIMsgPitchWheelChange = $E0;
// MIDI Status Bytes for System Common Messages
MIDIMsgSysEx = $F0;
MIDIMsgMTCQtrFrame = $F1;
// MIDI Time Code Qtr. Frame
MIDIMsgSongPositionPtr = $F2;
MIDIMsgSongSelect = $F3;
MIDIMsgTuneRequest = $F6;
MIDIMsgEOX = $F7;
// marks end of system exclusive message
// MIDI Status Bytes for System Real-Time Messages
MIDIMsgTimingClock = $F8;
MIDIMsgStartSequence = $FA;
MIDIMsgContinueSequence = $
FB;
MIDIMsgStopSequence = $FC;
MIDIMsgActiveSensing = $FE;
MIDIMsgSystemReset = $FF;
Die 144 entspricht $90 ist also gleich MIDIMsgNoteOn.
Daher:
Delphi-Quellcode:
midistart:=(65536*volume)+(256*(ton+oktav))+MIDIMsgNoteOn;
data:=(256*instrumen)+MIDIMsgProgramChange;
MidiOutShortMsg(MidiOH, data);
MidiOutShortMsg(MidiOH, midistart); / 1. Ton
midistart:=(65536*volume)+(256*(ton2+oktav2))+MIDIMsgNoteOn;
MidiOutShortMsg(MidiOH, midistart); / 2. Ton
Sleep(500); // 0,5 Sekunden warten
midistop:=(65536*volume)+(256*(ton+oktav))+MIDIMsgNoteOff;
MidiOutShortMsg(MidiOH, midistop); // 1. Ton aus
midistop:=(65536*volume)+(256*(ton2+oktav2))+MIDIMsgNoteOff;
MidiOutShortMsg(MidiOH, midistop); // 2. Ton aus