aboutsummaryrefslogtreecommitdiff
path: root/src/addons/rmsmartshape/RMSmartShapeAnchor2D.gd
blob: bc817cd493f5b95b4686d84599ef5c2971f64553 (plain)
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
tool
extends Node2D

class_name RMSmartShapeAnchor2D, "./assets/LEGACY_shape_anchor.png"

export (NodePath) var monitored_shape setget _set_monitored_shape
export (int) var track_control_point setget _set_track_control_point
export (float) var normal_length = 100.0 setget _set_normal_length
export (float, -1.0, 1.0) var control_point_offset setget _set_control_point_offset
export (float, -3.14159, 3.14159) var rotation_offset = 0 setget _set_rotation_offset
export (bool) var copy_scale = false setget _set_copy_scale

var connected = false

var monitored_transform

func _process(delta):
	if monitored_shape != null and monitored_shape == "":
		_set_monitored_shape(null)
		return

	# Cannot connect until node is in tree
	if connected == false and monitored_shape != null:
		_set_monitored_shape(monitored_shape)

	# Watch for changes to attached node
	if monitored_shape != null:
		if has_node(monitored_shape):
			var n = get_node(monitored_shape)
			if n.is_queued_for_deletion()==false:
				if n.get_global_transform() != monitored_transform:
					refresh()
					monitored_transform = n.get_global_transform()
					
func _cubic_bezier(p0: Vector2, p1: Vector2, p2: Vector2, p3: Vector2, t: float):
	var q0 = p0.linear_interpolate(p1, t)
	var q1 = p1.linear_interpolate(p2, t)
	var q2 = p2.linear_interpolate(p3, t)

	var r0 = q0.linear_interpolate(q1, t)
	var r1 = q1.linear_interpolate(q2, t)

	var s = r0.linear_interpolate(r1, t)
	return s

func _set_monitored_shape(value):
	if value == null and monitored_shape != null:
		if has_node(monitored_shape):
			get_node(monitored_shape).disconnect("points_modified", self, "_handle_point_change")
			get_node(monitored_shape).disconnect("tree_exiting", self, "_monitored_node_leaving")
		connected = false

	if value=="":
		value = null

	if value != null:
		if has_node(value):
			get_node(value).connect("points_modified", self, "_handle_point_change")
			connected = get_node(value).is_connected("points_modified", self, "_handle_point_change")
			get_node(value).connect("tree_exiting", self, "_monitored_node_leaving")

	monitored_shape = value
	refresh()

func _monitored_node_leaving():
	_set_monitored_shape(null)

func _set_copy_scale(value):
	copy_scale = value
	refresh()

func _set_rotation_offset(value):
	rotation_offset = value
	refresh()

func _set_track_control_point(value):
	if value==track_control_point:
		return

	if monitored_shape==null:
		return

	if has_node(monitored_shape) == true:
		var node = get_node(monitored_shape)
		if node.is_closed_shape():
			if value>node.get_point_count()-2:
				value = 0
			if value<0:
				value = node.get_point_count()-2
		else:
			if value>=node.get_point_count():
				value = 0
			if value<0:
				value = node.get_point_count()-1

	track_control_point = value
	refresh()

	_set_control_point_offset(control_point_offset)

func _set_normal_length(value):
	normal_length = value
	refresh()

func _set_control_point_offset(value):
	if has_node(monitored_shape):
		var node = get_node(monitored_shape)
		if not node.is_closed_shape():
			if track_control_point==0 and value<0:
				value = 0.001
				property_list_changed_notify()
			if track_control_point==node.get_point_count()-1 and value>0:
				value = -0.001
				property_list_changed_notify()

	control_point_offset = value
	refresh()

func _handle_point_change():
	refresh()

func refresh():
	if monitored_shape != null:
		if has_node(monitored_shape) == true:
			var node = get_node(monitored_shape)
			if is_instance_valid(node) == false:
				return
			if node.is_queued_for_deletion() == true:
				node.disconnect("points_modified", self, "_handle_point_change")
				return

			var point_count = node.get_point_count()
			#print("RMSmartShapeAnchor2D::refresh Point Count: %s" %s point_count)
			var pt_a_index = track_control_point + point_count
			var pt_b_index = track_control_point + point_count + 1
			
			if control_point_offset < 0:
				pt_b_index -= 2
			
			if control_point_offset < 0:
				pt_b_index = pt_a_index - 1

			if node.is_closed_shape():
				if (track_control_point % point_count) == 0:
					if control_point_offset < 0:
						pt_b_index = point_count - 2

			# fixup indexes by wrapping if necessary
			#if pt_b_index < 0:
				#pt_b_index = node.get_point_count() - pt_b_index

			pt_a_index = pt_a_index % node.get_point_count()
			pt_b_index = pt_b_index % node.get_point_count()

			var pt_a:Vector2 = node.global_transform.xform( node.get_point_position(pt_a_index) )
			var pt_b:Vector2 = node.global_transform.xform( node.get_point_position(pt_b_index) )
			
			# might need to know the direction of the shape before determining which in/out
			# is needed.
			var pt_a_handle:Vector2
			var pt_b_handle:Vector2

			var n_pt:Vector2
			var n_pt_a:Vector2
			var n_pt_b:Vector2
			
			var angle = 0.0

			if (control_point_offset >= 0):
				pt_a_handle = node.global_transform.xform( node.get_point_position(pt_a_index) + node.get_point_out(pt_a_index))
				pt_b_handle = node.global_transform.xform( node.get_point_position(pt_b_index) + node.get_point_in(pt_b_index))
				
				n_pt = _cubic_bezier(pt_a, pt_a_handle, pt_b_handle, pt_b, control_point_offset)
				n_pt_a = _cubic_bezier(pt_a, pt_a_handle, pt_b_handle, pt_b, clamp(control_point_offset-0.1,0.0,1.0))
				n_pt_b = _cubic_bezier(pt_a, pt_a_handle, pt_b_handle, pt_b, clamp(control_point_offset+0.1,0.0,1.0))

				angle = atan2(n_pt_a.y - n_pt_b.y, n_pt_a.x - n_pt_b.x)
			else:
				pt_a_handle = node.global_transform.xform( node.get_point_position(pt_a_index) + node.get_point_in(pt_a_index))
				pt_b_handle = node.global_transform.xform( node.get_point_position(pt_b_index) + node.get_point_out(pt_b_index))
				
				n_pt = _cubic_bezier(pt_a, pt_a_handle, pt_b_handle, pt_b, -control_point_offset)
				n_pt_a = _cubic_bezier(pt_a, pt_a_handle, pt_b_handle, pt_b, clamp(-control_point_offset-0.1,0.0,1.0))
				n_pt_b = _cubic_bezier(pt_a, pt_a_handle, pt_b_handle, pt_b, clamp(-control_point_offset+0.1,0.0,1.0))

				angle = atan2(n_pt_b.y - n_pt_a.y, n_pt_b.x - n_pt_a.x)

			self.global_transform = Transform2D(angle + rotation_offset, n_pt)

			if copy_scale == true:
				self.scale = node.scale

	update()

func _draw():
	if Engine.editor_hint == true:
		draw_line(Vector2.ZERO, Vector2(0,-normal_length), self.modulate)