Added more test accounts

This commit is contained in:
2024-02-26 23:38:49 +01:00
parent d1afccd4bd
commit 23a9567871
4 changed files with 58 additions and 38 deletions

View File

@ -1,30 +1,33 @@
package game
var accounts = map[string]*Account{
"user0": {
ID: "4J6qpK1ve",
Name: "user0",
Password: "password",
Position: Vector3{3, 0, 0},
},
"user1": {
ID: "I_vyeZamg",
Name: "user1",
Password: "password",
Position: Vector3{-3, 0, 0},
},
"user2": {
ID: "VJOK1ckvx",
Name: "user2",
Password: "password",
Position: Vector3{0, 0, 3},
},
"user3": {
ID: "EkCcqbwFl",
Name: "user3",
Password: "password",
Position: Vector3{0, 0, -3},
},
import (
"fmt"
"math"
"math/rand"
)
var (
SpawnPoint = Vector3{584.98, 9.5, 394.68}
accounts = map[string]*Account{}
)
func init() {
MakeTestAccounts()
}
// MakeTestAccounts creates accounts for stress testing.
func MakeTestAccounts() {
for i := range 500 {
angle := rand.Float64() * math.Pi * 2
distance := rand.Float64() * 12.0
accounts[fmt.Sprintf("user%d", i)] = &Account{
ID: fmt.Sprintf("id%d", i),
Name: fmt.Sprintf("user%d", i),
Password: "password",
Position: Vector3{SpawnPoint.X + float32(math.Cos(angle)*distance), SpawnPoint.Y, SpawnPoint.Z + float32(math.Sin(angle)*distance)},
}
}
}
// GetAccountByName retrieves the account with the given name.

View File

@ -1,3 +1,3 @@
module server
go 1.21.6
go 1.22