Audacity 3.2.0
Namespaces | Macros | Functions | Variables
NoteTrack.cpp File Reference
#include "NoteTrack.h"
#include <wx/wxcrtvararg.h>
#include "WrapAllegro.h"
#include <sstream>
#include "Prefs.h"
#include "Project.h"
#include "InconsistencyException.h"
#include "TimeWarper.h"
#include <wx/log.h>
#include <wx/sstream.h>
#include <wx/txtstrm.h>
#include "AudioIOBase.h"
#include "portmidi.h"
Include dependency graph for NoteTrack.cpp:

Go to the source code of this file.

Namespaces

namespace  anonymous_namespace{NoteTrack.cpp}
 

Macros

#define ROUND(x)   ((int) ((x) + 0.5))
 

Functions

static const Track::TypeInfotypeInfo ()
 
void anonymous_namespace{NoteTrack.cpp}::swap (std::unique_ptr< Alg_seq > &a, std::unique_ptr< Alg_seq > &b)
 
bool anonymous_namespace{NoteTrack.cpp}::IsValidVisibleChannels (const int nValue)
 
wxString GetMIDIDeviceInfo ()
 

Variables

static ProjectFileIORegistry::ObjectReaderEntry readerEntry
 
StringSetting MIDIPlaybackDevice { L"/MidiIO/PlaybackDevice", L"" }
 
StringSetting MIDIRecordingDevice { L"/MidiIO/RecordingDevice", L"" }
 
IntSetting MIDISynthLatency_ms { L"/MidiIO/SynthLatency", 5 }
 

Macro Definition Documentation

◆ ROUND

#define ROUND (   x)    ((int) ((x) + 0.5))

Definition at line 24 of file NoteTrack.cpp.

Function Documentation

◆ GetMIDIDeviceInfo()

wxString GetMIDIDeviceInfo ( )

Definition at line 890 of file NoteTrack.cpp.

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

◆ typeInfo()

static const Track::TypeInfo & typeInfo ( )
static

Definition at line 567 of file NoteTrack.cpp.

568{
569 static const Track::TypeInfo info{
570 { "note", "midi", XO("Note Track") }, true,
572 return info;
573}
static const TypeInfo & ClassTypeInfo()

References PlayableTrack::ClassTypeInfo(), and XO().

Referenced by NoteTrack::ClassTypeInfo(), and NoteTrack::GetTypeInfo().

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

Variable Documentation

◆ MIDIPlaybackDevice

StringSetting MIDIPlaybackDevice { L"/MidiIO/PlaybackDevice", L"" }

◆ MIDIRecordingDevice

StringSetting MIDIRecordingDevice { L"/MidiIO/RecordingDevice", L"" }

Definition at line 990 of file NoteTrack.cpp.

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

◆ MIDISynthLatency_ms

IntSetting MIDISynthLatency_ms { L"/MidiIO/SynthLatency", 5 }

◆ readerEntry

Initial value:
{
"notetrack",
}
static NoteTrack * New(AudacityProject &project)
Definition: NoteTrack.cpp:137

Definition at line 132 of file NoteTrack.cpp.