Class: Beats::SongParser
- Inherits:
-
Object
- Object
- Beats::SongParser
- Defined in:
- lib/beats/songparser.rb
Overview
This class is used to parse a raw YAML song definition into domain objects (i.e. Song, Pattern, Track, and Kit). These domain objects can then be used by AudioEngine to generate the actual audio data that is saved to disk.
The sole public method is parse(). It takes a raw YAML string and returns a Song and Kit object (or raises an error if the YAML string couldn’t be parsed correctly).
Defined Under Namespace
Classes: ParseError
Constant Summary collapse
- NO_SONG_HEADER_ERROR_MSG =
"Song must have a header. Here's an example: Song: Tempo: 120 Flow: - Verse: x2 - Chorus: x2"
Instance Method Summary collapse
-
#initialize ⇒ SongParser
constructor
A new instance of SongParser.
-
#parse(base_path, raw_yaml_string) ⇒ Object
Parses a raw YAML song definition and converts it into a Song and Kit object.
Constructor Details
#initialize ⇒ SongParser
Returns a new instance of SongParser.
20 21 |
# File 'lib/beats/songparser.rb', line 20 def initialize end |
Instance Method Details
#parse(base_path, raw_yaml_string) ⇒ Object
Parses a raw YAML song definition and converts it into a Song and Kit object.
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 |
# File 'lib/beats/songparser.rb', line 25 def parse(base_path, raw_yaml_string) raw_song_components = hashify_raw_yaml(raw_yaml_string) unless raw_song_components[:folder].nil? base_path = raw_song_components[:folder] end song = Song.new # 1.) Set tempo begin unless raw_song_components[:tempo].nil? song.tempo = raw_song_components[:tempo] end rescue Song::InvalidTempoError => detail raise ParseError, "#{detail}" end # 2.) Build the kit begin kit = build_kit(base_path, raw_song_components[:kit], raw_song_components[:patterns]) rescue KitBuilder::SoundFileNotFoundError => detail raise ParseError, "#{detail}" rescue KitBuilder::InvalidSoundFormatError => detail raise ParseError, "#{detail}" end # 3.) Load patterns add_patterns_to_song(song, raw_song_components[:patterns]) # 4.) Set flow if raw_song_components[:flow].nil? raise ParseError, "Song must have a Flow section in the header." else set_song_flow(song, raw_song_components[:flow]) end # 5.) Swing, if swing flag is set if raw_song_components[:swing] begin song = Transforms::SongSwinger.transform(song, raw_song_components[:swing]) rescue Transforms::SongSwinger::InvalidSwingRateError => detail raise ParseError, "#{detail}" end end return song, kit end |