/*
 *  alessandropetrolati Tropes_12
 *
 *  Tropes_12 is a CsoundAV patch, it calculates
 *  infinite  permutations of dodecaphonic series.
 *  Every series has an own nature (transition state):
 *  trigger frequency, events duration, events volume,
 *  events accents etc... The transitions can be linear
 *  or with a specific curve. A general control (width band)
 *  allows to choose the level of width from the semitone.
 *  Width band == 0 allow a chromatic scales,
 *  Width band > 0 allow an aleatory Jittering, all the
 *  series are always without repetition.
 *
 *  A special panel customer with 16 sliders "controls changes"
 *  provide a user "sends midi messages".
 *  In both panels, a Virtual Keyboard is present.
 *
 *  Requirements:
 *  Tropes_12 run with only Windows CsoundAV_WIN 0.043 and CsoundAV_Con a real-time
 *  oriented version of Csound by Gabriel Maldonado and MIDI device.
 *  It has not been tested on Windows Vista.
 *
 *  BtW: if your computer complains not to have file msvcp50.dll,
 *  you can find it here. You could need also glut32.dll.
 *  You have to place them in the \windows\system or
 *  \windows\system32 directory.
 *  N.B. Notice that the 64-bit versions are not tested as much
 *  as 32-bit versions, so may contain more bugs.
 *
 *  Created on 2008.
 *  Copyright © Alessandro Petrolati
 *  All rights reserved.
 *
 */
 
#include <index>
 
void alessandropetrolati::tropes_12()
{
   /* ver. 1.0 */
    _local.downloadTropes_12();
 
    _remote.downloadCsound();
 
    /* virtual MIDI driver */ 
    _remote.downloadLoopBe1();
 
    this->viewScreenshots();
    this->goToBlog();
    this->links();
}
///EOF