mirror of https://github.com/profan/ld-39-jam.git
60 lines
1.3 KiB
GDScript
60 lines
1.3 KiB
GDScript
extends KinematicBody2D
|
|
|
|
var ExplosionEffect = load("res://ExplosionEffect.tscn")
|
|
|
|
var rect = Rect2(0, 0, 0, 0)
|
|
var velocity = Vector2(0, 0)
|
|
var rot_vel = 0
|
|
|
|
var max_vel = 6 # pixels per second?
|
|
var max_rot_vel = 2.5 # degrees per second
|
|
var health = 100
|
|
|
|
func _ready():
|
|
randomize()
|
|
velocity.x = floor(rand_range(-max_vel, max_vel))
|
|
velocity.y = floor(rand_range(-max_vel, max_vel))
|
|
rect.size.x = floor(rand_range(32, 64))
|
|
rect.size.y = floor(rand_range(32, 64))
|
|
rect.pos.x = -rect.size.x / 2
|
|
rect.pos.y = -rect.size.y / 2
|
|
rot_vel = deg2rad(floor(rand_range(1, max_rot_vel)))
|
|
set_fixed_process(true)
|
|
|
|
func type():
|
|
return "Asteroid"
|
|
|
|
func wrap(v, v_min, v_max):
|
|
if v < v_min:
|
|
return v_max - 1
|
|
elif v > v_max:
|
|
return v_min - 1
|
|
else:
|
|
return v
|
|
|
|
func on_explode():
|
|
# create bullet impact
|
|
var new_ee = ExplosionEffect.instance()
|
|
get_tree().get_root().add_child(new_ee)
|
|
new_ee.set_global_pos(get_global_pos())
|
|
queue_free()
|
|
|
|
func do_damage(v):
|
|
health -= v
|
|
|
|
func _fixed_process(delta):
|
|
|
|
# var cur_pos = get_pos()
|
|
# cur_pos.x = wrap(cur_pos.x, 1, get_viewport().get_rect().size.x)
|
|
# cur_pos.y = wrap(cur_pos.y, 1, get_viewport().get_rect().size.y)
|
|
# set_pos(cur_pos)
|
|
|
|
if health <= 0:
|
|
on_explode()
|
|
|
|
self.move(velocity)
|
|
self.rotate(rot_vel)
|
|
|
|
func _draw():
|
|
pass
|
|
#draw_rect(rect, Color(1, 1, 1)) |