view src/CannamMidiFileLoader.h @ 11:df9c838d0b8f

fixed bug where the full midi file was sometimes not drawn (since minNoteIndexToPrint) was at the max and did not decrease properly in draw routine
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 25 Oct 2011 15:01:52 +0100
parents de86d77f2612
children d75d16c57eac
line wrap: on
line source
/*
 *  CannamMidiFileLoader.h
 *  midi-score-follower
 *
 *  Created by Chris Cannam on 19/08/2011.
 *  Copyright 2011 QMUL. All rights reserved.
 *
 */

#ifndef CANNAM_MIDI_FILE_LOADER
#define  CANNAM_MIDI_FILE_LOADER

#include "MIDIFileReader.h"
//#include "MIDIEvent.h"
#include "midiEventHolder.h"
using namespace MIDIConstants;

class CannamMidiFileLoader{
	
public:
	CannamMidiFileLoader();
	
	int loadFile(std::string& filename, midiEventHolder& myMidiEvents);

	double firstNoteTime;
	int firstTickTime;
	bool chopBeginning;
	
	typedef std::vector<int> IntVector;
	IntVector v;
	int noteOnIndex;
	
};
#endif