119 lines
3.4 KiB
Python
119 lines
3.4 KiB
Python
import pygame, random
|
|
import r0ketrem0te.game
|
|
import r0ketrem0te.bridge
|
|
import r0ketrem0te.packets
|
|
import time
|
|
import Queue
|
|
import threading
|
|
|
|
class Rem0tePlayer(object):
|
|
def __init__(self, rem0te):
|
|
self.rem0te = rem0te
|
|
self.rem0te.bridge.registerCallback(self.receivedPacket)
|
|
self.state = 0
|
|
self.player = None
|
|
|
|
def receivedPacket(self, packet):
|
|
if self.player == None:
|
|
return
|
|
if packet.id == self.player.id:
|
|
if isinstance(packet, r0ketrem0te.packets.Button):
|
|
self.state = packet.button
|
|
|
|
def update(self, paddle, game):
|
|
if self.state == 1:
|
|
paddle.direction = -1
|
|
elif self.state == 2:
|
|
paddle.direction = 1
|
|
else:
|
|
paddle.direction = 0
|
|
|
|
def hit(self):
|
|
pass
|
|
|
|
def lost(self):
|
|
pass
|
|
|
|
def won(self):
|
|
pass
|
|
|
|
class BasicAIPlayer(object):
|
|
def __init__(self):
|
|
self.bias = random.random() - 0.5
|
|
self.hit_count = 0
|
|
|
|
def update(self, paddle, game):
|
|
# Dead simple AI, waits until the ball is on its side of the screen then moves the paddle to intercept.
|
|
# A bias is used to decide which edge of the paddle is going to be favored.
|
|
if (paddle.rect.x < game.bounds.centerx and game.ball.rect.x < game.bounds.centerx) or (paddle.rect.x > game.bounds.centerx and game.ball.rect.x > game.bounds.centerx):
|
|
delta = (paddle.rect.centery + self.bias * paddle.rect.height) - game.ball.rect.centery
|
|
if abs(delta) > paddle.velocity:
|
|
if delta > 0:
|
|
paddle.direction = -1
|
|
else:
|
|
paddle.direction = 1
|
|
else:
|
|
paddle.direction = 0
|
|
else:
|
|
paddle.direction = 0
|
|
|
|
def hit(self):
|
|
self.hit_count += 1
|
|
if self.hit_count > 6:
|
|
self.bias = random.random() - 0.5 # Recalculate our bias, this game is going on forever
|
|
self.hit_count = 0
|
|
|
|
def lost(self):
|
|
# If we lose, randomise the bias again
|
|
self.bias = random.random() - 0.5
|
|
|
|
def won(self):
|
|
pass
|
|
|
|
class KeyboardPlayer(object):
|
|
def __init__(self, input_state, up_key=None, down_key=None):
|
|
self.input_state = input_state
|
|
self.up_key = up_key
|
|
self.down_key = down_key
|
|
|
|
def update(self, paddle, game):
|
|
if self.input_state['key'][self.up_key]:
|
|
paddle.direction = -1
|
|
elif self.input_state['key'][self.down_key]:
|
|
paddle.direction = 1
|
|
else:
|
|
paddle.direction = 0
|
|
|
|
def hit(self):
|
|
pass
|
|
|
|
def lost(self):
|
|
pass
|
|
|
|
def won(self):
|
|
pass
|
|
|
|
class MousePlayer(object):
|
|
def __init__(self, input_state):
|
|
self.input_state = input_state
|
|
pygame.mouse.set_visible(False)
|
|
|
|
def update(self, paddle, game):
|
|
centery = paddle.rect.centery/int(paddle.velocity)
|
|
mousey = self.input_state['mouse'][1]/int(paddle.velocity)
|
|
if centery > mousey:
|
|
paddle.direction = -1
|
|
elif centery < mousey:
|
|
paddle.direction = 1
|
|
else:
|
|
paddle.direction = 0
|
|
|
|
def hit(self):
|
|
pass
|
|
|
|
def lost(self):
|
|
pass
|
|
|
|
def won(self):
|
|
pass
|