Edgaraaa / Asteroid_backend

Asteroid 后端

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Asteroid_backend

Asteroid 客户端

开始使用

git clone https://github.com/wuhan005/Asteroid_backend
go mod tidy
go build -o Asteroid

创建team.txt文件,队伍名一行一个。

运行:

./Asteroid
  • --port HTTP 监听端口(默认:12345)
  • --token HTTP Authorization 请求头(默认随机字符串)

接口

  • Request Header:
Authorization: YOUR_TOKEN_HERE

/websocket Unity WebSocket 连接地址

POST /attack 攻击特效

{
  "From": 1,
  "To": 2
}

POST /rank 设置排行

{
  "Team": [
    {
      "Id": 0,
      "Rank": 1,
      "Score": 1000
    },
    {
      "Id": 1,
      "Rank": 2,
      "Score": 900
    }
  ]
}

POST /status 队伍状态

{
  "Id": 0,
  "Status": "attacked"
}
  • attacked 被攻击
  • down 被 Check Down

POST /round 设置轮数

{
  "Round": 47
}

GET /easterEgg 陨石彩蛋动画

POST /round 设置轮数

{
  "Time": 300
}

单位:秒(s)

POST /clear 清除队伍状态

{
  "Id": 0
}

POST /clearAll 清除所有队伍状态

LICENSE

Apache License 2.0

About

Asteroid 后端

License:Apache License 2.0


Languages

Language:Go 100.0%