A game created for the Godot Wild Jam #21
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

96 rindas
2.7KB

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