Selaa lähdekoodia

:art: Show Martinus sleeping and dying

Not dying, being knoked out. It's not a so violent game.
DricomDragon 2 vuotta sitten
vanhempi
commit
8df3e771a7

+ 26 - 5
godot/component/entity/player/Player.gd

@@ -1,26 +1,46 @@
+class_name Player
 extends Area2D
 
 signal hit
 
+enum State {SLEEPING, DODGING, DEAD}
+
 export var speed = 400 # pixel / sec
 var screen
 var target = Vector2()
 var target_reached = true
+var _current_state
+
 
 func spawn(atPos):
+	_current_state = State.DODGING
 	position = atPos
-	show()
 	$CollisionShape2D.disabled = false
+	$AnimatedSprite.animation = "idle"
+
+
+func sleep():
+	_current_state = State.SLEEPING
+	$AnimatedSprite.animation = "sleep"
+	$AnimatedSprite.play()
+
 
 func die():
-	hide()
+	_current_state = State.DEAD
+	$AnimatedSprite.animation = "die"
+	$AnimatedSprite.play()
 
 func _ready():
-	hide()
 	screen = get_viewport_rect()
-	$AnimatedSprite.play()
+	sleep()
+
 
-func _process(delta):
+func _process(delta: float):
+	if _current_state == State.DODGING:
+		dodge(delta)
+
+
+func dodge(delta: float):
 	var velocity = get_velocity_from_action()
 	if velocity == Vector2.ZERO :
 		velocity = get_velocity_from_target(delta)
@@ -61,6 +81,7 @@ func get_velocity_from_action() -> Vector2:
 
 	return velocity;
 
+
 func get_velocity_from_target(delta):
 	if target_reached :
 		return Vector2.ZERO

+ 2 - 2
godot/component/entity/player/Player.tscn

@@ -216,7 +216,7 @@ animations = [ {
 "speed": 3.0
 }, {
 "frames": [ SubResource( 26 ), SubResource( 27 ), SubResource( 28 ), SubResource( 29 ), SubResource( 30 ), SubResource( 31 ), SubResource( 32 ) ],
-"loop": true,
+"loop": false,
 "name": "die",
 "speed": 5.0
 }, {
@@ -239,7 +239,7 @@ __meta__ = {
 position = Vector2( -2.38393, -13.6097 )
 scale = Vector2( 2, 2 )
 frames = SubResource( 41 )
-animation = "move"
+animation = "idle"
 __meta__ = {
 "_edit_group_": true
 }

+ 1 - 1
godot/component/ui/hud/HUD.gd

@@ -13,7 +13,7 @@ func show_message(text):
 func show_game_over():
 	show_message("Game Over")
 	yield($MessageTimer, "timeout")
-	$MessageLabel.text = "Dodge again ?"
+	$MessageLabel.text = "Dodge again?"
 	$MessageLabel.show()
 	yield(get_tree().create_timer(1.0), "timeout")
 	$ColorButton.show()

+ 16 - 15
godot/component/ui/hud/HUD.tscn

@@ -3,8 +3,6 @@
 [ext_resource path="res://component/ui/hud/HUD.gd" type="Script" id=1]
 [ext_resource path="res://component/ui/hud/map_set.png" type="Texture" id=2]
 
-
-
 [sub_resource type="DynamicFontData" id=1]
 font_path = "res://component/ui/Xolonium-Regular.ttf"
 
@@ -21,23 +19,23 @@ font_path = "res://component/ui/Xolonium-Regular.ttf"
 size = 80
 font_data = SubResource( 3 )
 
-[sub_resource type="InputEventAction" id=12]
+[sub_resource type="InputEventAction" id=5]
 action = "ui_select"
 
-[sub_resource type="ShortCut" id=13]
-shortcut = SubResource( 12 )
+[sub_resource type="ShortCut" id=6]
+shortcut = SubResource( 5 )
 
-[sub_resource type="AtlasTexture" id=9]
+[sub_resource type="AtlasTexture" id=7]
 flags = 4
 atlas = ExtResource( 2 )
 region = Rect2( 16, 1865, 914, 471 )
 
-[sub_resource type="AtlasTexture" id=10]
+[sub_resource type="AtlasTexture" id=8]
 flags = 4
 atlas = ExtResource( 2 )
 region = Rect2( -1, 1275, 915, 471 )
 
-[sub_resource type="AtlasTexture" id=11]
+[sub_resource type="AtlasTexture" id=9]
 flags = 4
 atlas = ExtResource( 2 )
 region = Rect2( 1073, 1283, 914, 472 )
@@ -56,12 +54,15 @@ align = 1
 anchor_top = 0.5
 anchor_right = 1.0
 anchor_bottom = 0.5
-margin_top = -148.5
-margin_bottom = 148.5
+margin_top = -270.5
+margin_bottom = 26.5
 custom_fonts/font = SubResource( 4 )
-text = "Dodge the creeps!"
+text = "Help Martinus!"
 align = 1
 autowrap = true
+__meta__ = {
+"_edit_use_anchors_": false
+}
 
 [node name="MessageTimer" type="Timer" parent="."]
 wait_time = 2.15
@@ -73,10 +74,10 @@ anchor_right = 1.0
 anchor_bottom = 1.0
 margin_top = -200.0
 margin_bottom = -50.0
-shortcut = SubResource( 13 )
-texture_normal = SubResource( 9 )
-texture_pressed = SubResource( 10 )
-texture_hover = SubResource( 11 )
+shortcut = SubResource( 6 )
+texture_normal = SubResource( 7 )
+texture_pressed = SubResource( 8 )
+texture_hover = SubResource( 9 )
 expand = true
 stretch_mode = 5
 

+ 7 - 1
godot/project.godot

@@ -13,9 +13,15 @@ _global_script_classes=[ {
 "class": "Enemy",
 "language": "GDScript",
 "path": "res://component/entity/enemy/Enemy.gd"
+}, {
+"base": "Area2D",
+"class": "Player",
+"language": "GDScript",
+"path": "res://component/entity/player/Player.gd"
 } ]
 _global_script_class_icons={
-"Enemy": ""
+"Enemy": "",
+"Player": ""
 }
 
 [application]