Forráskód Böngészése

:tada: Make the player go to the mouse click

DricomDragon 2 éve
szülő
commit
494a10a5e7
2 módosított fájl, 40 hozzáadás és 11 törlés
  1. 1 1
      godot/Main.tscn
  2. 39 10
      godot/Player.gd

+ 1 - 1
godot/Main.tscn

@@ -56,7 +56,7 @@ stream = ExtResource( 6 )
 stream = ExtResource( 7 )
 [connection signal="timeout" from="Main/MobTimer" to="Main" method="_on_MobTimer_timeout"]
 [connection signal="timeout" from="Main/ScoreTimer" to="Main" method="_on_ScoreTimer_timeout"]
-[connection signal="timeout" from="Main/StartTimer" to="Main" method="_on_StartTimer_timeout"]
 [connection signal="timeout" from="Main/StartTimer" to="Main/Player" method="spawn"]
+[connection signal="timeout" from="Main/StartTimer" to="Main" method="_on_StartTimer_timeout"]
 [connection signal="hit" from="Main/Player" to="Main" method="game_over"]
 [connection signal="start_game" from="Main/HUD" to="Main" method="new_game"]

+ 39 - 10
godot/Player.gd

@@ -4,6 +4,8 @@ signal hit
 
 export var speed = 400 # pixel / sec
 var screen
+var target = Vector2()
+var target_reached = true
 
 func spawn(atPos):
 	position = atPos
@@ -18,16 +20,10 @@ func _ready():
 	screen = get_viewport_rect()
 
 func _process(delta):
-	var velocity = Vector2()
-	if Input.is_action_pressed("ui_right"):
-		velocity.x += 1
-	if Input.is_action_pressed("ui_left"):
-		velocity.x -= 1
-	if Input.is_action_pressed("ui_down"):
-		velocity.y += 1
-	if Input.is_action_pressed("ui_up"):
-		velocity.y -= 1
-		
+	var velocity = get_velocity_from_action()
+	if velocity == Vector2.ZERO :
+		velocity = get_velocity_from_target(delta)
+
 	if velocity.length() > 0:
 		velocity = velocity.normalized() * speed
 		$AnimatedSprite.play()
@@ -48,7 +44,40 @@ func _process(delta):
 		$AnimatedSprite.flip_v = velocity.y > 0
 
 
+func _input(event):
+	if event is InputEventMouseButton:
+		print("Mouse click : ", event.button_index, " at ", event.position)
+		target = event.position
+		target_reached = false
+
+
 func _on_Player_body_entered(body):
 	die()
 	emit_signal("hit")
 	$CollisionShape2D.set_deferred("disabled", true)
+
+func get_velocity_from_action() -> Vector2:
+	var velocity = Vector2()
+
+	if Input.is_action_pressed("ui_right"):
+		velocity.x += 1
+	if Input.is_action_pressed("ui_left"):
+		velocity.x -= 1
+	if Input.is_action_pressed("ui_down"):
+		velocity.y += 1
+	if Input.is_action_pressed("ui_up"):
+		velocity.y -= 1
+
+	return velocity;
+
+func get_velocity_from_target(delta):
+	print("Try target")
+	if target_reached :
+		return Vector2.ZERO
+	var path = target - position
+	print("Go that way : ", path)
+	if path.length_squared() < speed * speed * delta * delta :
+		print("Reached")
+		target_reached = true
+
+	return path