This repository has been archived by the owner on Apr 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxpressnet.py
405 lines (326 loc) · 11.9 KB
/
xpressnet.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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
# -*- coding: utf-8 -*-
import socket
import threading
from datetime import datetime
from time import sleep
import binascii
class Client(object):
"""Klasa do obsługi połączenia z sterownikiem
*Pozwala na wysyłanie i odbieranie komunikatów z sterownika.
*Zapewnia poprawną inicjalizacje połączenia z sterownikiem.
*Zapewnia prawidłowe kodowanie wysyłanych komunikatów.
*Zapewnia poprawne odkodowanie otrzymanych komunikatów
"""
def __init__(self):
"""Domyślne ustawienia klasy"""
self.connection = None
self.connected = False
self.address = ''
self.port = ''
self.lock = threading.Lock()
# TODO Debug mode dla print
pass
def keep_alive(self, once=False):
"""Zapewnienia poprawne połączenie"""
while True:
self.lock.acquire()
self.connection.setblocking(False)
try:
self.receive()
except:
pass
self.connection.setblocking(True)
self.lock.release()
if once:
break
sleep(0.2)
@staticmethod
def calculate_xor(message):
"""Obliczenie X-OR dla komunikatu
Args:
message (string): Komunikat dla którego będzie obliczony X-OR
Returns:
xor (string): Zwraca obliczony X-OR komunikatu
"""
data = []
xor = ""
while message:
data.append(int(message[:2], 16))
message = message[2:]
for i in range(1, len(data)):
if i == 1:
xor = data[i - 1] ^ data[i]
else:
xor ^= data[i]
if len(data) == 1:
xor = data[0]
if xor < 16:
xor = hex(xor)[2:]
xor = '0' + str(xor)
else:
xor = hex(xor)[2:]
return xor
def connect(self, address, port):
"""Nawiązanie połączenia z sterownikiem.
Args:
address (string): Adres IP sterownika
port (int): Numer portu sterownika
"""
self.address = address
self.port = port
if not self.connected:
try:
print(str(datetime.now().strftime('%H:%M:%S')) + ": Próba połączenia z sterownikiem")
self.connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.connection.connect((self.address, self.port))
self.connected = True
threading._start_new_thread(self.keep_alive, (False,))
print(str(datetime.now().strftime('%H:%M:%S')) + ": Połączono z sterownikiem")
except socket.error as message:
print(str(datetime.now().strftime('%H:%M:%S')) + ": Nie udało sie połączyć z sterownikiem")
print(message)
self.connected = False
def disconnect(self):
"""Zamknięcie połączenia z sterownikiem"""
if self.connected:
self.connection.close()
self.connected = False
def send(self, message):
"""Wysłanie rozkazu do sterownika
Args:
message (string): Rozkaz wysyłany do sterownika - format szesnastkowy
Returns:
response (string): Zwraca odpowiedź sterownika na dany rozkaz
"""
self.keep_alive(True)
if self.connected:
xor = self.calculate_xor(message)
message += xor
message = 'fffe' + message
msg = binascii.unhexlify(message)
self.lock.acquire()
self.connection.send(msg)
self.lock.release()
print(str(datetime.now().strftime('%H:%M:%S')) + ": Wysłano wiadomość: " + str(message))
response = self.receive()
return response
def receive(self):
"""Metoda zwracająca odpowiedź sterownika
Returns:
message (string): Zwraca otrzymaną odpowiedź sterownika
"""
message = self.connection.recv(64)
message = binascii.hexlify(message)
message = message[4:] # wycinanie nagłówka fffe
# TODO Rozpoznawanie otrzymanych wiadomości na podstawie wartości hex
return message
@staticmethod
def get_version_of_lan_interface():
# TODO Metoda zwracająca wersje LAN Interface (strona 15)
"""Zatrzymanie wszystkich pociągów
Returns:
command (string): Zwraca komendę
"""
command = '80'
return command
@staticmethod
def stop_all_locomotives():
"""Zatrzymanie wszystkich pociągów
Returns:
command (string): Zwraca komendę
"""
command = '80'
return command
@staticmethod
def off_energy():
"""Wyłączenie zasilania
Returns:
command (string): Zwraca komendę
"""
command = '2180'
return command
@staticmethod
def get_soft_version():
"""Żądanie wersji oprogramowania sterownika
Returns:
command (string): Zwraca komendę
"""
command = '2121'
return command
@staticmethod
def get_status():
"""Żądanie stanu sterownika
Returns:
command (string): Zwraca komendę
"""
command = '2124'
return command
@staticmethod
def get_address_of_locomotive_rm(register):
"""Żądanie wejścia sterownika w tryb serwisowy (Service Mode) i odczytanie dekodera który znajduje się na
wydzielonym torze programowym używając Register Mode. Sterownik dokona próby odczytu rejestru, który jest
oznaczony jako wartość od 1 do 8. Wynik musi być oddzielnie zażądany.
XpressNet: Register Mode read request
Args:
register (int): Numer rejestru od 1 do 8
Returns:
command (string): Zwraca komendę
"""
if 1 <= register <= 8:
command = '22110' + str(hex(register)[2])
return command
else:
raise ValueError("Rejestr musi w zakresie od 1 do 8!")
@staticmethod
def get_address_of_locomotive_cv(cv_value):
"""Żądanie wejścia sterownika w tryb serwisowy (Service Mode) i odczytanie dekodera który znajduje się na
wydzielonym torze programowym używając Direct CV Mode. Sterownik dokona próby odczytu CV, który jest
oznaczony jako wartość od 1 do 256. Wynik musi być oddzielnie zażądany.
XpressNet: Direct Mode CV read request
Args:
cv_value (int): Wartość CV od 1 do 256
Returns:
command (string): Zwraca komendę
"""
if 1 <= cv_value <= 256:
if cv_value is 256:
command = '221500'
else:
if cv_value <= 15:
command = '22150' + str(hex(cv_value)[2])
else:
command = '2215' + str(hex(cv_value)[2:])
return command
else:
raise ValueError("Wartość musi w zakresie od 1 do 256!")
@staticmethod
def get_service_mode_results():
"""Żądanie od sterownika wyniku akcji w trybie serwisowym.
XpressNet: Request for Service Mode results
Returns:
command (string): Zwraca komendę
"""
command = '2110'
return command
@staticmethod
def get_locomotive_status(address):
"""Żądanie od sterownika sprawdzenia stanu lokomotywy o podanym adresie.
XpressNet: Locomotive information requests
Args:
address (int): Adres od 1 do 9999
Returns:
command (string): Zwraca komendę
"""
if 1 <= address <= 9999:
if address <= 15:
command = 'E300' + '000' + str(hex(address)[2])
return command
elif 16 <= address <= 99:
command = 'E300' + '00' + str(hex(address)[2:])
return command
else:
command = 'E300' + str(hex(address + 49152)[2:])
return command
else:
raise ValueError("Adres musi w zakresie od 1 do 9999!")
@staticmethod
def get_next_address_in_stack(address):
"""Żądanie od sterownika sprawdzenia adresu następnej lokomotywy w bazie lokomotyw sterownika. Lokomotywy w
bazie sterownika nie są przechowywane według kolejności adresu lecz według czasu pierwszego użycia przez
urządzenia podłączone do sterownika.
XpressNet: Address inquiry locomotive at command station stack request
Args:
address (int): Adres od 0 do 9999 (natomiast możliwe adresy pociągów to 1 do 9999)
Returns:
command (string): Zwraca komendę
"""
if 0 <= address <= 9999:
if address <= 15:
command = 'E305' + '000' + str(hex(address)[2])
return command
elif 16 <= address <= 99:
command = 'E305' + '00' + str(hex(address)[2:])
return command
else:
command = 'E305' + str(hex(address + 49152)[2:])
return command
else:
raise ValueError("Adres musi w zakresie od 0 do 9999!")
class Train(object):
"""Klasa do obsługi sterownia poszczególnych pociągów
*Przy tworzeniu przypisuje adres pociągu
*Pozwala zadać prędkość i kierunek
"""
def __init__(self, number):
"""Domyślne ustawienia klasy
Args:
number (int): Numer pociągu
"""
self.order = None
self.locomotive = number
self.velocity = 0
self.course = True
pass
@staticmethod
def header(order):
"""Wybór nagłówka rozkazu określającego precyzje zadawanej prędkości
Args:
order (int): Numer rozkazu
Returns:
header (string): Zwraca nagłówek rozkazu
"""
if order == 1:
header = 'E410' # 14
return header
elif order == 2:
header = 'E411' # 27
return header
elif order == 3:
header = 'E412' # 28
return header
elif order == 4:
header = 'E413' # 127
return header
else:
return 0
@staticmethod
def address(locomotive):
"""Wybór lokomotywy
Args:
locomotive (int): Numer lokomotywy
Returns:
address (string): Zwraca adres lokomotywy
"""
address = '000' + str(hex(locomotive)[2])
return address
@staticmethod
def speed(velocity, course):
"""Określenie prędkości i kierunku
Args:
velocity (int): Prędkość lokomotywy
course (int): Kierunek lokomotywy
Returns:
msg (string): Rozkaz dla lokomotywy
"""
msg = hex(course * 128 + velocity)[2:]
if len(msg) == 1:
msg = '0' + str(msg)
return msg
# Tworzenie komendy do sterowania pociągiem
def move(self, velocity, course=0):
"""Określenie prędkości i kierunku
Args:
velocity (int): Prędkość lokomotywy
course (int): Kierunek lokomotywy
Returns:
msg (string): Rozkaz dla lokomotywy
"""
command = self.header(4) + self.address(self.locomotive) + self.speed(velocity, course)
return command
def stop_locomotive(self):
"""Zatrzymanie wybranej lokomotywy
Returns:
command (string): Zwraca rozkaz
"""
command = '92000' + self.address(self.locomotive)
return command