about summary refs log tree commit diff
path: root/website/sandbox/chord-drill-sergeant/src/Main.elm
blob: bfa03f629beaa22ce8b7495953faccca3510cb86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
module Main exposing (main)

import Browser
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Random
import Random.List
import Time exposing (..)

import Piano
import Theory

type Model = Model { whitelistedChords : List Theory.Chord
                   , selectedChord : Theory.Chord
                   , isPaused : Bool
                   , tempo : Int
                   }

type Msg = NextChord
         | NewChord Theory.Chord
         | Play
         | Pause
         | IncreaseTempo
         | DecreaseTempo

tempoStep : Int
tempoStep = 100

viewChord : Theory.Chord -> String
viewChord (Theory.Chord (note, chordType, chordPosition)) =
  viewNote note ++ " " ++
  (case chordType of
     Theory.Major -> "major"
     Theory.Major7 -> "major 7th"
     Theory.MajorDominant7 -> "major dominant 7th"
     Theory.Minor -> "minor"
     Theory.Minor7 -> "minor 7th"
     Theory.MinorDominant7 -> "minor dominant 7th"
     Theory.Augmented -> "augmented"
     Theory.Augmented7 -> "augmented 7th"
     Theory.Diminished -> "diminished"
     Theory.Diminished7 -> "diminished 7th") ++ " " ++
  (case chordPosition of
     Theory.First -> "root position"
     Theory.Second -> "2nd position"
     Theory.Third -> "3rd position"
     Theory.Fourth -> "4th position")

{-| Serialize a human-readable format of `note` -}
viewNote : Theory.Note -> String
viewNote note =
  case note of
    Theory.C -> "C"
    Theory.C_sharp -> "C♯/D♭"
    Theory.D -> "D"
    Theory.D_sharp -> "D♯/E♭"
    Theory.E -> "E"
    Theory.F -> "F"
    Theory.F_sharp -> "F♯/G♭"
    Theory.G -> "G"
    Theory.G_sharp -> "G♯/A♭"
    Theory.A -> "A"
    Theory.A_sharp -> "A♯/B♭"
    Theory.B -> "B"

cmajor : Theory.Chord
cmajor = Theory.Chord (Theory.C, Theory.Major, Theory.First)

{-| The initial state for the application. -}
init : Model
init =
  Model { whitelistedChords = Theory.allChords
        , selectedChord = cmajor
        , isPaused = True
        , tempo = 1000
        }

subscriptions : Model -> Sub Msg
subscriptions (Model {isPaused, tempo}) =
  if isPaused then
    Sub.none
  else
    Time.every (toFloat tempo) (\_ -> NextChord)

{-| Now that we have state, we need a function to change the state. -}
update : Msg -> Model -> (Model, Cmd Msg)
update msg (Model {whitelistedChords, selectedChord, isPaused, tempo}) =
  case msg of
    NewChord chord -> ( Model { whitelistedChords = whitelistedChords
                              , selectedChord = chord
                              , isPaused = isPaused
                              , tempo = tempo
                              }
                      , Cmd.none
                      )
    NextChord -> ( Model { whitelistedChords = whitelistedChords
                         , selectedChord = selectedChord
                         , isPaused = isPaused
                         , tempo = tempo
                         }
                 , Random.generate (\x ->
                                      case x of
                                        (Just chord, _) -> NewChord chord
                                        (Nothing, _)    -> NewChord cmajor)
                   (Random.List.choose whitelistedChords)
                 )
    Play -> ( Model { whitelistedChords = whitelistedChords
                    , selectedChord = selectedChord
                    , isPaused = False
                    , tempo = tempo
                    }
            , Cmd.none
            )
    Pause -> ( Model { whitelistedChords = whitelistedChords
                     , selectedChord = selectedChord
                     , isPaused = True
                     , tempo = tempo
                    }
             , Cmd.none
             )
    IncreaseTempo -> ( Model { whitelistedChords = whitelistedChords
                             , selectedChord = selectedChord
                             , isPaused = isPaused
                             , tempo = tempo - tempoStep
                             }
                     , Cmd.none
                     )
    DecreaseTempo -> ( Model { whitelistedChords = whitelistedChords
                             , selectedChord = selectedChord
                             , isPaused = isPaused
                             , tempo = tempo + tempoStep
                             }
                     , Cmd.none
                     )

playPause : Model -> Html Msg
playPause (Model {isPaused}) =
  if isPaused then
    button [ onClick Play ] [ text "Play" ]
  else
    button [ onClick Pause ] [ text "Pause" ]

view : Model -> Html Msg
view (Model {selectedChord, tempo} as model) =
  div [] [ p [] [ text (viewChord selectedChord) ]
         , p [] [ text (String.fromInt tempo) ]
         , button [ onClick NextChord ] [ text "Next Chord" ]
         , button [ onClick IncreaseTempo ] [ text "Faster" ]
         , button [ onClick DecreaseTempo ] [ text "Slower" ]
         , playPause model
         , Piano.render { highlight = Theory.notesForChord selectedChord }
         ]

{-| For now, I'm just dumping things onto the page to sketch ideas. -}
main =
  Browser.element { init = \() -> (init, Cmd.none)
                  , subscriptions = subscriptions
                  , update = update
                  , view = view
                  }