-
Notifications
You must be signed in to change notification settings - Fork 5
/
example_test.go
246 lines (224 loc) · 5.56 KB
/
example_test.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package simconnect_test
import (
"log"
"time"
sim "github.com/micmonay/simconnect"
)
func connect() *sim.EasySimConnect {
sc, err := sim.NewEasySimConnect()
if err != nil {
panic(err)
}
sc.SetLoggerLevel(sim.LogInfo)
c, err := sc.Connect("MyApp")
if err != nil {
panic(err)
}
<-c // wait connection confirmation
for {
if <-sc.ConnectSysEventSim() {
break // wait sim start
}
}
return sc
}
// ExampleGetSimVar this example show how to get SimVar with Easysim
func Example_getSimVar() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarPlaneAltitude(),
sim.SimVarPlaneLatitude(sim.UnitDegrees), // you can force the units
sim.SimVarPlaneLongitude(),
sim.SimVarIndicatedAltitude(),
sim.SimVarAutopilotAltitudeLockVar(),
sim.SimVarAutopilotMaster(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%#v\n", f)
}
}
<-sc.Close() // wait close confirmation
// Output:
}
func Example_getSimVarWithIndex() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarGeneralEngRpm(1),
sim.SimVarTransponderCode(1),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
if simVar.Name == sim.SimVarTransponderCode().Name {
i, err := simVar.GetInt()
if err != nil {
panic(err)
}
log.Printf("%s : %x\n", simVar.Name, i)
} else {
f, err := simVar.GetFloat64()
if err != nil {
panic(err)
}
log.Printf("%s : %f\n", simVar.Name, f)
}
}
}
<-sc.Close() // wait close confirmation
// Output:
}
type ExampleSetSimVar struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE" simUnit:"Degrees"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
Speed float64 `sim:"AIRSPEED INDICATED" simUnit:"Knots"`
}
//Example_iFaceSetSimVar Example how to use interface for assign value in simulator actualy support only float64
func Example_iFaceSetSimVar() {
sc := connect()
iFace := ExampleSetSimVar{
PlaneLatitude: 46.2730077,
PlaneLongitude: 6.1324663,
PlaneAltitude: 10000.0,
Speed: 150.0,
}
sc.SetSimVarInterfaceInSim(iFace)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
//
func Example_setSimVar() {
sc := connect()
newalt := sim.SimVarPlaneAltitude()
newalt.SetFloat64(6000.0)
sc.SetSimObject(newalt)
time.Sleep(1000 * time.Millisecond)
<-sc.Close() // wait close confirmation
// NOEXEC Output:
}
func Example_getLatLonAlt() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarStructLatlonalt(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
latlonalt, err := simVar.GetDataLatLonAlt()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\nIn Feet %#v\n", simVar.Name, latlonalt, latlonalt.GetFeets())
}
}
<-sc.Close() // wait close confirmation
// Output:
}
func Example_getXYZ() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarEyepointPosition(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
xyz, err := simVar.GetDataXYZ()
if err != nil {
panic(err)
}
log.Printf("%s : %#v\n", simVar.Name, xyz)
}
}
<-sc.Close() // wait close confirmation
// Output:
}
func Example_getString() {
sc := connect()
cSimVar, err := sc.ConnectToSimVar(
sim.SimVarTitle(),
sim.SimVarCategory(),
)
if err != nil {
log.Fatalln(err)
}
for i := 0; i < 1; i++ {
result := <-cSimVar
for _, simVar := range result {
str := simVar.GetString()
log.Printf("%s : %#v\n", simVar.Name, str)
}
}
<-sc.Close() // wait close confirmation
// Output:
}
// Example_showText Actually color no effect in the sim
func Example_showText() {
sc := connect()
ch, err := sc.ShowText("Test", 1, sim.SIMCONNECT_TEXT_TYPE_PRINT_GREEN)
if err != nil {
panic(err)
}
log.Println(<-ch)
<-sc.Close() // wait close confirmation
// Output:
}
//Example_simEvent You can wait chan if you will surre the event has finish with succes. If your app finish before all event probably not effect.
func Example_simEvent() {
sc := connect()
aileronsSet := sc.NewSimEvent(sim.KeyAxisAileronsSet)
throttleSet := sc.NewSimEvent(sim.KeyThrottleSet)
altVarInc := sc.NewSimEvent(sim.KeyApAltVarInc)
altVarDec := sc.NewSimEvent(sim.KeyApAltVarDec)
log.Println(<-aileronsSet.RunWithValue(-16383))
log.Println(<-throttleSet.RunWithValue(16383))
for i := 0; i < 10; i++ {
<-altVarInc.Run()
}
for i := 0; i < 10; i++ {
<-altVarDec.Run()
}
<-sc.Close() // wait close confirmation
// Output:
}
type ExampleInterface struct {
PlaneAltitude float64 `sim:"PLANE ALTITUDE" simUnit:"Feet"`
PlaneLatitude float64 `sim:"PLANE LATITUDE"`
PlaneLongitude float64 `sim:"PLANE LONGITUDE" simUnit:"Degrees"`
IndicatedAltitude float64 `sim:"INDICATED ALTITUDE"`
AutopilotAltitudeLockVar float64 `sim:"AUTOPILOT ALTITUDE LOCK VAR"`
SimVarAutopilotMaster bool `sim:"GENERAL ENG RPM:1"`
PlaneName string `sim:"TITLE"`
}
func Example_interfaceSimVar() {
sc := connect()
cInterface, err := sc.ConnectInterfaceToSimVar(ExampleInterface{})
if err != nil {
panic(err)
}
iFace, ok := (<-cInterface).(ExampleInterface)
if ok {
log.Printf("%#v", iFace)
} else {
log.Fatalln("interface error in Example_interfaceSimVar")
}
<-sc.Close()
// Output:
}