on session-load: skip output-change-handler until IOs are restored
[ardour.git] / libs / ardour / ardour / midi_port.h
index c9bcb056f44412fb6de789d7f1186fa8241fc1e4..5dc55398cb9c7fdb1441e3202488d534ee47a5f1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    Copyright (C) 2002 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
 #ifndef __ardour_midi_port_h__
 #define __ardour_midi_port_h__
 
-#include <ardour/base_midi_port.h>
+#include "ardour/port.h"
+#include "ardour/midi_buffer.h"
+#include "ardour/midi_state_tracker.h"
 
 namespace ARDOUR {
 
 class MidiEngine;
 
-class MidiPort : public BaseMidiPort, public PortFacade {
+class MidiPort : public Port {
    public:
        ~MidiPort();
 
+       DataType type () const {
+               return DataType::MIDI;
+       }
+
+       void cycle_start (pframes_t nframes);
+       void cycle_end (pframes_t nframes);
+       void cycle_split ();
+
+       void flush_buffers (pframes_t nframes);
+       void transport_stopped ();
+       void realtime_locate ();
        void reset ();
+        void require_resolve ();
+
+       bool input_active() const { return _input_active; }
+       void set_input_active (bool yn);
+
+       Buffer& get_buffer (pframes_t nframes) {
+               return get_midi_buffer (nframes);
+       }
 
-       void cycle_start (nframes_t nframes, nframes_t offset);
+       MidiBuffer& get_midi_buffer (pframes_t nframes);
 
   protected:
        friend class AudioEngine;
 
-       MidiPort (const std::string& name, Flags, bool external, nframes_t bufsize);
+       MidiPort (const std::string& name, Flags);
+
+  private:
+       MidiBuffer* _buffer;
+       bool        _has_been_mixed_down;
+       bool        _resolve_required;
+       bool        _input_active;
+
+       void resolve_notes (void* jack_buffer, MidiBuffer::TimeType when);
 };
+
 } // namespace ARDOUR
 
 #endif /* __ardour_midi_port_h__ */