32 Commits
v1.2 ... v1.4

Author SHA1 Message Date
1916c80784 action icons on control ui 2019-01-16 13:40:53 +01:00
762dd1bdf1 delays 2019-01-16 01:50:44 +01:00
6868c73e49 v1.3 2019-01-16 01:49:14 +01:00
4e33f3f78d delays 2019-01-16 01:49:00 +01:00
d972725c03 Update Main.gd 2019-01-16 01:28:48 +01:00
5832f3a317 light position 2019-01-16 01:18:41 +01:00
86218ffd84 more improvements 2019-01-16 00:35:31 +01:00
4f8a301cde break 2019-01-15 18:18:59 +01:00
a69ade5438 Update TetroI.gd 2019-01-15 17:24:45 +01:00
d4b29230c7 Tetrominoes scripts 2019-01-15 17:23:57 +01:00
e50e05558f reorg 2019-01-15 17:08:27 +01:00
5b4008a55c new level 2019-01-15 16:05:09 +01:00
2b86cdec5c commit 2019-01-15 14:56:29 +01:00
e45c31a2c6 stuff 2019-01-15 12:34:53 +01:00
47b7bc24b0 reorganize 2019-01-15 11:02:09 +01:00
74e288c870 things 2019-01-14 22:21:56 +01:00
3c5fc96be3 midi move 2019-01-13 23:16:02 +01:00
0f8ac8d6ea Merge branch 'master' of https://github.com/adrienmalin/TETRIS3000 2019-01-13 23:15:44 +01:00
9d3028961d ajust autoshift delays 2019-01-13 23:15:38 +01:00
60fbf36faa Update _config.yml 2019-01-08 17:04:56 +01:00
90d3481fb5 Update Main.gd 2019-01-08 17:04:08 +01:00
8ffd54ad8f Update screenshot.png 2019-01-08 16:44:24 +01:00
7aa08d7000 Update TETRIS3000.pck 2019-01-08 16:33:55 +01:00
78edef5396 Update MidiPlayer.gd 2019-01-08 16:33:45 +01:00
45d5e7e116 Update Main.tscn 2019-01-08 16:30:52 +01:00
6eb8ffdf86 process midi program on position 0 2019-01-08 16:26:43 +01:00
e0e92d18c0 input 2 2019-01-08 16:22:37 +01:00
5cbd793e6c replay button position 2019-01-08 15:27:36 +01:00
1359d6555a input 2019-01-08 15:16:38 +01:00
574e22ef74 Update GridMap.gd 2019-01-08 14:40:27 +01:00
ed5924f407 game over if y >= nb_lines 2019-01-08 14:22:15 +01:00
db1c211852 web v1.2 2019-01-08 14:21:51 +01:00
34 changed files with 365 additions and 513 deletions

View File

@ -1,2 +1 @@
theme: jekyll-theme-slate
show_downloads: true

View File

@ -6,56 +6,63 @@ const ExplodingLine = preload("res://ExplodingLine.tscn")
const EMPTY_CELL = -1
const MINO = 0
export (int) var NB_LINES = 20
export (int) var NB_COLLUMNS = 10
var exploding_lines = []
var nb_collumns
var nb_lines
func _ready():
for y in range(NB_LINES):
nb_collumns = int(get_parent().scale.x)
nb_lines = int(get_parent().scale.y)
for y in range(nb_lines):
exploding_lines.append(ExplodingLine.instance())
add_child(exploding_lines[y])
exploding_lines[y].translation = Vector3(NB_COLLUMNS/2, y, 1)
exploding_lines[y].translation = Vector3(nb_collumns/2, y, 1)
func clear():
for position in get_used_cells():
set_cell_item(position.x, position.y, position.z, EMPTY_CELL)
for used_cell in get_used_cells():
set_cell_item(used_cell.x, used_cell.y, used_cell.z, EMPTY_CELL)
func is_free_cell(position):
func is_free_cell(cell):
return (
0 <= position.x and position.x < NB_COLLUMNS
and position.y >= 0
and get_cell_item(position.x, position.y, 0) == GridMap.INVALID_CELL_ITEM
0 <= cell.x and cell.x < nb_collumns
and cell.y >= 0
and get_cell_item(cell.x, cell.y, cell.z) == INVALID_CELL_ITEM
)
func possible_positions(initial_positions, movement):
func possible_positions(initial_translations, movement):
var position
var test_positions = []
var test_translations = []
for i in range(4):
position = initial_positions[i] + movement
position = initial_translations[i] + movement
if is_free_cell(position):
test_positions.append(position)
if test_positions.size() == Tetromino.NB_MINOES:
return test_positions
test_translations.append(position)
else:
break
if test_translations.size() == Tetromino.NB_MINOES:
return test_translations
else:
return []
func lock(piece):
for position in piece.positions():
var minoes_over_grid = 0
for position in piece.get_translations():
if position.y >= nb_lines:
minoes_over_grid += 1
set_cell_item(position.x, position.y, 0, MINO)
return minoes_over_grid < Tetromino.NB_MINOES
func clear_lines():
var line_cleared
var lines_cleared = 0
for y in range(NB_LINES-1, -1, -1):
for y in range(nb_lines-1, -1, -1):
line_cleared = true
for x in range(NB_COLLUMNS):
for x in range(nb_collumns):
if not get_cell_item(x, y, 0) == MINO:
line_cleared = false
break
if line_cleared:
for y2 in range(y, NB_LINES+2):
for x in range(NB_COLLUMNS):
for y2 in range(y, nb_lines+2):
for x in range(nb_collumns):
set_cell_item(x, y2, 0, get_cell_item(x, y2+1, 0))
lines_cleared += 1
exploding_lines[y].emitting = true

View File

@ -9,11 +9,6 @@ const TetroS = preload("res://Tetrominos/TetroS.tscn")
const TetroT = preload("res://Tetrominos/TetroT.tscn")
const TetroZ = preload("res://Tetrominos/TetroZ.tscn")
const password = "TETRIS 3000"
const NEXT_POSITION = Vector3(13, 16, 0)
const START_POSITION = Vector3(5, 20, 0)
const HOLD_POSITION = Vector3(-5, 16, 0)
const THERE = Vector3(0, 0, 0)
const movements = {
@ -28,52 +23,28 @@ var next_piece
var current_piece
var held_piece
var current_piece_held
var autoshift_action = ""
var autoshift_action
var playing = false
signal piece_dropped(score)
signal piece_locked(lines, t_spin)
func _ready():
load_user_data()
func load_user_data():
var save_game = File.new()
if not save_game.file_exists("user://data.save"):
$Stats.high_score = 0
else:
save_game.open_encrypted_with_pass("user://data.save", File.READ, password)
$Stats.high_score = int(save_game.get_line())
$Stats/VBC/HighScore.text = str($Stats.high_score)
save_game.close()
func _on_Start_start(level):
$GridMap.clear()
if held_piece:
remove_child(held_piece)
held_piece = null
current_piece_held = false
next_piece = random_piece()
new_piece()
$MidiPlayer.position = 0
func new_game(level):
$Start.visible = false
next_piece = random_piece()
autoshift_action = ""
$LockDelay.wait_time = 0.5
$MidiPlayer.position = 0
$Stats.new_game(level)
new_piece()
resume()
func new_piece():
if current_piece:
remove_child(current_piece)
current_piece = next_piece
current_piece.translation = START_POSITION
current_piece.translation = $Matrix/Position3D.translation
current_piece.emit_trail(true)
autoshift_action = ""
next_piece = random_piece()
next_piece.translation = NEXT_POSITION
if move(THERE):
next_piece.translation = $Next/Position3D.translation
if current_piece.move(THERE):
$DropTimer.start()
$LockDelay.start()
current_piece_held = false
else:
game_over()
@ -90,88 +61,85 @@ func random_piece():
add_child(piece)
return piece
func _on_Stats_level_up():
$DropTimer.wait_time = pow(0.8 - (($Stats.level - 1) * 0.007), $Stats.level - 1)
if $Stats.level > 15:
$LockDelay.wait_time = 0.5 * pow(0.9, $Stats.level-15)
func new_level(level):
if level <= 15:
$DropTimer.wait_time = pow(0.8 - ((level - 1) * 0.007), level - 1)
else:
$LockDelay.wait_time = 0.5 * pow(0.9, level-15)
func _process(delta):
if Input.is_action_just_pressed("pause"):
func _unhandled_input(event):
if event.is_action_pressed("pause"):
if playing:
pause()
$controls_ui.visible = true
pause($controls_ui)
elif $controls_ui.enable_resume:
resume()
if Input.is_action_just_pressed("toggle_fullscreen"):
OS.window_fullscreen = !OS.window_fullscreen
if event.is_action_pressed("toggle_fullscreen"):
OS.window_fullscreen = not OS.window_fullscreen
if playing:
for action in movements:
if action == autoshift_action:
if not Input.is_action_pressed(action):
if autoshift_action and event.is_action_released(autoshift_action):
$AutoShiftDelay.stop()
$AutoShiftTimer.stop()
autoshift_action = ""
else:
for action in movements:
if Input.is_action_pressed(action):
autoshift_action = action
process_autoshift_action()
$AutoShiftTimer.stop()
process_autoshift()
$AutoShiftDelay.start()
if Input.is_action_just_pressed("hard_drop"):
break
for action in movements:
if action != autoshift_action:
if event.is_action_pressed(action):
$AutoShiftTimer.stop()
autoshift_action = action
process_autoshift()
$AutoShiftDelay.start()
break
if event.is_action_pressed("hard_drop"):
hard_drop()
if Input.is_action_just_pressed("rotate_clockwise"):
rotate(Tetromino.CLOCKWISE)
if Input.is_action_just_pressed("rotate_counterclockwise"):
rotate(Tetromino.COUNTERCLOCKWISE)
if Input.is_action_just_pressed("hold"):
if event.is_action_pressed("rotate_clockwise"):
current_piece.rotate(Tetromino.CLOCKWISE)
if event.is_action_pressed("rotate_counterclockwise"):
current_piece.rotate(Tetromino.COUNTERCLOCKWISE)
if event.is_action_pressed("hold"):
hold()
func _on_AutoShiftDelay_timeout():
if playing and autoshift_action:
process_autoshift_action()
if autoshift_action:
process_autoshift()
$AutoShiftTimer.start()
func _on_AutoShiftTimer_timeout():
if playing and autoshift_action:
process_autoshift_action()
if autoshift_action:
process_autoshift()
func process_autoshift_action():
if move(movements[autoshift_action]):
if autoshift_action == "soft_drop":
emit_signal("piece_dropped", 1)
func process_autoshift():
var moved = current_piece.move(movements[autoshift_action])
if moved and (autoshift_action == "soft_drop"):
$Stats.piece_dropped(1)
func hard_drop():
var score = 0
while move(movements["soft_drop"]):
while current_piece.move(movements["soft_drop"]):
score += 2
emit_signal("piece_dropped", score)
$Stats.piece_dropped(score)
$LockDelay.stop()
lock()
func move(movement):
if current_piece.move(movement):
$LockDelay.start()
return true
else:
return false
func rotate(direction):
if current_piece.rotate(direction):
$LockDelay.start()
return true
else:
return false
func _on_DropTimer_timeout():
move(movements["soft_drop"])
func _on_LockDelay_timeout():
if not move(movements["soft_drop"]):
if not current_piece.move(movements["soft_drop"]):
if $LockDelay.is_stopped():
lock()
func lock():
$GridMap.lock(current_piece)
emit_signal("piece_locked", $GridMap.clear_lines(), current_piece.t_spin)
if $Matrix/GridMap.lock(current_piece):
var lines_cleared = $Matrix/GridMap.clear_lines()
$Stats.piece_locked(lines_cleared, current_piece.t_spin)
if lines_cleared or current_piece.t_spin:
$MidiPlayer.piece_locked(lines_cleared)
remove_child(current_piece)
new_piece()
else:
game_over()
func hold():
if not current_piece_held:
@ -180,9 +148,9 @@ func hold():
current_piece = held_piece
held_piece = swap
held_piece.emit_trail(false)
held_piece.translation = HOLD_POSITION
held_piece.translation = $Hold/Position3D.translation
if current_piece:
current_piece.translation = START_POSITION
current_piece.translation = $Matrix/Position3D.translation
current_piece.emit_trail(true)
else:
new_piece()
@ -196,50 +164,54 @@ func resume():
$MidiPlayer.resume()
$controls_ui.visible = false
$Stats.visible = true
$GridMap.visible = true
$Backs.visible = true
$Matrix.visible = true
$Matrix/GridMap.visible = true
$Hold.visible = true
$Next.visible = true
current_piece.visible = true
if held_piece:
held_piece.visible = true
next_piece.visible = true
func pause(hide=true):
func pause(gui=null):
playing = false
$MidiPlayer.stop()
$DropTimer.stop()
$LockDelay.stop()
$AutoShiftDelay.stop()
$AutoShiftTimer.stop()
$Stats/Clock.stop()
$Stats.time = OS.get_system_time_secs() - $Stats.time
if hide:
if gui:
gui.visible = true
$Stats.visible = false
$GridMap.visible = false
$Backs.visible = false
$Matrix.visible = false
$Matrix/GridMap.visible = false
$Hold.visible = false
$Next.visible = false
current_piece.visible = false
if held_piece:
held_piece.visible = false
next_piece.visible = false
$MidiPlayer.stop()
$DropTimer.stop()
$LockDelay.stop()
$Stats/Clock.stop()
func game_over():
pause()
current_piece.emit_trail(false)
$FlashText.print("GAME\nOVER")
pause(false)
$ReplayButton.visible = true
func _on_ReplayButton_pressed():
pause()
$ReplayButton.visible = false
$Start.visible = true
remove_child(next_piece)
remove_child(current_piece)
if held_piece:
remove_child(held_piece)
held_piece = null
$Matrix/GridMap.clear()
pause($Start)
func _notification(what):
match what:
MainLoop.NOTIFICATION_WM_FOCUS_OUT:
if playing:
pause()
MainLoop.NOTIFICATION_WM_QUIT_REQUEST:
save_user_data()
get_tree().quit()
func save_user_data():
var save_game = File.new()
save_game.open_encrypted_with_pass("user://data.save", File.WRITE, password)
save_game.store_line(str($Stats.high_score))
save_game.close()
pause($controls_ui)

View File

@ -1,7 +1,7 @@
[gd_scene load_steps=21 format=2]
[ext_resource path="res://Main.gd" type="Script" id=1]
[ext_resource path="res://pexels-photo-1341279.jpeg" type="Texture" id=2]
[ext_resource path="res://aperture-vintage-472251-unsplash.jpg" type="Texture" id=2]
[ext_resource path="res://Tetrominos/Mino/MinoLibrary.tres" type="MeshLibrary" id=3]
[ext_resource path="res://GridMap.gd" type="Script" id=4]
[ext_resource path="res://midi/MidiPlayer.tscn" type="PackedScene" id=5]
@ -10,8 +10,8 @@
[ext_resource path="res://fonts/525-ROUN.TTF" type="DynamicFontData" id=8]
[ext_resource path="res://Stats.tscn" type="PackedScene" id=9]
[ext_resource path="res://controls.tscn" type="PackedScene" id=10]
[ext_resource path="res://fonts/Gamer.ttf" type="DynamicFontData" id=11]
[ext_resource path="res://Start.tscn" type="PackedScene" id=12]
[ext_resource path="res://Start.tscn" type="PackedScene" id=11]
[ext_resource path="res://fonts/Gamer.ttf" type="DynamicFontData" id=12]
[sub_resource type="PanoramaSky" id=1]
@ -226,7 +226,7 @@ size = 20
use_mipmaps = false
use_filter = false
extra_spacing_bottom = 5
font_data = ExtResource( 11 )
font_data = ExtResource( 12 )
_sections_unfolded = [ "Extra Spacing", "Font", "Settings" ]
[node name="Main" type="WorldEnvironment"]
@ -234,7 +234,7 @@ _sections_unfolded = [ "Extra Spacing", "Font", "Settings" ]
environment = SubResource( 2 )
script = ExtResource( 1 )
[node name="Sprite3D" type="Sprite3D" parent="." index="0"]
[node name="Background" type="Sprite3D" parent="." index="0"]
transform = Transform( 12.8, 0, 0, 0, 8.53, 0, 0, 0, 1, 5, 10, -32 )
layers = 1
@ -250,12 +250,12 @@ centered = true
offset = Vector2( 0, 0 )
flip_h = false
flip_v = false
modulate = Color( 0.478431, 0.478431, 0.478431, 1 )
opacity = 0.0
modulate = Color( 0.334808, 0.343253, 0.359375, 0 )
opacity = 1.0
pixel_size = 0.01
axis = 2
transparent = false
shaded = false
shaded = true
double_sided = false
alpha_cut = 0
texture = ExtResource( 2 )
@ -311,8 +311,27 @@ directional_shadow_depth_range = 0
directional_shadow_max_distance = 200.0
_sections_unfolded = [ "Light", "Transform" ]
[node name="GridMap" type="GridMap" parent="." index="3"]
[node name="Matrix" type="MeshInstance" parent="." index="3"]
transform = Transform( 10, 0, 0, 0, 20, 0, 0, 0, 1, 4.5, 9.5, 0 )
visible = false
layers = 1
material_override = null
cast_shadow = 1
extra_cull_margin = 0.0
use_in_baked_light = false
lod_min_distance = 0.0
lod_min_hysteresis = 0.0
lod_max_distance = 0.0
lod_max_hysteresis = 0.0
mesh = SubResource( 4 )
skeleton = NodePath("..")
material/0 = null
_sections_unfolded = [ "Transform" ]
[node name="GridMap" type="GridMap" parent="Matrix" index="0"]
transform = Transform( 0.1, 0, 0, 0, 0.05, 0, 0, 0, 1, -0.45, -0.475, 0 )
theme = ExtResource( 3 )
cell_size = Vector3( 1, 1, 1 )
cell_octant_size = 8
@ -331,33 +350,16 @@ __meta__ = {
"_editor_clip_": 1,
"_editor_floor_": Vector3( 0, -1, 0 )
}
NB_LINES = 20
NB_COLLUMNS = 10
[node name="Backs" type="Spatial" parent="." index="4"]
[node name="Position3D" type="Position3D" parent="Matrix" index="1"]
visible = false
[node name="GridBack" type="MeshInstance" parent="Backs" index="0"]
transform = Transform( 10, 0, 0, 0, 20, 0, 0, 0, 1, 4.5, 9.5, 0 )
layers = 1
material_override = null
cast_shadow = 1
extra_cull_margin = 0.0
use_in_baked_light = false
lod_min_distance = 0.0
lod_min_hysteresis = 0.0
lod_max_distance = 0.0
lod_max_hysteresis = 0.0
mesh = SubResource( 4 )
skeleton = NodePath("..")
material/0 = null
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 20, 0 )
_sections_unfolded = [ "Transform" ]
[node name="HoldBack" type="MeshInstance" parent="Backs" index="1"]
[node name="Hold" type="MeshInstance" parent="." index="4"]
transform = Transform( 7, 0, 0, 0, 7, 0, 0, 0, 1, -5, 16, 0 )
visible = false
layers = 1
material_override = null
cast_shadow = 1
@ -372,9 +374,15 @@ skeleton = NodePath("..")
material/0 = null
_sections_unfolded = [ "Transform" ]
[node name="NextBack" type="MeshInstance" parent="Backs" index="2"]
[node name="Position3D" type="Position3D" parent="Hold" index="0"]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -5, 16, 0 )
_sections_unfolded = [ "Transform" ]
[node name="Next" type="MeshInstance" parent="." index="5"]
transform = Transform( 7, 0, 0, 0, 7, 0, 0, 0, 1, 14, 16, 0 )
visible = false
layers = 1
material_override = null
cast_shadow = 1
@ -389,40 +397,45 @@ skeleton = NodePath("..")
material/0 = null
_sections_unfolded = [ "Transform" ]
[node name="DropTimer" type="Timer" parent="." index="5"]
[node name="Position3D" type="Position3D" parent="Next" index="0"]
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 13, 16, 0 )
_sections_unfolded = [ "Transform" ]
[node name="DropTimer" type="Timer" parent="." index="6"]
process_mode = 1
wait_time = 1.0
one_shot = false
autostart = false
[node name="LockDelay" type="Timer" parent="." index="6"]
[node name="LockDelay" type="Timer" parent="." index="7"]
process_mode = 1
wait_time = 0.5
one_shot = true
autostart = false
[node name="AutoShiftDelay" type="Timer" parent="." index="7"]
[node name="AutoShiftDelay" type="Timer" parent="." index="8"]
process_mode = 1
wait_time = 0.17
wait_time = 0.2
one_shot = true
autostart = false
[node name="AutoShiftTimer" type="Timer" parent="." index="8"]
[node name="AutoShiftTimer" type="Timer" parent="." index="9"]
process_mode = 1
wait_time = 0.03
one_shot = false
autostart = false
[node name="MidiPlayer" parent="." index="9" instance=ExtResource( 5 )]
[node name="MidiPlayer" parent="." index="10" instance=ExtResource( 5 )]
editor/display_folded = true
script = ExtResource( 6 )
file = "res://midi/Tetris - Song A.mid"
volume_db = -12
volume_db = -24
loop = true
loop_start = 1.81
soundfont = "res://midi/TimGM6mb.sf2"
@ -434,7 +447,7 @@ wait_time = 1.41
one_shot = true
autostart = false
[node name="FlashText" type="Control" parent="." index="10"]
[node name="FlashText" type="Control" parent="." index="11"]
anchor_left = 0.5
anchor_top = 0.5
@ -488,25 +501,35 @@ anims/Flash = SubResource( 7 )
blend_times = [ ]
_sections_unfolded = [ "Playback Options" ]
[node name="Stats" parent="." index="11" instance=ExtResource( 9 )]
[node name="Stats" parent="." index="12" instance=ExtResource( 9 )]
visible = false
anchor_left = 0.0
anchor_top = 1.0
anchor_right = 0.0
anchor_bottom = 1.0
margin_left = 20.0
margin_top = -260.0
margin_right = 130.0
margin_bottom = -50.0
[node name="controls_ui" parent="." index="13" instance=ExtResource( 10 )]
visible = false
[node name="controls_ui" parent="." index="12" instance=ExtResource( 10 )]
[node name="Start" parent="." index="14" instance=ExtResource( 11 )]
visible = false
[node name="ReplayButton" type="Button" parent="." index="13"]
[node name="ReplayButton" type="Button" parent="." index="15"]
visible = false
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -100.0
margin_top = -60.0
margin_right = -27.0
margin_bottom = -26.0
margin_left = -335.0
margin_top = -55.0
margin_right = -165.0
margin_bottom = -15.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
@ -525,14 +548,6 @@ flat = false
align = 1
_sections_unfolded = [ "Margin", "custom_colors", "custom_fonts" ]
[node name="Start" parent="." index="14" instance=ExtResource( 12 )]
[connection signal="piece_dropped" from="." to="Stats" method="_on_Main_piece_dropped"]
[connection signal="piece_locked" from="." to="MidiPlayer" method="_on_Main_piece_locked"]
[connection signal="piece_locked" from="." to="Stats" method="_on_Main_piece_locked"]
[connection signal="timeout" from="DropTimer" to="." method="_on_DropTimer_timeout"]
[connection signal="timeout" from="LockDelay" to="." method="_on_LockDelay_timeout"]
@ -547,10 +562,10 @@ _sections_unfolded = [ "Margin", "custom_colors", "custom_fonts" ]
[connection signal="flash_text" from="Stats" to="FlashText" method="print"]
[connection signal="level_up" from="Stats" to="." method="_on_Stats_level_up"]
[connection signal="level_up" from="Stats" to="." method="new_level"]
[connection signal="start" from="Start" to="." method="new_game"]
[connection signal="pressed" from="ReplayButton" to="." method="_on_ReplayButton_pressed"]
[connection signal="start" from="Start" to="." method="_on_Start_start"]

View File

@ -7,6 +7,7 @@ const LINE_CLEAR_CHANNELS = [2, 6]
var muted_events = []
func _ready():
._ready()
mute_channels(LINE_CLEAR_CHANNELS)
func _init_channel( ):
@ -36,8 +37,7 @@ func unmute_channels(channels):
for note in muted_events[channel_id]:
_process_track_event_note_on(channel_status[channel_id], muted_events[channel_id][note])
func _on_Main_piece_locked(lines, t_spin):
if lines or t_spin:
func piece_locked(lines):
if lines == Tetromino.NB_MINOES:
for channel in LINE_CLEAR_CHANNELS:
channel_status[channel].vomume = 127

View File

@ -9,6 +9,7 @@ const SCORES = [
]
const LINES_CLEARED_NAMES = ["", "SINGLE", "DOUBLE", "TRIPLE", "TETRIS"]
const T_SPIN_NAMES = ["", "T-SPIN", "MINI T-SPIN"]
const password = "TETRIS 3000"
var level
var goal
@ -18,7 +19,20 @@ var time
var combos
signal flash_text(text)
signal level_up
signal level_up(level)
func _ready():
load_user_data()
func load_user_data():
var save_game = File.new()
if not save_game.file_exists("user://data.save"):
high_score = 0
else:
save_game.open_encrypted_with_pass("user://data.save", File.READ, password)
high_score = int(save_game.get_line())
$VBC/HighScore.text = str(high_score)
save_game.close()
func new_game(start_level):
level = start_level - 1
@ -36,7 +50,7 @@ func new_level():
$VBC/Level.text = str(level)
$VBC/Goal.text = str(goal)
emit_signal("flash_text", "Level\n%d"%level)
emit_signal("level_up")
emit_signal("level_up", level)
func _on_Clock_timeout():
show_time()
@ -48,22 +62,22 @@ func show_time():
var hours = int(time_elapsed/3600)
$VBC/Time.text = str(hours) + ":%02d"%minutes + ":%02d"%seconds
func _on_Main_piece_dropped(ds):
func piece_dropped(ds):
score += ds
$VBC/Score.text = str(score)
func _on_Main_piece_locked(lines, t_spin):
func piece_locked(lines, t_spin):
var ds
if lines or t_spin:
var text = T_SPIN_NAMES[t_spin]
if text:
if lines and t_spin:
text += " "
text += LINES_CLEARED_NAMES[lines]
emit_signal("flash_text", text)
ds = SCORES[lines][t_spin]
goal -= ds
$VBC/Goal.text = str(goal)
ds *= 100
ds *= 100 * level
emit_signal("flash_text", str(ds))
score += ds
$VBC/Score.text = str(score)
@ -86,3 +100,14 @@ func _on_Main_piece_locked(lines, t_spin):
combos = -1
if goal <= 0:
new_level()
func _notification(what):
match what:
MainLoop.NOTIFICATION_WM_QUIT_REQUEST:
save_user_data()
func save_user_data():
var save_game = File.new()
save_game.open_encrypted_with_pass("user://data.save", File.WRITE, password)
save_game.store_line(str(high_score))
save_game.close()

View File

@ -3,7 +3,7 @@
[ext_resource path="res://Stats.gd" type="Script" id=1]
[ext_resource path="res://fonts/Gamer.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=2]
[sub_resource type="DynamicFont" id=1]
size = 20
use_mipmaps = false
@ -70,7 +70,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "Score:"
percent_visible = 1.0
@ -93,7 +93,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "0"
align = 2
@ -117,7 +117,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "High score:"
percent_visible = 1.0
@ -140,7 +140,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "0"
align = 2
@ -164,7 +164,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "Time"
percent_visible = 1.0
@ -186,7 +186,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "0:00:00"
align = 2
@ -209,7 +209,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "Level:"
percent_visible = 1.0
@ -231,7 +231,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "0"
align = 2
@ -254,7 +254,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "Goal:"
percent_visible = 1.0
@ -276,7 +276,7 @@ mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
custom_fonts/font = SubResource( 2 )
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 0.756214, 0.921978, 0.990234, 1 )
text = "0"
align = 2

View File

@ -1,2 +0,0 @@
extends "Tetromino.gd"

View File

@ -1,9 +1,8 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Tetrominos/TetroJ.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Tetromino.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Mino/Mino.tscn" type="PackedScene" id=2]
[node name="TetroJ" type="Spatial" index="0"]
script = ExtResource( 1 )

View File

@ -1,2 +0,0 @@
extends "Tetromino.gd"

View File

@ -1,9 +1,8 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Tetrominos/TetroL.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Tetromino.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Mino/Mino.tscn" type="PackedScene" id=2]
[node name="TetroL" type="Spatial" index="0"]
script = ExtResource( 1 )

View File

@ -1,4 +1,4 @@
extends "Tetromino.gd"
func rotate(direction):
pass
return 0

View File

@ -1,2 +0,0 @@
extends "Tetromino.gd"

View File

@ -1,9 +1,8 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Tetrominos/TetroS.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Tetromino.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Mino/Mino.tscn" type="PackedScene" id=2]
[node name="TetroS" type="Spatial" index="0"]
script = ExtResource( 1 )

View File

@ -1,2 +0,0 @@
extends "Tetromino.gd"

View File

@ -1,9 +1,8 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Tetrominos/TetroZ.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Tetromino.gd" type="Script" id=1]
[ext_resource path="res://Tetrominos/Mino/Mino.tscn" type="PackedScene" id=2]
[node name="TetroZ" type="Spatial" index="0"]
script = ExtResource( 1 )

View File

@ -73,52 +73,53 @@ const SUPER_ROTATION_SYSTEM = [
}
]
var minoes
var minoes = []
var grid_map
var lock_delay
var orientation = 0
var t_spin = NO_T_SPIN
func _ready():
randomize()
minoes = [$Mino0, $Mino1, $Mino2, $Mino3]
grid_map = get_parent().get_node("GridMap")
for i in range(NB_MINOES):
minoes.append(get_node("Mino"+str(i)))
grid_map = get_node("../Matrix/GridMap")
lock_delay = get_node("../LockDelay")
func positions():
var p = []
func set_translations(translations):
for i in range(NB_MINOES):
minoes[i].translation = to_local(translations[i])
func get_translations():
var translations = []
for mino in minoes:
p.append(to_global(mino.translation))
return p
func rotated_positions(direction):
var translations = [to_global(minoes[0].translation) ]
for i in range(1, 4):
var v = to_global(minoes[i].translation)
v -= to_global(minoes[0].translation)
v = Vector3(-1*direction*v.y, direction*v.x, 0)
v += to_global(minoes[0].translation)
translations.append(v)
translations.append(to_global(mino.translation))
return translations
func apply_positions(positions):
for i in range(NB_MINOES):
minoes[i].translation = to_local(positions[i])
func move(movement):
if grid_map.possible_positions(positions(), movement):
if grid_map.possible_positions(get_translations(), movement):
translate(movement)
lock_delay.start()
return true
else:
return false
func rotate(direction):
var rotated_positions = rotated_positions(direction)
var t = get_translations()
var rotated_translations = [t[0]]
for i in range(1, NB_MINOES):
var v = t[i]
v -= t[0]
v = Vector3(-1*direction*v.y, direction*v.x, 0)
v += t[0]
rotated_translations.append(v)
var movements = SUPER_ROTATION_SYSTEM[orientation][direction]
for i in range(movements.size()):
if grid_map.possible_positions(rotated_positions, movements[i]):
if grid_map.possible_positions(rotated_translations, movements[i]):
orientation -= direction
orientation %= NB_MINOES
apply_positions(rotated_positions)
set_translations(rotated_translations)
translate(movements[i])
lock_delay.start()
return i+1
return 0

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 KiB

View File

@ -1,21 +1,18 @@
[gd_scene load_steps=6 format=2]
[gd_scene load_steps=12 format=2]
[ext_resource path="res://controls.gd" type="Script" id=1]
[ext_resource path="res://fonts/TitleFont.tres" type="DynamicFont" id=2]
[ext_resource path="res://fonts/Gamer.ttf" type="DynamicFontData" id=3]
[ext_resource path="res://fonts/ButtonFont.tres" type="DynamicFont" id=4]
[ext_resource path="res://fonts/ButtonFont.tres" type="DynamicFont" id=3]
[ext_resource path="res://icons/arrowLeft.png" type="Texture" id=4]
[ext_resource path="res://icons/arrowRight.png" type="Texture" id=5]
[ext_resource path="res://icons/clockwise.png" type="Texture" id=6]
[ext_resource path="res://icons/counterclockwise.png" type="Texture" id=7]
[ext_resource path="res://icons/arrowDown.png" type="Texture" id=8]
[ext_resource path="res://icons/harddrop.png" type="Texture" id=9]
[ext_resource path="res://icons/hold.png" type="Texture" id=10]
[ext_resource path="res://icons/pause.png" type="Texture" id=11]
[sub_resource type="DynamicFont" id=2]
size = 20
use_mipmaps = true
use_filter = false
extra_spacing_top = -4
extra_spacing_bottom = -4
font_data = ExtResource( 3 )
_sections_unfolded = [ "Extra Spacing", "Font", "Settings" ]
[node name="controls_ui" type="Control"]
[node name="controls_ui" type="Control" index="0"]
anchor_left = 0.5
anchor_top = 0.5
@ -95,31 +92,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/move_left" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 69.0
margin_bottom = 29.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "move
left"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
_sections_unfolded = [ "Rect", "custom_fonts" ]
[node name="Button" type="Button" parent="bindings/move_left" index="1"]
[node name="Button" type="Button" parent="bindings/move_left" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -135,7 +108,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -144,6 +117,12 @@ flat = false
align = 1
_sections_unfolded = [ "Rect" ]
[node name="arrowLeft" type="Sprite" parent="bindings/move_left" index="1"]
position = Vector2( 30, 20 )
scale = Vector2( 0.9, 0.9 )
texture = ExtResource( 4 )
[node name="move_right" type="Control" parent="bindings" index="1"]
anchor_left = 0.0
@ -161,32 +140,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/move_right" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 5.0
margin_top = -1.0
margin_right = 80.0
margin_bottom = 31.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "move
right"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Button" type="Button" parent="bindings/move_right" index="1"]
[node name="Button" type="Button" parent="bindings/move_right" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -203,7 +157,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -211,15 +165,21 @@ group = null
flat = false
align = 1
[node name="arrowRight" type="Sprite" parent="bindings/move_right" index="1"]
position = Vector2( 34, 19 )
texture = ExtResource( 5 )
_sections_unfolded = [ "Transform" ]
[node name="rotate_clockwise" type="Control" parent="bindings" index="2"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 50.0
margin_left = 230.0
margin_top = 100.0
margin_right = 90.0
margin_right = 270.0
margin_bottom = 140.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
@ -228,30 +188,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/rotate_clockwise" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 118.0
margin_bottom = 32.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "rotate
clockwise"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Button" type="Button" parent="bindings/rotate_clockwise" index="1"]
[node name="Button" type="Button" parent="bindings/rotate_clockwise" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -267,7 +204,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -276,16 +213,21 @@ flat = false
align = 1
_sections_unfolded = [ "custom_fonts" ]
[node name="clockwise" type="Sprite" parent="bindings/rotate_clockwise" index="1"]
position = Vector2( 30, 15 )
texture = ExtResource( 6 )
[node name="rotate_counterclockwise" type="Control" parent="bindings" index="3"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 226.0
margin_top = 101.0
margin_right = 266.0
margin_bottom = 141.0
margin_left = 45.0
margin_top = 100.0
margin_right = 85.0
margin_bottom = 140.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 0
@ -293,33 +235,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/rotate_counterclockwise" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 5.0
margin_top = -2.0
margin_right = 177.0
margin_bottom = 37.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "rotate
counter
clockwise"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Button" type="Button" parent="bindings/rotate_counterclockwise" index="1"]
[node name="Button" type="Button" parent="bindings/rotate_counterclockwise" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -336,7 +252,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -345,6 +261,11 @@ flat = false
align = 1
_sections_unfolded = [ "Rect" ]
[node name="counterclockwise" type="Sprite" parent="bindings/rotate_counterclockwise" index="1"]
position = Vector2( 34, 14 )
texture = ExtResource( 7 )
[node name="soft_drop" type="Control" parent="bindings" index="4"]
anchor_left = 0.0
@ -362,30 +283,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/soft_drop" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 66.0
margin_bottom = 32.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "soft
drop"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Button" type="Button" parent="bindings/soft_drop" index="1"]
[node name="Button" type="Button" parent="bindings/soft_drop" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -401,7 +299,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -409,6 +307,12 @@ group = null
flat = false
align = 1
[node name="arrowDown" type="Sprite" parent="bindings/soft_drop" index="1"]
position = Vector2( 30, 20 )
texture = ExtResource( 8 )
_sections_unfolded = [ "Transform" ]
[node name="hard_drop" type="Control" parent="bindings" index="5"]
anchor_left = 0.0
@ -426,32 +330,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/hard_drop" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 5.0
margin_top = -1.0
margin_right = 75.0
margin_bottom = 31.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "hard
drop"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Button" type="Button" parent="bindings/hard_drop" index="1"]
[node name="Button" type="Button" parent="bindings/hard_drop" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -468,7 +347,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -476,6 +355,11 @@ group = null
flat = false
align = 1
[node name="harddrop" type="Sprite" parent="bindings/hard_drop" index="1"]
position = Vector2( 34, 19 )
texture = ExtResource( 9 )
[node name="hold" type="Control" parent="bindings" index="6"]
anchor_left = 0.0
@ -493,29 +377,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/hold" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 55.0
margin_bottom = 40.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "hold"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
[node name="Button" type="Button" parent="bindings/hold" index="1"]
[node name="Button" type="Button" parent="bindings/hold" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -531,7 +393,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -539,6 +401,11 @@ group = null
flat = false
align = 1
[node name="hold" type="Sprite" parent="bindings/hold" index="1"]
position = Vector2( 30, 20 )
texture = ExtResource( 10 )
[node name="pause" type="Control" parent="bindings" index="7"]
anchor_left = 0.0
@ -556,33 +423,7 @@ mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
[node name="Label" type="Label" parent="bindings/pause" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 5.0
margin_top = 3.0
margin_right = 106.0
margin_bottom = 35.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 0
custom_fonts/font = SubResource( 2 )
custom_colors/font_color = Color( 0.752941, 0.921569, 0.988235, 1 )
text = "pause
resume"
valign = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
_sections_unfolded = [ "custom_fonts" ]
[node name="Button" type="Button" parent="bindings/pause" index="1"]
[node name="Button" type="Button" parent="bindings/pause" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -599,7 +440,7 @@ mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 2
size_flags_vertical = 2
custom_fonts/font = ExtResource( 4 )
custom_fonts/font = ExtResource( 3 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
@ -607,4 +448,9 @@ group = null
flat = false
align = 1
[node name="pause" type="Sprite" parent="bindings/pause" index="1"]
position = Vector2( 34, 19 )
texture = ExtResource( 11 )

BIN
source/icons/arrowDown.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
source/icons/arrowLeft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
source/icons/arrowRight.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
source/icons/clockwise.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
source/icons/harddrop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 503 B

BIN
source/icons/hold.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 602 B

BIN
source/icons/pause.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -197,7 +197,7 @@ func seek( to_position ):
var length = len(self.track_status.events)
while pointer < length:
var event_chunk = self.track_status.events[pointer]
if self.position < event_chunk.time:
if self.position <= event_chunk.time:
break
pointer += 1
self.track_status.event_pointer = pointer

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 587 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 KiB

View File

@ -20,9 +20,7 @@ config/icon="res://icons/48.png"
window/size/width=500
window/size/height=500
window/vsync/use_vsync=false
window/stretch/mode="2d"
window/stretch/aspect="expand"
window/stretch/shrink="1"
[gui]
@ -52,3 +50,4 @@ toggle_fullscreen=[ Object(InputEventKey,"resource_local_to_scene":false,"resour
[rendering]
environment/default_clear_color=Color( 0, 0, 0, 1 )
quality/main_loop_type=""

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 380 KiB

After

Width:  |  Height:  |  Size: 398 KiB