Compare commits
6 Commits
Go-Routine
...
trunk
Author | SHA1 | Date | |
---|---|---|---|
e8d5ecc772 | |||
07f81679d8 | |||
1eb18e7aeb | |||
69a1c68fb6 | |||
b08e0ea3e8 | |||
34bfeaed0e |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
builds
|
builds
|
||||||
|
7
.pre-commit-config.yaml
Normal file
7
.pre-commit-config.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v4.6.0 # this is optional, use `pre-commit autoupdate` to get the latest rev!
|
||||||
|
hooks:
|
||||||
|
- id: check-yaml
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: trailing-whitespace
|
15
Taskfile.dist.yaml
Normal file
15
Taskfile.dist.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
version: '3'
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
default:
|
||||||
|
cmds:
|
||||||
|
- go run .
|
||||||
|
build:
|
||||||
|
cmds:
|
||||||
|
- mkdir -p builds
|
||||||
|
- rm builds/* || true
|
||||||
|
- go tool dist list | grep -v android | grep -v ios | grep -v wasip1 | awk -F '/' '{printf "echo Compiling %s/%s; env CGO_ENABLED=1 GOOS=%s GOARCH=%s go build -o builds/rowboz.%s-%s\n",$1,$2,$1,$2,$1,$2 }' | sh
|
||||||
|
- for i in `ls builds/*windows*`; do mv -v $i $i.exe; done
|
||||||
|
lint:
|
||||||
|
cmds:
|
||||||
|
- golangci-lint run
|
10
build.sh
10
build.sh
@ -1,10 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
mkdir -p builds
|
|
||||||
|
|
||||||
rm builds/*
|
|
||||||
|
|
||||||
go tool dist list | grep -v android | grep -v ios | grep -v wasip1 | awk -F '/' '{printf "echo Compiling %s/%s; env CGO_ENABLED=1 GOOS=%s GOARCH=%s go build -o builds/rowboz.%s-%s\n",$1,$2,$1,$2,$1,$2 }' | sh
|
|
||||||
|
|
||||||
cd builds
|
|
||||||
for i in `ls *windows*`; do mv -v $i $i.exe; done
|
|
@ -99,7 +99,7 @@ func (game *Game) gameDirector() {
|
|||||||
|
|
||||||
// Draw stuff last
|
// Draw stuff last
|
||||||
game.drawScore()
|
game.drawScore()
|
||||||
game.drawDebug()
|
//game.drawDebug()
|
||||||
|
|
||||||
// Draw the screen
|
// Draw the screen
|
||||||
game.screen.Show()
|
game.screen.Show()
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package robots
|
package robots
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"runtime"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -42,26 +41,28 @@ func (game *Game) drawBox() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// drawCoords Print the coordinates of the player
|
// drawCoords Print the coordinates of the player
|
||||||
func (game *Game) drawCoords() {
|
// func (game *Game) drawCoords() {
|
||||||
var x, y int = 25, 24
|
// var x, y int = 25, 24
|
||||||
for _, r := range []rune("[ x:" + strconv.FormatInt(int64(game.player.position.x), 10) + " y:" + strconv.FormatInt(int64(game.player.position.y), 10) + " ]") {
|
// for _, r := range []rune("[ x:" + strconv.FormatInt(int64(game.player.position.x), 10) + " y:" + strconv.FormatInt(int64(game.player.position.y), 10) + " ]") {
|
||||||
game.screen.SetContent(x, y-1, r, nil, game.style)
|
// game.screen.SetContent(x, y-1, r, nil, game.style)
|
||||||
x++
|
// x++
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
func (game *Game) drawDebug() {
|
// func (game *Game) drawDebug() {
|
||||||
var x, y int = 40, 24
|
// var x, y int = 40, 24
|
||||||
for _, r := range []rune("[ NumGoRoutine: " + strconv.FormatInt(int64(runtime.NumGoroutine()), 10) + " Bots: " + strconv.FormatInt(int64(len(game.robots)), 10) + " ]") {
|
// for _, r := range []rune("[ NumGoRoutine: " + strconv.FormatInt(int64(runtime.NumGoroutine()), 10) + " Bots: " + strconv.FormatInt(int64(len(game.robots)), 10) + " ]") {
|
||||||
game.screen.SetContent(x, y-1, r, nil, game.style)
|
// game.screen.SetContent(x, y-1, r, nil, game.style)
|
||||||
x++
|
// x++
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
func (game *Game) drawScore() {
|
func (game *Game) drawScore() {
|
||||||
var x, y int = 5, 24
|
var x, y int = 5, 24
|
||||||
for _, r := range []rune("[ Score: " + strconv.FormatInt(int64(game.player.score), 10) + " Level: " + strconv.FormatInt(int64(game.level), 10) + " ]") {
|
content := "[ Score: " + strconv.FormatInt(int64(game.player.score), 10) + " Level: " + strconv.FormatInt(int64(game.level), 10) + " ]"
|
||||||
game.screen.SetContent(x, y-1, r, nil, game.style)
|
|
||||||
|
for i := 0; i < len(content); i++ {
|
||||||
|
game.screen.SetContent(x, y-1, rune(content[i]), nil, game.style)
|
||||||
x++
|
x++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user