summaryrefslogtreecommitdiff
path: root/src/entities/actors/snake/snake.gd
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2022-05-30 02:05:19 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2022-05-30 02:05:19 -0600
commit0aa26dc19da1c8907cd69d18b423c33f351d3f2f (patch)
tree1f66ccb21df5d7cd508e50be7b4fe97fe400c580 /src/entities/actors/snake/snake.gd
parent8165182a3ec840726eaa75678ea23f7ef8e6938e (diff)
working path2d with only the head, need to figure out the segments part
Diffstat (limited to 'src/entities/actors/snake/snake.gd')
-rw-r--r--src/entities/actors/snake/snake.gd90
1 files changed, 30 insertions, 60 deletions
diff --git a/src/entities/actors/snake/snake.gd b/src/entities/actors/snake/snake.gd
index 553309b..7da829c 100644
--- a/src/entities/actors/snake/snake.gd
+++ b/src/entities/actors/snake/snake.gd
@@ -1,73 +1,43 @@
class_name Snake
-extends KinematicBody2D
+extends Node2D
-export(float, 10.0, 1000.0, 10.0) var SPEED: float = 100.0
+export(float, 1.0, 1000.0, 1.0) var SPEED: float = 100.0
+export(float, 1.0, 1000.0, 1.0) var ROT_SPEED: float = 200.0
+export(float, 0.01, 1.0, 0.01) var POSITION_UPDATE_INTERVAL: float = 0.01
+export(PackedScene) var BODY_SEGMENT_NP: PackedScene
-var velocity: Vector2 = Vector2.ZERO
+onready var head: Node2D = $Head
+onready var path: Path2D = $Path
+onready var path_follow: PathFollow2D = $Path/PathFollow
+onready var curve: Curve2D = Curve2D.new()
-enum {
- NULL=-1,
- UP,
- DOWN,
- LEFT,
- RIGHT
-}
-var direction: Dictionary = {
- UP: Vector2.UP,
- DOWN: Vector2.DOWN,
- LEFT: Vector2.LEFT,
- RIGHT: Vector2.RIGHT
-}
+func _ready():
+ Event.connect("new_curve_point", self, "_on_Head_new_curve_point")
+ path.curve = curve
+ head.speed = SPEED
+ head.rot_speed = ROT_SPEED
+ head.position_update_interval = POSITION_UPDATE_INTERVAL
+ set_process(false)
-var _direction_state: int = UP
-var _input_direction: int = NULL
+func _process(delta: float) -> void:
+ path_follow.set_offset(path_follow.get_offset() + SPEED * delta)
-func _physics_process(delta: float) -> void:
- _input_direction = _get_direction_input()
- match _direction_state:
- NULL:
- print("No input detected, not changing direction.")
- UP:
- if _input_direction == LEFT or _input_direction == RIGHT:
- _change_direction_to(_input_direction)
- DOWN:
- if _input_direction == LEFT or _input_direction == RIGHT:
- _change_direction_to(_input_direction)
- LEFT:
- if _input_direction == UP or _input_direction == DOWN:
- _change_direction_to(_input_direction)
- RIGHT:
- if _input_direction == UP or _input_direction == DOWN:
- _change_direction_to(_input_direction)
+func _draw() -> void:
+ if path.curve.get_baked_points().size() >= 2:
+ draw_polyline(path.curve.get_baked_points(), Color.aquamarine, 1, true)
- move_and_slide(SPEED * direction[_direction_state], Vector2.ZERO, false, 4, PI/4, false)
+func add_point_to_curve(coordinates: Vector2) -> void:
+ path.curve.add_point(coordinates)
+ # need at least 2 points to enable processing (sprite move)
+ if not is_processing() and path.curve.get_baked_points().size() >= 2:
+ set_process(true)
+ # update call is to draw curve
+ update()
-func _change_direction_to(new_direction: int) -> void:
- _direction_state = new_direction
- match _direction_state:
- UP:
- rotation = 0
- DOWN:
- rotation = PI
- LEFT:
- rotation = -PI/2
- RIGHT:
- rotation = PI/2
-
-
-func _get_direction_input() -> int:
- if Input.is_action_pressed("move_up"):
- return UP
- elif Input.is_action_pressed("move_down"):
- return DOWN
- elif Input.is_action_pressed("move_left"):
- return LEFT
- elif Input.is_action_pressed("move_right"):
- return RIGHT
-
- return NULL
+func _on_Head_new_curve_point(coordinates: Vector2) -> void:
+ add_point_to_curve(coordinates)