-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmeta_gilda.bhv
More file actions
50 lines (40 loc) · 907 Bytes
/
meta_gilda.bhv
File metadata and controls
50 lines (40 loc) · 907 Bytes
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
initialize LOITER = true
//-----------------------------------------------
// Helm Behavior File
set MODE = ACTIVE {
DEPLOY = true
} INACTIVE
set MODE = STATION-KEEPING {
MODE = ACTIVE
STATION_KEEP = true
}
set MODE = RETURNING {
MODE = ACTIVE
RETURN = true
}
set MODE = LOITERING {
MODE = ACTIVE
LOITER = true
}
//----------------------------------------------
Behavior = BHV_Loiter
{
name = bhv_loiter
pwt = 100
condition = MODE==LOITERING
speed = 2.5
clockwise = true
radius = 8
nm_radius = 20
acquire_dist = 12
polygon = label,A : 40,-270:60,-290:100,-290:120,-270:120,-180:100,-160:60,-160:40,-180
}
//----------------------------------------------
Behavior = BHV_Waypoint
{
name = bhv_waypoint
pwt = 100
condition = MODE==RETURNING
speed = 2.5
points = $(START_POS)
}