A game created for the Godot Wild Jam #21
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

136 lines
3.5KB

  1. extends Node2D
  2. const ANIM_RATE_DEFAULT = 3.5
  3. const ANIM_RATE_AGGRESSIVE = 6.0
  4. const ANIM_RATE_CONTENT = 1.0
  5. const EXCITEMENT_MIN_SPEED = 150
  6. const EXCITEMENT_MAX_SPEED = 350
  7. # Mood = r: <aggression>, g: <neediness>, b: <contentment>
  8. # <aggression> Affects how strong a players push is and how strong the player's collision with the world will be.
  9. # <neediness> Affects how quickly and strongly the player will follow the mouse
  10. # <contentment> Affects how slowly mood color is shifted back to neutral and widens comfort distance
  11. var _mood = Color.black
  12. onready var _spr = get_parent().get_node("Sprite")
  13. onready var _body_radius = get_parent().get_node("CollisionShape2D").shape.radius
  14. func adjust_mood(r, g, b):
  15. _mood.r = clamp(_mood.r + r, 0.0, 1.0)
  16. _mood.g = clamp(_mood.g + g, 0.0, 1.0)
  17. _mood.b = clamp(_mood.b + b, 0.0, 1.0)
  18. _spr.material.set_shader_param("cell_color", _mood);
  19. if is_aggressive():
  20. _spr.material.set_shader_param("cell_energy", ANIM_RATE_AGGRESSIVE)
  21. elif is_content():
  22. _spr.material.set_shader_param("cell_energy", ANIM_RATE_CONTENT)
  23. else:
  24. _spr.material.set_shader_param("cell_energy", ANIM_RATE_DEFAULT)
  25. func adjust_mood_from_color(c):
  26. if c.r != c.g or c.r != c.b: # Only adjust mood if not all values are the same.
  27. # Even if not all the same, there must be a single dominant color for mood to be adjusted.
  28. if c.r > c.g and c.r > c.b:
  29. adjust_mood(0.25, 0.0, 0.0)
  30. if c.g > c.r and c.g > c.b:
  31. adjust_mood(0.0, 0.25, 0.0)
  32. if c.b > c.r and c.b > c.g:
  33. adjust_mood(0.0, 0.0, 0.25)
  34. func is_aggressive():
  35. return _mood.r > _mood.g and _mood.r > _mood.b
  36. func is_needie():
  37. return _mood.g > _mood.r and _mood.g > _mood.b
  38. func is_content():
  39. return _mood.b > _mood.r and _mood.b > _mood.g
  40. func get_aggression():
  41. return _mood.r
  42. func get_need():
  43. return _mood.g
  44. func get_contentment():
  45. return _mood.b
  46. func get_comfort_distance():
  47. return get_parent().get_node("CollisionShape2D").shape.radius * 1.1
  48. func get_mood_color():
  49. return _mood
  50. func shift_mood(delta, in_air, speed, distance):
  51. var nr = 0.0
  52. var ng = 0.0
  53. var nb = 0.0
  54. if in_air:
  55. if speed >= EXCITEMENT_MIN_SPEED:
  56. if speed >= EXCITEMENT_MAX_SPEED:
  57. nr += 0.1
  58. else:
  59. nr += 0.05
  60. else:
  61. nr -= 0.1
  62. nb += 0.05
  63. # first handle red (aggression)
  64. if _mood.r > 0:
  65. if _mood.b > 0.0:
  66. if _mood.b >= _mood.r * 0.5:
  67. nr += -0.1
  68. if _mood.b < _mood.r * 0.5:
  69. nr += -0.05
  70. if _mood.r > _mood.b:
  71. nr += 0.05
  72. nr *= delta
  73. # Then handle green <neediness>
  74. # green <neediness> is based on how far the mouse is from the player. The greater the distance
  75. # the more <neediness> grows. This can be affected by <contentment> and <aggression> as well.
  76. var cdist = get_comfort_distance()
  77. if not in_air:
  78. if is_content():
  79. if distance <= cdist:
  80. ng += -0.1
  81. elif distance < (cdist * 0.5):
  82. ng += -0.05
  83. elif is_needie():
  84. if distance <= cdist:
  85. ng += -0.05
  86. elif distance >= (cdist * 0.5):
  87. ng += 0.1
  88. else:
  89. ng += 0.05
  90. elif is_aggressive():
  91. # If player is <aggressive>, then neediness is kinda forgotten about.
  92. if _mood.r > 0.25 and _mood.r < 0.5:
  93. ng += -0.05
  94. elif _mood.r >= 0.5:
  95. ng += -0.15
  96. else:
  97. if distance > cdist:
  98. ng += 0.05
  99. ng *= delta
  100. # Finally handle blue <contentment>
  101. # If red <aggression> is half as high or more than blue <contentment>, then contentment goes down.
  102. if _mood.r >= _mood.b * 0.5:
  103. nb += -0.1
  104. elif _mood.g > 0.0:
  105. nb += -0.025
  106. if distance < cdist:
  107. nb += 0.015
  108. else:
  109. nb += -0.1
  110. nb *= delta
  111. # Finalize changes!
  112. adjust_mood(nr, ng, nb)