ModalityTeam / Modality-toolkit

A SuperCollider toolkit to simplify the creation of personal (electronic) instruments utilising hardware and software controllers of any kind.
http://modalityteam.github.io/
87 stars 26 forks source link

complete desc files with full gui style info. #278

Open adcxyz opened 7 years ago

adcxyz commented 7 years ago

Most desc files now have complete gui style info and look quite good; in some the elements are not aligned as on the physical device, but they are usable.

The desc files below need some attention, ideally by people who own and use the devices ;-)


// access descs
MKtlDesc.openFolder;
// read the descs, make MKtls for all
(
MKtlDesc.loadDescs.size;
MKtlDesc.allDescs.do { |desc| MKtl(desc.name, desc) };
l = MKtl.all.keys(SortedList).collect(MKtl(_));
)
// post creation + comment code for each one
(
l.do { |mk|
    var str = mk.name.asString.cs;
    "MKtlDesc.loadDescs(%); MKtl( %, %.gui; // \n".postf(str, mk.name.cs, str)
};"";
)
// current todo status for all descs and guis 2016_11_10
// most others seem good enough ATM.

MKtl('akai-apc40').gui; // layout, onoff
MKtl('akai-mpkmini2').gui; // layout, onoff
MKtl('snyderphonics-manta').gui; // onoff, use MHexPad,
MKtl('snyderphonics-manta_mc').gui; // onoff, layout, use MHexPad,

// layout!!
MKtl('teenage-engineering-op-1').gui;

// simple layout but usable. how to do 98 keys? colors
MKtl('cthrumusic-axis49').gui; // layout

// default layout, but usable
MKtl('logitech-extreme-3d-pro').gui;
MKtl('thrustmaster-megaworldectronics').gui;

// not urgent :
// could copy layout from saitek, fix compass gui
MKtl('shanwan-wirelessgamepad').gui;
MKtl('jesstech-dual-analog').gui;
MKtl('jesstech-dual-analog-rumble').gui;

// fix compass gui eventually:
MKtl('saitek-cyborg-x').gui;
MKtl('saitek-impact-gamepad').gui;
MKtl('thrustmaster-run-n-drive').gui;
MKtl('thrustmaster-run-n-drive-wireless').gui;

-- not now: --
// add missing elements, finish layout:
MKtl('native-instruments-traktor-kontrol-z2').gui;
MKtl('rme-audio-totalmix').gui; // add more controls
MKtl('touchosc-simple1').gui; // add 3 more pages for simple1 preset
MKtl('x-io-x-osc').gui; // layout, etc
adcxyz commented 7 years ago

ping - would be really nice if people that have those devices would check and add the missing gui info.

LFSaw commented 7 years ago

I'm sorry, I cannot really spare time on this atm. I'll do this once I use the devices and will check them in occationally.