|
|
|
@ -94,8 +94,8 @@ class BalanceBoardPlayer(object):
@@ -94,8 +94,8 @@ class BalanceBoardPlayer(object):
|
|
|
|
|
bal = self.__balance_util.get_raw_2dir_y() |
|
|
|
|
|
|
|
|
|
if bal == -128: |
|
|
|
|
print("player %d has quit" % (self.__player_id)) |
|
|
|
|
self.__wiimote_sock.close() |
|
|
|
|
print("player %d has quit" % self.__balance_util.player_id) |
|
|
|
|
self.__balance_util.socket.close() |
|
|
|
|
sys.exit(1) |
|
|
|
|
|
|
|
|
|
bal = -bal |
|
|
|
@ -107,7 +107,7 @@ class BalanceBoardPlayer(object):
@@ -107,7 +107,7 @@ class BalanceBoardPlayer(object):
|
|
|
|
|
bal += MAX_AMPLITUDE |
|
|
|
|
pos = int((bal / (2 * MAX_AMPLITUDE)) * self.__playground.height) |
|
|
|
|
|
|
|
|
|
print("player %d pos=%d" % (self.__player_id, pos)) |
|
|
|
|
print("player %d pos=%d" % self.__balance_util.player_id, pos) |
|
|
|
|
|
|
|
|
|
if self.__ownPaddle.ypos > pos: |
|
|
|
|
self.__ownPaddle.nextMoveUp() |
|
|
|
|