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.

261 lines
8.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. const ANIM_RATE_DEFAULT = 3.5
  6. const ANIM_RATE_AGGRESSIVE = 6.0
  7. const ANIM_RATE_CONTENT = 1.0
  8. # The maximum distance from the player in which the mouse will adjust the push force.
  9. # at max_mouse_distance the full base_push_force <+ modifiers> will be applied.
  10. var max_mouse_distance = 256
  11. # The maximum the mouse can be from the player before player becomes "uncomfortable"
  12. var max_comfort_distance = 10
  13. # The base tangential acceleration that will be applied to the particles to give the
  14. # player the illusion it's trying to move on it's own. This is just effects things visually (ATM)
  15. export var base_tangential_accel = 32 setget _set_base_tangential_accel
  16. # The base force applied when being pushed.
  17. export var base_push_force = 128 setget _set_base_push_force
  18. # Mood = r: <aggression>, g: <neediness>, b: <contentment>
  19. # <aggression> Affects how strong a players push is and how strong the player's collision with the world will be.
  20. # <neediness> Affects how quickly and strongly the player will follow the mouse
  21. # <contentment> Affects how slowly mood color is shifted back to neutral and widens comfort distance
  22. var mood = Color.black
  23. var neutral_rim = Color(0.9, 0.9, 0.9, 1.0)
  24. var mouse_position = Vector2.ZERO
  25. var mouse_down = false
  26. var push = false
  27. var in_air = true
  28. var air_time = 0
  29. var last_speed = 0
  30. func set_colors(prime, alt):
  31. if alt.r != alt.g or alt.r != alt.b:
  32. # only change the rim if there's a single dominant color.
  33. $Sprite.material.set_shader_param("rim_color", alt);
  34. $Particles.process_material.color = alt
  35. if prime.r != prime.g or prime.r != prime.b: # Only adjust mood if not all values are the same.
  36. # Even if not all the same, there must be a single dominant color for mood to be adjusted.
  37. if prime.r > prime.g and prime.r > prime.b:
  38. mood.r = clamp(mood.r + 0.25, 0.0, 1.0)
  39. if prime.g > prime.r and prime.g > prime.b:
  40. mood.g = clamp(mood.g + 0.25, 0.0, 1.0)
  41. if prime.b > prime.r and prime.b > prime.g:
  42. mood.b = clamp(mood.b + 0.25, 0.0, 1.0)
  43. $Sprite.material.set_shader_param("cell_color", mood);
  44. func get_colors():
  45. return {
  46. "prime": $Sprite.material.get_shader_param("cell_color"),
  47. "alt": $Sprite.material.get_shader_param("rim_color")
  48. };
  49. func is_aggressive():
  50. return mood.r > mood.g and mood.r > mood.b
  51. func is_needie():
  52. return mood.g > mood.r and mood.g > mood.b
  53. func is_content():
  54. return mood.b > mood.r and mood.b > mood.g
  55. func get_tangential_acceleration():
  56. return get_discomfort_adjustment(base_tangential_accel)
  57. func get_push_force():
  58. var push = base_push_force
  59. if mood.r > mood.b:
  60. if mood.r > 0.1 and mood.r < 0.5:
  61. push *= 1.25
  62. elif mood.r >= 0.5:
  63. push *= 1.5
  64. elif is_aggressive():
  65. push *= 2
  66. elif mood.b > mood.r:
  67. if mood.b > 0.1 and mood.b < 0.5:
  68. push *= 0.75
  69. elif mood.b >= 0.5:
  70. push *= 0.5
  71. return push
  72. func get_discomfort_adjustment(v):
  73. if mood.g > 0.0:
  74. if is_needie():
  75. return v * 1.5
  76. elif mood.g > 0.1 and mood.g < 0.5:
  77. return v * 1.1
  78. elif mood.g >= 0.5:
  79. return v * 1.25
  80. return v
  81. func get_body_radius():
  82. return $CollisionShape2D.shape.radius
  83. func _set_base_tangential_accel(v):
  84. base_tangential_accel = max(1.0, v)
  85. func _set_base_push_force(v):
  86. base_push_force = max(1.0, v)
  87. # Called when the node enters the scene tree for the first time.
  88. func _ready():
  89. set_process(true)
  90. set_physics_process(true)
  91. set_process_input(true)
  92. max_comfort_distance = $CollisionShape2D.shape.radius
  93. $Sprite.material.set_shader_param("rim_color", neutral_rim);
  94. $Particles.process_material.color = neutral_rim
  95. func _input(event):
  96. if event is InputEventMouseMotion:
  97. mouse_position = get_global_mouse_position()
  98. if Input.is_action_just_pressed("ButtonA"):
  99. mouse_down = true
  100. elif Input.is_action_just_released("ButtonA"):
  101. mouse_down = false
  102. push = true
  103. func _shift_mood(delta):
  104. var nr = mood.r
  105. var ng = mood.g
  106. var nb = mood.b
  107. # first handle red (aggression)
  108. if mood.r > 0:
  109. var drg = mood.r - mood.g
  110. var drb = mood.r - mood.b
  111. # If the difference between red and blue is positive and more than half of reds value
  112. # then blue <contentment> reduces red <aggression>
  113. if drb > mood.r * 0.5:
  114. nr = clamp(mood.r - (0.1 * delta), 0.0, 1.0)
  115. if drg > mood.r * 0.5:
  116. nr = clamp(mood.r + (0.025 * delta), 0.0, 1.0)
  117. # Then handle green <neediness>
  118. # green <neediness> is based on how far the mouse is from the player. The greater the distance
  119. # the more <neediness> grows. This can be affected by <contentment> and <aggression> as well.
  120. var mdist = (position - mouse_position).length()
  121. var gshift = 0.0
  122. if is_content():
  123. if mdist <= max_comfort_distance:
  124. gshift = -0.1
  125. elif mdist < (max_mouse_distance * 0.5):
  126. gshift = -0.05
  127. elif is_needie():
  128. gshift = 0.05
  129. if mdist <= max_comfort_distance:
  130. gshift = -0.05
  131. elif mdist >= (max_mouse_distance * 0.5):
  132. gshift = 0.1
  133. elif is_aggressive():
  134. # If player is <aggressive>, then neediness is kinda forgotten about.
  135. if mood.r > 0.25 and mood.r < 0.5:
  136. gshift = -0.05
  137. elif mood.r >= 0.5:
  138. gshift = -0.15
  139. else:
  140. if mdist > max_comfort_distance:
  141. gshift = 0.05
  142. #print ("Green Shift: ", gshift)
  143. #print ("Distance: ", mdist)
  144. ng = clamp(mood.g + (gshift * delta), 0.0, 1.0)
  145. # Finally handle blue <contentment>
  146. # If red <aggression> is half as high or more than blue <contentment>, then contentment goes down.
  147. if mood.r >= mood.b * 0.5:
  148. nb = clamp(mood.b - (0.1 * delta), 0.0, 1.0)
  149. elif mood.g > 0.0:
  150. nb = clamp(mood.b - (0.025 * delta), 0.0, 1.0)
  151. if mdist < max_comfort_distance:
  152. nb = clamp(mood.b + (0.015 * delta), 0.0, 1.0)
  153. else:
  154. nb = clamp(mood.b - (0.1 * delta), 0.0, 1.0)
  155. # Finalize changes!
  156. mood = Color(nr, ng, nb, 1.0)
  157. $Sprite.material.set_shader_param("cell_color", mood);
  158. if is_aggressive():
  159. $Sprite.material.set_shader_param("cell_energy", ANIM_RATE_AGGRESSIVE)
  160. elif is_content():
  161. $Sprite.material.set_shader_param("cell_energy", ANIM_RATE_CONTENT)
  162. else:
  163. $Sprite.material.set_shader_param("cell_energy", ANIM_RATE_DEFAULT)
  164. func _physics_process(delta):
  165. if mouse_down:
  166. return # We don't follow the mouse or move the squiq when mouse is down.
  167. if push:
  168. push = false
  169. var v_direction = (position - mouse_position).normalized()
  170. apply_central_impulse(v_direction * abs(v_direction.length()) * get_push_force())
  171. elif in_air:
  172. air_time += delta
  173. else:
  174. var distance = clamp(mouse_position.x - position.x, -max_mouse_distance, max_mouse_distance)
  175. var dpercent = distance / max_mouse_distance
  176. if !is_content() and abs(distance) > get_body_radius():
  177. var v_horizontal = Physics2DServer.area_get_param(get_world_2d().get_space(), Physics2DServer.AREA_PARAM_GRAVITY_VECTOR).rotated(deg2rad(-90))
  178. $Particles.process_material.tangential_accel = dpercent * get_tangential_acceleration();
  179. apply_central_impulse(v_horizontal * get_discomfort_adjustment(distance) * delta)
  180. else:
  181. $Particles.process_material.tangential_accel = 0
  182. _shift_mood(delta)
  183. last_speed = linear_velocity.length()
  184. #print(last_speed)
  185. func _process(delta):
  186. update()
  187. func _draw():
  188. if mouse_down:
  189. var distance = min(position.distance_to(mouse_position), max_mouse_distance)
  190. var v_direction = (position - mouse_position).normalized().rotated(-rotation)
  191. var v_start = v_direction * get_body_radius()
  192. var v_end = v_direction * distance
  193. var v_tipA = v_end - (v_direction.rotated(deg2rad(30)) * min(distance, 16))
  194. var v_tipB = v_end - (v_direction.rotated(-deg2rad(30)) * min(distance, 16))
  195. var c_line = Color(0.25, 1.0, 0.0)
  196. draw_line(v_start, v_end, c_line)
  197. draw_line(v_end, v_tipA, c_line)
  198. draw_line(v_end, v_tipB, c_line)
  199. func _on_Player_body_entered(body):
  200. in_air = false
  201. #print(linear_velocity)
  202. if air_time > COLLISION_TIMEDT_THRESHOLD:
  203. #var lvlen = linear_velocity.length()
  204. #print("Last Speed: ", last_speed)
  205. if last_speed >= COLLISION_MINOR_SPEED_THRESHOLD and last_speed < COLLISION_MAJOR_SPEED_THRESHOLD:
  206. #print("Ooof")
  207. $Camera/ScreenShake.start()
  208. elif last_speed >= COLLISION_MAJOR_SPEED_THRESHOLD:
  209. #print("OUCH!")
  210. $Camera/ScreenShake.start(0.4, 15, 24)
  211. air_time = 0
  212. func _on_Player_body_exited(body):
  213. in_air = true