-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathGame.gd
223 lines (151 loc) · 5.85 KB
/
Game.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
extends Node
onready var yodo1mas = $Yodo1Mas
onready var _animation = $AnimationPlayer
onready var _finish_popup = $finish_game_popup
onready var debug_out = $CanvasLayer/Orange/DebugOut
# shows what tools can be used with each body part.
export(Dictionary) var tools_per_type:Dictionary
export(bool) var hint_hided: bool = true
export(ButtonGroup) var _buttons: ButtonGroup
var _hints: Array
# tracks the current gameplay time, while this scene is active it will count up until the levels finished
# this is used for the Quick Popper and Slow Popper GPlay Achievements
var game_time: float
var is_game_running = true
# Called when the node enters the scene tree for the first time.
func _ready():
var nodes = get_tree().get_nodes_in_group("bodypart")
for bp in nodes:
bp.connect("bodypart_cleaned", self, "_on_bodypart_cleaned")
_animation.play("fade_out")
_hints = get_tree().get_nodes_in_group("hint")
hide_hints(hint_hided)
# yield(get_tree(), "idle_frame")
_disable_buttons(true)
for b in _buttons.get_buttons():
if b.get_parent()!=$UI/scroll/tools:
continue
b.visible = tools_per_type[Global.type].has(b.name)
#Yodo.load_interstitial_ads()
func _physics_process(delta):
if is_game_running:
game_time += delta
func hide_hints(hided: bool) -> void:
for h in _hints:
h.visible = not hided
func _on_bodypart_cleaned() -> void:
is_game_running = false
# sets the level as COMPLETED or is finished by the player!
Global.player_data['levels_completion'][Global.type][Global.bodypart] = true
# checks if all bodyparts in this type are completed
var is_all_completed = true
var names = {
'pimple': 'CgkI5ILm9-4PEAIQAA',
'blackhead': 'CgkI5ILm9-4PEAIQAQ',
'cyst': 'CgkI5ILm9-4PEAIQAg',
'lipoma': 'CgkI5ILm9-4PEAIQAw',
}
for body_part in Global.player_data['levels_completion'][Global.type]:
if Global.player_data['levels_completion'][Global.type][body_part] == false:
is_all_completed = false
break
if is_all_completed:
ManagerPlayGames.playgames.achievementsUnlock('%s' % names[Global.type], true)
# checks for the time achievements -- !!
if game_time < 30.0:
ManagerPlayGames.playgames.achievementsUnlock('CgkI5ILm9-4PEAIQBA', true)
if game_time > 180.0:
ManagerPlayGames.playgames.achievementsUnlock('CgkI5ILm9-4PEAIQBQ', true)
#####################################################
ManagerPlayGames.playgames.leaderboardsSubmitScore('CgkI5ILm9-4PEAIQCQ', 150)
_finish_popup.start()
func _on_hand_pressed():
$tools.enable_hand()
func _on_handkerchief_pressed():
$tools.enable_handkerchief()
func _on_timeout() -> void:
get_tree().change_scene("res://menu/main_screen.tscn")
func _on_vapor_pressed():
$tools.enable_vapor()
func _on_comedone_extraction_tool_pressed():
$tools.enable_comedone_extraction_tool()
func _on_needle_pressed():
$tools.enable_needle()
func _on_anesthetic_pressed():
$tools.enable_anesthetic()
func _on_suture_pressed():
$tools.enable_suture()
func _on_cutter_pressed():
$tools.enable_cutter()
func _disable_buttons(b: bool) -> void:
for bt in _buttons.get_buttons():
bt.disabled = b
func _on_back_pressed():
_disable_buttons(true)
_animation.play("fade_in")
func _on_animation_finished(anim: String) -> void:
if anim == "fade_in":
var error: int = get_tree().change_scene("res://menu/new_main_screen.tscn")
if error != OK:
print_debug("Error loading main screen. Code: ", error)
elif anim == "fade_out":
_disable_buttons(false)
func _on_hint_pressed():
hint_hided = not hint_hided
yodo1mas.show_interstitial_ad()
hide_hints(hint_hided)
func _on_anim_finished(finish_type):
if finish_type == _finish_popup.finish_type.WIN:
yodo1mas.show_interstitial_ad()
yield(yodo1mas, "interstitial_ad_closed")
get_tree().change_scene("res://menu/main_screen.tscn")
func _input(event):
if event is InputEventScreenTouch:
print ("_input game")
func _on_scroll_gui_input(event):
if event is InputEventScreenTouch:
print ("_gui_event scroll...")
pass # Replace with function body.
# callbacks from signals
func _on_Yodo1Mas_banner_ad_loaded():
debug_out.text = debug_out.text + "Banner loaded\n"
func _on_Yodo1Mas_banner_failed_ad_loaded():
debug_out.text = debug_out.text + "Banner not loaded\n"
func _on_Yodo1Mas_banner_ad_opened():
#add_coins(5)
debug_out.text = debug_out.text + "Banner opened\n"
func _on_Yodo1Mas_banner_ad_failed_opened():
#add_coins(5)
debug_out.text = debug_out.text + "Banner not opened\n"
func _on_Yodo1Mas_banner_ad_closed():
debug_out.text = debug_out.text + "Banner closed\n"
func _on_Yodo1Mas_interstitial_ad_loaded():
debug_out.text = debug_out.text + "Interstitial loaded\n"
func _on_Yodo1Mas_interstitial_ad_not_loaded():
yodo1mas.load_interstitial_ads()
debug_out.text = debug_out.text + "Interstitial not loaded\n"
func _on_Yodo1Mas_interstitial_ad_opened():
debug_out.text = debug_out.text + "Interstitial opened\n"
func _on_Yodo1Mas_interstitial_ad_failed_to_opened():
yodo1mas.load_interstitial_ads()
debug_out.text = debug_out.text + "Interstitial not opened\n"
func _on_Yodo1Mas_interstitial_ad_closed():
yodo1mas.load_interstitial_ads()
#add_coins(10)
debug_out.text = debug_out.text + "Interstitial closed\n"
func _on_Yodo1Mas_rewarded_ad_loaded():
debug_out.text = debug_out.text + "Rewarded video loaded\n"
func _on_Yodo1Mas_rewarded_ad_not_loaded():
yodo1mas.load_rewarded_ad()
debug_out.text = debug_out.text + "Rewarded video not loaded\n"
func _on_Yodo1Mas_rewarded_ad_opened():
debug_out.text = debug_out.text + "Rewarded video opened\n"
func _on_Yodo1Mas_rewarded_ad_failed_opened():
yodo1mas.load_rewarded_ad()
debug_out.text = debug_out.text + "Rewarded video not opened\n"
func _on_Yodo1Mas_rewarded_ad_closed():
yodo1mas.load_rewarded_ad()
debug_out.text = debug_out.text + "Rewarded video closed\n"
func _on_Yodo1Mas_rewarded_ad_earned():
#add_coins(15)
debug_out.text = debug_out.text + "Rewarded video earned\n"