2018-11-13 16:10:46 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-11-16 21:09:29 +01:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2018-11-18 18:07:29 +01:00
|
|
|
"bytes"
|
|
|
|
"github.com/pkg/term"
|
2018-11-13 16:10:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var gameBoard [10][30]string
|
|
|
|
var x, y int
|
|
|
|
var i, j int
|
|
|
|
var Player1 [10]string
|
|
|
|
var Player2 [10]string
|
2018-11-16 21:09:29 +01:00
|
|
|
var P1index int
|
2018-11-13 16:10:46 +01:00
|
|
|
var Ball [10][30]string
|
|
|
|
var BallDirection [10][30]string
|
|
|
|
var BallSpeed int
|
2018-11-15 18:03:37 +01:00
|
|
|
var GameOver bool = false
|
2018-11-17 09:03:08 +01:00
|
|
|
var LastPressedKey rune
|
2018-11-17 09:25:33 +01:00
|
|
|
|
2018-11-13 16:10:46 +01:00
|
|
|
func main() {
|
2018-11-18 18:07:29 +01:00
|
|
|
// SpawnEverything()
|
|
|
|
loop2()
|
2018-11-17 09:25:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func SpawnEverything() {
|
2018-11-13 16:10:46 +01:00
|
|
|
CreateBoard()
|
|
|
|
SpawnPlayers()
|
|
|
|
SpawnBall()
|
|
|
|
PrintBoard()
|
2018-11-15 18:03:37 +01:00
|
|
|
Loop()
|
2018-11-13 16:10:46 +01:00
|
|
|
}
|
|
|
|
|
2018-11-18 18:07:29 +01:00
|
|
|
func getch() []byte {
|
|
|
|
t, _ := term.Open("/dev/tty")
|
|
|
|
term.RawMode(t)
|
|
|
|
bytes := make([]byte, 3)
|
|
|
|
numRead, err := t.Read(bytes)
|
|
|
|
t.Restore()
|
|
|
|
t.Close()
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return bytes[0:numRead]
|
|
|
|
}
|
|
|
|
|
2018-11-13 16:10:46 +01:00
|
|
|
func CreateBoard() {
|
|
|
|
for i = 0; i < 10; i++ {
|
|
|
|
for j = 0; j < 30; j++ {
|
|
|
|
gameBoard[i][j] = " "
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func PrintBoard() {
|
2018-11-16 21:09:29 +01:00
|
|
|
c:=exec.Command("clear")
|
|
|
|
c.Stdout = os.Stdout
|
|
|
|
c.Run()
|
2018-11-13 16:10:46 +01:00
|
|
|
for i = 0; i < 10; i++ {
|
|
|
|
for j = 0; j < 30; j++ {
|
|
|
|
fmt.Printf("%s", gameBoard[i][j])
|
|
|
|
}
|
2018-11-16 21:09:29 +01:00
|
|
|
fmt.Print("\n")
|
2018-11-13 16:10:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
func SpawnBall() {
|
|
|
|
x = 4
|
|
|
|
y = 14
|
|
|
|
gameBoard[x][y] = "o"
|
|
|
|
}
|
|
|
|
func SpawnPlayers() {
|
|
|
|
for i = 0; i < 10; i++ {
|
|
|
|
Player1[i] = " "
|
|
|
|
Player2[i] = " "
|
|
|
|
}
|
|
|
|
for i = 3; i < 6; i++ {
|
|
|
|
Player1[i] = "|"
|
|
|
|
Player2[i] = "|"
|
|
|
|
j = 0
|
|
|
|
gameBoard[i][0] = Player1[i]
|
|
|
|
gameBoard[i][29] = Player2[i]
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 17:18:33 +01:00
|
|
|
func Loop() {
|
2018-11-15 18:03:37 +01:00
|
|
|
i = 5
|
2018-11-16 21:09:29 +01:00
|
|
|
P1index=3
|
2018-11-15 18:03:37 +01:00
|
|
|
for GameOver == false {
|
2018-11-18 11:45:45 +01:00
|
|
|
fmt.Scanf("%c", &LastPressedKey)
|
|
|
|
if LastPressedKey == 'w' {
|
|
|
|
if P1index != 0 {
|
|
|
|
P1index--
|
|
|
|
gameBoard[P1index][0] = "|"
|
|
|
|
gameBoard[P1index + 3][0] = " "
|
|
|
|
PrintBoard()
|
|
|
|
} else {
|
2018-11-17 09:25:33 +01:00
|
|
|
PrintBoard()
|
2018-11-18 11:45:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if LastPressedKey=='s' {
|
|
|
|
if P1index!=7 {
|
|
|
|
gameBoard[P1index][0] = " "
|
|
|
|
P1index++
|
|
|
|
gameBoard[P1index + 2][0] = "|"
|
|
|
|
PrintBoard()
|
|
|
|
} else {
|
|
|
|
PrintBoard()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if LastPressedKey=='r' {
|
2018-11-17 09:25:33 +01:00
|
|
|
}
|
2018-11-17 09:03:08 +01:00
|
|
|
}
|
2018-11-14 17:18:33 +01:00
|
|
|
}
|
2018-11-18 18:07:29 +01:00
|
|
|
|
|
|
|
func loop2() {
|
|
|
|
for !GameOver {
|
|
|
|
c:=getch()
|
|
|
|
switch {
|
|
|
|
case bytes.Equal(c, []byte{3}):
|
|
|
|
return
|
|
|
|
case bytes.Equal(c, []byte{27, 91, 68}):
|
|
|
|
fmt.Println("Left pressed")
|
|
|
|
default:
|
|
|
|
PrintBoard()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|