]> git.saurik.com Git - wxWidgets.git/blame - src/stc/scintilla/lexers/LexSorcus.cxx
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / src / stc / scintilla / lexers / LexSorcus.cxx
CommitLineData
9e96e16f
RD
1// Scintilla source code edit control
2/** @file LexSorcus.cxx
3** Lexer for SORCUS installation files
4** Written by Eugen Bitter and Christoph Baumann at SORCUS Computer, Heidelberg Germany
5** Based on the ASM Lexer by The Black Horus
6**/
7
8// The License.txt file describes the conditions under which this software may be distributed.
9
10#include <stdlib.h>
11#include <string.h>
9e96e16f
RD
12#include <stdio.h>
13#include <stdarg.h>
1dcf666d
RD
14#include <assert.h>
15#include <ctype.h>
9e96e16f 16
1dcf666d
RD
17#include "ILexer.h"
18#include "Scintilla.h"
19#include "SciLexer.h"
9e96e16f 20
1dcf666d
RD
21#include "WordList.h"
22#include "LexAccessor.h"
9e96e16f
RD
23#include "Accessor.h"
24#include "StyleContext.h"
1dcf666d
RD
25#include "CharacterSet.h"
26#include "LexerModule.h"
9e96e16f
RD
27
28#ifdef SCI_NAMESPACE
29using namespace Scintilla;
30#endif
31
32
33//each character a..z and A..Z + '_' can be part of a keyword
34//additionally numbers that follow 'M' can be contained in a keyword
1dcf666d 35static inline bool IsSWordStart(const int ch, const int prev_ch)
9e96e16f
RD
36{
37 if (isalpha(ch) || (ch == '_') || ((isdigit(ch)) && (prev_ch == 'M')))
38 return true;
39
40 return false;
41}
42
43
44//only digits that are not preceded by 'M' count as a number
1dcf666d 45static inline bool IsSorcusNumber(const int ch, const int prev_ch)
9e96e16f
RD
46{
47 if ((isdigit(ch)) && (prev_ch != 'M'))
48 return true;
49
50 return false;
51}
52
53
54//only = is a valid operator
1dcf666d 55static inline bool IsSorcusOperator(const int ch)
9e96e16f
RD
56{
57 if (ch == '=')
58 return true;
1dcf666d 59
9e96e16f
RD
60 return false;
61}
62
63
64static void ColouriseSorcusDoc(unsigned int startPos, int length, int initStyle, WordList *keywordlists[],
1dcf666d 65 Accessor &styler)
9e96e16f 66{
1dcf666d 67
9e96e16f
RD
68 WordList &Command = *keywordlists[0];
69 WordList &Parameter = *keywordlists[1];
70 WordList &Constant = *keywordlists[2];
1dcf666d 71
9e96e16f 72 // Do not leak onto next line
1dcf666d 73 if (initStyle == SCE_SORCUS_STRINGEOL)
9e96e16f 74 initStyle = SCE_SORCUS_DEFAULT;
1dcf666d 75
9e96e16f 76 StyleContext sc(startPos, length, initStyle, styler);
1dcf666d 77
9e96e16f
RD
78 for (; sc.More(); sc.Forward())
79 {
1dcf666d 80
9e96e16f
RD
81 // Prevent SCE_SORCUS_STRINGEOL from leaking back to previous line
82 if (sc.atLineStart && (sc.state == SCE_SORCUS_STRING))
83 {
1dcf666d
RD
84 sc.SetState(SCE_SORCUS_STRING);
85 }
86
9e96e16f
RD
87 // Determine if the current state should terminate.
88 if (sc.state == SCE_SORCUS_OPERATOR)
89 {
1dcf666d 90 if (!IsSorcusOperator(sc.ch))
9e96e16f
RD
91 {
92 sc.SetState(SCE_SORCUS_DEFAULT);
93 }
1dcf666d 94 }
9e96e16f
RD
95 else if(sc.state == SCE_SORCUS_NUMBER)
96 {
97 if(!IsSorcusNumber(sc.ch, sc.chPrev))
98 {
99 sc.SetState(SCE_SORCUS_DEFAULT);
100 }
101 }
102 else if (sc.state == SCE_SORCUS_IDENTIFIER)
103 {
104 if (!IsSWordStart(sc.ch, sc.chPrev))
105 {
106 char s[100];
1dcf666d 107
9e96e16f 108 sc.GetCurrent(s, sizeof(s));
1dcf666d 109
9e96e16f 110 if (Command.InList(s))
1dcf666d
RD
111 {
112 sc.ChangeState(SCE_SORCUS_COMMAND);
9e96e16f
RD
113 }
114 else if (Parameter.InList(s))
1dcf666d 115 {
9e96e16f
RD
116 sc.ChangeState(SCE_SORCUS_PARAMETER);
117 }
118 else if (Constant.InList(s))
1dcf666d 119 {
9e96e16f
RD
120 sc.ChangeState(SCE_SORCUS_CONSTANT);
121 }
1dcf666d 122
9e96e16f
RD
123 sc.SetState(SCE_SORCUS_DEFAULT);
124 }
1dcf666d 125 }
9e96e16f
RD
126 else if (sc.state == SCE_SORCUS_COMMENTLINE )
127 {
128 if (sc.atLineEnd)
129 {
130 sc.SetState(SCE_SORCUS_DEFAULT);
131 }
132 }
133 else if (sc.state == SCE_SORCUS_STRING)
134 {
135 if (sc.ch == '\"')
136 {
137 sc.ForwardSetState(SCE_SORCUS_DEFAULT);
138 }
1dcf666d 139 else if (sc.atLineEnd)
9e96e16f
RD
140 {
141 sc.ChangeState(SCE_SORCUS_STRINGEOL);
142 sc.ForwardSetState(SCE_SORCUS_DEFAULT);
143 }
144 }
1dcf666d 145
9e96e16f
RD
146 // Determine if a new state should be entered.
147 if (sc.state == SCE_SORCUS_DEFAULT)
148 {
149 if ((sc.ch == ';') || (sc.ch == '\''))
150 {
151 sc.SetState(SCE_SORCUS_COMMENTLINE);
1dcf666d 152 }
9e96e16f
RD
153 else if (IsSWordStart(sc.ch, sc.chPrev))
154 {
155 sc.SetState(SCE_SORCUS_IDENTIFIER);
1dcf666d 156 }
9e96e16f
RD
157 else if (sc.ch == '\"')
158 {
159 sc.SetState(SCE_SORCUS_STRING);
160 }
161 else if (IsSorcusOperator(sc.ch))
162 {
163 sc.SetState(SCE_SORCUS_OPERATOR);
164 }
165 else if (IsSorcusNumber(sc.ch, sc.chPrev))
166 {
167 sc.SetState(SCE_SORCUS_NUMBER);
168 }
169 }
1dcf666d 170
9e96e16f
RD
171 }
172 sc.Complete();
173}
174
175
176static const char* const SorcusWordListDesc[] = {"Command","Parameter", "Constant", 0};
1dcf666d 177
9e96e16f 178LexerModule lmSorc(SCLEX_SORCUS, ColouriseSorcusDoc, "sorcins", 0, SorcusWordListDesc);
1dcf666d
RD
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208