A game created for the Godot Wild Jam #21
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

100 行
2.8KB

  1. extends RigidBody2D
  2. export var max_distance = 64
  3. export var max_tangential_accel = 32
  4. export var max_travel_time = 2.0
  5. export var push_force = 128
  6. export var collision_minor_speed_threshold = 8
  7. export var collision_major_speed_threshold = 32
  8. export var collision_timedt_threshold = 0.1
  9. var body_radius = 0
  10. var mouse_position = Vector2.ZERO
  11. var mouse_down = false
  12. var push = false
  13. var traveling = 0;
  14. var in_air = true
  15. var air_time = 0
  16. var last_speed = 0
  17. # Called when the node enters the scene tree for the first time.
  18. func _ready():
  19. set_process(true)
  20. set_physics_process(true)
  21. set_process_input(true)
  22. body_radius = $CollisionShape2D.shape.radius
  23. func _input(event):
  24. if event is InputEventMouseMotion:
  25. mouse_position = get_global_mouse_position()
  26. if Input.is_action_just_pressed("ButtonA"):
  27. mouse_down = true
  28. elif Input.is_action_just_released("ButtonA"):
  29. mouse_down = false
  30. push = true
  31. func _physics_process(delta):
  32. if mouse_down:
  33. return # We don't follow the mouse or move the squiq when mouse is down.
  34. if push:
  35. push = false
  36. traveling = max_travel_time
  37. var v_direction = (position - mouse_position).normalized()
  38. apply_central_impulse(v_direction * abs(v_direction.length()) * push_force)
  39. elif in_air:
  40. air_time += delta
  41. else:
  42. var distance = clamp(mouse_position.x - position.x, -max_distance, max_distance)
  43. var dpercent = distance / max_distance
  44. if abs(distance) > body_radius:
  45. var v_horizontal = Physics2DServer.area_get_param(get_world_2d().get_space(), Physics2DServer.AREA_PARAM_GRAVITY_VECTOR).rotated(deg2rad(-90))
  46. $Particles.process_material.tangential_accel = dpercent * max_tangential_accel;
  47. apply_central_impulse(v_horizontal * distance * delta)
  48. else:
  49. $Particles.process_material.tangential_accel = 0
  50. last_speed = linear_velocity.length()
  51. #print(last_speed)
  52. func _process(delta):
  53. update()
  54. func _draw():
  55. if mouse_down:
  56. var distance = min(position.distance_to(mouse_position), max_distance)
  57. var v_direction = (position - mouse_position).normalized().rotated(-rotation)
  58. var v_start = v_direction * body_radius
  59. var v_end = v_direction * distance
  60. var v_tipA = v_end - (v_direction.rotated(deg2rad(30)) * min(distance, 16))
  61. var v_tipB = v_end - (v_direction.rotated(-deg2rad(30)) * min(distance, 16))
  62. var c_line = Color(0.25, 1.0, 0.0)
  63. draw_line(v_start, v_end, c_line)
  64. draw_line(v_end, v_tipA, c_line)
  65. draw_line(v_end, v_tipB, c_line)
  66. func _on_Player_body_entered(body):
  67. in_air = false
  68. #print(linear_velocity)
  69. if air_time > collision_timedt_threshold:
  70. var lvlen = linear_velocity.length()
  71. if lvlen >= collision_minor_speed_threshold and lvlen < collision_major_speed_threshold:
  72. print("ooOF")
  73. elif lvlen >= collision_major_speed_threshold:
  74. print("Oooooch!")
  75. air_time = 0
  76. func _on_Player_body_exited(body):
  77. in_air = true
  78. print("I'm flying!")