本文整理汇总了C++中MidiEvent::GetVolume方法的典型用法代码示例。如果您正苦于以下问题:C++ MidiEvent::GetVolume方法的具体用法?C++ MidiEvent::GetVolume怎么用?C++ MidiEvent::GetVolume使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MidiEvent
的用法示例。
在下文中一共展示了MidiEvent::GetVolume方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SendEvent
void MidiDevice::SendEvent(int Device,const MidiEvent &Event)
{
#ifdef ALSA_MIDI
snd_seq_event_t ev;
snd_seq_ev_clear (&ev);
snd_seq_ev_set_direct (&ev);
snd_seq_ev_set_subs (&ev);
snd_seq_ev_set_source (&ev, 0);
switch (Event.GetType())
{
case MidiEvent::ON : ev.type = SND_SEQ_EVENT_NOTEON; break;
case MidiEvent::OFF : ev.type = SND_SEQ_EVENT_NOTEOFF; break;
case MidiEvent::AFTERTOUCH : break;
case MidiEvent::PARAMETER : break;
case MidiEvent::CHANNELPRESSURE : break;
case MidiEvent::PITCHBEND : break;
case MidiEvent::NONE : break;
}
ev.data.note.velocity = (char)(Event.GetVolume()*127.0f);
ev.data.control.channel = Device;
ev.data.note.note=Event.GetNote();
int ret=snd_seq_event_output(seq_handle, &ev);
snd_seq_drain_output(seq_handle);
#else
if (Device<0 || Device>15)
{
cerr<<"SendEvent: Invalid Midi device "<<Device<<endl;
}
char message[3];
message[1]=Event.GetNote()+MIDI_KEYOFFSET;
message[2]=(char)Event.GetVolume();
if (Event.GetType()==MidiEvent::ON)
{
message[0]=STATUS_NOTE_ON+Device;
write(m_MidiWrFd,message,3);
//cerr<<"sending "<<message<<endl;
}
if (Event.GetType()==MidiEvent::OFF)
{
message[0]=STATUS_NOTE_OFF+Device;
write(m_MidiWrFd,message,3);
//cerr<<"sending "<<message<<endl;
}
#endif
}