Audacity 3.2.0
Classes | Macros | Typedefs | Functions | Variables
NoteTrack.h File Reference
#include <utility>
#include "AudioIOSequences.h"
#include "CRTPBase.h"
#include "Prefs.h"
#include "PlayableTrack.h"
Include dependency graph for NoteTrack.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  NoteTrackAttachment
 
class  NoteTrack
 A Track that is used for Midi notes. (Somewhat old code). More...
 
struct  NoteTrack::Interval
 

Macros

#define NUM_CHANNELS   16
 
#define ALL_CHANNELS   (1 << NUM_CHANNELS) - 1
 
#define CHANNEL_BIT(c)   (1 << (c % NUM_CHANNELS))
 
#define SonifyBeginSonification()
 
#define SonifyEndSonification()
 
#define SonifyBeginNoteBackground()
 
#define SonifyEndNoteBackground()
 
#define SonifyBeginNoteForeground()
 
#define SonifyEndNoteForeground()
 
#define SonifyBeginMeasures()
 
#define SonifyEndMeasures()
 
#define SonifyBeginSerialize()
 
#define SonifyEndSerialize()
 
#define SonifyBeginUnserialize()
 
#define SonifyEndUnserialize()
 
#define SonifyBeginAutoSave()
 
#define SonifyEndAutoSave()
 
#define SonifyBeginModifyState()
 
#define SonifyEndModifyState()
 

Typedefs

using QuantizedTimeAndBeat = std::pair< double, double >
 
using NoteTrackAttachments = ClientData::Site< NoteTrack, NoteTrackAttachment, ClientData::DeepCopying >
 

Functions

 CRTP_BASE (NoteTrackAttachmentBase, struct, ClientData::Cloneable< NoteTrackAttachment, ClientData::UniquePtr >)
 
 ENUMERATE_TRACK_TYPE (NoteTrack)
 
NOTE_TRACK_API wxString GetMIDIDeviceInfo ()
 

Variables

struct NOTE_TRACK_API NoteTrackAttachment
 
NOTE_TRACK_API StringSetting MIDIPlaybackDevice
 
NOTE_TRACK_API StringSetting MIDIRecordingDevice
 
NOTE_TRACK_API IntSetting MIDISynthLatency_ms
 

Macro Definition Documentation

◆ ALL_CHANNELS

#define ALL_CHANNELS   (1 << NUM_CHANNELS) - 1

Definition at line 147 of file NoteTrack.h.

◆ CHANNEL_BIT

#define CHANNEL_BIT (   c)    (1 << (c % NUM_CHANNELS))

Definition at line 148 of file NoteTrack.h.

◆ NUM_CHANNELS

#define NUM_CHANNELS   16

Definition at line 145 of file NoteTrack.h.

◆ SonifyBeginAutoSave

#define SonifyBeginAutoSave ( )

Definition at line 241 of file NoteTrack.h.

◆ SonifyBeginMeasures

#define SonifyBeginMeasures ( )

Definition at line 235 of file NoteTrack.h.

◆ SonifyBeginModifyState

#define SonifyBeginModifyState ( )

Definition at line 243 of file NoteTrack.h.

◆ SonifyBeginNoteBackground

#define SonifyBeginNoteBackground ( )

Definition at line 231 of file NoteTrack.h.

◆ SonifyBeginNoteForeground

#define SonifyBeginNoteForeground ( )

Definition at line 233 of file NoteTrack.h.

◆ SonifyBeginSerialize

#define SonifyBeginSerialize ( )

Definition at line 237 of file NoteTrack.h.

◆ SonifyBeginSonification

#define SonifyBeginSonification ( )

Definition at line 229 of file NoteTrack.h.

◆ SonifyBeginUnserialize

#define SonifyBeginUnserialize ( )

Definition at line 239 of file NoteTrack.h.

◆ SonifyEndAutoSave

#define SonifyEndAutoSave ( )

Definition at line 242 of file NoteTrack.h.

◆ SonifyEndMeasures

#define SonifyEndMeasures ( )

Definition at line 236 of file NoteTrack.h.

◆ SonifyEndModifyState

#define SonifyEndModifyState ( )

Definition at line 244 of file NoteTrack.h.

◆ SonifyEndNoteBackground

#define SonifyEndNoteBackground ( )

Definition at line 232 of file NoteTrack.h.

◆ SonifyEndNoteForeground

#define SonifyEndNoteForeground ( )

Definition at line 234 of file NoteTrack.h.

◆ SonifyEndSerialize

#define SonifyEndSerialize ( )

Definition at line 238 of file NoteTrack.h.

◆ SonifyEndSonification

#define SonifyEndSonification ( )

Definition at line 230 of file NoteTrack.h.

◆ SonifyEndUnserialize

#define SonifyEndUnserialize ( )

Definition at line 240 of file NoteTrack.h.

Typedef Documentation

◆ NoteTrackAttachments

Definition at line 68 of file NoteTrack.h.

◆ QuantizedTimeAndBeat

using QuantizedTimeAndBeat = std::pair< double, double >

Definition at line 50 of file NoteTrack.h.

Function Documentation

◆ CRTP_BASE()

CRTP_BASE ( NoteTrackAttachmentBase  ,
struct  ,
ClientData::Cloneable< NoteTrackAttachment, ClientData::UniquePtr  
)

◆ ENUMERATE_TRACK_TYPE()

ENUMERATE_TRACK_TYPE ( NoteTrack  )

◆ GetMIDIDeviceInfo()

NOTE_TRACK_API wxString GetMIDIDeviceInfo ( )

Definition at line 884 of file NoteTrack.cpp.

885{
886 wxStringOutputStream o;
887 wxTextOutputStream s(o, wxEOL_UNIX);
888
889 if (AudioIOBase::Get()->IsStreamActive()) {
890 return XO("Stream is active ... unable to gather information.\n")
891 .Translation();
892 }
893
894
895 // XXX: May need to trap errors as with the normal device info
896 int recDeviceNum = Pm_GetDefaultInputDeviceID();
897 int playDeviceNum = Pm_GetDefaultOutputDeviceID();
898 int cnt = Pm_CountDevices();
899
900 // PRL: why only into the log?
901 wxLogDebug(wxT("PortMidi reports %d MIDI devices"), cnt);
902
903 s << wxT("==============================\n");
904 s << XO("Default recording device number: %d\n").Format( recDeviceNum );
905 s << XO("Default playback device number: %d\n").Format( playDeviceNum );
906
907 auto recDevice = MIDIRecordingDevice.Read();
908 auto playDevice = MIDIPlaybackDevice.Read();
909
910 // This gets info on all available audio devices (input and output)
911 if (cnt <= 0) {
912 s << XO("No devices found\n");
913 return o.GetString();
914 }
915
916 for (int i = 0; i < cnt; i++) {
917 s << wxT("==============================\n");
918
919 const PmDeviceInfo* info = Pm_GetDeviceInfo(i);
920 if (!info) {
921 s << XO("Device info unavailable for: %d\n").Format( i );
922 continue;
923 }
924
925 wxString name = wxSafeConvertMB2WX(info->name);
926 wxString hostName = wxSafeConvertMB2WX(info->interf);
927
928 s << XO("Device ID: %d\n").Format( i );
929 s << XO("Device name: %s\n").Format( name );
930 s << XO("Host name: %s\n").Format( hostName );
931 /* i18n-hint: Supported, meaning made available by the system */
932 s << XO("Supports output: %d\n").Format( info->output );
933 /* i18n-hint: Supported, meaning made available by the system */
934 s << XO("Supports input: %d\n").Format( info->input );
935 s << XO("Opened: %d\n").Format( info->opened );
936
937 if (name == playDevice && info->output)
938 playDeviceNum = i;
939
940 if (name == recDevice && info->input)
941 recDeviceNum = i;
942
943 // XXX: This is only done because the same was applied with PortAudio
944 // If PortMidi returns -1 for the default device, use the first one
945 if (recDeviceNum < 0 && info->input){
946 recDeviceNum = i;
947 }
948 if (playDeviceNum < 0 && info->output){
949 playDeviceNum = i;
950 }
951 }
952
953 bool haveRecDevice = (recDeviceNum >= 0);
954 bool havePlayDevice = (playDeviceNum >= 0);
955
956 s << wxT("==============================\n");
957 if (haveRecDevice)
958 s << XO("Selected MIDI recording device: %d - %s\n").Format( recDeviceNum, recDevice );
959 else
960 s << XO("No MIDI recording device found for '%s'.\n").Format( recDevice );
961
962 if (havePlayDevice)
963 s << XO("Selected MIDI playback device: %d - %s\n").Format( playDeviceNum, playDevice );
964 else
965 s << XO("No MIDI playback device found for '%s'.\n").Format( playDevice );
966
967 // Mention our conditional compilation flags for Alpha only
968#ifdef IS_ALPHA
969
970 // Not internationalizing these alpha-only messages
971 s << wxT("==============================\n");
972#ifdef EXPERIMENTAL_MIDI_IN
973 s << wxT("EXPERIMENTAL_MIDI_IN is enabled\n");
974#else
975 s << wxT("EXPERIMENTAL_MIDI_IN is NOT enabled\n");
976#endif
977
978#endif
979
980 return o.GetString();
981}
wxT("CloseDown"))
const TranslatableString name
Definition: Distortion.cpp:76
XO("Cut/Copy/Paste")
StringSetting MIDIRecordingDevice
Definition: NoteTrack.cpp:984
StringSetting MIDIPlaybackDevice
Definition: NoteTrack.cpp:983
static AudioIOBase * Get()
Definition: AudioIOBase.cpp:94
bool Read(T *pVar) const
overload of Read returning a boolean that is true if the value was previously defined *‍/
Definition: Prefs.h:207

References AudioIOBase::Get(), MIDIPlaybackDevice, MIDIRecordingDevice, name, Setting< T >::Read(), wxT(), and XO().

Referenced by anonymous_namespace{MIDIPlay.h}::MIDIPlay::Dump(), and anonymous_namespace{NoteTrackMenuItems.cpp}::OnMidiDeviceInfo().

Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ MIDIPlaybackDevice

NOTE_TRACK_API StringSetting MIDIPlaybackDevice
extern

◆ MIDIRecordingDevice

NOTE_TRACK_API StringSetting MIDIRecordingDevice
extern

Definition at line 984 of file NoteTrack.cpp.

Referenced by GetMIDIDeviceInfo(), and MidiIOPrefs::Populate().

◆ MIDISynthLatency_ms

NOTE_TRACK_API IntSetting MIDISynthLatency_ms
extern

◆ NoteTrackAttachment

struct NOTE_TRACK_API NoteTrackAttachment

Definition at line 56 of file NoteTrack.h.