-
Notifications
You must be signed in to change notification settings - Fork 1
/
lexer.py
executable file
·242 lines (189 loc) · 4.75 KB
/
lexer.py
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#!/usr/bin/env python3
"""
Analizador Lexicografico del Lenguaje Willy
Primera fase del proyecto
Traductores e Interpretadores (CI-3725)
Maria Fernanda Magallanes (13-10787)
Jesus Marcano (12-10359)
E-M 2020
Aqui estan almacenados todos los Tokens que reconocemos en el programa.
dividodos en diferentes secciones:
Lista de Tokens, palabras reservadas, tokens del programa, tokens ignorados, reglase de tokens y simbolos
"""
from ply import lex
from sys import argv
import os,sys
# AQUI SOLO SE HARA EL AREA DE INPUT PARA EL LEXER, LO QUE TENGA QUE VER CON EL READ ARCHIVO O UN MENU PARA EL USUARIO #
# Reserved Words
tokens = [
'TkBeginWorld',
'TkEndWorld',
'TkObjType',
'TkTurnL',
'TkTurnR',
'TkFrontCl',
'TkLeftCl',
'TkRightCl',
'TkLookingN',
'TkLookingE',
'TkLookingS',
'TkLookingW',
'TkFinalG',
'TkBeginTask',
'TkEndTask',
# Simbolos utilizados para denotar separadores
'TkSemicolon',
'TkTab',
'TkId',
'TkNum',
'TkParenL',
'TkParenR',
]
reserved = {
# Wily's Words / functions
'World': 'TkWorld',
'Wall': 'TkWall',
'Place': 'TkPlace',
'Start': 'TkStart',
'Basket': 'TkBasket',
'Boolean': 'TkBoolean',
'Goal': 'TkGoal',
# Common Words - Oper - Used on previous words to build a instruction
'from': 'TkFrom',
'to': 'TkTo',
'of': 'TkOf',
'color': 'TkColor',
'at': 'TkAt',
'in': 'TkIn',
'is': 'TkIs',
'on': 'TkOn',
'heading': 'TkHeading',
'with': 'TkWith',
'initial': 'TkInitial',
'value': 'TkValue',
'capacity': 'TkCapacity',
'basket':'TkBasketLower',
'objects': 'TkObjectsLower',
# Colors
'red': 'TkRed',
'blue': 'TkBlue',
'magenta': 'TkMagenta',
'cyan': 'TkCyan',
'green': 'TkGreen',
'yellow': 'TkYellow',
# Directions
'north': 'TkNorth',
'east': 'TkEast',
'south': 'TkSouth',
'west': 'TkWest',
# Conditionals
'if': 'TkIf',
'else': 'TkElse',
'then': 'TkThen',
# Loops
'repeat': 'TkRepeat',
'while': 'TkWhile',
'times': 'TkTimes',
# Aux
'define': 'TkDefine',
'as': 'TkAs',
'do' : 'TkDo',
# Willy's Actions
'willy': 'TkWilly',
'move': 'TkMove',
'pick': 'TkPick',
'drop': 'TkDrop',
'set': 'TkSet',
'clear': 'TkClear',
'flip': 'TkFlip',
'terminate': 'TkTerminate',
'found': 'TkFound',
'carrying': 'TkCarrying',
# Boolean Values
'true': 'TkTrue',
'false': 'TkFalse',
'or': 'TkOr',
'and': 'TkAnd',
'not': 'TkNot',
#Other
'begin': 'TkBegin',
'end': 'TkEnd',
}
# Token's List
tokens += list(reserved.values())
# Especificaciones de los tokens
t_TkSemicolon = r';'
t_TkParenL = r'\('
t_TkParenR = r'\)'
# Ignored Chars
t_ignore_TkCommentsBlock = r'{{(.|\n)[^{}]*}}'
t_ignore_TkComments = r'[\-]{2}.*'
t_ignore_TkSpace = r'\s'
t_ignore_TkTab = r' \t'
#ValidTokens = [] # Coleccion de tokens validos
#InvalidTokens = [] # Coleccion de tokens invalidos
# Prove of import Functions (This class is ony for tokens, don't declare functions here) - Main is Lexer
# Funciones Regulares
def t_TkBeginWorld(t):
r'begin\-world'
return t
def t_TkEndWorld(t):
r'end\-world'
return t
def t_TkObjType(t):
r'Object\-type'
return t
def t_TkTurnL(t):
r'turn\-left'
return t
def t_TkTurnR(t):
r'turn\-right'
return t
def t_TkFrontCl(t):
r'front\-clear'
return t
def t_TkLeftCl(t):
r'left\-clear'
return t
def t_TkRightCl(t):
r'right\-clear'
return t
def t_TkLookingN(t):
r'looking\-north'
return t
def t_TkLookingE(t):
r'looking\-east'
return t
def t_TkLookingS(t):
r'looking\-south'
return t
def t_TkLookingW(t):
r'looking\-west'
return t
def t_TkFinalG(t):
r'Final[\s]+goal'
return t
def t_TkBeginTask(t):
r'begin\-task'
return t
def t_TkEndTask(t):
r'end\-task'
return t
def t_newLine(line):
r'\n+'
line.lexer.lineno += len(line.value)
# Manejador de errores
def t_error(invalido):
""" Funcion por "default" cuando encuentra un token que no pertenece a la lista de tokens """
error = 'Caracter ilegal "' + str(invalido.value[0]) + '" en fila ' \
+ str(invalido.lineno) + ', columna ' + str(invalido.lexpos + 1)
InvalidTokens.append(error)
invalido.lexer.skip(1)
def t_TkId(identificar):
r'[a-zA-Z]+[0-9]*[a-zA-Z_0-9]*'
identificar.type = reserved.get(identificar.value, 'TkId')
return identificar
def t_TkNum(t):
r'\d+'
t.value = int(t.value)
return t