|
1
|
|
|
import smbus |
|
2
|
|
|
from lib.updater import Updater |
|
3
|
|
|
from lib.configure import Configure |
|
4
|
|
|
from lib.node import Node |
|
5
|
|
|
from lib.difficulty import Difficulty |
|
6
|
|
|
from lib.game import Game |
|
7
|
|
|
|
|
8
|
|
|
|
|
9
|
|
|
class SpeedOfPi(object): |
|
10
|
|
|
def __init__(self): |
|
11
|
|
|
self.bus = smbus.SMBus(1) |
|
12
|
|
|
self.nodes = {} |
|
13
|
|
|
self.config = Configure() |
|
14
|
|
|
self.updater = None |
|
15
|
|
|
self.difficulty = Difficulty() |
|
16
|
|
|
|
|
17
|
|
|
def create_nodes(self, node_config): |
|
18
|
|
|
for node in node_config['nodes']: |
|
19
|
|
|
try: |
|
20
|
|
|
node_number = list(node)[0] |
|
21
|
|
|
button_address = node[node_number][0]['button'][0]['address'] |
|
22
|
|
|
button_port = node[node_number][0]['button'][1]['port'] |
|
23
|
|
|
led_address = node[node_number][1]['led'][0]['address'] |
|
24
|
|
|
led_port = node[node_number][1]['led'][1]['port'] |
|
25
|
|
|
|
|
26
|
|
|
self.nodes[node_number] = Node(self.bus, node_number, button_address, button_port, led_address, led_port) |
|
27
|
|
|
except: |
|
28
|
|
|
raise Exception("Config is incorrect on {node}".format(node=node[0])) |
|
29
|
|
|
|
|
30
|
|
|
def load_config(self): |
|
31
|
|
|
if not self.config.read_config(): |
|
32
|
|
|
raise Exception('Could not read file') |
|
33
|
|
|
|
|
34
|
|
|
node_config = self.config.get_config() |
|
35
|
|
|
self.create_nodes(node_config) |
|
36
|
|
|
|
|
37
|
|
|
def set_config(self): |
|
38
|
|
|
self.config.set_config() |
|
39
|
|
|
|
|
40
|
|
|
def set_difficulty(self, level): |
|
41
|
|
|
self.difficulty.set(level) |
|
42
|
|
|
|
|
43
|
|
|
def get_difficulties(self): |
|
44
|
|
|
return self.difficulty.all() |
|
45
|
|
|
|
|
46
|
|
|
def update_available(self, is_develop=False): |
|
47
|
|
|
self.updater = Updater(is_develop) |
|
48
|
|
|
return self.updater.check() |
|
49
|
|
|
|
|
50
|
|
|
def update(self, is_develop=False): |
|
51
|
|
|
if not self.updater: |
|
52
|
|
|
self.updater = Updater(is_develop) |
|
53
|
|
|
|
|
54
|
|
|
self.updater.update() |
|
55
|
|
|
|
|
56
|
|
|
def multi_player(self): |
|
57
|
|
|
if not self.nodes: |
|
58
|
|
|
self.load_config() |
|
59
|
|
|
|
|
60
|
|
|
game = Game(self.difficulty) |
|
61
|
|
|
game.multi_player(self.nodes) |
|
62
|
|
|
|
|
63
|
|
|
def single_player(self): |
|
64
|
|
|
if not self.nodes: |
|
65
|
|
|
self.load_config() |
|
66
|
|
|
|
|
67
|
|
|
game = Game(self.difficulty) |
|
68
|
|
|
game.single_player(self.nodes) |
|
69
|
|
|
|