-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsphereCastToObject1.cs
More file actions
188 lines (144 loc) · 6.22 KB
/
sphereCastToObject1.cs
File metadata and controls
188 lines (144 loc) · 6.22 KB
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
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityPhysics
{
[TaskCategory("Basic/Physics")]
[TaskDescription("Has a different end object/target.")]
[HelpURL("http://www.opsive.com/assets/BehaviorDesigner/documentation.php?id=117")]
public class sphereCastToObject1 : Conditional
{
[Tooltip("Start ray at game object position. \nOr use From Position parameter.")]
public SharedGameObject fromGameObject;
[Tooltip("Start ray at a vector3 world position. \nOr use Game Object parameter.")]
public SharedVector3 fromPosition;
[Tooltip("The radius of the shpere.")]
public SharedFloat radius;
[Tooltip("A vector3 direction vector")]
public SharedVector3 direction;
public SharedGameObject target;
[Tooltip("A Target Object for the direction. Overrides Direction if used.")]
public SharedGameObject endObject;
[Tooltip("Cast the ray in world or local space. Note if no Game Object is specfied, the direction is in world space.")]
public Space space;
[Tooltip("The length of the ray. Set to -1 for infinity.")]
public SharedFloat distance;
[Tooltip("Set to true to ignore colliders set to trigger.")]
public SharedBool ignoreTriggerColliders;
public SharedFloat hitDistance;
[Tooltip("Set how often to cast a ray. 0 = once, don't repeat; 1 = everyFrame; 2 = every other frame... \nSince raycasts can get expensive use the highest repeat interval you can get away with.")]
public SharedInt repeatInterval;
[Tooltip("Pick only from these layers.")]
public LayerMask layerMask;
[Tooltip("The color to use for the debug line.")]
public SharedColor debugColor;
[Tooltip("Draw a debug line. Note: Check Gizmos in the Game View to see it in game.")]
public SharedBool debug;
int repeat;
GameObject storeHitObject;
public override TaskStatus OnUpdate()
{
repeat = repeatInterval.Value;
if (distance.Value == 0)
{
Debug.Log("distanc == 0");
return TaskStatus.Failure;
}
var goFr = fromGameObject.Value.gameObject;
var originPos = goFr != null ? goFr.transform.position : fromPosition.Value;
var rayLength = Mathf.Infinity;
var goTo = endObject.Value;
var dirVector = direction.Value;
var next = true;
if (distance.Value > 0)
{
rayLength = distance.Value;
}
if (goTo != null)
{
dirVector = goTo.transform.position - originPos;
next = false;
}
if (goFr != null && space == Space.Self && next)
{
dirVector = goFr.transform.TransformDirection(direction.Value);
}
if (endObject.Value.activeInHierarchy != true)
{
//Debug.Log("end object not active");
return TaskStatus.Failure;
}
rayLength = Vector3.Distance(goFr.gameObject.transform.position, goTo.gameObject.transform.position);
RaycastHit hitInfo;
if (ignoreTriggerColliders.Value == true)
{
Physics.SphereCast(originPos, radius.Value, dirVector, out hitInfo, rayLength, layerMask, QueryTriggerInteraction.Ignore);
if (hitInfo.collider.gameObject != null)
{
storeHitObject = hitInfo.collider.gameObject;
hitDistance.Value = hitInfo.distance;
//Debug.Log(storeHitObject);
//Debug.Log(target.Value);
} else
{
//Debug.Log("NO HIT COLLIDERS line 117");
return TaskStatus.Failure;
}
} else
{
Physics.SphereCast(originPos, radius.Value, dirVector, out hitInfo, rayLength, layerMask, QueryTriggerInteraction.Collide);
if (hitInfo.collider != null)
{
storeHitObject = hitInfo.collider.gameObject;
hitDistance.Value = hitInfo.distance;
//Debug.Log(storeHitObject);
//Debug.Log(target.Value);
} else
{
//Debug.Log(storeHitObject);
//Debug.Log(target.Value);
return TaskStatus.Failure;
}
}
var didHit = hitInfo.collider != null;
if (didHit && storeHitObject == target.Value)
{
//return success
return TaskStatus.Success;
}
if (didHit && storeHitObject != target.Value)
{
//Debug.Log(storeHitObject);
//Debug.Log(target.Value);
return TaskStatus.Failure;
}
if (!didHit)
{
//Debug.Log("NO HIT");
return TaskStatus.Failure;
//return failure
}
if (debug.Value && next)
{
var debugRayLength = Mathf.Min(rayLength, 1000);
Debug.DrawLine(originPos, originPos + dirVector * debugRayLength, debugColor.Value);
}
if (debug.Value && !next)
{
var debugRayLength = Mathf.Min(rayLength, 1000);
var d = (goTo.transform.position - originPos).normalized * debugRayLength + originPos;
Debug.DrawLine(originPos, d, debugColor.Value);
}
//Debug.Log("END OF LINE 172");
return TaskStatus.Failure;
}
public override void OnReset()
{
fromGameObject = null;
fromPosition = Vector3.zero;
radius = 0;
direction = Vector3.zero;
distance = -1;
layerMask = -1;
space = Space.Self;
}
}
}