From 238e4924e97d6da10b6b23399059183b4dddbb95 Mon Sep 17 00:00:00 2001 From: Cheelax Date: Tue, 19 Nov 2024 22:05:30 +0100 Subject: [PATCH] wip add line too --- .../src/ui/components/Tutorial/Tutorial.tsx | 2 +- .../ui/components/Tutorial/TutorialGrid.tsx | 58 ++++++++++++------- 2 files changed, 37 insertions(+), 23 deletions(-) diff --git a/client/src/ui/components/Tutorial/Tutorial.tsx b/client/src/ui/components/Tutorial/Tutorial.tsx index 183a91a..b2a3258 100644 --- a/client/src/ui/components/Tutorial/Tutorial.tsx +++ b/client/src/ui/components/Tutorial/Tutorial.tsx @@ -28,7 +28,7 @@ const tutorialInitialState = { [1, 0, 2, 2, 0, 0, 1, 1], [3, 0, 0, 1, 0, 0, 2], ], - nextLine: [0, 0, 0, 0], + nextLine: [4, 0, 0, 0, 0, 1, 0, 0], }; const Tutorial: React.FC = ({ showGrid, endTutorial }) => { diff --git a/client/src/ui/components/Tutorial/TutorialGrid.tsx b/client/src/ui/components/Tutorial/TutorialGrid.tsx index 862c2f0..e997e4e 100644 --- a/client/src/ui/components/Tutorial/TutorialGrid.tsx +++ b/client/src/ui/components/Tutorial/TutorialGrid.tsx @@ -227,18 +227,10 @@ const TutorialGrid: React.FC = forwardRef( const endDrag = useCallback(() => { if (!dragging) return; - console.log("endDrag called", { - dragging, - initialX, - currentX: dragging.x, - }); - setBlocks((prevBlocks) => { const updatedBlocks = prevBlocks.map((b) => { if (b.id === dragging.id) { const finalX = Math.round(b.x); - console.log("Finalizing drag position", { finalX, initialX }); - if (Math.trunc(finalX) !== Math.trunc(initialX)) { setPendingMove({ block: b, @@ -251,19 +243,30 @@ const TutorialGrid: React.FC = forwardRef( } return b; }); - return updatedBlocks; + return concatenateAndShiftBlocks( + updatedBlocks, + nextLineData, + gridHeight, + ); }); setDragging(null); setIsMoving(true); setGameState(GameState.GRAVITY); - }, [dragging, initialX]); + }, [dragging, initialX, nextLineData, gridHeight]); const handleBonusApplication = (block: Block) => { setActionPerformed(true); setBlockBonus(block); if (bonus === BonusType.Wave) { - setBlocks(removeBlocksSameRow(block, blocks)); + setBlocks((prevBlocks) => { + const updatedBlocks = removeBlocksSameRow(block, prevBlocks); + return concatenateAndShiftBlocks( + updatedBlocks, + nextLineData, + gridHeight, + ); + }); getBlocksSameRow(block.y, blocks).forEach((b) => { if (gridPosition === null) return; handleTriggerLocalExplosion( @@ -275,14 +278,17 @@ const TutorialGrid: React.FC = forwardRef( if (ref) { (ref as (type: BonusType) => void)(BonusType.None); } - applyGravity(); - setIsMoving(true); - setGameState(GameState.GRAVITY_BONUS); setTimeout(() => onUpdate(true), 1000); - return; } } else if (bonus === BonusType.Totem) { - setBlocks(removeBlocksSameWidth(block, blocks)); + setBlocks((prevBlocks) => { + const updatedBlocks = removeBlocksSameWidth(block, prevBlocks); + return concatenateAndShiftBlocks( + updatedBlocks, + nextLineData, + gridHeight, + ); + }); getBlocksSameWidth(block, blocks).forEach((b) => { if (gridPosition === null) return; handleTriggerLocalExplosion( @@ -294,14 +300,17 @@ const TutorialGrid: React.FC = forwardRef( if (ref) { (ref as (type: BonusType) => void)(BonusType.None); } - applyGravity(); - setIsMoving(true); - setGameState(GameState.GRAVITY_BONUS); setTimeout(() => onUpdate(true), 1000); - return; } } else if (bonus === BonusType.Hammer) { - setBlocks(removeBlockId(block, blocks)); + setBlocks((prevBlocks) => { + const updatedBlocks = removeBlockId(block, prevBlocks); + return concatenateAndShiftBlocks( + updatedBlocks, + nextLineData, + gridHeight, + ); + }); if (gridPosition === null) return; handleTriggerLocalExplosion( gridPosition.left + block.x * gridSize + (block.width * gridSize) / 2, @@ -312,9 +321,14 @@ const TutorialGrid: React.FC = forwardRef( (ref as (type: BonusType) => void)(BonusType.None); } setTimeout(() => onUpdate(true), 1000); - return; } } + + if (ref) { + (ref as (type: BonusType) => void)(BonusType.None); + } + setIsMoving(true); + setGameState(GameState.GRAVITY_BONUS); }; const handleMouseDown = (e: React.MouseEvent, block: Block) => {