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