make an error with filled lines when using cc (#1015)

fixes #1013
This commit is contained in:
Imple Lee
2023-10-20 22:47:04 +08:00
committed by GitHub
parent 8e169dbde8
commit 045deb6954
12 changed files with 36 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ return {
cc_fixed="CC is incompatible with fixed sequences.",
cc_swap="CC is incompatible when the hold mode is set to Swap.",
cc_solid="CC is incompatible with filled line in the field.",
ai_prebag="AI is incompatible with custom sequences that contain non-tetrominoes.",
ai_mission="AI is incompatible with custom missions.",
switchSpawnSFX="Please turn on the block spawn SFX!",

View File

@@ -68,6 +68,7 @@ return {
cc_fixed="CC no es compatible con piezas prefijadas",
cc_swap="CC no es compatible con Swap Hold",
-- cc_solid="CC is incompatible with filled line in the field.",
ai_prebag="La IA no es compatible con piezas que no sean Tetrominos.",
ai_mission="La IA no es compatible con misiones personalizadas.",
switchSpawnSFX="Habilita los sonidos de aparición de las piezas ;)",

View File

@@ -69,6 +69,7 @@ return {
cc_fixed="CC est incompatible avec les séquences fixes",
cc_swap="CC est incompatible avec le mode de maintien du swap",
-- cc_solid="CC is incompatible with filled line in the field.",
-- ai_prebag="The AI is incompatible with custom sequences which have nontetromino.",'IA est incompatible avec les séquences personnalisées.",
ai_mission="L'IA est incompatible avec les missions personnalisées.",
switchSpawnSFX="Activez les effets sonores d'apparition des pièces pour jouer.",

View File

@@ -70,6 +70,7 @@ return {
cc_fixed="CC tidak cocok dengan urutan tetap.",
cc_swap="CC tidak cocok dengan mode simpan tukar.",
-- cc_solid="CC is incompatible with filled line in the field.",
ai_prebag="AI tidak cocok dengan urutan terubah yang memiliki non-tetromino.",
ai_mission="AI tidak cocok dengan misi terubah.",
switchSpawnSFX="Nyalakan efek suara munculan blok!",

View File

@@ -70,6 +70,7 @@ return {
cc_fixed="CCはミ順の指定に非対応です!",
cc_swap="CCはホールドモード、Swapに非対応です!",
-- cc_solid="CC is incompatible with filled line in the field.",
ai_prebag="AIは通常のテトロミ以外やミ順指定に非対応です!",
ai_mission="AIはカスタムミッションに非対応です!",
switchSpawnSFX="ブロック出現時の効果音をONにしてください!",

View File

@@ -59,6 +59,7 @@ return {
-- cc_fixed="CC is incompatible with fixed sequences",
-- cc_swap="CC is incompatible with swap holdmode",
-- cc_solid="CC is incompatible with filled line in the field.",
-- ai_prebag="The AI is incompatible with custom sequences which have nontetromino.", inteligência é incompatível com sequências fixas.",
ai_mission="A inteligência é incompatível com missões costumizadas.",
switchSpawnSFX="Switch on spawn SFX to play",

View File

@@ -59,6 +59,7 @@ return {
cc_fixed="CC X!!!",
cc_swap="CC X!!!",
cc_solid="CC X!!!",
ai_prebag="X!!!",
ai_mission="X!!!",
needRestart="!!*#R#*!!",

View File

@@ -74,6 +74,7 @@ return {
cc_fixed="CC không tương thích với trình xáo gạch cố định",
cc_swap="CC không tương thích với chế độ Hold là Chuyển",
-- cc_solid="CC is incompatible with filled line in the field.",
ai_prebag="AI không tương thích với trình xáo gạch chứa gạch không phải là tetromino.",
ai_mission="AI không tương thích với nhiệm vụ tuỳ chọn.",
switchSpawnSFX="Vui lòng bật Spawn SFX để chơi!",

View File

@@ -69,6 +69,7 @@ return {
cc_fixed="不能同时开启CC和固定序列",
cc_swap="不能同时开启CC和swap的暂存模式",
cc_solid="开启CC时不能存在预先填满的行",
ai_prebag="不能同时开启AI和含有非四连块的自定义序列",
ai_mission="不能同时开启AI和自定义任务",
switchSpawnSFX="请开启方块生成音效",

View File

@@ -68,6 +68,7 @@ return {
cc_fixed=" if (AI==CC and Sequence==Fixed) then Error(); end",
cc_swap=" if (AI==CC and Hold.Mode==Swap) then Error(); end",
cc_solid=" if (AI==CC and filledLine in Field) then Error(); end",
ai_prebag=" if (AI==true and Ctm.Seq~=Tetromino) then Error(); end",
ai_mission=" if (AI==true and Ctm.Mission~=true) then Error(); end",
switchSpawnSFX="SpawnSFX=false",

View File

@@ -69,6 +69,7 @@ return {
cc_fixed="不能同時開啟CC和固定序列",
cc_swap="不能同時開啟CC和swap的暫存模式",
cc_solid="開啟CC時不能存在預先填滿的行",
ai_prebag="不能同時開啟AI和含有非四連方塊的自定義序列",
ai_mission="不能同時開啟AI和自定義任務",
switchSpawnSFX="請開啟方塊生成音效",

View File

@@ -104,6 +104,31 @@ local function _play(mode)
MES.new('error',text.cc_swap)
return
end
local hasSolidLine=false
for _,F in next,CUSTOMGAME_LOCAL.field do
local solidLineInThisField=false
for y=1,#F do
local solidLine=true
for x=1,10 do
if F[y][x]==0 then
solidLine=false
break
end
end
if solidLine then
solidLineInThisField=true
break
end
end
if solidLineInThisField then
hasSolidLine=true
break
end
end
if hasSolidLine then
MES.new('error',text.cc_solid)
return
end
end
if #CUSTOMGAME_LOCAL.bag>0 then
for _=1,#CUSTOMGAME_LOCAL.bag do