Authors: Joseph Malloch, Stephen Sinclair
The mapping tools provide a framework and GUI designed to aid collaborative development of a digital musical instrument mapping layer. The goal was to create a system that allows mapping between controller and sound parameters without requiring a high level of technical knowledge, and which needs minimal manual intervention for tasks such as configuring the network and assigning identifiers to devices. Ease of implementation was also considered, to encourage future developers of devices to adopt a compatible protocol. (See the Mapping Tools project page for more information and a screenshot.)
The version available here for download has been implemented in Max/MSP and is provided separately for Max/MSP 4.6 and Max/MSP 5. Regardless of which version you use, the graphical interface will run only in Max 5 (or the free Max 5 runtime, if you don't have a paid installation). In the future, we will try to have other versions available here also - the documentation is all freely available, so if you feel like porting the max version, or including compatibility in your own software, please feel free :)
Download:
Current Dependencies:
Integrating the mapping tools with existing patches is usually extremely easy, and really consists of only two steps:
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" mapperVersion="2a"?> <device name = "/example" class = "example.xml" numInputs = "2" numOutputs = "2"> <inputs> <parameter name = "/in1"> <type>f</type> <units>normalized</units> <minimum>0</minimum> <maximum>1</maximum> </parameter> <parameter name = "/in2"> <type>i</type> <units>na</units> <minimum>0</minimum> <maximum>256</maximum> </parameter> </inputs> <outputs> <parameter name = "/out1"> <type>f</type> <units>percent</units> <minimum>0</minimum> <maximum>100</maximum> </parameter> <parameter name = "/out2"> <type>f</type> <units>na</units> </parameter> </outputs> </device>
For more detailed documentation, please refer to the published papers linked below. If you have questions or find a bug, please contact Joseph Malloch or Stephen Sinclair.