forked from hybridgroup/gobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
robot.go
97 lines (85 loc) · 2.1 KB
/
robot.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package gobot
import (
"fmt"
"math/rand"
"time"
)
type Robot struct {
Connections []Connection
Devices []Device
Name string
Commands map[string]interface{} `json:"-"`
RobotCommands []string `json:"Commands"`
Work func() `json:"-"`
connections []*connection `json:"-"`
devices []*device `json:"-"`
}
func (r *Robot) Start() {
m := GobotMaster()
m.Robots = []Robot{*r}
m.Start()
}
func (r *Robot) startRobot() {
r.initName()
r.initCommands()
r.initConnections()
r.initDevices()
r.startConnections()
r.startDevices()
if r.Work != nil {
r.Work()
}
}
func (r *Robot) initName() {
if r.Name == "" {
rand.Seed(time.Now().UTC().UnixNano())
i := rand.Int()
r.Name = fmt.Sprintf("Robot %v", i)
}
}
func (r *Robot) initCommands() {
for k, _ := range r.Commands {
r.RobotCommands = append(r.RobotCommands, k)
}
}
func (r *Robot) initConnections() {
r.connections = make([]*connection, len(r.Connections))
fmt.Println("Initializing connections...")
for i := range r.Connections {
fmt.Sprintln("Initializing connection %v...", FieldByNamePtr(r.Connections[i], "Name"))
r.connections[i] = NewConnection(r.Connections[i], r)
}
}
func (r *Robot) initDevices() {
r.devices = make([]*device, len(r.Devices))
fmt.Println("Initializing devices...")
for i := range r.Devices {
fmt.Sprintln("Initializing device %v...", FieldByNamePtr(r.Devices[i], "Name"))
r.devices[i] = NewDevice(r.Devices[i], r)
}
}
func (r *Robot) startConnections() {
fmt.Println("Starting connections...")
for i := range r.connections {
fmt.Println("Starting connection " + r.connections[i].Name + "...")
r.connections[i].Connect()
}
}
func (r *Robot) startDevices() {
fmt.Println("Starting devices...")
for i := range r.devices {
fmt.Println("Starting device " + r.devices[i].Name + "...")
r.devices[i].Start()
}
}
func (r *Robot) GetDevices() []*device {
return r.devices
}
func (r *Robot) GetDevice(name string) *device {
for i := range r.devices {
if r.devices[i].Name == name {
return r.devices[i]
}
}
return nil
}