2021-11-08 13:40:11 +00:00
|
|
|
extends Node
|
|
|
|
|
2021-11-11 20:38:10 +00:00
|
|
|
# Path to Board class, for instantiating new Boards in code
|
|
|
|
var Board = "res://script/game/Gameplay/Board.gd"
|
|
|
|
|
2021-11-11 21:38:50 +00:00
|
|
|
# Player ID of this player
|
2021-11-08 13:40:11 +00:00
|
|
|
var pid
|
2021-11-11 21:38:50 +00:00
|
|
|
# board (an instance of the Board class)
|
2021-11-08 13:40:11 +00:00
|
|
|
var board
|
|
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
|
|
func _ready():
|
|
|
|
pass # Replace with function body.
|
|
|
|
|
2021-11-11 21:38:50 +00:00
|
|
|
# Member functions:
|
2021-11-08 13:40:11 +00:00
|
|
|
# hit: Called when opponent fires on us.
|
|
|
|
# Update internal state, and return bool hit/miss
|
|
|
|
func hit():
|
|
|
|
pass
|
|
|
|
|
2021-11-11 21:38:50 +00:00
|
|
|
# place_ship: called when ships are placed.
|
2021-11-08 13:40:11 +00:00
|
|
|
# forwards Ship locations to the Board, so that it may construct a ship
|
2021-11-11 21:38:50 +00:00
|
|
|
# ship: a list of ship properties {position, orientation, size}
|
|
|
|
func place_ship(_ship):
|
2021-11-08 13:40:11 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
# setUp: set up the board given the placed ship locations
|
|
|
|
# translates the ship positions in the Setup UI to board-space, then places each ship
|
|
|
|
# ships: a list of lists of ship properties {{position, orientation, size}, ...}
|
2021-11-11 21:38:50 +00:00
|
|
|
func set_up(_ships):
|
2021-11-08 13:40:11 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
# turnStart: start player's turn
|
|
|
|
# Initiates the player's turn, and blocks until the player selects a location to fire upon
|
2021-11-11 21:38:50 +00:00
|
|
|
# returns: fire = [player id, target coordinates]
|
2021-11-08 13:40:11 +00:00
|
|
|
func turnStart():
|
2021-11-11 21:38:50 +00:00
|
|
|
var player_id = 0
|
|
|
|
var target = Vector2(0,0)
|
|
|
|
return [player_id, target]
|
2021-11-08 13:40:11 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
# getBoard: returns the player's board
|
|
|
|
# returns: board
|
|
|
|
func getBoard():
|
|
|
|
return board
|
|
|
|
|
|
|
|
# forfeit: ends game for player
|
|
|
|
# Sinks all ships
|
|
|
|
func forfeit():
|
|
|
|
pass
|
|
|
|
|
|
|
|
# getShipCount: get the number of ships the player has left alive
|
|
|
|
func getShipCount():
|
|
|
|
pass
|
|
|
|
|