remote-snake/client/client.py

106 lines
2.9 KiB
Python
Raw Normal View History

2019-05-12 11:16:16 +02:00
#!/usr/bin/env python2.7
2019-05-11 16:44:24 +02:00
# -*- coding: utf-8 -*-
2019-05-11 17:52:01 +02:00
import socket, json, time
2019-05-11 16:44:24 +02:00
import pygame
2019-05-11 17:52:01 +02:00
# ---------- SOCKETS ----------
2019-05-11 16:44:24 +02:00
RESP_BUFFER_LENGTH = 1024
2019-05-11 17:52:01 +02:00
ip_adress="192.168.1.14"
2019-05-12 10:53:22 +02:00
port=8080
2019-05-11 16:44:24 +02:00
LARGEUR_BLOCK = 10
NB_BLOCKS = 30
LARGEUR_ECRAN = LARGEUR_BLOCK * NB_BLOCKS
2019-05-12 10:14:28 +02:00
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
2019-05-11 16:44:24 +02:00
def sendData(data):
2019-05-12 10:14:28 +02:00
s.sendto(data,(ip_adress,port))
received = s.recvfrom(1024)
return received[0]
2019-05-11 16:44:24 +02:00
def newGame():
received = sendData('{"type": "new-game"}')
return json.loads(received)
def update(gameId = 1, direction = None):
data = {
"type" : "update",
"game-id": gameId,
"direction": direction
}
received = sendData(json.dumps(data))
return json.loads(received)
2019-05-12 10:14:28 +02:00
2019-05-11 17:52:01 +02:00
# ---------- END SOCKETS ----------
LARGEUR_BLOCK = 20
NB_BLOCKS = 30
LARGEUR_ECRAN = LARGEUR_BLOCK * NB_BLOCKS
pygame.init()
ecran = pygame.display.set_mode((LARGEUR_ECRAN,LARGEUR_ECRAN))
2019-05-12 11:00:08 +02:00
myfont = pygame.font.SysFont('Comic Sans MS', 20)
2019-05-11 17:52:01 +02:00
snakeSprite = pygame.image.load("snake-sprite.png").convert_alpha()
snakeSprite = pygame.transform.scale(snakeSprite, (LARGEUR_BLOCK, LARGEUR_BLOCK))
appleSprite = pygame.image.load("apple-sprite.png").convert_alpha()
appleSprite = pygame.transform.scale(appleSprite, (LARGEUR_BLOCK, LARGEUR_BLOCK))
def afficher(ecran, snakeCoords, fruitsCoords):
2019-05-11 16:44:24 +02:00
snake = []
2019-05-11 17:52:01 +02:00
for coords in snakeCoords:
2019-05-11 16:44:24 +02:00
if coords not in snake:
snake.append(coords)
2019-05-11 17:52:01 +02:00
pygame.draw.rect(ecran, (255,255,255), (0,0,LARGEUR_ECRAN,LARGEUR_ECRAN))
for coords in fruitsCoords:
ecran.blit(appleSprite, (coords[0] * LARGEUR_BLOCK, coords[1] * LARGEUR_BLOCK))
2019-05-11 16:44:24 +02:00
2019-05-11 17:52:01 +02:00
for coords in snake:
ecran.blit(snakeSprite, (coords[0] * LARGEUR_BLOCK, coords[1] * LARGEUR_BLOCK))
def handleControls(event, gameId):
if event.key == pygame.K_LEFT:
return update(gameId, 'left')
elif event.key == pygame.K_RIGHT:
return update(gameId, 'right')
elif event.key == pygame.K_UP:
return update(gameId, 'down')
elif event.key == pygame.K_DOWN:
return update(gameId, 'up')
else:
return None
2019-05-11 16:44:24 +02:00
def main():
gameInit = newGame()
2019-05-12 11:16:16 +02:00
gameId = gameInit['id']
2019-05-11 17:52:01 +02:00
up = gameInit
2019-05-12 11:16:16 +02:00
initSize=len(up['snake'])
2019-05-11 17:52:01 +02:00
continuer = True
while continuer:
2019-05-12 11:16:16 +02:00
afficher(ecran, up['snake'], up['food'])
ecran.blit(myfont.render('Score {}'.format(len(up['snake'])-initSize), False, (0, 0, 0)),(0,0))
2019-05-11 17:52:01 +02:00
for event in pygame.event.get():
if event.type == pygame.QUIT:
continuer = False
elif event.type == pygame.KEYDOWN:
updateTmp = handleControls(event, gameId)
print(updateTmp)
2019-05-12 11:16:16 +02:00
if updateTmp != None and 'type' in updateTmp:
if updateTmp['type'] != 'error':
2019-05-11 17:52:01 +02:00
up = updateTmp
2019-05-12 11:00:08 +02:00
time.sleep(0.3)
2019-05-11 17:52:01 +02:00
pygame.display.flip()
2019-05-12 10:53:22 +02:00
up = update(gameId)
2019-05-11 17:52:01 +02:00
pygame.quit()
2019-05-11 16:44:24 +02:00
2019-05-11 17:52:01 +02:00
if __name__ == '__main__':
2019-05-12 10:53:22 +02:00
main()