christopherh@1
|
1 %
|
christopherh@1
|
2 % PARSENOTE
|
christopherh@1
|
3 %
|
christopherh@1
|
4 % [natural, accidentals, success, errormessage] = parsenote(note, {verbose})
|
christopherh@1
|
5 %
|
christopherh@1
|
6 % Parse a note to a natural character value and a number of accidentals
|
christopherh@1
|
7 % if accidentals is positive it denotes number of sharps,
|
christopherh@1
|
8 % if it is negative it denotes number of flats.
|
christopherh@1
|
9 %
|
christopherh@1
|
10 % Success = 1 if symbols parsed correctly, 0 otherwise.
|
christopherh@1
|
11 %
|
christopherh@1
|
12 % If optional argument 'verbose' is 1, function prints any errormessage to
|
christopherh@1
|
13 % the screen.
|
christopherh@1
|
14 %
|
christopherh@1
|
15 % returns: natural (char)
|
christopherh@1
|
16 % accidentals (integer)
|
christopherh@1
|
17 % success (boolean)
|
christopherh@1
|
18 % errormessage (string)
|
christopherh@1
|
19 %
|
christopherh@1
|
20 % Author: Christopher Harte, March 2009
|
christopherh@1
|
21 %
|
christopherh@1
|
22 % Copyright: Centre for Digital Music, Queen Mary University of London 2005
|
christopherh@1
|
23 %
|
christopherh@1
|
24 % This file is part of the C4DM Chord Toolkit V2.0
|
christopherh@1
|
25 %
|
christopherh@1
|
26 % The C4DM Chord Toolkit is free software; you can redistribute it and/or
|
christopherh@1
|
27 % modify it under the terms of the GNU General Public License as published
|
christopherh@1
|
28 % by the Free Software Foundation; either version 2 of the License, or
|
christopherh@1
|
29 % (at your option) any later version.
|
christopherh@1
|
30 %
|
christopherh@1
|
31 % The C4DM Chord Toolkit is distributed in the hope that it will be useful,
|
christopherh@1
|
32 % but WITHOUT ANY WARRANTY; without even the implied warranty of
|
christopherh@1
|
33 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
christopherh@1
|
34 % GNU General Public License for more details.
|
christopherh@1
|
35 %
|
christopherh@1
|
36 % You should have received a copy of the GNU General Public License
|
christopherh@1
|
37 % along with the C4DM Toolkit; if not, write to the Free Software
|
christopherh@1
|
38 % Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
christopherh@1
|
39
|
christopherh@1
|
40 %
|
christopherh@1
|
41 function [natural,accidentals,success, errormessage] = parsenote(note, verbose)
|
christopherh@1
|
42
|
christopherh@1
|
43 if nargin < 2
|
christopherh@1
|
44 verbose = 0;
|
christopherh@1
|
45 end
|
christopherh@1
|
46
|
christopherh@1
|
47 errormessage = '';
|
christopherh@1
|
48
|
christopherh@1
|
49 ilength = length(note);
|
christopherh@1
|
50
|
christopherh@1
|
51 accidentals = 0;
|
christopherh@1
|
52 natural = [];
|
christopherh@1
|
53 success=1;
|
christopherh@1
|
54
|
christopherh@1
|
55 index = 1;
|
christopherh@1
|
56
|
christopherh@1
|
57 if (isempty(note)) % if we have been passed an empty string
|
christopherh@1
|
58 success=0;
|
christopherh@1
|
59
|
christopherh@1
|
60 else % parse the note string
|
christopherh@1
|
61
|
christopherh@1
|
62 switch(note(index))
|
christopherh@1
|
63
|
christopherh@1
|
64 case {'A','B','C','D','E','F','G'}
|
christopherh@1
|
65
|
christopherh@1
|
66 %first character should be a natural
|
christopherh@1
|
67 natural = note(index);
|
christopherh@1
|
68 index= index+1;
|
christopherh@1
|
69
|
christopherh@1
|
70 %remaining characters should be sharps or flats
|
christopherh@1
|
71 while index <= ilength
|
christopherh@1
|
72
|
christopherh@1
|
73 switch note(index)
|
christopherh@1
|
74
|
christopherh@1
|
75 case 'b' % FLAT
|
christopherh@1
|
76 accidentals = accidentals - 1; %decrement accidental count
|
christopherh@1
|
77 index = index + 1;
|
christopherh@1
|
78
|
christopherh@1
|
79 case '#' % SHARP
|
christopherh@1
|
80 accidentals = accidentals + 1; %increment accidental count
|
christopherh@1
|
81 index = index + 1;
|
christopherh@1
|
82
|
christopherh@1
|
83 otherwise
|
christopherh@1
|
84 % if neither of the above then the note is incorrect
|
christopherh@1
|
85 success=0;
|
christopherh@1
|
86 index = ilength+1;
|
christopherh@1
|
87 end
|
christopherh@1
|
88 end
|
christopherh@1
|
89
|
christopherh@1
|
90 otherwise
|
christopherh@1
|
91 success=0;
|
christopherh@1
|
92 end
|
christopherh@1
|
93 end
|
christopherh@1
|
94
|
christopherh@1
|
95 if(success==0) % correct note therefore return success = 1
|
christopherh@1
|
96 % if not an integer then the note string is incorrect
|
christopherh@1
|
97 errormessage = sprintf(['Error in parsenote: Unrecognised note "' note '"\n']);
|
christopherh@1
|
98
|
christopherh@1
|
99 if verbose ==1
|
christopherh@1
|
100 fprintf(1,errormessage);
|
christopherh@1
|
101 end
|
christopherh@1
|
102 end
|