File src/routes/+layout.svelte changed (mode: 100644) (index a5075a0..3254c3f) |
11 |
11 |
import type { ModalSettings } from '@skeletonlabs/skeleton'; |
import type { ModalSettings } from '@skeletonlabs/skeleton'; |
12 |
12 |
|
|
13 |
13 |
|
|
14 |
|
import { gridSize, state } from "$lib/GlobalDefinitions"; |
|
|
14 |
|
import { State, gridSize, state } from "$lib/GlobalDefinitions"; |
15 |
15 |
import { GiveUp, StartGame, StartScreen } from '$lib/GameStateOperations'; |
import { GiveUp, StartGame, StartScreen } from '$lib/GameStateOperations'; |
16 |
16 |
import { IsInvalidGrid } from '$lib/GameGridOperations'; |
import { IsInvalidGrid } from '$lib/GameGridOperations'; |
17 |
17 |
|
|
|
65 |
65 |
<div class="bg-surface-900 text-center">{$state}</div> |
<div class="bg-surface-900 text-center">{$state}</div> |
66 |
66 |
</svelte:fragment> |
</svelte:fragment> |
67 |
67 |
<svelte:fragment slot="sidebarLeft" > |
<svelte:fragment slot="sidebarLeft" > |
68 |
|
<div class="p-1"><button type="button" class="btn btn-l variant-filled" on:click={StartScreen}>Start Screen</button></div> |
|
69 |
|
<div class="p-1"><button type="button" class="btn btn-l variant-filled" on:click={StartGame}>New Game</button></div> |
|
|
68 |
|
{#if $state == State.PLAYING} |
70 |
69 |
<div class="p-1"><button type="button" class="btn btn-l variant-filled" on:click={GiveUp}>Give Up</button></div> |
<div class="p-1"><button type="button" class="btn btn-l variant-filled" on:click={GiveUp}>Give Up</button></div> |
|
70 |
|
{/if} |
71 |
71 |
</svelte:fragment> |
</svelte:fragment> |
72 |
72 |
<!-- (sidebarRight) --> |
<!-- (sidebarRight) --> |
73 |
73 |
<!-- Router Slot --> |
<!-- Router Slot --> |
File src/routes/+page.svelte changed (mode: 100644) (index 89b9ace..b73492d) |
3 |
3 |
import { State, selectedCards, state, stateMessage, SleepThenDo, gridSize } from '$lib/GlobalDefinitions'; |
import { State, selectedCards, state, stateMessage, SleepThenDo, gridSize } from '$lib/GlobalDefinitions'; |
4 |
4 |
import { StartGame, Win } from '$lib/GameStateOperations'; |
import { StartGame, Win } from '$lib/GameStateOperations'; |
5 |
5 |
import Card from '$lib/Card.svelte'; |
import Card from '$lib/Card.svelte'; |
6 |
|
import { CardData } from '$lib/Card.svelte'; |
|
|
6 |
|
import type { CardData } from '$lib/Card.svelte'; |
7 |
7 |
import { onDestroy } from 'svelte'; |
import { onDestroy } from 'svelte'; |
8 |
8 |
import { GridGenerationAlgorithm, GenerateGrid } from '$lib/GameGridOperations'; |
import { GridGenerationAlgorithm, GenerateGrid } from '$lib/GameGridOperations'; |
9 |
|
import Layout from './+layout.svelte'; |
|
10 |
9 |
|
|
11 |
10 |
export let cardsOnTable: CardData[] = []; |
export let cardsOnTable: CardData[] = []; |
12 |
11 |
let allCards: Card[] = []; |
let allCards: Card[] = []; |
13 |
|
let boardReRender = false; |
|
14 |
|
|
|
15 |
|
cardsOnTable = GenerateGrid(GridGenerationAlgorithm.FisherYates, $gridSize); |
|
|
12 |
|
let newGame = false; |
16 |
13 |
|
|
17 |
14 |
const unsubscribeState = state.subscribe(HandleChangeGameState); |
const unsubscribeState = state.subscribe(HandleChangeGameState); |
18 |
|
const unsubscribeGridSize = gridSize.subscribe(HandleGridSizeChange); |
|
|
15 |
|
let unsubscribeGridSize = gridSize.subscribe(HandleGridSizeChange); |
19 |
16 |
let unsubscribeCards = selectedCards.subscribe(HandleChangesInSelectedCards); |
let unsubscribeCards = selectedCards.subscribe(HandleChangesInSelectedCards); |
20 |
17 |
onDestroy(unsubscribeState); |
onDestroy(unsubscribeState); |
21 |
18 |
onDestroy(unsubscribeGridSize); |
onDestroy(unsubscribeGridSize); |
|
27 |
24 |
function HandleChangeGameState() { |
function HandleChangeGameState() { |
28 |
25 |
switch ($state) { |
switch ($state) { |
29 |
26 |
case State.PLAYING: |
case State.PLAYING: |
30 |
|
|
|
31 |
27 |
cardsOnTable = GenerateGrid(GridGenerationAlgorithm.FisherYates, $gridSize); |
cardsOnTable = GenerateGrid(GridGenerationAlgorithm.FisherYates, $gridSize); |
32 |
|
//cardsOnTable.forEach(cardData => {allCards = [...allCards, {cardData: CardData}]}) |
|
33 |
|
|
|
34 |
|
boardReRender = !boardReRender; |
|
35 |
|
|
|
36 |
|
console.log("Started playing: " + allCards); |
|
|
28 |
|
newGame = true; |
37 |
29 |
break; |
break; |
38 |
30 |
|
|
39 |
31 |
case State.CLR: |
case State.CLR: |
40 |
|
allCards = []; |
|
41 |
32 |
cardsOnTable = []; |
cardsOnTable = []; |
42 |
|
|
|
43 |
33 |
selectedCards.set([]); |
selectedCards.set([]); |
44 |
34 |
|
|
45 |
35 |
default: |
default: |
|
47 |
37 |
} |
} |
48 |
38 |
} |
} |
49 |
39 |
|
|
50 |
|
function HandleGridSizeChange(value: number) { |
|
51 |
|
// allCards.forEach(element => { |
|
52 |
|
// element?.$destroy(); |
|
53 |
|
// }); |
|
54 |
|
state.set(State.CLR); |
|
55 |
|
state.set(State.PLAYING); |
|
|
40 |
|
function HandleGridSizeChange() |
|
41 |
|
{ |
|
42 |
|
if($state != State.PLAYING) |
|
43 |
|
{ |
|
44 |
|
return; |
|
45 |
|
} |
|
46 |
|
|
|
47 |
|
allCards |
|
48 |
|
.filter(card => card) |
|
49 |
|
.forEach(element => |
|
50 |
|
{ |
|
51 |
|
element.ResetCard(); |
|
52 |
|
element.cantFlip = true; |
|
53 |
|
}); |
|
54 |
|
|
|
55 |
|
SleepThenDo(1000, () => |
|
56 |
|
{ |
|
57 |
|
state.set(State.CLR); |
|
58 |
|
state.set(State.PLAYING); |
|
59 |
|
ToggleFlipping(); |
|
60 |
|
}) |
|
61 |
|
|
56 |
62 |
} |
} |
57 |
63 |
|
|
58 |
64 |
/** |
/** |
|
62 |
68 |
*/ |
*/ |
63 |
69 |
function HandleChangesInSelectedCards(cardSelection: number[]) |
function HandleChangesInSelectedCards(cardSelection: number[]) |
64 |
70 |
{ |
{ |
65 |
|
|
|
66 |
|
allCards = allCards.filter(card => card); |
|
|
71 |
|
// New games might imply a grid size change. When decreasing the grid size, the svelte engine tends to keep the same array size, but with null values at the end. |
|
72 |
|
// This piece of code cleans the card array from nulls, avoiding errors and bugs |
|
73 |
|
if (newGame) { |
|
74 |
|
allCards = allCards.filter(card => card); |
|
75 |
|
newGame = false; |
|
76 |
|
} |
67 |
77 |
|
|
68 |
78 |
switch (cardSelection.length) { |
switch (cardSelection.length) { |
69 |
79 |
case 2: |
case 2: |
|
100 |
110 |
return; |
return; |
101 |
111 |
} |
} |
102 |
112 |
|
|
103 |
|
console.log(allCards); |
|
104 |
113 |
let winCondition = allCards.filter(card => !card.hasMatched).length <= 0; |
let winCondition = allCards.filter(card => !card.hasMatched).length <= 0; |
105 |
114 |
|
|
106 |
115 |
if(winCondition) |
if(winCondition) |
|
135 |
144 |
</script> |
</script> |
136 |
145 |
|
|
137 |
146 |
<div class="bg-slate-500 h-full w-full mx-auto flex flex-wrap justify-center items-center"> |
<div class="bg-slate-500 h-full w-full mx-auto flex flex-wrap justify-center items-center"> |
138 |
|
{#if $state == State.GAMEOVER || $state == State.START} |
|
|
147 |
|
{#if $state == State.GAMEOVER || $state == State.STARTSCREEN} |
139 |
148 |
<div class="mx-auto flex flex-wrap h-36 justify-center items-center"> |
<div class="mx-auto flex flex-wrap h-36 justify-center items-center"> |
140 |
149 |
<div>{$stateMessage}</div> |
<div>{$stateMessage}</div> |
141 |
150 |
<div class="break" /> |
<div class="break" /> |
|
143 |
152 |
</div> |
</div> |
144 |
153 |
|
|
145 |
154 |
{:else if $state == State.PLAYING} |
{:else if $state == State.PLAYING} |
146 |
|
{#key boardReRender} |
|
147 |
|
<div class="memory-game container flex flex-wrap h-full w-full bg-primary-900 overflow-scroll"> |
|
148 |
|
{#each cardsOnTable as card, index} |
|
149 |
|
<Card bind:this="{allCards[index]}" cardData="{card}"></Card> |
|
150 |
|
{/each} |
|
|
155 |
|
<div class="flex flex-wrap h-full w-full"> |
|
156 |
|
<div class="memory-game container flex flex-wrap h-full w-ful overflow-auto"> |
|
157 |
|
{#each cardsOnTable as card, index} |
|
158 |
|
<Card bind:this="{allCards[index]}" cardData="{card}"></Card> |
|
159 |
|
{/each} |
|
160 |
|
</div> |
151 |
161 |
</div> |
</div> |
152 |
|
{/key} |
|
153 |
162 |
{/if} |
{/if} |
154 |
163 |
</div> |
</div> |
155 |
164 |
|
|