view musiccutter.py @ 18:cf93a76eda92

The laser cutter software barfs on these lines and stops processing the PDF (but doesn't emit any errors!) so just if them out for now.
author Daniel O'Connor <darius@dons.net.au>
date Wed, 20 Apr 2016 08:38:38 +0930
parents c50427f1da2d
children ffaf97818ce3
line wrap: on
line source

#!/usr/bin/env python

import exceptions
import itertools
import math
import mido
import os
import reportlab.lib.colors
import reportlab.pdfgen.canvas
from reportlab.lib.units import mm
import sys

CUT_COLOUR = reportlab.lib.colors.red
ENGRAVE_COLOUR = reportlab.lib.colors.black

def test(filename = None):
    if filename == None:
        filename = 'test.midi'
    # Card layout from http://www.orgues-de-barbarie.com/wp-content/uploads/2014/09/format-cartons.pdf
    m = Midi2PDF('notes', 200, 155, 5.5, 3.0, 6.0, 20, 10, 'Helvetica', 12)
    base, ext = os.path.splitext(filename)
    m.processMidi(filename, base + '-%02d.pdf')

class Midi2PDF(object):
    def __init__(self, notefile, pagewidth, pageheight, pitch, slotsize, offset, lmargin, timescale, fontname, fontsize):
        self.midi2note, self.note2midi = Midi2PDF.genmidi2note()
        self.note2slot, self.slot2note = Midi2PDF.loadnote2slot(notefile, self.note2midi)
        self.pagewidth = pagewidth # Dimensions are in millimetres
        self.pageheight = pageheight
        self.pitch = pitch # Distance between each slot
        self.slotsize = slotsize # Size of each slot cut out
        self.offset = offset # Bottom margin
        self.lmargin = lmargin # Left margin
        self.timescale = timescale # Width per second
        self.fontname = fontname
        self.fontsize = fontsize # Points

    def processMidi(self, midifile, outpat):
        playablecount = 0
        unplayablecount = 0
        midi = mido.MidiFile(midifile)
        ctime = 0
        channels = []
        for i in range(16):
            channels.append({})

        npages = int(math.ceil(((midi.length * self.timescale) + self.lmargin) / self.pagewidth))
        print 'npages', npages
        pdfs = []
        for i in range(npages):
            pdf = reportlab.pdfgen.canvas.Canvas(file(outpat % (i + 1), 'w'), pagesize = (self.pagewidth * mm, self.pageheight * mm))
            pdfs.append(pdf)

        title = midifile
        for ev in midi:
            if ev.type == 'text' and ctime == 0:
                title = ev.text

            ctime += ev.time
            if ev.type == 'note_on' or ev.type == 'note_off':
                note = self.midi2note[ev.note]
            #print ctime, ev
            if ev.type == 'note_on' and ev.velocity > 0:
                if ev.note in channels[ev.channel]:
                    print 'Duplicate note_on message %d (%s)' % (ev.note, note)
                else:
                    channels[ev.channel][ev.note] = ctime
            elif ev.type == 'note_off' or (ev.type == 'note_on' and ev.velocity == 0):
                    if ev.note not in channels[ev.channel]:
                        print 'note_off with no corresponding note_on for channel %d note %d' % (ev.channel, ev.note)
                    else:
                        if note not in self.note2slot:
                            print 'Skipping unplayable note %s' % (note)
                            unplayablecount += 1
                        else:
                            start = channels[ev.channel][ev.note]
                            notelen = ctime - start
                            slot = self.note2slot[note]
                            print 'Note %s (%d) at %.2f length %.2f' % (note, slot, start, notelen)
                            self.emitnote(pdfs, slot, start, notelen)
                            playablecount += 1
                        del channels[ev.channel][ev.note]
            elif ev.type == 'end_of_track':
                print 'EOT, not flushing, check for missed notes'
                for chan in channels:
                    for ev in chan:
                        print ev

        print 'Playable count:', playablecount
        print 'Unplayable count:', unplayablecount

        for pindx in range(len(pdfs)):
            pdf = pdfs[pindx]
            # Add title and page number
            Midi2PDF.textHelper(pdf, 25 * mm, 1 * mm, ENGRAVE_COLOUR, True, self.fontname, self.fontsize, '%s (%d / %d)' % (title, pindx + 1, npages))

            pdf.saveState() # Not really necessary since this is last thing we do
            pdf.setLineWidth(0)

            # Draw time marks
            if False:
                tstart = 0
                tend = (self.pagewidth - self.lmargin) / self.timescale
                if pindx > 0:
                    tsize = self.pagewidth / self.timescale
                    tstart = tend + tsize * pindx
                    tend = tend + tsize * (pindx + 1)
                for s in range(tstart, tend, 5):
                    x = float(s * self.timescale + self.lmargin) % self.pagewidth
                    pdf.line(x * mm, self.offset, x * mm, self.pageheight * mm)
                    Midi2PDF.textHelper(pdf, x * mm, 1 * mm, ENGRAVE_COLOUR, False, self.fontname, self.fontsize, str(s) + 's')

            # Draw rectangle around page
            if False:
                pdf.rect(0, 0, self.pagewidth * mm, self.pageheight * mm, fill = False, stroke = True)
                pdf.line(0, 0, 0, self.pagewidth * mm)
                pdf.line(0, self.pagewidth * mm, self.pagewidth * mm, self.pageheight * mm)
                pdf.line(self.pagewidth * mm, self.pageheight * mm, 0, self.pageheight * mm)
                pdf.line(0, self.pageheight * mm, 0, 0)

            # Draw lines per note
            for slot in sorted(self.slot2note.keys()):
                ofs = (self.offset + slot * self.pitch) * mm
                pdf.line(0, ofs, self.pagewidth * mm, ofs)
                # Note name
                Midi2PDF.textHelper(pdf, 0 * mm, ofs + 1 * mm, ENGRAVE_COLOUR, False, self.fontname, self.fontsize, self.slot2note[slot])
            pdf.restoreState()
            pdf.save()

    # http://newt.phys.unsw.edu.au/jw/notes.html
    @staticmethod
    def genmidi2note():
        '''Create forward & reverse tables for midi number to note name (assuming 69 = A4 = A440)'''
        names = ['C%d', 'C%d#', 'D%d', 'D%d#', 'E%d', 'F%d', 'F%d#', 'G%d', 'G%d#', 'A%d', 'A%d#', 'B%d']
        midi2note = {}
        note2midi = {}
        for midi in range(21, 128):
            octave = midi / len(names) - 1
            index = midi % len(names)
            name = names[index] % (octave)
            midi2note[midi] = name
            note2midi[name] = midi

        return midi2note, note2midi

    @staticmethod
    def loadnote2slot(fname, note2midi):
        note2slot = {}
        slot2note = {}
        index = 0

        for note in file(fname):
            note = note.strip()
            if note[0] == '#':
                continue
            if note not in note2midi:
                raise exceptions.ValueError('Note \'%s\' not valid' % note)
            note2slot[note] = index
            slot2note[index] = note
            index += 1

        return note2slot, slot2note

    def emitnote(self, pdfs, slot, start, notelen):
        x = start * self.timescale + self.lmargin
        pageidx = int(x / self.pagewidth)
        x = x % self.pagewidth
        y = self.offset + slot * self.pitch + (self.pitch - self.slotsize) / 2
        w = notelen * self.timescale
        h = self.slotsize

        print 'page = %d x = %.3f y = %.3f w = %.3f h = %.3f' % (pageidx, x, y, w, h)
        w1 = w
        # Check if the note crosses a page
        if x + w > self.pagewidth:
            w1 = x - self.pagewidth # Crop first note
            w2 = w - w1
            assert w1 <= self.pagewidth, 'note extends for more than a page'
            # Emit second half of note
            print 'split note, page %d w2 = %.3f' % (pageidx + 1, w2)
            Midi2PDF._emitnote(pdfs[pageidx + 1], 0, y, w2, h)

        Midi2PDF._emitnote(pdfs[pageidx], x, y, w1, h)

    @staticmethod
    def _emitnote(pdf, x, y, w, h):
        pdf.saveState()
        pdf.setStrokeColor(CUT_COLOUR)
        pdf.setLineWidth(0)
        pdf.rect(x * mm, y * mm, w * mm, h * mm, fill = False, stroke = True)
        pdf.restoreState()

    @staticmethod
    def textHelper(pdf, x, y, colour, fill, fontname, fontsize, text):
        tobj = pdf.beginText()
        tobj.setTextOrigin(x, y)
        tobj.setFont(fontname, fontsize)
        tobj.setStrokeColor(colour)
        tobj.setFillColor(colour)
        if fill:
            tobj.setTextRenderMode(0)
        else:
            tobj.setTextRenderMode(1)
        tobj.textLine(text)
        pdf.drawText(tobj)

if __name__ == '__main__':
    main()