summaryrefslogtreecommitdiff
path: root/muse_qt4_evolution/midiplugins/dump/dump.cpp
blob: e346a64291e5d64d18137eadc4961c58b0b04062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//=========================================================
//  MusE
//  Linux Music Editor
//  $Id: filter.cpp,v 1.10 2005/11/06 17:49:34 wschweer Exp $
//
//    dump- simple midi event dump for testing purposes
//
//  (C) Copyright 2006 Werner Schweer (ws@seh.de)
//=========================================================

#include "dump.h"
#include "midi.h"

//---------------------------------------------------------
//   process
//---------------------------------------------------------

void Dump::process(unsigned, unsigned, MidiEventList* il, MidiEventList* ol)
      {
      for (iMidiEvent i = il->begin(); i != il->end(); ++i) {
            printf("Event %6d ch:%2d type:%2d 0x%02x 0x%02x\n", i->time(), i->channel(), 
               i->type(), i->dataA(), i->dataB());
            ol->insert(*i);
            }
      }

//---------------------------------------------------------
//   inst
//---------------------------------------------------------

static Mempi* instantiate(const char* name, const MempiHost* h)
      {
      return new Dump(name, h);
      }

extern "C" {
      static MEMPI descriptor = {
            "Dump",
            "MusE Simple Midi Event Dump",
            "0.1",                  // version string
            MEMPI_FILTER,           // plugin type
            MEMPI_MAJOR_VERSION, MEMPI_MINOR_VERSION,
            instantiate
            };

      const MEMPI* mempi_descriptor() { return &descriptor; }
      }