slotUI/SlotCli.py

Sun, 28 Oct 2012 20:01:22 +0100

author
Malte Bayer <mbayer@neo-soft.org>
date
Sun, 28 Oct 2012 20:01:22 +0100
changeset 110
b0e4f4249351
parent 109
bb00e6994e5e
child 111
7e9a451870ed
permissions
-rwxr-xr-x

added xmlrpc server to live viewer, cli functions communicate with server

25
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
1 #!/usr/bin/env python
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
2 """
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
3 Freeslot project
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
4 Command line interface
646ee4dc3a6b started communication class and CLI
Malte Bayer <mbayer@neo-soft.org>
parents:
diff changeset
5 """
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
6
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
7 from freeslot import Blackbox, LOGLEVEL
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
8 from optparse import OptionParser
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
9 from operator import itemgetter
78
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
10 from subprocess import Popen, PIPE
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
11 import sys, os
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
12 from copy import copy
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
13 import curses
103
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
14 from time import sleep
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
15
110
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
16 import SimpleXMLRPCServer
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
17 import xmlrpclib
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
18 import threading
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
19
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
20
103
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
21 VERSION = "1.7"
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
22 MAXSLOTS = 6
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
23 TERM = {
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
24 "caption": "\033[1;37m\033[1;44m",
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
25 "text": "\033[1;30m",
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
26 }
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
27
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
28 # disable debug log output
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
29 LOGLEVEL = 10
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
30
81
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
31 SOUNDPREFIX = "quake-"
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
32 EVENTPREFIX = "event/"
78
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
33 SOUNDS = {
81
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
34 "countdown_start": os.path.abspath(SOUNDPREFIX + "sound/countdown.mp3"),
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
35 "race_start": os.path.abspath(SOUNDPREFIX + "sound/racestart.mp3"),
96
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
36 "race_prepare": os.path.abspath(SOUNDPREFIX + "sound/prepare.mp3"),
81
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
37 "lap_record": os.path.abspath(SOUNDPREFIX + "sound/laprecord.mp3"),
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
38 "fuel_warning1": os.path.abspath(SOUNDPREFIX + "sound/fuel1.mp3"),
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
39 "fuel_warning2": os.path.abspath(SOUNDPREFIX + "sound/fuel2.mp3"),
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
40 "fuel_full": os.path.abspath(SOUNDPREFIX + "sound/fuel_full.mp3"),
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
41 "pitlane_enter": os.path.abspath(SOUNDPREFIX + "sound/pitlane_enter.mp3"),
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
42 "pitlane_exit": os.path.abspath(SOUNDPREFIX + "sound/pitlane_exit.mp3"),
87
761863c71884 added empty lines between live data display entries
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
43 "data_error": os.path.abspath(SOUNDPREFIX + "sound/data_error.mp3"),
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
44 "panic": os.path.abspath(SOUNDPREFIX + "sound/panic.mp3"),
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
45 "panic_shortcut": os.path.abspath(SOUNDPREFIX + "sound/panic_shortcut.mp3"),
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
46 "resume": os.path.abspath(SOUNDPREFIX + "sound/resume.mp3"),
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
47 "win": os.path.abspath(SOUNDPREFIX + "sound/win.mp3"),
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
48
78
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
49 }
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
50
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
51 def trigger_sound(what):
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
52 if what in SOUNDS:
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
53 Popen(["/usr/bin/mpg123", "-q", SOUNDS[what]])
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
54 #os.spawnlp(os.P_NOWAIT, "/usr/bin/mpg123", "mpg123", SOUNDS[what])
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
55 #Popen(["/usr/bin/mpg123", SOUNDS[what]]).pid
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
56
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
57 def trigger_event(what):
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
58 trigger_sound(what)
109
bb00e6994e5e typo...
Malte Bayer <mbayer@neo-soft.org>
parents: 108
diff changeset
59 Popen(["/bin/sh", os.path.abspath(EVENTPREFIX + what)])
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
60
110
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
61 class SlotServer(threading.Thread):
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
62 def __init__(self, blackbox):
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
63 threading.Thread.__init__(self)
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
64 self.server = SimpleXMLRPCServer.SimpleXMLRPCServer(("localhost", 8000))
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
65 self.server.register_instance(blackbox)
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
66 #self.server.register_function(lambda astr: '_' + astr, '_string')
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
67
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
68 def run(self):
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
69 self.server.serve_forever()
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
70
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
71 class SlotClient():
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
72 def __init__(self, url):
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
73 self.box = xmlrpclib.Server(url)
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
74
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
75 class SlotCli():
106
11fabe1f7c40 added dev parameter
Malte Bayer <mbayer@neo-soft.org>
parents: 104
diff changeset
76 def __init__(self, test = None, dev=""):
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
77 self.box = Blackbox()
110
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
78 if (not test):
106
11fabe1f7c40 added dev parameter
Malte Bayer <mbayer@neo-soft.org>
parents: 104
diff changeset
79 self.box.connect(dev)
110
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
80 self.rpcserver = SlotServer(self.box)
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
81 self.rpcserver.start()
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
82 self.slot_dummy = {
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
83 "name": "Unnamed",
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
84 "laps": 0,
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
85 "laps_last": 0,
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
86 "last": 0.00,
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
87 "best": 0.00,
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
88 "fuel": 0,
81
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
89 "fuel_last": 0,
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
90 "position": 0,
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
91 "drive": 0,
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
92 "status": "Idle",
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
93 "clk": 0,
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
94 "car": 0,
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
95 "limit": 15,
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
96 }
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
97
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
98 self.slot = [
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
99 copy(self.slot_dummy), copy(self.slot_dummy),
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
100 copy(self.slot_dummy), copy(self.slot_dummy),
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
101 copy(self.slot_dummy), copy(self.slot_dummy),
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
102 ]
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
103 self.reset_slots()
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
104 self.sysclk = 0.00
96
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
105 self.sysclk_last = 0.00
78
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
106 self.bestlap = 9999999.00
87
761863c71884 added empty lines between live data display entries
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
107 self.test = test
94
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
108 self.laplimit = 999;
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
109 self.timelimit = 0;
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
110
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
111 def reset_slots(self):
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
112 idx = 0
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
113 for slt in self.slot:
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
114 slt["laps"] = 0
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
115 slt["laps_last"] = 0
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
116 slt["last"] = 0.00
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
117 slt["best"] = 0.00
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
118 slt["fuel"] = 100
81
4f2f94a043fd betatest corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 78
diff changeset
119 slt["fuel_last"] = 0
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
120 slt["position"] = idx
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
121 slt["car"] = idx # used for sort order calculation
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
122 slt["status"] = self.slot_dummy["status"]
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
123 slt["clk"] = 0
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
124 slt["limit"] = 15
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
125 idx += 1
82
c89221096db7 bugfixes
Malte Bayer <mbayer@neo-soft.org>
parents: 81
diff changeset
126 self.bestlap = 99999.00
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
127 self.raceactive = False
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
128
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
129 def update_positions(self):
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
130 order1 = sorted(self.slot, key=itemgetter(
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
131 "clk"))
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
132 order2 = sorted(self.slot, key=itemgetter(
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
133 "laps"), reverse=True)
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
134 idx = 1
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
135 for tst in order2:
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
136 self.slot[tst["car"]]["position"] = idx
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
137 idx += 1
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
138
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
139 def render_slots(self):
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
140 self.update_positions()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
141 self.scr.addstr(3,0,
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
142 #"Pos | #/Name | Laps | Best | Last | Fuel | Status ",
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
143 "Pos | #/Name ",
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
144 curses.color_pair(2))
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
145 self.scr.addstr(4,4,
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
146 " Laps | Best | Last | Fuel | Status ",
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
147 curses.color_pair(2))
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
148 for idx in range(MAXSLOTS):
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
149 """
87
761863c71884 added empty lines between live data display entries
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
150 self.scr.addstr((3 + (self.slot[idx]["position"] * 2)), 0,
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
151 "%3i | %i %15s | %4i | %7.2fs | %7.2fs | %3i%% | %10s" % (
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
152 self.slot[idx]["position"],
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
153 self.slot[idx]["car"] + 1, self.slot[idx]["name"],
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
154 self.slot[idx]["laps"],
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
155 self.slot[idx]["best"],
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
156 self.slot[idx]["last"],
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
157 self.slot[idx]["fuel"],
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
158 self.slot[idx]["status"],
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
159 ),
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
160 curses.color_pair(11 + idx) )
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
161 """
102
72f5eb420096 added drive speed display for virtual slots to live screen
Malte Bayer <mbayer@neo-soft.org>
parents: 101
diff changeset
162 if idx > 3:
72f5eb420096 added drive speed display for virtual slots to live screen
Malte Bayer <mbayer@neo-soft.org>
parents: 101
diff changeset
163 namesuffix = " (%i)" % self.slot[idx]["drive"]
72f5eb420096 added drive speed display for virtual slots to live screen
Malte Bayer <mbayer@neo-soft.org>
parents: 101
diff changeset
164 else:
72f5eb420096 added drive speed display for virtual slots to live screen
Malte Bayer <mbayer@neo-soft.org>
parents: 101
diff changeset
165 namesuffix = ""
72f5eb420096 added drive speed display for virtual slots to live screen
Malte Bayer <mbayer@neo-soft.org>
parents: 101
diff changeset
166
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
167 self.scr.addstr((3 + (self.slot[idx]["position"] * 2)), 0,
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
168 "%3i | %i %15s %48s" % (
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
169 self.slot[idx]["position"],
102
72f5eb420096 added drive speed display for virtual slots to live screen
Malte Bayer <mbayer@neo-soft.org>
parents: 101
diff changeset
170 self.slot[idx]["car"] + 1, (self.slot[idx]["name"] + namesuffix),
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
171 "",
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
172 ),
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
173 curses.color_pair(11 + idx) )
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
174 self.scr.addstr((4 + (self.slot[idx]["position"] * 2)), 4,
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
175 " %4i | %7.2fs | %7.2fs | %3i%% | %10s | %2i% 15s" % (
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
176 self.slot[idx]["laps"],
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
177 self.slot[idx]["best"],
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
178 self.slot[idx]["last"],
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
179 self.slot[idx]["fuel"],
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
180 self.slot[idx]["status"],
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
181 self.slot[idx]["limit"],
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
182 ""
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
183 ),
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
184 curses.color_pair(11 + idx) )
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
185
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
186 def cleartop(self):
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
187 self.scr.addstr(0,0, "%60s" % "Race Limits: %i Laps / %i Minutes" % (self.laplimit, self.timelimit))
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
188 self.scr.addstr(1,0, "%80s" % " ")
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
189
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
190 def readName(self, slot):
56
a20f59a3016c ui fix, added car5+6 detector to blackbox
Malte Bayer <mbayer@neo-soft.org>
parents: 55
diff changeset
191 self.scr.nodelay(0) # enable delay on readkey
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
192 curses.echo()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
193 self.scr.addstr(0,0, "Enter Name for Controller %i [%s]:" % (
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
194 slot + 1,
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
195 self.slot[slot]["name"]),
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
196 curses.color_pair(1))
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
197 self.scr.refresh()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
198 name = self.scr.getstr(1,0, 15)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
199 if name != "":
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
200 self.slot[slot]["name"] = name
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
201 self.cleartop()
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
202 self.scr.refresh()
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
203 curses.noecho()
56
a20f59a3016c ui fix, added car5+6 detector to blackbox
Malte Bayer <mbayer@neo-soft.org>
parents: 55
diff changeset
204 self.scr.nodelay(1) # disable delay on readkey
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
205
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
206 def readLimit(self, slot):
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
207 limit = self.readInt("SPEEDLIMIT for %s (%i)" % (
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
208 self.slot[slot]["name"],
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
209 slot + 1),
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
210 self.slot[slot]["limit"], 15)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
211 if limit:
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
212 self.slot[slot]["limit"] = limit
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
213 self.cleartop()
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
214 self.box.speedlimit(slot, limit)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
215
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
216
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
217 def readInt(self, msg, default, maximum = 999999):
94
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
218 self.scr.nodelay(0) # enable delay on readkey
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
219 curses.echo()
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
220 self.scr.addstr(0,0, "%s [%i]:" % (
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
221 msg,
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
222 default),
94
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
223 curses.color_pair(1))
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
224 self.scr.refresh()
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
225 inp = self.scr.getstr(1,0, 4)
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
226 if inp != "":
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
227 try:
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
228 inp = int(inp)
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
229 if inp > maximum: inp = maximum
94
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
230 except Exception:
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
231 inp = None
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
232 else:
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
233 inp = None
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
234 self.cleartop()
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
235 self.scr.refresh()
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
236 curses.noecho()
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
237 self.scr.nodelay(1) # disable delay on readkey
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
238 return inp
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
239
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
240
103
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
241 def monitor_init(self, live = 1):
74
173d0863a804 added live init to slotcli
Malte Bayer <mbayer@neo-soft.org>
parents: 61
diff changeset
242 """
173d0863a804 added live init to slotcli
Malte Bayer <mbayer@neo-soft.org>
parents: 61
diff changeset
243 Send initializing commands for live monitoring
173d0863a804 added live init to slotcli
Malte Bayer <mbayer@neo-soft.org>
parents: 61
diff changeset
244 """
86
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 85
diff changeset
245 self.box.query("F1\n") # set fuel logic enabled
103
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
246 self.box.query("*%i\n" % live) # set live fuel info
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
247
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
248 def monitor_learn(self, slot):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
249 # clear garbage in UART rx buffer
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
250 self.box.query("*0\n") # set live fuel info
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
251 self.box.query("*0\n") # set live fuel info
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
252 while self.box.readline() != "": pass
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
253
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
254 trk = False
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
255 spd = 0
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
256 trk_old = False
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
257 spd_old = 0
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
258 clock = -1
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
259
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
260 self.monitor_init(slot + 2)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
261 while 1:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
262 #key = self.scr.getch()
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
263 #if key == ord('c'): break
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
264
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
265 # is there something in the rx buffer?
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
266 rx = self.box.readline()
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
267 if (rx != ""):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
268 try:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
269 data = rx.split(":")
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
270 if rx[:3] == "LN:":
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
271 if clock >= 0:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
272 clock += 1
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
273 spd = int(data[1], 16)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
274 trk = (data[2] != 'X')
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
275 if (spd != spd_old) or (trk != trk_old):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
276 if clock < 0:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
277 clock = 0
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
278 print "%i,%i,%s" % (clock, spd, trk)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
279 trk_old = trk
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
280 spd_old = spd * 1
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
281 if rx[:2] == "L:":
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
282 # update lap time info
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
283 l = int(data[2], 16)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
284 s = int(data[3]) - 1
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
285 t = int(data[4], 16) / 2000.00
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
286 if (slot == s):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
287 print "# lap %i complete: %3.2f seconds" % (l, t)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
288 clock = 0
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
289 print "%i,%i,%s" % (clock, spd, trk)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
290 except:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
291 print "RX ERROR: " % rx
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
292
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
293 def monitor_playback(self, slot, filename):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
294 # clear garbage in UART rx buffer
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
295 self.box.query("*0\n") # set live fuel info
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
296 self.box.query("*0\n") # set live fuel info
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
297 sleep(1)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
298 cli.box.speedminimum(slot, 0 )
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
299 while self.box.readline() != "": pass
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
300
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
301 clock = -5
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
302 trkfile = open(filename, "r").readlines()
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
303 print "Loading %s..." % filename
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
304
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
305 while 1:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
306 try:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
307 for l in trkfile:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
308 l = l.strip()
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
309 if (l != "") and (l[:1] != "#"):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
310 print "Line: %s" % repr(l)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
311 data = l.split(",")
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
312 speed = int(data[1])
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
313 while (clock < int(data[0]) and (int(data[0]) > 0)):
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
314 clock += 1
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
315 sleep(0.07)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
316 print "CLK %i/%i -> set: %i" % (clock, int(data[0]), speed)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
317 cli.box.speedminimum(slot, speed )
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
318 # now wait for lap sync :)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
319 while self.box.readline() != "": pass
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
320 rx = ""
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
321 while rx[:2] != "L:":
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
322 rx = self.box.readline()
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
323 data = rx.split(":")
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
324 l = int(data[2], 16)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
325 s = int(data[3]) - 1
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
326 t = int(data[4], 16) / 2000.00
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
327 print "# lap %i complete: %3.2f seconds" % (l, t)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
328 clock = -3
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
329 except Exception, e:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
330 print repr(e)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
331 sys.exit(1)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
332 except KeyboardInterrupt:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
333 print "resetting"
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
334 cli.box.speedminimum(slot, 0 )
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
335 cli.box.speedminimum(slot, 0 )
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
336 sys.exit(0)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
337
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
338
74
173d0863a804 added live init to slotcli
Malte Bayer <mbayer@neo-soft.org>
parents: 61
diff changeset
339
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
340 def monitor(self):
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
341 """
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
342 Live Monitor on the console
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
343 Keyboard loop to control it???
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
344 """
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
345 # clear garbage in UART rx buffer
86
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 85
diff changeset
346 while self.box.readline() != "": pass
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
347
74
173d0863a804 added live init to slotcli
Malte Bayer <mbayer@neo-soft.org>
parents: 61
diff changeset
348 self.monitor_init()
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
349 self.scr = curses.initscr()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
350 curses.start_color()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
351 curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_BLACK) # standard text
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
352 curses.init_pair(2, curses.COLOR_WHITE, curses.COLOR_BLUE) # label
93
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
353 curses.init_pair(11, curses.COLOR_BLACK, curses.COLOR_YELLOW) # player 1 slot
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
354 curses.init_pair(12, curses.COLOR_BLACK, curses.COLOR_GREEN) # player 2 slot
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
355 curses.init_pair(13, curses.COLOR_BLACK, curses.COLOR_RED) # player 3 slot
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
356 curses.init_pair(14, curses.COLOR_BLACK, curses.COLOR_MAGENTA) # player 4 slot
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
357 curses.init_pair(15, curses.COLOR_WHITE, curses.COLOR_BLACK) # player 5 slot
ee4f9b8a36e9 improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 90
diff changeset
358 curses.init_pair(16, curses.COLOR_WHITE, curses.COLOR_BLACK) # player 6 slot
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
359 curses.noecho() # disable key echo
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
360 curses.cbreak() # do not buffer keypresses
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
361 self.scr.keypad(1) # enable special keys
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
362 self.scr.nodelay(1) # disable delay on readkey
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
363
59
361bc4602cf7 added fuel management to blackbox, cars dont get stuck at the moment
Malte Bayer <mbayer@neo-soft.org>
parents: 56
diff changeset
364 self.cleartop()
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
365 self.render_slots()
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
366 self.scr.refresh()
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
367
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
368
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
369 while 1:
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
370 key = self.scr.getch()
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
371 if key == ord('c'): break
89
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
372 elif key == ord(' '): self.box.query("+") # panic / resume
90
7ed95dbadf1f added remote start button press
Malte Bayer <mbayer@neo-soft.org>
parents: 89
diff changeset
373 elif key == 10: self.box.query("#") # remote start button press
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
374 elif key == ord('1'): self.readName(0)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
375 elif key == ord('2'): self.readName(1)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
376 elif key == ord('3'): self.readName(2)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
377 elif key == ord('4'): self.readName(3)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
378 elif key == ord('5'): self.readName(4)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
379 elif key == ord('6'): self.readName(5)
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
380 elif key == ord('q'): self.readLimit(0)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
381 elif key == ord('w'): self.readLimit(1)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
382 elif key == ord('e'): self.readLimit(2)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
383 elif key == ord('r'): self.readLimit(3)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
384 elif key == ord('t'): self.readLimit(4)
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
385 elif key == ord('z'): self.readLimit(5)
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
386 elif key == ord('a'):
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
387 if self.slot[4]["drive"] > 0: self.slot[4]["drive"] -= 1
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
388 cli.box.speedminimum(4, self.slot[4]["drive"])
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
389 elif key == ord('s'):
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
390 if self.slot[4]["drive"] < 16: self.slot[4]["drive"] += 1
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
391 cli.box.speedminimum(4, self.slot[4]["drive"])
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
392 elif key == ord('y'):
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
393 if self.slot[5]["drive"] > 0: self.slot[5]["drive"] -= 1
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
394 cli.box.speedminimum(5, self.slot[5]["drive"])
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
395 elif key == ord('x'):
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
396 if self.slot[5]["drive"] < 16: self.slot[5]["drive"] += 1
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
397 cli.box.speedminimum(5, self.slot[4]["drive"])
94
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
398 elif key == ord('t'):
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
399 tmp = self.readInt("Set new Race TIME limit", self.timelimit)
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
400 if tmp: self.timelimit = tmp
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
401 elif key == ord('l'):
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
402 tmp = self.readInt("Set new Race LAP limit", self.laplimit)
c7ff8cde6b1e improved live display with colors
Malte Bayer <mbayer@neo-soft.org>
parents: 93
diff changeset
403 if tmp: self.laplimit = tmp
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
404
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
405
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
406 # is there something in the rx buffer?
86
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 85
diff changeset
407 rx = self.box.readline()
87
761863c71884 added empty lines between live data display entries
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
408 if (rx != "") or self.test:
761863c71884 added empty lines between live data display entries
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
409 self.scr.addstr(17,0,
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
410 "Last RX: %19s" % rx, curses.color_pair(2))
99
434d60dc9b12 fix winning position display
paepke
parents: 97
diff changeset
411 self.scr.redrawwin()
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
412 self.scr.refresh()
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
413 # we have received something
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
414 try:
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
415 data = rx.split(":")
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
416 if rx[:2] == "L:":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
417 # update lap time info
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
418 l = int(data[2], 16)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
419 slot = int(data[3]) - 1
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
420 t = int(data[4], 16) / 2000.00
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
421 self.sysclk = int(data[5], 16) / 2000.00
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
422 self.slot[slot]["laps_last"] = self.slot[slot]["laps"]
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
423 self.slot[slot]["laps"] = l
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
424 self.slot[slot]["last"] = t
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
425 self.slot[slot]["clk"] = self.sysclk
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
426 if (self.slot[slot]["best"] > t) or (self.slot[slot]["best"] == 0):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
427 self.slot[slot]["best"] = t
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
428 if self.bestlap > t:
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
429 trigger_event("lap_record")
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
430 self.bestlap = t
78
d9126a55295c added sound triggers to live mode
Malte Bayer <mbayer@neo-soft.org>
parents: 77
diff changeset
431
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
432 self.slot[slot]["status"] = "IN-RACE"
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
433 if (self.slot[slot]["laps_last"] != l) and (l == self.laplimit):
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
434 # we have lap limit reached!
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
435 trigger_event("win")
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
436 self.raceactive = False
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
437 self.slot[slot]["status"] = "WINNER!"
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
438 self.box.query("+") # stop race
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
439
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
440 self.render_slots()
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
441
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
442 if rx[:2] == "F:":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
443 # update fuel level
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
444 slot = int(data[1])
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
445 f = int(data[2], 16)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
446 f = f / 100 # fuel in percent
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
447 self.sysclk = int(data[3], 16) / 2000.00
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
448 self.slot[slot]["fuel_last"] = self.slot[slot]["fuel"]
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
449 self.slot[slot]["fuel"] = f
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
450 if self.slot[slot]["fuel_last"] != f:
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
451 if (self.slot[slot]["fuel_last"] == 16) and (f == 15):
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
452 # 15 percent fuel, set speed limit for car to 8
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
453 # warning sound
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
454 trigger_event("fuel_warning1")
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
455 cli.box.speedlimit(slot, 8)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
456 if (self.slot[slot]["fuel_last"] == 6) and (f == 5):
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
457 # 5 percent, set speed limit for car to 6
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
458 # warning sound
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
459 trigger_event("fuel_warning2")
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
460 cli.box.speedlimit(slot, 6)
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
461 if (self.slot[slot]["fuel_last"] == 1) and (f == 0):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
462 # fuel empty
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
463 # set speedlimit to 4
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
464 cli.box.speedlimit(slot, 4)
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
465 if (self.slot[slot]["fuel_last"] < f) and (f >= 11) and (f < 20):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
466 cli.box.speedlimit(slot, 15)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
467 if (self.slot[slot]["fuel_last"] < f) and (f == 100):
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
468 trigger_event("fuel_full")
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
469 self.render_slots()
55
9293f3efcc06 added live display to CLI (lap counter, last and best time)
Malte Bayer <mbayer@neo-soft.org>
parents: 54
diff changeset
470
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
471 if rx[:1] == "~":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
472 # jumpstart occured
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
473 slot = int(rx[1:2])
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
474 t = int(data[1], 16) / 2000.00
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
475 self.slot[slot]["jumpstart"] = t
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
476 self.slot[slot]["status"] = "Jumpstart!"
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
477
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
478 if rx[:3] == "RW:":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
479 # ResponseWire packet, do nothing at the moment, just decode
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
480 slot = int(data[1])
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
481 devtype = int(data[2])
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
482 sender = int(data[3], 16)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
483 status = int(data[4], 16)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
484 self.sysclk = int(data[5], 16)
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
485 if (devtype == 4):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
486 # pitlane sent something
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
487 if (status == 5):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
488 self.slot[slot]["status"] = "PITLANE"
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
489 trigger_event("pitlane_enter")
104
95b2c23cb973 pitlane checkout bug resolved, prepare for customized pitlane speedlimit
Malte Bayer <mbayer@neo-soft.org>
parents: 103
diff changeset
490 if (status == 7):
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
491 self.slot[slot]["status"] = "IN-RACE"
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
492 trigger_event("pitlane_exit")
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
493
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
494 self.render_slots()
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
495
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
496 if rx == "!RACE PREPARE":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
497 # reset current race status
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
498 # and display PREPARE PHASE
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
499 self.reset_slots()
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
500 for slot in range(MAXSLOTS):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
501 self.slot[slot]["status"] = "Prepare"
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
502 trigger_event("race_prepare")
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
503
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
504 if rx == "!RACE START":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
505 for slot in range(MAXSLOTS):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
506 if self.slot[slot]["status"] == "~~~~~~~~~~":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
507 self.slot[slot]["status"] = "Idle"
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
508 trigger_event("race_start")
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
509 self.raceactive = True
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
510
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
511 if rx == "!COUNTDOWN":
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
512 # countdown initiated
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
513 for slot in range(MAXSLOTS):
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
514 self.slot[slot]["status"] = "~~~~~~~~~~"
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
515 trigger_event("countdown_start")
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
516
89
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
517 if rx == "!PANIC":
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
518 # panic mode
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
519 trigger_event("panic")
89
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
520
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
521 if rx == "!SHORTCUT":
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
522 # panic mode
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
523 trigger_event("panic_shortcut")
89
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
524
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
525 if rx == "!RESUME":
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
526 # panic mode
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
527 trigger_event("resume")
89
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
528
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
529
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
530 if ((self.timelimit > 0) and (self.raceactive) and
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
531 (self.sysclk_last != self.sysclk) and
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
532 ((self.sysclk / 60) >= self.timelimit)):
96
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
533 self.sysclk_last = self.sysclk
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
534 self.raceactive = False
96
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
535 # we have time limit reached!
97
9a01c57147db final corrections
Malte Bayer <mbayer@neo-soft.org>
parents: 96
diff changeset
536 self.box.query("+") # stop race
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
537 trigger_event("win")
96
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
538 # get the one with position 1
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
539 for slot in self.slots:
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
540 if slot["position"] == 1:
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
541 slot["status"] = "WINNER!"
99
434d60dc9b12 fix winning position display
paepke
parents: 97
diff changeset
542 self.render_slots()
96
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
543 self.sysclk_last = self.sysclk
bcba10c35f09 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 95
diff changeset
544
95
85c4a4da2ffd added winning ability ;)
Malte Bayer <mbayer@neo-soft.org>
parents: 94
diff changeset
545
89
4b5b4c7ba03d added panic mode, shortcircuit can be resumed now
Malte Bayer <mbayer@neo-soft.org>
parents: 87
diff changeset
546
87
761863c71884 added empty lines between live data display entries
Malte Bayer <mbayer@neo-soft.org>
parents: 86
diff changeset
547 self.scr.addstr(17,31,
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
548 "Race Timer: %7.3f min" % (self.sysclk / 60),
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
549 curses.color_pair(2))
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
550
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
551 self.scr.refresh()
77
cede78304992 finished live CLI, BB firmware improvements and fixes
Malte Bayer <mbayer@neo-soft.org>
parents: 74
diff changeset
552
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
553 except Exception:
107
efdf471642f5 added custom event scripts
Malte Bayer <mbayer@neo-soft.org>
parents: 106
diff changeset
554 trigger_event("data_error")
85
a637228562a7 added exception drop in uart rx tree
Malte Bayer <mbayer@neo-soft.org>
parents: 82
diff changeset
555 pass
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
556
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
557 # terminate
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
558 curses.nocbreak()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
559 self.scr.keypad(0)
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
560 curses.echo()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
561 curses.endwin()
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
562 return None
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
563
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
564 def cyclemode(self):
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
565 pass
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
566
27
3e617fcf999a added exception, started SlotCli class
Malte Bayer <mbayer@neo-soft.org>
parents: 25
diff changeset
567 if __name__ == "__main__":
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
568 parser = OptionParser(version="%prog " + VERSION)
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
569 parser.add_option("--live", dest="live", action="store_true", default=False,
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
570 help="Run Live monitor on console", metavar="[0-5]")
103
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
571 parser.add_option("--learn", dest="learn", action="store_true", default=False,
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
572 help="Run Learning mode for [slot]", metavar="[0-5]")
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
573 parser.add_option("--teach", dest="playback",
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
574 help="Playback teach file", metavar="[filename]")
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
575
86
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 85
diff changeset
576 parser.add_option("--slot", dest="carid",
101
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
577 help="Required for programming a car directly", metavar="[1-6]")
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
578 parser.add_option("--fuel", dest="fuel",
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
579 help="Set maximum CAR fuel level", metavar="[0-15]")
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
580 parser.add_option("--brake", dest="brake",
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
581 help="Set CAR brake strength", metavar="[0-15]")
100
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 99
diff changeset
582 parser.add_option("--accel", dest="accel",
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 99
diff changeset
583 help="Set CAR acceleration ", metavar="[6-15]")
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
584 parser.add_option("--blink", dest="blink",
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
585 help="Set car lights blinking state", metavar="[on|off]")
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
586 parser.add_option("--limit", dest="limit",
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
587 help="Controlled SPEED LIMIT (15 = no limit)", metavar="[0-15]")
50
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
588 parser.add_option("--drive", dest="drive",
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
589 help="Controlled SPEED MINIMUM (0 = disabled)", metavar="[0-15]")
86
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 85
diff changeset
590 parser.add_option("--test", dest="test", action="store_true", default=False,
79fb119cf3c3 added test option without communication
Malte Bayer <mbayer@neo-soft.org>
parents: 85
diff changeset
591 help="", metavar="")
106
11fabe1f7c40 added dev parameter
Malte Bayer <mbayer@neo-soft.org>
parents: 104
diff changeset
592 parser.add_option("--dev", dest="dev", default="/dev/ttyUSB0",
11fabe1f7c40 added dev parameter
Malte Bayer <mbayer@neo-soft.org>
parents: 104
diff changeset
593 help="Communication port", metavar="[/dev/ttyUSB0]")
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
594
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
595 (options, args) = parser.parse_args()
106
11fabe1f7c40 added dev parameter
Malte Bayer <mbayer@neo-soft.org>
parents: 104
diff changeset
596 #if not options.dev:
11fabe1f7c40 added dev parameter
Malte Bayer <mbayer@neo-soft.org>
parents: 104
diff changeset
597 # options.dev = "/dev/ttyUSB0"
110
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
598
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
599 if options.live or options.learn or options.playback:
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
600 cli = SlotCli(options.test, options.dev)
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
601 else:
b0e4f4249351 added xmlrpc server to live viewer, cli functions communicate with server
Malte Bayer <mbayer@neo-soft.org>
parents: 109
diff changeset
602 cli = SlotClient('http://localhost:8000')
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
603 # should a CLI function be started?
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
604
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
605 if options.live:
54
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
606 # start the live monitor
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
607 cli.monitor()
68eca8057d68 added livemode display to slotcli, without communication yet
Malte Bayer <mbayer@neo-soft.org>
parents: 50
diff changeset
608 sys.exit(0)
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
609
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
610 # check commandline if we have to program something
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
611 if not options.carid:
101
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
612 print "Option --slot is required for all car programming commands!\nUse --help to get a list of available commands"
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
613 sys.exit(1)
101
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
614 else:
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
615 options.carid = int(options.carid) - 1
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
616 if (options.carid < 0) or (options.carid > 6):
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
617 print "Error: Invalid slot selected"
92d204c738e1 changed --slot parameter to 1..6 instead of 0..5
Malte Bayer <mbayer@neo-soft.org>
parents: 100
diff changeset
618 sys.exit(1)
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
619
103
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
620 if options.learn:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
621 # start the learn monitor
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
622 cli.monitor_learn(options.carid)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
623 sys.exit(0)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
624
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
625 if options.playback:
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
626 # start the playback monitor
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
627 cli.monitor_playback(options.carid, options.playback)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
628 sys.exit(0)
52fd4283cd2c added learn and teach modes for intelligent ghostcars
Malte Bayer <mbayer@neo-soft.org>
parents: 102
diff changeset
629
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
630 if options.fuel:
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
631 print "setFuel: " + cli.box.progcar(int(options.carid), "fuel", int(options.fuel))
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
632
100
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 99
diff changeset
633 if options.accel:
039ab094f79b renamed --speed to --accel and added minimum value 6
Malte Bayer <mbayer@neo-soft.org>
parents: 99
diff changeset
634 print "setAccel: " + cli.box.progcar(int(options.carid), "accel", int(options.accel))
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
635
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
636 if options.brake:
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
637 print "setBrake: " + cli.box.progcar(int(options.carid), "brake", int(options.brake))
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
638
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
639 if options.blink:
35
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
640 state = False
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
641 if options.blink == "on":
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
642 state = True
00166228a419 cli: implemented setting of fuel, brake, speed, blinkstate for any car
Malte Bayer <mbayer@neo-soft.org>
parents: 27
diff changeset
643 print "setBlink: " + cli.box.blinkcar(int(options.carid), state)
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
644
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
645 if options.limit:
36
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
646 print "Change Speed Limit: " + cli.box.speedlimit(int(options.carid), int(options.limit))
aea84f4f5a12 feature: program a specific controller speed limit without changing the car's acceleration
Malte Bayer <mbayer@neo-soft.org>
parents: 35
diff changeset
647
58
042c490fdfaa better code quality
Tobias Paepke <tobias.paepke@paepke.net>
parents: 56
diff changeset
648 if options.drive:
50
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
649 print "Change minimum Speed drive: " + cli.box.speedminimum(int(options.carid), int(options.drive))
84b8ab4cd79e implemented new --drive command to CLI
Malte Bayer <mbayer@neo-soft.org>
parents: 36
diff changeset
650

mercurial