Musical scale

From Rosetta Code
Musical scale is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Output 8 notes of the C major natural diatonic music scale (These are the notes C,D,E,F,G,A,B,c or Do, Ra, Me, Fa, So, La, Te, do on the solfa) to the default musical sound device on the system. For the purpose of this task, middle C should be used as the starting note, and crotchet notes should be used.

For languages that cannot utilize a sound device, it is permissible to output to a musical score sheet or midi file or the task can be omitted.

Lilypond

The lilypond tool produces musical score sheets and does not output notes to the sound device. <lang lilypond>% Start at middle C \relative c' {

 c d e f
 g a b c

}</lang>

Perl 6

<lang perl6>for 0,2,4,5,7,9,11,12 {

   shell "play -n -c1 synth 0.2 sin %{$_ - 9}"

}</lang>

Tcl

Library: Snack

<lang tcl>package require sound

  1. Encapsulate the tone generation

set filter [snack::filter generator 1 20000 0.5 sine -1] set sound [snack::sound -rate 22050] proc play {frequency length} {

   global filter sound
   $filter configure $frequency
   $sound play -filter $filter
   # Need to run event loop; Snack uses it internally
   after $length {set donePlay 1}
   vwait donePlay
   $sound stop

}

  1. Major scale up, then down; extra delay at ends of scale

set tonicFrequency 261.63; # C4 foreach i {0 2 4 5 7 9 11 12 11 9 7 5 4 2 0} {

   play [expr {$tonicFrequency*2**($i/12.0)}] [expr {$i%12?250:500}]

}</lang>

ZX Spectrum Basic

<lang zxbasic>10 REM Musical scale 20 LET n=0: REM Start at middle C 30 LET d=0.2: REM Make each note 0.2 seconds in duration 40 FOR l=1 TO 8 50 BEEP d,n 60 READ i: REM Number of semitones to increment 70 LET n=n+i 80 NEXT l 90 STOP 9000 DATA 2,2,1,2,2,2,1,2:REM WWHWWWH</lang>