2020-10-05 10:52:37 -05:00
|
|
|
local Piece = require 'tetris.components.piece'
|
|
|
|
local Ruleset = require 'tetris.rulesets.ruleset'
|
|
|
|
|
|
|
|
local ARS = Ruleset:extend()
|
|
|
|
|
|
|
|
ARS.name = "ACE-ARS"
|
|
|
|
ARS.hash = "ArikaACE"
|
|
|
|
|
|
|
|
ARS.spawn_positions = {
|
2020-10-05 21:17:15 -05:00
|
|
|
I = { x=5, y=2 },
|
|
|
|
J = { x=4, y=3 },
|
|
|
|
L = { x=4, y=3 },
|
|
|
|
O = { x=5, y=3 },
|
|
|
|
S = { x=4, y=3 },
|
|
|
|
T = { x=4, y=3 },
|
|
|
|
Z = { x=4, y=3 },
|
2020-10-05 10:52:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ARS.big_spawn_positions = {
|
2020-10-06 15:27:28 -05:00
|
|
|
I = { x=2, y=0 },
|
|
|
|
J = { x=2, y=1 },
|
|
|
|
L = { x=2, y=1 },
|
|
|
|
O = { x=2, y=1 },
|
|
|
|
S = { x=2, y=1 },
|
|
|
|
T = { x=2, y=1 },
|
|
|
|
Z = { x=2, y=1 },
|
2020-10-05 10:52:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ARS.block_offsets = {
|
|
|
|
I={
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=-2, y=0}, {x=1, y=0} },
|
|
|
|
{ {x=0, y=0}, {x=0, y=-1}, {x=0, y=1}, {x=0, y=2} },
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=-2, y=0}, {x=1, y=0} },
|
|
|
|
{ {x=0, y=0}, {x=0, y=-1}, {x=0, y=1}, {x=0, y=2} },
|
|
|
|
},
|
|
|
|
J={
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=1, y=0}, {x=-1, y=-1} },
|
|
|
|
{ {x=0, y=-1}, {x=1, y=-2}, {x=0, y=-2}, {x=0, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=-1, y=-1}, {x=1, y=-1}, {x=1, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=0, y=-2}, {x=0, y=0}, {x=-1, y=0} },
|
|
|
|
},
|
|
|
|
L={
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=1, y=0}, {x=1, y=-1} },
|
|
|
|
{ {x=0, y=-2}, {x=0, y=-1}, {x=1, y=0}, {x=0, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=-1, y=-1}, {x=1, y=-1}, {x=-1, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=-1, y=-2}, {x=0, y=-2}, {x=0, y=0} },
|
|
|
|
},
|
|
|
|
O={
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=-1, y=-1}, {x=0, y=-1} },
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=-1, y=-1}, {x=0, y=-1} },
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=-1, y=-1}, {x=0, y=-1} },
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=-1, y=-1}, {x=0, y=-1} },
|
|
|
|
},
|
|
|
|
S={
|
|
|
|
{ {x=1, y=-1}, {x=0, y=-1}, {x=0, y=0}, {x=-1, y=0} },
|
|
|
|
{ {x=-1, y=-2}, {x=-1, y=-1}, {x=0, y=-1}, {x=0, y=0} },
|
|
|
|
{ {x=1, y=-1}, {x=0, y=-1}, {x=0, y=0}, {x=-1, y=0} },
|
|
|
|
{ {x=-1, y=-2}, {x=-1, y=-1}, {x=0, y=-1}, {x=0, y=0} },
|
|
|
|
},
|
|
|
|
T={
|
|
|
|
{ {x=0, y=0}, {x=-1, y=0}, {x=1, y=0}, {x=0, y=-1} },
|
|
|
|
{ {x=0, y=-1}, {x=0, y=0}, {x=1, y=-1}, {x=0, y=-2} },
|
|
|
|
{ {x=0, y=-1}, {x=-1, y=-1}, {x=1, y=-1}, {x=0, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=0, y=0}, {x=-1, y=-1}, {x=0, y=-2} },
|
|
|
|
},
|
|
|
|
Z={
|
|
|
|
{ {x=0, y=-1}, {x=-1, y=-1}, {x=1, y=0}, {x=0, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=0, y=0}, {x=1, y=-2}, {x=1, y=-1} },
|
|
|
|
{ {x=0, y=-1}, {x=-1, y=-1}, {x=1, y=0}, {x=0, y=0} },
|
|
|
|
{ {x=0, y=-1}, {x=0, y=0}, {x=1, y=-2}, {x=1, y=-1} },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
-- Component functions.
|
|
|
|
|
|
|
|
function ARS:attemptWallkicks(piece, new_piece, rot_dir, grid)
|
|
|
|
|
|
|
|
-- O doesn't kick
|
|
|
|
if (piece.shape == "O") then return end
|
|
|
|
|
|
|
|
-- center column rule
|
|
|
|
if (
|
|
|
|
piece.shape == "J" or piece.shape == "T" or piece.shape == "L"
|
|
|
|
) and (
|
|
|
|
piece.rotation == 0 or piece.rotation == 2
|
2020-10-07 13:54:18 -05:00
|
|
|
) then
|
|
|
|
local offsets = new_piece:getBlockOffsets()
|
|
|
|
table.sort(offsets, function(A, B) return A.y < B.y or A.y == B.y and A.x < B.y end)
|
|
|
|
for index, offset in pairs(offsets) do
|
|
|
|
if grid:isOccupied(piece.position.x + offset.x, piece.position.y + offset.y) then
|
|
|
|
if offset.x == 0 then
|
|
|
|
return
|
|
|
|
else
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-10-05 10:52:37 -05:00
|
|
|
|
|
|
|
if piece.shape == "I" then
|
|
|
|
-- special kick rules for I
|
|
|
|
if new_piece.rotation == 0 or new_piece.rotation == 2 then
|
|
|
|
-- kick right, right2, left
|
|
|
|
if grid:canPlacePiece(new_piece:withOffset({x=1, y=0})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=1, y=0})
|
|
|
|
self:onPieceRotate(piece, grid)
|
|
|
|
elseif grid:canPlacePiece(new_piece:withOffset({x=2, y=0})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=2, y=0})
|
|
|
|
self:onPieceRotate(piece, grid)
|
|
|
|
elseif grid:canPlacePiece(new_piece:withOffset({x=-1, y=0})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=-1, y=0})
|
|
|
|
self:onPieceRotate(piece, grid)
|
|
|
|
end
|
|
|
|
elseif piece:isDropBlocked(grid) and (new_piece.rotation == 1 or new_piece.rotation == 3) and piece.floorkick == 0 then
|
|
|
|
-- kick up, up2
|
|
|
|
if grid:canPlacePiece(new_piece:withOffset({x=0, y=-1})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=0, y=-1})
|
|
|
|
self:onPieceRotate(piece, grid)
|
|
|
|
piece.floorkick = 1
|
|
|
|
elseif grid:canPlacePiece(new_piece:withOffset({x=0, y=-2})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=0, y=-2})
|
|
|
|
self:onPieceRotate(piece, grid)
|
|
|
|
piece.floorkick = 1
|
|
|
|
end
|
|
|
|
end
|
2020-10-07 13:54:18 -05:00
|
|
|
else
|
|
|
|
-- kick right, kick left
|
|
|
|
if grid:canPlacePiece(new_piece:withOffset({x=1, y=0})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=1, y=0})
|
|
|
|
elseif grid:canPlacePiece(new_piece:withOffset({x=-1, y=0})) then
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=-1, y=0})
|
|
|
|
elseif piece.shape == "T"
|
2020-10-07 14:11:15 -05:00
|
|
|
and new_piece.rotation == 1
|
2020-10-07 13:54:18 -05:00
|
|
|
and piece.floorkick == 0
|
|
|
|
and grid:canPlacePiece(new_piece:withOffset({x=0, y=-1}))
|
|
|
|
then
|
|
|
|
-- T floorkick
|
|
|
|
piece.floorkick = piece.floorkick + 1
|
|
|
|
piece:setRelativeRotation(rot_dir):setOffset({x=0, y=-1})
|
|
|
|
end
|
2020-10-05 10:52:37 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function ARS:onPieceCreate(piece, grid)
|
|
|
|
piece.floorkick = 0
|
|
|
|
piece.manipulations = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function ARS:onPieceDrop(piece, grid)
|
|
|
|
piece.lock_delay = 0 -- step reset
|
|
|
|
end
|
|
|
|
|
|
|
|
function ARS:onPieceMove(piece, grid)
|
|
|
|
piece.lock_delay = 0 -- move reset
|
|
|
|
if piece:isDropBlocked(grid) then
|
|
|
|
piece.manipulations = piece.manipulations + 1
|
|
|
|
if piece.manipulations >= 127 then
|
|
|
|
piece.locked = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function ARS:onPieceRotate(piece, grid)
|
|
|
|
piece.lock_delay = 0 -- rotate reset
|
|
|
|
if piece:isDropBlocked(grid) then
|
|
|
|
piece.manipulations = piece.manipulations + 1
|
|
|
|
if piece.manipulations >= 127 then
|
|
|
|
piece.locked = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-10 18:42:56 -05:00
|
|
|
function ARS:get180RotationValue() return 3 end
|
2020-10-05 10:52:37 -05:00
|
|
|
function ARS:getDefaultOrientation() return 3 end -- downward facing pieces by default
|
|
|
|
|
|
|
|
return ARS
|