2023-04-08 13:58:47 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-05-30 21:50:59 -06:00
|
|
|
"log"
|
2023-05-31 00:37:51 -06:00
|
|
|
"time"
|
2023-04-08 13:58:47 -06:00
|
|
|
)
|
|
|
|
|
2023-05-30 20:45:16 -06:00
|
|
|
type Arena struct {
|
|
|
|
BaseResource
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewVirtualArena(name string) * Arena {
|
|
|
|
arena := &Arena{
|
|
|
|
BaseResource: BaseResource{
|
|
|
|
BaseNode: BaseNode{
|
|
|
|
name: name,
|
|
|
|
description: "A virtual vex arena",
|
2023-05-31 00:37:51 -06:00
|
|
|
id: randid(),
|
2023-05-30 20:45:16 -06:00
|
|
|
listeners: []chan error{},
|
|
|
|
},
|
|
|
|
parents: []Resource{},
|
|
|
|
children: []Resource{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return arena
|
|
|
|
}
|
|
|
|
|
|
|
|
type Member struct {
|
|
|
|
BaseResource
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewMember(name string) * Member {
|
|
|
|
member := &Member{
|
|
|
|
BaseResource: BaseResource{
|
|
|
|
BaseNode: BaseNode{
|
|
|
|
name: name,
|
|
|
|
description: "A Team Member",
|
2023-05-31 00:37:51 -06:00
|
|
|
id: randid(),
|
2023-05-30 20:45:16 -06:00
|
|
|
listeners: []chan error{},
|
|
|
|
},
|
|
|
|
parents: []Resource{},
|
|
|
|
children: []Resource{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return member
|
|
|
|
}
|
|
|
|
|
2023-04-08 13:58:47 -06:00
|
|
|
type Team struct {
|
|
|
|
BaseResource
|
|
|
|
Org string
|
|
|
|
Team string
|
|
|
|
}
|
|
|
|
|
2023-05-30 20:45:16 -06:00
|
|
|
func (team * Team) Members() []*Member {
|
|
|
|
ret := make([]*Member, len(team.children))
|
|
|
|
for idx, member := range(team.children) {
|
|
|
|
ret[idx] = member.(*Member)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTeam(org string, team string, members []*Member) * Team {
|
2023-04-08 13:58:47 -06:00
|
|
|
name := fmt.Sprintf("%s%s", org, team)
|
|
|
|
description := fmt.Sprintf("Team %s", name)
|
|
|
|
resource := &Team{
|
|
|
|
BaseResource: BaseResource{
|
|
|
|
BaseNode: BaseNode{
|
|
|
|
name: name,
|
|
|
|
description: description,
|
2023-05-31 00:37:51 -06:00
|
|
|
id: randid(),
|
2023-04-08 13:58:47 -06:00
|
|
|
listeners: []chan error{},
|
|
|
|
},
|
|
|
|
parents: []Resource{},
|
2023-05-30 20:45:16 -06:00
|
|
|
children: make([]Resource, len(members)),
|
2023-04-08 13:58:47 -06:00
|
|
|
},
|
|
|
|
Org: org,
|
|
|
|
Team: team,
|
|
|
|
}
|
2023-05-30 20:45:16 -06:00
|
|
|
for idx, member := range(members) {
|
|
|
|
resource.children[idx] = member
|
|
|
|
}
|
2023-04-08 13:58:47 -06:00
|
|
|
return resource
|
|
|
|
}
|
|
|
|
|
|
|
|
type Alliance struct {
|
|
|
|
BaseResource
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewAlliance(team0 * Team, team1 * Team) * Alliance {
|
|
|
|
name := fmt.Sprintf("Alliance %s/%s", team0.Name(), team1.Name())
|
|
|
|
description := ""
|
|
|
|
|
|
|
|
resource := &Alliance{
|
|
|
|
BaseResource: BaseResource{
|
|
|
|
BaseNode: BaseNode{
|
|
|
|
name: name,
|
|
|
|
description: description,
|
2023-05-31 00:37:51 -06:00
|
|
|
id: randid(),
|
2023-04-08 13:58:47 -06:00
|
|
|
listeners: []chan error{},
|
|
|
|
},
|
|
|
|
parents: []Resource{},
|
|
|
|
children: []Resource{team0, team1},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return resource
|
|
|
|
}
|
2023-05-30 20:45:16 -06:00
|
|
|
|
|
|
|
type Match struct {
|
|
|
|
BaseEvent
|
2023-05-30 21:50:59 -06:00
|
|
|
state string
|
2023-05-31 00:37:51 -06:00
|
|
|
control string
|
|
|
|
control_start time.Time
|
2023-05-30 20:45:16 -06:00
|
|
|
}
|
|
|
|
|
2023-05-31 00:37:51 -06:00
|
|
|
const start_slack = 3000 * time.Millisecond
|
|
|
|
|
2023-05-30 20:45:16 -06:00
|
|
|
func NewMatch(alliance0 * Alliance, alliance1 * Alliance, arena * Arena) * Match {
|
|
|
|
name := fmt.Sprintf("Match: %s vs. %s", alliance0.Name(), alliance1.Name() )
|
|
|
|
description := "A vex match"
|
|
|
|
|
|
|
|
match := &Match{
|
|
|
|
BaseEvent: NewBaseEvent(name, description, []Resource{alliance0, alliance1, arena}),
|
2023-05-30 21:50:59 -06:00
|
|
|
state: "init",
|
2023-05-31 00:37:51 -06:00
|
|
|
control: "init",
|
|
|
|
control_start: time.UnixMilli(0),
|
2023-05-30 20:45:16 -06:00
|
|
|
}
|
|
|
|
match.LockDone()
|
|
|
|
|
2023-05-30 21:50:59 -06:00
|
|
|
match.actions["start"] = func() (string, error) {
|
|
|
|
log.Printf("Starting match")
|
2023-05-31 00:37:51 -06:00
|
|
|
match.control = "none"
|
2023-05-30 21:50:59 -06:00
|
|
|
match.state = "scheduled"
|
|
|
|
return "wait", nil
|
|
|
|
}
|
|
|
|
|
2023-05-31 00:37:51 -06:00
|
|
|
match.actions["queue_autonomous"] = func() (string, error) {
|
|
|
|
match.control = "none"
|
|
|
|
match.state = "autonomous_queued"
|
|
|
|
match.control_start = time.Now().Add(start_slack)
|
|
|
|
return "wait", nil
|
|
|
|
}
|
|
|
|
|
2023-05-30 21:50:59 -06:00
|
|
|
match.actions["start_autonomous"] = func() (string, error) {
|
2023-05-31 00:37:51 -06:00
|
|
|
match.control = "autonomous"
|
|
|
|
match.state = "autonomous_running"
|
2023-05-30 21:50:59 -06:00
|
|
|
return "wait", nil
|
2023-05-30 20:45:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return match
|
|
|
|
}
|