-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.gd
54 lines (38 loc) · 1.18 KB
/
Main.gd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
extends Control
var ganancias = 0
var items = []
func _ready():
add_user_data()
func add_user_data():
var user_data = load("res://DatosUsuario.tscn").instance()
$Panel/VBox.add_child(user_data)
items.append(user_data)
user_data.connect("edit", self, "_on_edit")
user_data.connect("delete", self, "_on_delete", [user_data])
func _on_Add_pressed():
add_user_data()
func _on_edit():
update_p()
update_gc($Panel/VBox/HBox/Ganancias.text)
func _on_Ganancias_text_changed(new_text):
update_gc(new_text)
update_p()
func update_gc(ganancias):
var sumatoria = 0
for item in items:
var porcentaje = float(item.get_node("HBox/PorcentajeCorrespondiente").text)
print(porcentaje)
item.get_node("HBox/GananciasCorrespondientes").text = str(porcentaje * float(ganancias) / 100)
func update_p():
var sumatoria = 0
for item in items:
sumatoria += float(item.horas_invertidas_text)
# No tiene sentido hacer cálculos si las horas
# invertidas dan 0
if sumatoria == 0:
return
for item in items:
var horas = float(item.horas_invertidas_text)
item.get_node("HBox/PorcentajeCorrespondiente").text = str(horas / sumatoria * 100)
func _on_delete(item):
items.erase(item)