Giter Site home page Giter Site logo

nperi / ofxmidi_nimp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from danomatika/ofxmidi

0.0 1.0 1.0 863 KB

(maintained) Midi addon for openFrameworks

License: Other

Makefile 2.25% C++ 72.35% Objective-C 3.43% Objective-C++ 18.93% C 1.07% Pure Data 1.45% Shell 0.52%

ofxmidi_nimp's Introduction

ofxMidi

Midi input and output addon for openFrameworks

Copyright (c) Dan Wilcox 2011-2013
(original implementation by Chris O'Shea, Arturo Castro, Kyle McDonald)

BSD Simplified License.

For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "LICENSE.txt," in this distribution.

See Documentation on Github and the OpenFrameworks Forum post.

OpenFrameworks is a cross platform open source toolkit for creative coding in C++.

http://www.openframeworks.cc

Description

ofxMidi provides Music Instrument Digial Interface IO capability to an OpenFrameworks app

  • ofxMidiIn: a single midi input port, derive from the ofxMidiListener class to receive messages
  • ofxMidiMessage: a received midi message
  • ofxMidiOut: a single midi output port, includes a stream << interface

This project utilizes RtMidi for Mac, Windows, & Linux and PGMidi on iOS.

Installation

To use ofxMidi, first you need to download and install OpenFrameworks. ofxMidi is currently developed against the current stable version of Open Frameworks on github.

To get a copy of the repository you can download the source from http://github.com/danomatika/ofxMidi/zipball/master or, alternatively, you can use git clone:

git clone git://github.com/danomatika/ofxMidi.git

The addon should sit in openFrameworks/addons/ofxMidi/.

Which version to use?

If you are using a stable version (007, ...) of OpenFrameworks then you want to use a git tag of ofxMidi for that version. You can select the tag in the Github "Current Branch" menu or clone and check it out using git.

For example, the following commands will clone ofxMidi and switch to the OF 007 tagged version:

git clone git://github.com/danomatika/ofxMidi.git
cd ofxPd
git checkout 007

Midi Routing

Mac OSX

Checkout a useful app for midi port routing called MIDI Patchbay.

Linux

Check out the Alsa utility apps aconnect & aconnectgui as well as the qjackctl gui for midi port routing control.

Windows

Windows dosen't come with a virtual MIDI routing system like Linux (ALSA) and OSX (CoreMIDI).

If you want to connect your ofxMidi app to other software (synths, DAWs, etc) check out loopMIDI. Run the app and create a few virtual ports which you can then connect to within your software.

Running an Example Project

The example projects are in the ofxMidi/midiExampleInput, ofxMidi/midiExampleOutput, & ofxMidi/midiExampleIOS folders.

OSX

Open the Xcode project, select the project scheme, and hit "Run".

Linux

Open the Code::Blocks .workspace and hit F9 to build. Optionally, you can build the example with the Makefile.

To built and run it on the terminal:

make
make run

Windows

An example Visual Studio solution as well as a Codeblocks workspace are included.

Creating a New ofxMidi Project

Note: These instructions are for manually creating a new project. You do not need to follow these steps if you use the ProjecGenerator app.

To develop your own project based on ofxMidi, simply copy an example project and rename it. You probably want to put it in your apps folder, for example, after copying:

openFrameworks/addons/ofxPd/midiExampleInput/ => openFrameworks/apps/myApps/midiExampleInput/

It must be 3 levels down in the openframeworks folder structure.

Then rename the folder:

openFrameworks/apps/myApps/myPdProject/

Xcode

Rename the project in Xcode (do not rename the .xcodeproj file in Finder!):

  • Xcode Menu->Project->Rename

Codeblocks (Win & Linux)

  • rename the *.cbp and *.workspace files
  • open the workspace and readd the renamed project file by dragging it onto the project tree (it will complain about the missing project you renamed)
  • if you renamed the project folder make sure to set the project name to this folder name or C::B will not be able to run the binary:
    • right click on project in the tree (not the workspace)
    • Properties...->Title

Visual Studio

  • rename the *.sln, *.vcxproj, & *.vcxproj.filters files
  • open the solution and delete the old project from the projects tree
  • go to File->Add->Existing Projects/Solutions and select the *.vcxproj file
  • right click on the project in the projects tree and rename it

Adding ofxMidi to an Existing Project

Note: These instructions are for manually adding ofxMidi to a project. You do not need to follow these steps if you use the ProjecGenerator app to regenerate your project files.

Xcode

  • create a new group "ofxMidi" in the "addons" group
  • drag these directories from ofxMidi into this new group: ofxMidi/src & ofxMidi/libs
    • in the Add dialog: add to your current project target, uncheck "Copy items if needed" & select "Create groups"
    • if building for OSX, remove the src/ios & libs/pgmidi folder references
    • if building for iOS, remove the src/desktop & libs/rtmidi folder references
  • add the CoreMIDI framework to your project
    • click on your project in the sidebar
    • select the Summary tab
    • click the + under Linked Frameworks & Libraries
    • search for and select the CoreMIDI.framework from the list
  • add the following directories to your search path in your project's Project.xconfig file (See the Project.xconfig of the example project.):
../../../addons/ofxMidi/src
../../../addons/ofxMidi/libs/rtmidi

Linux Makefiles/CodeBlocks

  • edit addons.make in your project folder and add the following line to the end of the file:
ofxMidi

Win Codeblocks & Visual Studio

  • add the ofxMidi sources to the project tree ofxMidi/src ofxMidi/libs/rtmidi
    • Codeblocks: right click on the project in the project tree and select Add Files Recursively...
    • Visual Studio: drag the ofxMidi/src & ofxMidi/libs/rtmidi folder onto the project tree
  • add the following search paths:
..\\..\\..\addons\ofxMidi\src
..\\..\\..\addons\ofxMidi\libs\rtmidi
  • Codeblocks
    • right click on the project in the project tree and select Build Options...
    • select the project name in the tree, not release or debug
    • Search directories tab->Add
  • Visual Studio
    • right click on the project in the project tree and select Properties
    • set the Configuration to All Configurations
    • Configuration Properties->C/C++->General->Additional Directories

KNOWN ISSUES

Using static ofxMidi objects on Linux causes seg faults

Avoid creating static ofxMidiIn / ofxMidiOut objects on Linux as the compiler seems to set creation order so they are created before ALSA is ready. This leads to a confirmed seg fault on Ubuntu and probably all other flavors of Linux using ALSA. The midi apis on Windows and OSX do not share this problem.

Instead create a static ofPtr and initialize it later:

// in .h:

class MyClass {

    ...

    static ofPtr<ofxMidiOut> s_midiOut;

    ...

}

// in .cpp:

ofPtr<ofxMidiOut> MyClass::s_midiOut;

...

// initialize somewhere else
void MyClass::setup() {
    if(s_midiOut == NULL) {
        s_midiOut = ofPtr<ofxMidiOut>(new ofxMidiOut("ofxMidi Client"));
    }
}

ofxMidi classes created in constructors don't seem to work

This is related to the issue above, in that the ofxMidi classes are being created too early in the app startup process and the back end MIDI library is not being set up correctly. The easiest & best solution is to call the ofxMidi class setup code as part of you ofApp's setup() function, whether there directly or within a subclass. This way you have direct control over when things are happening as opposed to within a constructor which may be called at an arbitrarily early point.

DEVELOPING

You can help develop ofxMidi on GitHub: https://github.com/danomatika/ofxMidi

Create an account, clone or fork the repo, then request a push/merge. Please use the develop branch of updates and pull requests.

If you find any bugs or suggestions please log them to GitHub as well.

Adding a Midi Backend

If you want to add a new midi backend (Android, Jack, etc), you'll need two classes derived from ofxBaseMidiIn & ofxBaseMidiOut.

Place your source files in a new folder named after your platform/library and add new include #ifdef flags to ofxMidiIn.h & ofxMidiIn.cpp.

Last, you'll need to add specific #ifdef flags to the static port info ofxMidiIn/Out functions (listPorts, getPortName, etc).

Updating Midi Libraries

RtMidi & PGMidi can be updated by running the update_rtmidi.sh or update_pgmidi.sh shell scripts in the scripts folder.

For RtMidi, edit the version setting in the script header and run the script to download and place the RtMidi sources into libs/rtmidi.

PGMidi sources are placed in libs/pgmidi.

RtMidi.cpp include

Next, make sure to add the following include to RtMidi.cpp at around line 38 or there will be link errors:

#include "ofxConstants.h"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.