From 045ed6354691a63c3f627dc2de71a1639efcda1c Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Tue, 7 Jan 2020 19:42:33 -0500 Subject: testing continues --- aesthetics.go | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ main.go | 12 +---------- 2 files changed, 70 insertions(+), 11 deletions(-) diff --git a/aesthetics.go b/aesthetics.go index efc7cef..c2fe959 100644 --- a/aesthetics.go +++ b/aesthetics.go @@ -56,6 +56,75 @@ func (plyr player) TargetDisplay() string { return text } +// printPrimary displays using ASCII art the primary battleship board +func (plyr player) PrimarySlice() []string { + board := []string{ + " ", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + } + for i := 0; i < 10; i++ { + board = append(board, strconv.Itoa(i)) + for j := 0; j < 10; j++ { + switch plyr.primary[i][j][2] { + case 0: // That coordinate was not hit + board = append(board, boatchars[1][plyr.primary[i][j][1]]) + case 1: // That coordinates was hit + board = append(board, boatchars[0][plyr.primary[i][j][1]]) + // default: + // return errors.New("Unknown State (hit/unhit) at a given coordinate") + } + } + } + // fmt.Println(text) + return board +} + +func (plyr player) TargetSlice() []string { + board := []string{ + " ", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + } + for i := 0; i < 10; i++ { + board = append(board, strconv.Itoa(i)) + for j := 0; j < 10; j++ { + switch plyr.target[i][j][0] { + case 0: + board = append(board, boatchars[1][0]) + case 1: + if plyr.gains[plyr.prey.primary[i][j][0]] { + board = append(board, boatchars[0][plyr.prey.primary[i][j][1]]) + } else { + switch plyr.prey.primary[i][j][0] { + case 0: + board = append(board, boatchars[0][0]) + default: + board = append(board, mistery_hit) + } + } + } + } + } + return board +} + // TODO: Function which returns what was hit as a commentary for the hitter /* Boats Info: diff --git a/main.go b/main.go index cbfb1d9..c96c518 100644 --- a/main.go +++ b/main.go @@ -2,7 +2,6 @@ package main import ( "fmt" - "github.com/mbndr/figlet4go" tv "github.com/rivo/tview" ) @@ -22,16 +21,7 @@ func main() { if settings.debug { - ascii := figlet4go.NewAsciiRender() - - options := figlet4go.NewRenderOptions() - options.FontName = "TwoPoint" - - // If 'larry3d' wouldn't be included you would have to load your .flf files like that: - ascii.LoadFont("./ressources/") - - renderStr, _ := ascii.RenderOpts("Hello Fonts", options) - fmt.Print(renderStr) + fmt.Println(player_one.PrimarySlice()) app := tv.NewApplication() flex := tv.NewFlex(). -- cgit v1.2.3