2019-05-04 21:42:07 +00:00
|
|
|
extends Spatial
|
|
|
|
|
2019-05-05 22:39:55 +00:00
|
|
|
class_name Card
|
|
|
|
|
2019-05-04 22:01:00 +00:00
|
|
|
signal card_selected()
|
|
|
|
signal card_unselected()
|
2019-05-05 19:19:39 +00:00
|
|
|
signal card_picked()
|
|
|
|
signal card_dropped()
|
2019-05-06 21:18:04 +00:00
|
|
|
signal card_dropped_anim()
|
2019-05-05 23:35:58 +00:00
|
|
|
signal card_menu()
|
2019-05-04 21:42:07 +00:00
|
|
|
|
2019-05-05 23:09:19 +00:00
|
|
|
var clicked := false
|
|
|
|
var exhausted := false
|
2019-05-04 23:18:55 +00:00
|
|
|
var lifted := false
|
2019-05-05 23:35:58 +00:00
|
|
|
var flipped := false
|
2019-05-05 22:39:55 +00:00
|
|
|
export var cardID := ""
|
|
|
|
export var playerID := 0
|
2019-05-05 19:19:39 +00:00
|
|
|
export var inHand := false
|
2019-05-04 23:18:55 +00:00
|
|
|
|
|
|
|
onready var animation := $Border/AnimationPlayer
|
|
|
|
|
2019-05-04 21:42:07 +00:00
|
|
|
func _mouse_hover():
|
2019-05-04 22:01:00 +00:00
|
|
|
emit_signal("card_selected")
|
2019-05-04 21:42:07 +00:00
|
|
|
|
2019-05-04 22:01:00 +00:00
|
|
|
func _mouse_blur():
|
2019-05-04 23:18:55 +00:00
|
|
|
emit_signal("card_unselected")
|
|
|
|
|
|
|
|
func _input_event(camera, event, click_position, click_normal, shape_idx):
|
2019-05-05 23:35:58 +00:00
|
|
|
# Mouse motion
|
2019-05-05 23:09:19 +00:00
|
|
|
if clicked and event is InputEventMouseMotion:
|
|
|
|
if not lifted:
|
|
|
|
emit_signal("card_picked")
|
|
|
|
lifted = true
|
2019-05-04 23:18:55 +00:00
|
|
|
var origin: Vector3 = camera.project_ray_origin(event.position)
|
|
|
|
var direction: Vector3 = camera.project_ray_normal(event.position)
|
2019-05-05 19:19:39 +00:00
|
|
|
if inHand:
|
2019-05-06 21:18:04 +00:00
|
|
|
translation = Vector3(direction.x * 3.0, 0.25, -0.25)
|
|
|
|
# Fix rotation if coming from hand
|
|
|
|
rotation = Vector3.ZERO
|
2019-05-05 19:19:39 +00:00
|
|
|
else:
|
|
|
|
var denom := Vector3.UP.dot(direction)
|
|
|
|
var t: float = (-camera.transform.origin).dot(Vector3.UP) / denom;
|
2019-05-06 21:18:04 +00:00
|
|
|
translation = origin + direction * t
|
2019-05-05 23:35:58 +00:00
|
|
|
# Right click
|
|
|
|
if event is InputEventMouseButton and event.pressed and event.button_index == BUTTON_RIGHT:
|
|
|
|
# Show menu
|
|
|
|
emit_signal("card_menu")
|
|
|
|
# Left click
|
2019-05-05 22:39:55 +00:00
|
|
|
if event is InputEventMouseButton and event.button_index == BUTTON_LEFT:
|
2019-05-05 23:09:19 +00:00
|
|
|
# Update click status
|
|
|
|
clicked = event.pressed
|
2019-05-06 22:18:10 +00:00
|
|
|
|
2019-05-05 23:09:19 +00:00
|
|
|
# Check for card dropped
|
|
|
|
if not clicked and lifted:
|
2019-05-05 22:39:55 +00:00
|
|
|
emit_signal("card_dropped")
|
2019-05-05 23:09:19 +00:00
|
|
|
lifted = false
|
2019-05-06 22:18:10 +00:00
|
|
|
|
2019-05-05 23:09:19 +00:00
|
|
|
# Check double click
|
2019-05-06 21:18:04 +00:00
|
|
|
if event.doubleclick and not inHand and not lifted and not animation.is_playing():
|
2019-05-05 23:09:19 +00:00
|
|
|
if exhausted:
|
|
|
|
animation.play_backwards("tap")
|
|
|
|
exhausted = false
|
|
|
|
else:
|
|
|
|
animation.play("tap")
|
2019-05-05 23:35:58 +00:00
|
|
|
exhausted = true
|
|
|
|
|
2019-05-06 11:12:57 +00:00
|
|
|
func reset_transform():
|
2019-05-06 21:18:04 +00:00
|
|
|
$Border.translation = Vector3.ZERO
|
2019-05-06 11:12:57 +00:00
|
|
|
|
2019-05-05 23:35:58 +00:00
|
|
|
func _menu_action(id: int):
|
|
|
|
match id:
|
|
|
|
0: # Flip
|
|
|
|
if flipped:
|
|
|
|
animation.play_backwards("flip")
|
|
|
|
flipped = false
|
|
|
|
else:
|
|
|
|
animation.play("flip")
|
2019-05-06 21:18:04 +00:00
|
|
|
flipped = true
|
|
|
|
|
|
|
|
func _check_drop_anim(anim_name):
|
|
|
|
if anim_name == "drop":
|
|
|
|
emit_signal("card_dropped_anim")
|
|
|
|
|
|
|
|
func tween_move_to(targetPos: Vector3, duration: float = 0.1):
|
|
|
|
$Tween.interpolate_property(self, "translation",
|
|
|
|
translation, targetPos, duration,
|
|
|
|
Tween.TRANS_CUBIC, Tween.EASE_IN_OUT)
|
|
|
|
|
|
|
|
func tween_rotate(targetRot: Vector3, duration: float = 0.1):
|
|
|
|
$Tween.interpolate_property(self, "rotation",
|
|
|
|
rotation, targetRot, duration,
|
|
|
|
Tween.TRANS_CUBIC, Tween.EASE_IN_OUT)
|
|
|
|
|
|
|
|
func tween():
|
|
|
|
$Tween.start()
|