Sync with http://svn.drobilla.net/lad/trunk/evoral r1891.
[ardour.git] / libs / evoral / src / MIDIEvent.cpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  * 
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  * 
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  * 
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "evoral/MIDIEvent.hpp"
20
21 namespace Evoral {
22
23 #ifdef EVORAL_MIDI_XML
24
25 MIDIEvent::MIDIEvent(const XMLNode& event) 
26   : Event()
27 {
28         string name = event.name();
29         
30         if (name == "ControlChange") {
31                 _buffer = (uint8_t*) ::malloc(3);
32                 _owns_buffer = true;
33                 set_type(MIDI_CMD_CONTROL);
34                 
35                 set_cc_number(atoi(event.property("Control")->value().c_str()));
36                 set_cc_value (atoi(event.property("Value")->value().c_str()));
37         } else if (name == "ProgramChange") {
38                 _buffer = (uint8_t*) ::malloc(2);
39                 _owns_buffer = true;
40                 set_type(MIDI_CMD_PGM_CHANGE);
41
42                 set_pgm_number(atoi(event.property("Number")->value().c_str()));
43         }
44 }
45
46
47 boost::shared_ptr<XMLNode> 
48 MIDIEvent::to_xml() const
49 {
50         XMLNode *result = 0;
51         
52         switch (type()) {
53         case MIDI_CMD_CONTROL:
54                 result = new XMLNode("ControlChange");
55                 result->add_property("Channel", channel());
56                 result->add_property("Control", cc_number());
57                 result->add_property("Value",   cc_value());
58                 break;
59                         
60         case MIDI_CMD_PGM_CHANGE:
61                 result = new XMLNode("ProgramChange");
62                 result->add_property("Channel", channel());
63                 result->add_property("Number",  pgm_number());
64                 break;
65                 
66         default:
67                 // The implementation is continued as needed
68                 break;
69         }
70         
71         return boost::shared_ptr<XMLNode>(result);
72 }
73
74 #endif // EVORAL_MIDI_XML
75
76 } // namespace MIDI
77