ocp3/map.py
Fred Z 9ded9786a3 Adds movement to the player
Keep message loggin on console for dev, stop printing map on it
TODO Just changing the 2 tiles impacted by the move, not the whole maze
2018-03-23 11:11:57 +01:00

188 lines
5.9 KiB
Python

"""
Author: freezed <freezed@users.noreply.github.com> 2018-03-17
Version: 0.1
Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/
This file is part of [_ocp3_ project](https://github.com/freezed/ocp3)
"""
import os
# CONFIGURATION
# Error message
ERR_MAP = "ERR_MAP: «{}»"
MAZE_SIZE = 15
MAZE_ELEMENTS = {'wall': '.',
'exit': 'E',
'plyr': 'X',
'nlin': '\n',
'void': ' '}
# Issue possible d'un mouvement, garder le OK toujours en fin de liste
MOVE_STATUS = ['bad', 'wall', 'exit', 'door', 'ok']
MOVE_STATUS_MSG = {
'bad': "Le déplacement «{}» n'est pas autorisé.",
'wall': "Le déplacement est stoppé par un mur.",
'exit': "Vous êtes sortit du labyrinte",
'door': "Vous passez une porte",
'ok': "Jusqu'ici, tout va bien…"
}
MSG_START_GAME = "Welcome in OCP3.\nUse arrow keys to play, any other key to quit."
# CLASS
class Map:
"""
Provides a usable map from a text file
Checks the map compatibility
Moves the player to it
"""
def __init__(self, map_file):
"""
Initialise map
The Map object has given attributes:
:var int status: move status (what append after a move command)
:var str status_message: feedback message for player
:var lst map_in_a_list: splited map in a list
:var str _map_in_a_string: map string
:var str _element_under_player: Element under player
:var int _player_position: Player index in _map_in_a_string
:param map_file: map filename
:rtype map: str()
:return: None
"""
# Chargement du fichier carte choisi
if os.path.isfile(map_file) is True:
with open(map_file, "r") as map_data:
# translate to a splited lines string list
map_in_a_list = map_data.read().splitlines()
# map line number
if len(map_in_a_list) == MAZE_SIZE:
self._COLUM = MAZE_SIZE + 1
self._LINES = MAZE_SIZE
self._MAXIM = (self._COLUM * self._LINES) - 1
# Add map checking here
# Constructing square map
map_in_a_list = [self.check_line(line) for line in map_in_a_list]
self._map_in_a_string = '\n'.join(map_in_a_list)
# Player's initial position
self._player_position = self._map_in_a_string.find(
MAZE_ELEMENTS['plyr']
)
# Element under player at start
self._element_under_player = MAZE_ELEMENTS['void']
self.status = True
self.status_message = MSG_START_GAME
else:
self.status = False
self.status_message = ERR_MAP.format("maplines: " + str(len(map_in_a_list)))
# Erreur de chargement du fichier
else:
self.status = False
self.status_message = ERR_MAP.format(':'.join(["mapfile", map_file]))
def map_print(self):
""" Affiche la carte avec la position de jeu courante """
# print(self._map_in_a_string)
return self._map_in_a_string
def move_to(self, pressed_key):
"""
Deplace le plyr sur la carte
:param str pressed_key: mouvement souhaite
:return int: une cle de la constante MOVE_STATUS
"""
from pygame.locals import K_UP, K_DOWN, K_RIGHT, K_LEFT
# supprime le plyr de son emplacement actuel et on replace
# l'elements «dessous»
self._map_in_a_string = self._map_in_a_string.replace(
MAZE_ELEMENTS['plyr'],
self._element_under_player
)
# Recupere la position suivante
if pressed_key == K_UP:
next_position = self._player_position - self._COLUM
elif pressed_key == K_DOWN:
next_position = self._player_position + self._COLUM
elif pressed_key == K_RIGHT:
next_position = self._player_position + 1
elif pressed_key == K_LEFT:
next_position = self._player_position - 1
self._element_under_player = MAZE_ELEMENTS['void']
# Traitement en fonction de la case du prochain pas
if next_position >= 0 and next_position <= self._MAXIM:
next_char = self._map_in_a_string[next_position]
if next_char == MAZE_ELEMENTS['void']:
self._player_position = next_position
self.status_message = MOVE_STATUS_MSG['ok']
elif next_char == MAZE_ELEMENTS['exit']:
self._player_position = next_position
self.status = False
self.status_message = MOVE_STATUS_MSG['exit']
else: # MAZE_ELEMENTS wall, door or nline
self.status_message = MOVE_STATUS_MSG['wall']
else:
self.status_message = MOVE_STATUS_MSG['wall']
# place le plyr sur sa nouvelle position
self.place_element(MAZE_ELEMENTS['plyr'])
# Debug
self.status_message += "|"+str(self._player_position)+"|"+str(self._MAXIM)
def place_element(self, element):
"""
Place l'element sur la carte.
La position est celle de l'attribut self._player_position au
moment de l'appel.
Utilise pour place le plyrt et remettre les portes.
:param str element: element a placer sur la carte
"""
pos = self._player_position
txt = self._map_in_a_string
self._map_in_a_string = txt[:pos] + element + txt[pos + 1:]
@staticmethod
def check_line(line):
"""
Checks if a line has a good length, fill it if it's too small,
truncate if it's too long
"""
differance = MAZE_SIZE - len(str(line))
if differance < 0:
return line[:MAZE_SIZE]
elif differance > 0:
return line + (differance * MAZE_ELEMENTS['void'])
else:
return line