Make stonk window shake upon bankruptcy
This commit is contained in:
parent
9ab6f6e209
commit
98c0e0e97e
2 changed files with 15 additions and 7 deletions
|
@ -1,9 +1,10 @@
|
||||||
[gd_scene load_steps=12 format=3 uid="uid://g2veoq55y14i"]
|
[gd_scene load_steps=13 format=3 uid="uid://g2veoq55y14i"]
|
||||||
|
|
||||||
[ext_resource type="Script" path="res://scenes/stockticker/transactions.gd" id="1_1gmdn"]
|
[ext_resource type="Script" path="res://scenes/stockticker/transactions.gd" id="1_1gmdn"]
|
||||||
[ext_resource type="Texture2D" uid="uid://voruypgyi77e" path="res://scenes/stockticker/UI-Background-Colour.png" id="1_wbfee"]
|
[ext_resource type="Texture2D" uid="uid://voruypgyi77e" path="res://scenes/stockticker/UI-Background-Colour.png" id="1_wbfee"]
|
||||||
[ext_resource type="Script" path="res://scenes/stockticker/stonks.gd" id="2_pan4m"]
|
[ext_resource type="Script" path="res://scenes/stockticker/stonks.gd" id="2_pan4m"]
|
||||||
[ext_resource type="Theme" uid="uid://ve18rbkeiwti" path="res://UI/text.tres" id="3_dv3dr"]
|
[ext_resource type="Theme" uid="uid://ve18rbkeiwti" path="res://UI/text.tres" id="3_dv3dr"]
|
||||||
|
[ext_resource type="Script" path="res://libs/shake_pivot.gd" id="4_ofsrv"]
|
||||||
[ext_resource type="Texture2D" uid="uid://vie3nmimge1t" path="res://scenes/stockticker/BuyButton.png" id="5_mpf30"]
|
[ext_resource type="Texture2D" uid="uid://vie3nmimge1t" path="res://scenes/stockticker/BuyButton.png" id="5_mpf30"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dvidbk3clx6dn" path="res://scenes/stockticker/BuyButtonPressed.png" id="6_styy2"]
|
[ext_resource type="Texture2D" uid="uid://dvidbk3clx6dn" path="res://scenes/stockticker/BuyButtonPressed.png" id="6_styy2"]
|
||||||
[ext_resource type="Texture2D" uid="uid://dw8wpd47me7wu" path="res://scenes/stockticker/SellButton.png" id="7_h6hir"]
|
[ext_resource type="Texture2D" uid="uid://dw8wpd47me7wu" path="res://scenes/stockticker/SellButton.png" id="7_h6hir"]
|
||||||
|
@ -27,6 +28,16 @@ autostart = true
|
||||||
[node name="Stonks" type="Node2D" parent="."]
|
[node name="Stonks" type="Node2D" parent="."]
|
||||||
script = ExtResource("2_pan4m")
|
script = ExtResource("2_pan4m")
|
||||||
|
|
||||||
|
[node name="ShakePivot" type="Node2D" parent="Stonks"]
|
||||||
|
script = ExtResource("4_ofsrv")
|
||||||
|
NOISE_SHAKE_STRENGTH = 30.0
|
||||||
|
SHAKE_DECAY_RATE = 5.0
|
||||||
|
|
||||||
|
[node name="StonkWindow" type="Sprite2D" parent="Stonks/ShakePivot"]
|
||||||
|
position = Vector2(582, 205)
|
||||||
|
scale = Vector2(1062.25, 337)
|
||||||
|
texture = ExtResource("1_wbfee")
|
||||||
|
|
||||||
[node name="SellButton" type="TextureButton" parent="Stonks"]
|
[node name="SellButton" type="TextureButton" parent="Stonks"]
|
||||||
offset_left = 439.0
|
offset_left = 439.0
|
||||||
offset_top = 565.0
|
offset_top = 565.0
|
||||||
|
@ -35,11 +46,6 @@ offset_bottom = 694.0
|
||||||
texture_normal = ExtResource("7_h6hir")
|
texture_normal = ExtResource("7_h6hir")
|
||||||
texture_pressed = ExtResource("8_essj7")
|
texture_pressed = ExtResource("8_essj7")
|
||||||
|
|
||||||
[node name="StonkWindow" type="Sprite2D" parent="Stonks"]
|
|
||||||
position = Vector2(582, 205)
|
|
||||||
scale = Vector2(1062.25, 337)
|
|
||||||
texture = ExtResource("1_wbfee")
|
|
||||||
|
|
||||||
[node name="TopLine" type="Line2D" parent="Stonks"]
|
[node name="TopLine" type="Line2D" parent="Stonks"]
|
||||||
points = PackedVector2Array(50, 60, 1000, 60)
|
points = PackedVector2Array(50, 60, 1000, 60)
|
||||||
width = 1.0
|
width = 1.0
|
||||||
|
|
|
@ -20,7 +20,7 @@ var darksouls_text: Label
|
||||||
|
|
||||||
var price_history = []
|
var price_history = []
|
||||||
var base_pos_mult = 0.5 # no size limit
|
var base_pos_mult = 0.5 # no size limit
|
||||||
var base_neg_mult = 0.5 # probably keep this below 1
|
var base_neg_mult = 100.5 # probably keep this below 1
|
||||||
|
|
||||||
var hype_mult = 1.0
|
var hype_mult = 1.0
|
||||||
var hype_decr = 0.1
|
var hype_decr = 0.1
|
||||||
|
@ -71,6 +71,7 @@ func draw_stonks(minval: Big, maxval: Big) -> void:
|
||||||
var pos = Vector2(x_pos, y_pos)
|
var pos = Vector2(x_pos, y_pos)
|
||||||
stonks.add_point(pos, index)
|
stonks.add_point(pos, index)
|
||||||
index += 1
|
index += 1
|
||||||
|
|
||||||
|
|
||||||
func get_min_price() -> Big:
|
func get_min_price() -> Big:
|
||||||
var minval = Big.new(-1)
|
var minval = Big.new(-1)
|
||||||
|
@ -136,6 +137,7 @@ func _on_timer_timeout() -> void:
|
||||||
shares = 0
|
shares = 0
|
||||||
shares_label.text = "Shares\nHeld:%d" % shares
|
shares_label.text = "Shares\nHeld:%d" % shares
|
||||||
$AudioStreamPlayer.play()
|
$AudioStreamPlayer.play()
|
||||||
|
$ShakePivot.shake()
|
||||||
|
|
||||||
if len(price_history) >= MAX_PRICES:
|
if len(price_history) >= MAX_PRICES:
|
||||||
price_history.pop_front()
|
price_history.pop_front()
|
||||||
|
|
Loading…
Add table
Reference in a new issue