slotUI/slotCli.py

Sat, 15 Dec 2012 17:12:40 +0100

author
Malte Bayer <mbayer@neo-soft.org>
date
Sat, 15 Dec 2012 17:12:40 +0100
changeset 122
8344d8d38c4f
parent 121
6ea0dff10e78
child 123
ec623e5fcbca
permissions
-rwxr-xr-x

fix again

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

mercurial