Article History
 
 
 
Discussion
 
6333 views
 
74% skydev
athtune
 

::|CONTENTS

  1. How to make sounds: ##synth
  2. How to make sounds: ##tune
  3. Playback tools
  4. See also
athtune is a scripting based music composition tool for win32 (.NET 2.0 framework required), similar to (if not downright inspired by) MML. It's similar to PandaTracker, but with a different concept and more open to the type of sounds you can create. Its creator athaudia has stopped development on it.

How to make sounds: ##synth



The script files contain basically two sections:
##synth and ##tune

##synth describes the sounds, the wave shapes you'll get, and how your instruments will sound. It's based on C# and as long as you know the math behind the sounds you want (triangle, sawtooth, FM synthesis, noise, among others), you can produce any complex noise. You can have multiple ##synth sections in your script as well, they are numbered by zero index starting from the ##synth at the top and going down. This way, you can have multiple instruments and even have them going on at the same time. It can get a bit complicated, so make sure you reference the example scripts, as documentation for ##synth is not very extensive.

How to make sounds: ##tune



##tune describes the way in which instruments made in the ##synth section will be used; it is the main area you will be writing music in. Unlike ##synth, you cannot have multiple ##tune sections. Here you will initialize channels and their commands. There are 26 polyphonic channels available (A-Z), and 5 built-in commands:

@I# - set instrument to synth number to #.
(again, starting at zero index, if you have multiple ##synth sections set up. ex.: @I0)

@V# - set channel volume to #.

@O# - set octave to #.

@B# - set bpm to #.

@A[#...] - note arp.
(this command was experimental and might not work the way you expect. ex. @A[0 3 7] is a minor chord, you just put in intervals.)

the average channel initialization might look something like this:
##tune
A @I0 @V0.3 @O3
B @I0 @V0.2 @O3
C @I1 @V0.15 @O2

it should be noted that you are able to make custom commands and parameters in the ##synth sections as well, uses of this can be seen extensively in example2 of the download.


After you set up your channels, you will be able to write note data for each channel. This part is very similar to mml, so if you are familiar with it, this should be a relative breeze.

a-g (abcdefg) are your notes (must be lowercase). here are some more things you can do within ##tune mode:

sharps (#, ex.: a#, b#, etc.)

flats (b, ex.: ab, bb, etc.)

note lengths (note with 4 = quarter, etc. this will be the default for following notes, so you don't need to keep repeating it. adding a dot (.) will make it a dotted note)

and triplet indicators (t, ex.: at, bt, etc.) after the note as well.

Inserting < and > respectively lowers and increases the octave. also available is a way to write chords, just place all notes within square brackets (ex.: [c e g > b]). you can place note length after this if you want to.

Commands may be changed wherever.

Example note writing:
A c4 e g2 @I1>b4 <g e2
B @O2 c1 <b


This should be all the basics you need for ##tune. again, reference the example files and use the manual if you need assistance or clarification about something.

Playback tools



There's no player for this "format", but there's simply no need. The included program "athtune.exe" takes your athtune files and converts them into a .wav, allowing composers to listen to and distribute their music.

Download here


See also



- PandaTracker
- panda (format)

 
C A T E G O R I E S
 
 
Trackers
0CC-FamiTracker · 1tracker · 8-Bit Music Maker · adlib · Adlib Tracker II · AHX Tracker · AMusic v1.12 · Arps · athtune · 【日本語】パンダトラッカー · 【日本語】deflemask (フォーマット) · baby-k · BambooTracker · Beepola · BeRoTracker · BoyScout · Buzz · Carillon editor · CheeseCutter · ChibiTracker · Composer 667 · Composer 669 · DefleMask Tracker · DMC · Dn-FamiTracker · Domino · FamiTracker · FastTracker II · Fatass Tracker · Faunatone · Faust Music Creator · Furious Advance Tracker · Furnace Tracker · Game Boy Camera · GoatTracker · GrooveStep · HivelyTracker · I am new to ST YM trackers · I am new to Vortex Tracker · Impulse Tracker · IT Module Optimisation · j0CC-FamiTracker · klystrack · Knaecketraecker · KORG DS-10 · lgpt · List of Effects Commands · List of Trackers · LittleGPTracker · LoopCart · LSDJ · M4G Tracker · maxYMiser · MilkyTracker · MOD2PSG2 · MODPlug Tracker · Music ProTracker · MusicMon · NerdTracker II · NesTracker · Nite · NitroTracker · NTRQ · Octode · PandaTracker · Paragon5 · Phaser1 · Picoloop · PixiTracker · Protracker · ProTrekkr · PSPSeq · pxtone · Raster Music Tracker · Reality Adlib Tracker · Renoise · Schism Tracker · Scream Tracker 3 · Simple Music Tracker · SnevenTracker · SnoozeTracker · Special FX · Star Bars · Stocker · SunVox · TEDzakker · TFM Music Maker · TIATracker · Tracker · Trilo Tracker · TTrak · Unis 669 · Utilising Adlib Tracker II · Vgm Music Maker · Vic Tracker · Vortex Tracker II
 
 
 
Win32