Exemplo n.º 1
0
from HumanPlayer import HumanPlayer
from ComputerPlayer import ComputerPlayer

print("Welcome to Battleship!")

human = HumanPlayer()
computer = ComputerPlayer()

print("Player one place ships now:")
human.printShipGrid()
print("Place destroyer")
human.placeShips("D")
human.printShipGrid()
print("Place submarine")
human.placeShips("S")
human.printShipGrid()
print("Place cruiser")
human.placeShips("C")
human.printShipGrid()
print("Place battleship")
human.placeShips("B")
human.printShipGrid()
print("Place aircraft carrier")
human.placeShips("A")
human.printShipGrid()

print("Player two place ships now.")
computer.placeShips("D")
computer.placeShips("S")
computer.placeShips("C")
computer.placeShips("B")