~s-cecilio/lenmus/v5.3

« back to all changes in this revision

Viewing changes to src/app/KbdCmdParser.cpp

  • Committer: cecilios
  • Date: 2012-07-05 18:23:21 UTC
  • Revision ID: svn-v4:2587a929-2f0e-0410-ae78-fe6f687d5efe:branches/TRY-5.0:706
fix cmakelist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//--------------------------------------------------------------------------------------
 
2
//    LenMus Phonascus: The teacher of music
 
3
//    Copyright (c) 2002-2010 LenMus project
 
4
//
 
5
//    This program is free software; you can redistribute it and/or modify it under the
 
6
//    terms of the GNU General Public License as published by the Free Software Foundation,
 
7
//    either version 3 of the License, or (at your option) any later version.
 
8
//
 
9
//    This program is distributed in the hope that it will be useful, but WITHOUT ANY
 
10
//    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
11
//    PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 
12
//
 
13
//    You should have received a copy of the GNU General Public License along with this
 
14
//    program. If not, see <http://www.gnu.org/licenses/>.
 
15
//
 
16
//    For any comment, suggestion or feature request, please contact the manager of
 
17
//    the project at cecilios@users.sourceforge.net
 
18
//
 
19
//-------------------------------------------------------------------------------------
 
20
 
 
21
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
22
#pragma implementation "KbdCmdParser.h"
 
23
#endif
 
24
 
 
25
// for (compilers that support precompilation, includes <wx/wx.h>.
 
26
#include <wx/wxprec.h>
 
27
 
 
28
#ifdef __BORLANDC__
 
29
#pragma hdrstop
 
30
#endif
 
31
 
 
32
#ifndef WX_PRECOMP
 
33
#include <wx/wx.h>
 
34
#endif
 
35
 
 
36
#include "KbdCmdParser.h"
 
37
 
 
38
 
 
39
 
 
40
const wxChar nEOB = _T('\x00');        //End of buffer
 
41
 
 
42
 
 
43
//-------------------------------------------------------------------------------------------
 
44
// Implementation of class lmKbdCmdParser
 
45
//-------------------------------------------------------------------------------------------
 
46
 
 
47
lmKbdCmdParser::lmKbdCmdParser()
 
48
{
 
49
}
 
50
 
 
51
lmKbdCmdParser::~lmKbdCmdParser()
 
52
{
 
53
}
 
54
 
 
55
bool lmKbdCmdParser::ParserCommand(wxString sCmd)
 
56
{
 
57
    //Return true if OK (no error)
 
58
 
 
59
    //default values for answers
 
60
    m_nAcc = lm_eNoAccidentals;
 
61
    m_nDots = 0;
 
62
    m_fTiedPrev = false;
 
63
 
 
64
    m_sBuff = sCmd;
 
65
    m_iFirst = 0;
 
66
    m_iMax = m_sBuff.Length();
 
67
    return DoParse();
 
68
}
 
69
 
 
70
wxChar lmKbdCmdParser::GetNextChar()
 
71
{
 
72
    // Returns next char.
 
73
    // when entering, m_iFirst points to the char to read
 
74
 
 
75
    if (m_iFirst >= m_iMax)
 
76
        return nEOB;
 
77
    else
 
78
        return m_sBuff.GetChar(m_iFirst++);
 
79
}
 
80
 
 
81
bool lmKbdCmdParser::DoParse()
 
82
{
 
83
    //Return true if OK (no error)
 
84
 
 
85
    //automata states
 
86
    enum {
 
87
        FT_Start,
 
88
        FT_Repeat,
 
89
        FT_ACC01,
 
90
        FT_ACC02,
 
91
        FT_ACC03,
 
92
        FT_DOT01,
 
93
        FT_Error
 
94
    };
 
95
 
 
96
    int nState = FT_Start;
 
97
    wxChar curChar = _T('-');
 
98
    while (true)
 
99
    {
 
100
        switch (nState) {
 
101
            case FT_Start:
 
102
                curChar = GetNextChar();
 
103
            case FT_Repeat:
 
104
                switch(curChar)
 
105
                {
 
106
                    case _T('+'):
 
107
                        nState = FT_ACC01;
 
108
                        break;
 
109
                    case _T('-'):
 
110
                        nState = FT_ACC02;
 
111
                        break;
 
112
                    case _T('='):
 
113
                        nState = FT_ACC03;
 
114
                        break;
 
115
                    case _T('x'):
 
116
                        nState = FT_Start;
 
117
                        m_nAcc = lm_eDoubleSharp;
 
118
                        break;
 
119
                    case _T('.'):
 
120
                        nState = FT_DOT01;
 
121
                        m_nDots = 1;
 
122
                        break;
 
123
                    case _T('_'):
 
124
                        nState = FT_Start;
 
125
                        m_fTiedPrev = true;
 
126
                        break;
 
127
                    case nEOB:
 
128
                        return true;    //End of buffer. Parsed without errors
 
129
                    default:
 
130
                        nState = FT_Error;
 
131
                }
 
132
                break;
 
133
 
 
134
            case FT_ACC01:
 
135
                curChar = GetNextChar();
 
136
                if (curChar == _T('+')) {
 
137
                    m_nAcc = lm_eSharpSharp;
 
138
                    nState = FT_Start;
 
139
                } else {
 
140
                    m_nAcc = lm_eSharp;
 
141
                    nState = FT_Repeat;
 
142
                }
 
143
                break;
 
144
 
 
145
            case FT_ACC02:
 
146
                curChar = GetNextChar();
 
147
                if (curChar == _T('-')) {
 
148
                    m_nAcc = lm_eFlatFlat;
 
149
                    nState = FT_Start;
 
150
                } else {
 
151
                    m_nAcc = lm_eFlat;
 
152
                    nState = FT_Repeat;
 
153
                }
 
154
                break;
 
155
 
 
156
            case FT_ACC03:
 
157
                curChar = GetNextChar();
 
158
                if (curChar == _T('+')) {
 
159
                    m_nAcc = lm_eNaturalSharp;
 
160
                    nState = FT_Start;
 
161
                } else if (curChar == _T('-')) {
 
162
                    m_nAcc = lm_eNaturalFlat;
 
163
                    nState = FT_Start;
 
164
                } else {
 
165
                    m_nAcc = lm_eNatural;
 
166
                    nState = FT_Repeat;
 
167
                }
 
168
                break;
 
169
 
 
170
            case FT_DOT01:
 
171
                curChar = GetNextChar();
 
172
                if (curChar == _T('.')) {
 
173
                    ++m_nDots;
 
174
                } else {
 
175
                    nState = FT_Repeat;
 
176
                }
 
177
                break;
 
178
 
 
179
            case FT_Error:
 
180
                return false;   //parse error
 
181
 
 
182
            default:
 
183
                wxASSERT(false);    //not defined state
 
184
                return false;   //parse error
 
185
 
 
186
        }    // switch for states
 
187
    } // while loop
 
188
    return true;    //parsed without errors
 
189
}
 
190