A game created for the Godot Wild Jam #21
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 line
5.1KB

  1. extends RigidBody2D
  2. const COLLISION_MINOR_SPEED_THRESHOLD = 150
  3. const COLLISION_MAJOR_SPEED_THRESHOLD = 400
  4. const COLLISION_TIMEDT_THRESHOLD = 0.1
  5. # The maximum distance from the player in which the mouse will adjust the push force.
  6. # at max_mouse_distance the full base_push_force <+ modifiers> will be applied.
  7. var max_mouse_distance = 128
  8. # The base tangential acceleration that will be applied to the particles to give the
  9. # player the illusion it's trying to move on it's own. This is just effects things visually (ATM)
  10. export var base_tangential_accel = 32 setget _set_base_tangential_accel
  11. # The base force applied when being pushed.
  12. export var base_push_force = 64 setget _set_base_push_force
  13. var neutral_rim = Color(0.9, 0.9, 0.9, 1.0)
  14. var mouse_position = Vector2.ZERO
  15. var mouse_down = false
  16. var push = false
  17. var in_air = true
  18. var air_time = 0
  19. var last_speed = 0
  20. func set_colors(prime, alt):
  21. $Sprite.material.set_shader_param("rim_color", alt);
  22. $Particles.process_material.color = alt
  23. if alt.r > alt.g and alt.r > alt.b:
  24. _set_color_collision_mask(1)
  25. elif alt.g > alt.r and alt.g > alt.b:
  26. _set_color_collision_mask(2)
  27. elif alt.b > alt.r and alt.b > alt.g:
  28. _set_color_collision_mask(3)
  29. else:
  30. # This should reset all of the collision masks to ON!
  31. _set_color_collision_mask(0)
  32. $Mood.adjust_mood_from_color(prime)
  33. func get_colors():
  34. return {
  35. "prime": $Sprite.material.get_shader_param("cell_color"),
  36. "alt": $Sprite.material.get_shader_param("rim_color")
  37. };
  38. func get_tangential_acceleration():
  39. return base_tangential_accel * $Mood.get_need()
  40. func get_push_force():
  41. var dist = (position - mouse_position).length() - get_body_radius()
  42. if dist <= 0.0:
  43. return 0.0
  44. var push = base_push_force * (dist / (max_mouse_distance))
  45. var agg = $Mood.get_aggression()
  46. var con = $Mood.get_contentment()
  47. if agg > con:
  48. if agg > 0.1 and agg < 0.5:
  49. push *= 1.25
  50. elif agg >= 0.5:
  51. push *= 1.5
  52. elif $Mood.is_aggressive():
  53. push *= 2
  54. elif con > agg:
  55. if con > 0.1 and con < 0.5:
  56. push *= 0.75
  57. elif con >= 0.5:
  58. push *= 0.5
  59. return push
  60. func get_body_radius():
  61. return $CollisionShape2D.shape.radius
  62. func _set_color_collision_mask(id):
  63. set_collision_mask_bit(10, true)
  64. set_collision_mask_bit(11, true)
  65. set_collision_mask_bit(12, true)
  66. if id >= 1 and id <= 3:
  67. set_collision_mask_bit(9 + id, false)
  68. func _set_base_tangential_accel(v):
  69. base_tangential_accel = max(1.0, v)
  70. func _set_base_push_force(v):
  71. base_push_force = max(1.0, v)
  72. # Called when the node enters the scene tree for the first time.
  73. func _ready():
  74. set_process(true)
  75. set_physics_process(true)
  76. set_process_input(true)
  77. $Sprite.material.set_shader_param("rim_color", neutral_rim);
  78. $Particles.process_material.color = neutral_rim
  79. func _input(event):
  80. if Input.is_action_just_pressed("ButtonA"):
  81. mouse_down = true
  82. elif Input.is_action_just_released("ButtonA"):
  83. mouse_down = false
  84. push = true
  85. func _physics_process(delta):
  86. mouse_position = get_global_mouse_position()
  87. if mouse_down:
  88. return # We don't follow the mouse or move the squiq when mouse is down.
  89. if push:
  90. push = false
  91. var v_direction = (position - mouse_position).normalized()
  92. apply_central_impulse(v_direction * v_direction.length() * get_push_force())
  93. elif in_air:
  94. air_time += delta
  95. else:
  96. var distance = clamp(mouse_position.x - position.x, -max_mouse_distance, max_mouse_distance)
  97. var dpercent = distance / max_mouse_distance
  98. if !$Mood.is_content() and abs(distance) > get_body_radius():
  99. var v_horizontal = Physics2DServer.area_get_param(get_world_2d().get_space(), Physics2DServer.AREA_PARAM_GRAVITY_VECTOR).rotated(deg2rad(-90))
  100. $Particles.process_material.tangential_accel = dpercent * get_tangential_acceleration();
  101. apply_central_impulse(v_horizontal * distance * $Mood.get_need() * delta)
  102. else:
  103. $Particles.process_material.tangential_accel = 0
  104. $Mood.shift_mood(delta, in_air, last_speed, (position - mouse_position).length())
  105. last_speed = linear_velocity.length()
  106. func _process(delta):
  107. update()
  108. func _draw():
  109. if mouse_down:
  110. var distance = min(position.distance_to(mouse_position), max_mouse_distance)
  111. var v_direction = (position - mouse_position).normalized().rotated(-rotation)
  112. var v_start = v_direction * get_body_radius()
  113. var v_end = v_direction * distance
  114. var v_tipA = v_end - (v_direction.rotated(deg2rad(30)) * min(distance, 16))
  115. var v_tipB = v_end - (v_direction.rotated(-deg2rad(30)) * min(distance, 16))
  116. var c_line = Color(0.25, 1.0, 0.0)
  117. draw_line(v_start, v_end, c_line)
  118. draw_line(v_end, v_tipA, c_line)
  119. draw_line(v_end, v_tipB, c_line)
  120. func _on_Player_body_entered(body):
  121. in_air = false
  122. #print(linear_velocity)
  123. if air_time > COLLISION_TIMEDT_THRESHOLD:
  124. #var lvlen = linear_velocity.length()
  125. #print("Last Speed: ", last_speed)
  126. if last_speed >= COLLISION_MINOR_SPEED_THRESHOLD and last_speed < COLLISION_MAJOR_SPEED_THRESHOLD:
  127. $Mood.adjust_mood(0.1, 0.0, -0.1)
  128. $Camera/ScreenShake.start()
  129. elif last_speed >= COLLISION_MAJOR_SPEED_THRESHOLD:
  130. $Mood.adjust_mood(0.25, 0.0, -0.25)
  131. $Camera/ScreenShake.start(0.4, 15, 24)
  132. air_time = 0
  133. func _on_Player_body_exited(body):
  134. in_air = true