react-native-games 0.3.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +134 -130
- package/lib/module/games/balloon-blaster/BalloonBlaster.js +116 -343
- package/lib/module/games/balloon-blaster/BalloonBlaster.js.map +1 -1
- package/lib/module/games/balloon-blaster/BalloonBlasterConstants.js +182 -0
- package/lib/module/games/balloon-blaster/BalloonBlasterConstants.js.map +1 -0
- package/lib/module/games/balloon-blaster/BalloonBlasterService.js +123 -101
- package/lib/module/games/balloon-blaster/BalloonBlasterService.js.map +1 -1
- package/lib/module/games/balloon-blaster/BalloonBlasterStore.js +119 -92
- package/lib/module/games/balloon-blaster/BalloonBlasterStore.js.map +1 -1
- package/lib/module/games/balloon-blaster/components/BalloonComponent.js +123 -113
- package/lib/module/games/balloon-blaster/components/BalloonComponent.js.map +1 -1
- package/lib/module/games/balloon-blaster/components/GameArea.js +137 -23
- package/lib/module/games/balloon-blaster/components/GameArea.js.map +1 -1
- package/lib/module/games/balloon-blaster/components/GameBackground.js +8 -83
- package/lib/module/games/balloon-blaster/components/GameBackground.js.map +1 -1
- package/lib/module/games/balloon-blaster/components/ScoreBoard.js +15 -22
- package/lib/module/games/balloon-blaster/components/ScoreBoard.js.map +1 -1
- package/lib/module/games/balloon-blaster/components/index.js +0 -4
- package/lib/module/games/balloon-blaster/components/index.js.map +1 -1
- package/lib/module/games/fruit-ninja/FruitNinja.js +143 -0
- package/lib/module/games/fruit-ninja/FruitNinja.js.map +1 -0
- package/lib/module/games/fruit-ninja/FruitNinjaConstants.js +148 -0
- package/lib/module/games/fruit-ninja/FruitNinjaConstants.js.map +1 -0
- package/lib/module/games/{fruit-slicer/FruitSlicerService.js → fruit-ninja/FruitNinjaService.js} +43 -21
- package/lib/module/games/fruit-ninja/FruitNinjaService.js.map +1 -0
- package/lib/module/games/fruit-ninja/FruitNinjaStore.js +191 -0
- package/lib/module/games/fruit-ninja/FruitNinjaStore.js.map +1 -0
- package/lib/module/games/{fruit-slicer → fruit-ninja}/components/FruitComponent.js +1 -1
- package/lib/module/games/fruit-ninja/components/FruitComponent.js.map +1 -0
- package/lib/module/games/fruit-ninja/components/GameArea.js +215 -0
- package/lib/module/games/fruit-ninja/components/GameArea.js.map +1 -0
- package/lib/module/games/{fruit-slicer → fruit-ninja}/components/GameBackground.js +250 -304
- package/lib/module/games/fruit-ninja/components/GameBackground.js.map +1 -0
- package/lib/module/games/{fruit-slicer → fruit-ninja}/components/ScoreBoard.js +17 -47
- package/lib/module/games/fruit-ninja/components/ScoreBoard.js.map +1 -0
- package/lib/module/games/fruit-ninja/components/index.js +7 -0
- package/lib/module/games/fruit-ninja/components/index.js.map +1 -0
- package/lib/module/games/maze-runner/MazeRunner.js +184 -169
- package/lib/module/games/maze-runner/MazeRunner.js.map +1 -1
- package/lib/module/games/maze-runner/MazeRunnerConstants.js +100 -0
- package/lib/module/games/maze-runner/MazeRunnerConstants.js.map +1 -0
- package/lib/module/games/maze-runner/MazeRunnerService.js +37 -14
- package/lib/module/games/maze-runner/MazeRunnerService.js.map +1 -1
- package/lib/module/games/maze-runner/components/EnhancedBallComponent.js +5 -4
- package/lib/module/games/maze-runner/components/EnhancedBallComponent.js.map +1 -1
- package/lib/module/games/maze-runner/components/EnhancedGameArea.js +20 -15
- package/lib/module/games/maze-runner/components/EnhancedGameArea.js.map +1 -1
- package/lib/module/games/maze-runner/components/GameBackground.js +151 -192
- package/lib/module/games/maze-runner/components/GameBackground.js.map +1 -1
- package/lib/module/games/maze-runner/components/ScoreBoard.js +15 -25
- package/lib/module/games/maze-runner/components/ScoreBoard.js.map +1 -1
- package/lib/module/games/maze-runner/components/WallComponent.js +3 -2
- package/lib/module/games/maze-runner/components/WallComponent.js.map +1 -1
- package/lib/module/games/maze-runner/components/index.js +0 -2
- package/lib/module/games/maze-runner/components/index.js.map +1 -1
- package/lib/module/games/popit-fidget/PopitFidget.js +294 -0
- package/lib/module/games/popit-fidget/PopitFidget.js.map +1 -0
- package/lib/module/games/popit-fidget/PopitFidgetConstants.js +113 -0
- package/lib/module/games/popit-fidget/PopitFidgetConstants.js.map +1 -0
- package/lib/module/games/popit-fidget/PopitFidgetService.js +132 -0
- package/lib/module/games/popit-fidget/PopitFidgetService.js.map +1 -0
- package/lib/module/games/popit-fidget/PopitFidgetStore.js +163 -0
- package/lib/module/games/popit-fidget/PopitFidgetStore.js.map +1 -0
- package/lib/module/games/popit-fidget/components/BubbleComponent.js +198 -0
- package/lib/module/games/popit-fidget/components/BubbleComponent.js.map +1 -0
- package/lib/module/games/popit-fidget/components/FidgetGrid.js +165 -0
- package/lib/module/games/popit-fidget/components/FidgetGrid.js.map +1 -0
- package/lib/module/games/popit-fidget/components/GameBackground.js +177 -0
- package/lib/module/games/popit-fidget/components/GameBackground.js.map +1 -0
- package/lib/module/games/popit-fidget/components/ScoreBoard.js +75 -0
- package/lib/module/games/popit-fidget/components/ScoreBoard.js.map +1 -0
- package/lib/module/games/popit-fidget/components/index.js +7 -0
- package/lib/module/games/popit-fidget/components/index.js.map +1 -0
- package/lib/module/games/space-fighter/SpaceFighter.js +169 -0
- package/lib/module/games/space-fighter/SpaceFighter.js.map +1 -0
- package/lib/module/games/space-fighter/SpaceFighterConstants.js +108 -0
- package/lib/module/games/space-fighter/SpaceFighterConstants.js.map +1 -0
- package/lib/module/games/{space-traveller/SpaceTravellerService.js → space-fighter/SpaceFighterService.js} +48 -21
- package/lib/module/games/space-fighter/SpaceFighterService.js.map +1 -0
- package/lib/module/games/space-fighter/SpaceFighterStore.js +195 -0
- package/lib/module/games/space-fighter/SpaceFighterStore.js.map +1 -0
- package/lib/module/games/{space-traveller → space-fighter}/components/AsteroidComponent.js +7 -5
- package/lib/module/games/space-fighter/components/AsteroidComponent.js.map +1 -0
- package/lib/module/games/space-fighter/components/GameArea.js +295 -0
- package/lib/module/games/space-fighter/components/GameArea.js.map +1 -0
- package/lib/module/games/{space-traveller → space-fighter}/components/GameBackground.js +10 -65
- package/lib/module/games/space-fighter/components/GameBackground.js.map +1 -0
- package/lib/module/games/{space-traveller → space-fighter}/components/ScoreBoard.js +20 -26
- package/lib/module/games/space-fighter/components/ScoreBoard.js.map +1 -0
- package/lib/module/games/{space-traveller → space-fighter}/components/Spacecraft3D.js +72 -111
- package/lib/module/games/space-fighter/components/Spacecraft3D.js.map +1 -0
- package/lib/module/games/space-fighter/components/SpacecraftPath.js +52 -0
- package/lib/module/games/space-fighter/components/SpacecraftPath.js.map +1 -0
- package/lib/module/games/{space-traveller → space-fighter}/components/index.js +0 -4
- package/lib/module/games/space-fighter/components/index.js.map +1 -0
- package/lib/module/games/whack-a-mole/WhackAMole.js +263 -0
- package/lib/module/games/whack-a-mole/WhackAMole.js.map +1 -0
- package/lib/module/games/whack-a-mole/WhackAMoleConstants.js +115 -0
- package/lib/module/games/whack-a-mole/WhackAMoleConstants.js.map +1 -0
- package/lib/module/games/whack-a-mole/WhackAMoleService.js +120 -0
- package/lib/module/games/whack-a-mole/WhackAMoleService.js.map +1 -0
- package/lib/module/games/whack-a-mole/WhackAMoleStore.js +172 -0
- package/lib/module/games/whack-a-mole/WhackAMoleStore.js.map +1 -0
- package/lib/module/games/{cat-popper → whack-a-mole}/components/GameBackground.js +31 -91
- package/lib/module/games/whack-a-mole/components/GameBackground.js.map +1 -0
- package/lib/module/games/whack-a-mole/components/GameGrid.js +97 -0
- package/lib/module/games/whack-a-mole/components/GameGrid.js.map +1 -0
- package/lib/module/games/{cat-popper → whack-a-mole}/components/GameHole.js +67 -54
- package/lib/module/games/whack-a-mole/components/GameHole.js.map +1 -0
- package/lib/module/games/{cat-popper/components/CatCharacter.js → whack-a-mole/components/MoleCharacter.js} +75 -115
- package/lib/module/games/whack-a-mole/components/MoleCharacter.js.map +1 -0
- package/lib/module/games/{cat-popper → whack-a-mole}/components/ScoreBoard.js +13 -17
- package/lib/module/games/whack-a-mole/components/ScoreBoard.js.map +1 -0
- package/lib/module/games/{cat-popper → whack-a-mole}/components/index.js +1 -3
- package/lib/module/games/whack-a-mole/components/index.js.map +1 -0
- package/lib/module/index.js +4 -3
- package/lib/module/index.js.map +1 -1
- package/lib/module/services/GamesConstants.js +41 -519
- package/lib/module/services/GamesConstants.js.map +1 -1
- package/lib/module/services/GamesService.js +35 -23
- package/lib/module/services/GamesService.js.map +1 -1
- package/lib/module/services/HapticsService.js +77 -0
- package/lib/module/services/HapticsService.js.map +1 -0
- package/lib/module/services/SoundsService.js +171 -0
- package/lib/module/services/SoundsService.js.map +1 -0
- package/lib/module/shared/helpers/AnimationFrame.js +120 -0
- package/lib/module/shared/helpers/AnimationFrame.js.map +1 -0
- package/lib/module/shared/helpers/AnimationTracker.js +89 -0
- package/lib/module/shared/helpers/AnimationTracker.js.map +1 -0
- package/lib/module/shared/helpers/ErrorHandler.js +269 -0
- package/lib/module/shared/helpers/ErrorHandler.js.map +1 -0
- package/lib/module/shared/helpers/GameControlButton.js +219 -0
- package/lib/module/shared/helpers/GameControlButton.js.map +1 -0
- package/lib/module/{games/balloon-blaster/components → shared/helpers}/GameOverModal.js +25 -17
- package/lib/module/shared/helpers/GameOverModal.js.map +1 -0
- package/lib/module/shared/helpers/GameSettingsModal.js +287 -0
- package/lib/module/shared/helpers/GameSettingsModal.js.map +1 -0
- package/lib/module/shared/helpers/ParticleBlast.js +133 -0
- package/lib/module/shared/helpers/ParticleBlast.js.map +1 -0
- package/lib/module/shared/helpers/ResponsiveScoreBoard.js +81 -0
- package/lib/module/shared/helpers/ResponsiveScoreBoard.js.map +1 -0
- package/lib/module/shared/helpers/index.js +12 -0
- package/lib/module/shared/helpers/index.js.map +1 -0
- package/lib/typescript/src/games/balloon-blaster/BalloonBlaster.d.ts +2 -14
- package/lib/typescript/src/games/balloon-blaster/BalloonBlaster.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/BalloonBlasterConstants.d.ts +144 -0
- package/lib/typescript/src/games/balloon-blaster/BalloonBlasterConstants.d.ts.map +1 -0
- package/lib/typescript/src/games/balloon-blaster/BalloonBlasterService.d.ts +1 -1
- package/lib/typescript/src/games/balloon-blaster/BalloonBlasterService.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/BalloonBlasterStore.d.ts +12 -2
- package/lib/typescript/src/games/balloon-blaster/BalloonBlasterStore.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/components/BalloonComponent.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/components/GameArea.d.ts +1 -15
- package/lib/typescript/src/games/balloon-blaster/components/GameArea.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/components/GameBackground.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/components/ScoreBoard.d.ts +1 -7
- package/lib/typescript/src/games/balloon-blaster/components/ScoreBoard.d.ts.map +1 -1
- package/lib/typescript/src/games/balloon-blaster/components/index.d.ts +0 -4
- package/lib/typescript/src/games/balloon-blaster/components/index.d.ts.map +1 -1
- package/lib/typescript/src/games/fruit-ninja/FruitNinja.d.ts +4 -0
- package/lib/typescript/src/games/fruit-ninja/FruitNinja.d.ts.map +1 -0
- package/lib/typescript/src/games/fruit-ninja/FruitNinjaConstants.d.ts +112 -0
- package/lib/typescript/src/games/fruit-ninja/FruitNinjaConstants.d.ts.map +1 -0
- package/lib/typescript/src/games/{fruit-slicer/FruitSlicerService.d.ts → fruit-ninja/FruitNinjaService.d.ts} +13 -5
- package/lib/typescript/src/games/fruit-ninja/FruitNinjaService.d.ts.map +1 -0
- package/lib/typescript/src/games/{fruit-slicer/FruitSlicerStore.d.ts → fruit-ninja/FruitNinjaStore.d.ts} +13 -4
- package/lib/typescript/src/games/fruit-ninja/FruitNinjaStore.d.ts.map +1 -0
- package/lib/typescript/src/games/{fruit-slicer → fruit-ninja}/components/FruitComponent.d.ts +1 -1
- package/lib/typescript/src/games/fruit-ninja/components/FruitComponent.d.ts.map +1 -0
- package/lib/typescript/src/games/fruit-ninja/components/GameArea.d.ts +3 -0
- package/lib/typescript/src/games/fruit-ninja/components/GameArea.d.ts.map +1 -0
- package/lib/typescript/src/games/fruit-ninja/components/GameBackground.d.ts.map +1 -0
- package/lib/typescript/src/games/fruit-ninja/components/ScoreBoard.d.ts +3 -0
- package/lib/typescript/src/games/fruit-ninja/components/ScoreBoard.d.ts.map +1 -0
- package/lib/typescript/src/games/fruit-ninja/components/index.d.ts +5 -0
- package/lib/typescript/src/games/fruit-ninja/components/index.d.ts.map +1 -0
- package/lib/typescript/src/games/maze-runner/MazeRunner.d.ts +2 -16
- package/lib/typescript/src/games/maze-runner/MazeRunner.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/MazeRunnerConstants.d.ts +41 -0
- package/lib/typescript/src/games/maze-runner/MazeRunnerConstants.d.ts.map +1 -0
- package/lib/typescript/src/games/maze-runner/MazeRunnerService.d.ts +4 -2
- package/lib/typescript/src/games/maze-runner/MazeRunnerService.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/components/EnhancedBallComponent.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/components/EnhancedGameArea.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/components/GameBackground.d.ts +2 -1
- package/lib/typescript/src/games/maze-runner/components/GameBackground.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/components/ScoreBoard.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/components/WallComponent.d.ts.map +1 -1
- package/lib/typescript/src/games/maze-runner/components/index.d.ts +0 -2
- package/lib/typescript/src/games/maze-runner/components/index.d.ts.map +1 -1
- package/lib/typescript/src/games/popit-fidget/PopitFidget.d.ts +5 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidget.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidgetConstants.d.ts +45 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidgetConstants.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidgetService.d.ts +33 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidgetService.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidgetStore.d.ts +36 -0
- package/lib/typescript/src/games/popit-fidget/PopitFidgetStore.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/components/BubbleComponent.d.ts +12 -0
- package/lib/typescript/src/games/popit-fidget/components/BubbleComponent.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/components/FidgetGrid.d.ts +12 -0
- package/lib/typescript/src/games/popit-fidget/components/FidgetGrid.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/components/GameBackground.d.ts +9 -0
- package/lib/typescript/src/games/popit-fidget/components/GameBackground.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/components/ScoreBoard.d.ts +8 -0
- package/lib/typescript/src/games/popit-fidget/components/ScoreBoard.d.ts.map +1 -0
- package/lib/typescript/src/games/popit-fidget/components/index.d.ts +5 -0
- package/lib/typescript/src/games/popit-fidget/components/index.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/SpaceFighter.d.ts +4 -0
- package/lib/typescript/src/games/space-fighter/SpaceFighter.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/SpaceFighterConstants.d.ts +71 -0
- package/lib/typescript/src/games/space-fighter/SpaceFighterConstants.d.ts.map +1 -0
- package/lib/typescript/src/games/{space-traveller/SpaceTravellerService.d.ts → space-fighter/SpaceFighterService.d.ts} +7 -4
- package/lib/typescript/src/games/space-fighter/SpaceFighterService.d.ts.map +1 -0
- package/lib/typescript/src/games/{space-traveller/SpaceTravellerStore.d.ts → space-fighter/SpaceFighterStore.d.ts} +12 -4
- package/lib/typescript/src/games/space-fighter/SpaceFighterStore.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/components/AsteroidComponent.d.ts +8 -0
- package/lib/typescript/src/games/space-fighter/components/AsteroidComponent.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/components/GameArea.d.ts +3 -0
- package/lib/typescript/src/games/space-fighter/components/GameArea.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/components/GameBackground.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/components/ScoreBoard.d.ts +3 -0
- package/lib/typescript/src/games/space-fighter/components/ScoreBoard.d.ts.map +1 -0
- package/lib/typescript/src/games/{space-traveller → space-fighter}/components/Spacecraft3D.d.ts +1 -1
- package/lib/typescript/src/games/space-fighter/components/Spacecraft3D.d.ts.map +1 -0
- package/lib/typescript/src/games/space-fighter/components/SpacecraftPath.d.ts.map +1 -0
- package/lib/typescript/src/games/{space-traveller → space-fighter}/components/index.d.ts +0 -4
- package/lib/typescript/src/games/space-fighter/components/index.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMole.d.ts +4 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMole.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMoleConstants.d.ts +79 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMoleConstants.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMoleService.d.ts +33 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMoleService.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMoleStore.d.ts +41 -0
- package/lib/typescript/src/games/whack-a-mole/WhackAMoleStore.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/components/GameBackground.d.ts.map +1 -0
- package/lib/typescript/src/games/{cat-popper → whack-a-mole}/components/GameGrid.d.ts +2 -2
- package/lib/typescript/src/games/whack-a-mole/components/GameGrid.d.ts.map +1 -0
- package/lib/typescript/src/games/{cat-popper → whack-a-mole}/components/GameHole.d.ts +3 -2
- package/lib/typescript/src/games/whack-a-mole/components/GameHole.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/components/MoleCharacter.d.ts +7 -0
- package/lib/typescript/src/games/whack-a-mole/components/MoleCharacter.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/components/ScoreBoard.d.ts.map +1 -0
- package/lib/typescript/src/games/whack-a-mole/components/index.d.ts +6 -0
- package/lib/typescript/src/games/whack-a-mole/components/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +4 -3
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/services/GamesConstants.d.ts +61 -340
- package/lib/typescript/src/services/GamesConstants.d.ts.map +1 -1
- package/lib/typescript/src/services/GamesService.d.ts +21 -3
- package/lib/typescript/src/services/GamesService.d.ts.map +1 -1
- package/lib/typescript/src/services/HapticsService.d.ts +16 -0
- package/lib/typescript/src/services/HapticsService.d.ts.map +1 -0
- package/lib/typescript/src/services/SoundsService.d.ts +154 -0
- package/lib/typescript/src/services/SoundsService.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/AnimationFrame.d.ts +41 -0
- package/lib/typescript/src/shared/helpers/AnimationFrame.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/AnimationTracker.d.ts +45 -0
- package/lib/typescript/src/shared/helpers/AnimationTracker.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/ErrorHandler.d.ts +124 -0
- package/lib/typescript/src/shared/helpers/ErrorHandler.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/GameControlButton.d.ts +17 -0
- package/lib/typescript/src/shared/helpers/GameControlButton.d.ts.map +1 -0
- package/lib/typescript/src/{games/cat-popper/components → shared/helpers}/GameOverModal.d.ts +5 -0
- package/lib/typescript/src/shared/helpers/GameOverModal.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/GameSettingsModal.d.ts +9 -0
- package/lib/typescript/src/shared/helpers/GameSettingsModal.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/ParticleBlast.d.ts +12 -0
- package/lib/typescript/src/shared/helpers/ParticleBlast.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/ResponsiveScoreBoard.d.ts +42 -0
- package/lib/typescript/src/shared/helpers/ResponsiveScoreBoard.d.ts.map +1 -0
- package/lib/typescript/src/shared/helpers/index.d.ts +13 -0
- package/lib/typescript/src/shared/helpers/index.d.ts.map +1 -0
- package/package.json +9 -6
- package/lib/module/games/balloon-blaster/components/GameControls.js +0 -229
- package/lib/module/games/balloon-blaster/components/GameControls.js.map +0 -1
- package/lib/module/games/balloon-blaster/components/GameOverModal.js.map +0 -1
- package/lib/module/games/balloon-blaster/components/ParticleSystem.js +0 -52
- package/lib/module/games/balloon-blaster/components/ParticleSystem.js.map +0 -1
- package/lib/module/games/balloon-blaster/components/SliceTrail.js +0 -58
- package/lib/module/games/balloon-blaster/components/SliceTrail.js.map +0 -1
- package/lib/module/games/cat-popper/CatPopper.js +0 -230
- package/lib/module/games/cat-popper/CatPopper.js.map +0 -1
- package/lib/module/games/cat-popper/CatPopperService.js +0 -100
- package/lib/module/games/cat-popper/CatPopperService.js.map +0 -1
- package/lib/module/games/cat-popper/CatPopperStore.js +0 -113
- package/lib/module/games/cat-popper/CatPopperStore.js.map +0 -1
- package/lib/module/games/cat-popper/components/CatCharacter.js.map +0 -1
- package/lib/module/games/cat-popper/components/GameBackground.js.map +0 -1
- package/lib/module/games/cat-popper/components/GameControls.js +0 -230
- package/lib/module/games/cat-popper/components/GameControls.js.map +0 -1
- package/lib/module/games/cat-popper/components/GameGrid.js +0 -66
- package/lib/module/games/cat-popper/components/GameGrid.js.map +0 -1
- package/lib/module/games/cat-popper/components/GameHole.js.map +0 -1
- package/lib/module/games/cat-popper/components/GameOverModal.js +0 -131
- package/lib/module/games/cat-popper/components/GameOverModal.js.map +0 -1
- package/lib/module/games/cat-popper/components/ScoreBoard.js.map +0 -1
- package/lib/module/games/cat-popper/components/index.js.map +0 -1
- package/lib/module/games/fruit-slicer/FruitSlicer.js +0 -411
- package/lib/module/games/fruit-slicer/FruitSlicer.js.map +0 -1
- package/lib/module/games/fruit-slicer/FruitSlicerService.js.map +0 -1
- package/lib/module/games/fruit-slicer/FruitSlicerStore.js +0 -156
- package/lib/module/games/fruit-slicer/FruitSlicerStore.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/FruitComponent.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/GameArea.js +0 -50
- package/lib/module/games/fruit-slicer/components/GameArea.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/GameBackground.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/GameControls.js +0 -230
- package/lib/module/games/fruit-slicer/components/GameControls.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/GameOverModal.js +0 -189
- package/lib/module/games/fruit-slicer/components/GameOverModal.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/ParticleSystem.js +0 -52
- package/lib/module/games/fruit-slicer/components/ParticleSystem.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/ScoreBoard.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/SliceTrail.js +0 -58
- package/lib/module/games/fruit-slicer/components/SliceTrail.js.map +0 -1
- package/lib/module/games/fruit-slicer/components/index.js +0 -11
- package/lib/module/games/fruit-slicer/components/index.js.map +0 -1
- package/lib/module/games/maze-runner/components/GameControls.js +0 -129
- package/lib/module/games/maze-runner/components/GameControls.js.map +0 -1
- package/lib/module/games/maze-runner/components/GameOverModal.js +0 -134
- package/lib/module/games/maze-runner/components/GameOverModal.js.map +0 -1
- package/lib/module/games/space-traveller/SpaceTraveller.js +0 -393
- package/lib/module/games/space-traveller/SpaceTraveller.js.map +0 -1
- package/lib/module/games/space-traveller/SpaceTravellerService.js.map +0 -1
- package/lib/module/games/space-traveller/SpaceTravellerStore.js +0 -139
- package/lib/module/games/space-traveller/SpaceTravellerStore.js.map +0 -1
- package/lib/module/games/space-traveller/components/AsteroidComponent.js.map +0 -1
- package/lib/module/games/space-traveller/components/GameArea.js +0 -75
- package/lib/module/games/space-traveller/components/GameArea.js.map +0 -1
- package/lib/module/games/space-traveller/components/GameBackground.js.map +0 -1
- package/lib/module/games/space-traveller/components/GameControls.js +0 -177
- package/lib/module/games/space-traveller/components/GameControls.js.map +0 -1
- package/lib/module/games/space-traveller/components/GameOverModal.js +0 -182
- package/lib/module/games/space-traveller/components/GameOverModal.js.map +0 -1
- package/lib/module/games/space-traveller/components/ParticleComponent.js +0 -34
- package/lib/module/games/space-traveller/components/ParticleComponent.js.map +0 -1
- package/lib/module/games/space-traveller/components/ScoreBoard.js.map +0 -1
- package/lib/module/games/space-traveller/components/SettingsModal.js +0 -222
- package/lib/module/games/space-traveller/components/SettingsModal.js.map +0 -1
- package/lib/module/games/space-traveller/components/Spacecraft3D.js.map +0 -1
- package/lib/module/games/space-traveller/components/SpacecraftPath.js +0 -37
- package/lib/module/games/space-traveller/components/SpacecraftPath.js.map +0 -1
- package/lib/module/games/space-traveller/components/index.js.map +0 -1
- package/lib/module/shared/settings/GameSettings.js +0 -295
- package/lib/module/shared/settings/GameSettings.js.map +0 -1
- package/lib/module/shared/settings/SettingsService.js +0 -119
- package/lib/module/shared/settings/SettingsService.js.map +0 -1
- package/lib/typescript/src/games/balloon-blaster/components/GameControls.d.ts +0 -10
- package/lib/typescript/src/games/balloon-blaster/components/GameControls.d.ts.map +0 -1
- package/lib/typescript/src/games/balloon-blaster/components/GameOverModal.d.ts +0 -9
- package/lib/typescript/src/games/balloon-blaster/components/GameOverModal.d.ts.map +0 -1
- package/lib/typescript/src/games/balloon-blaster/components/ParticleSystem.d.ts +0 -8
- package/lib/typescript/src/games/balloon-blaster/components/ParticleSystem.d.ts.map +0 -1
- package/lib/typescript/src/games/balloon-blaster/components/SliceTrail.d.ts +0 -11
- package/lib/typescript/src/games/balloon-blaster/components/SliceTrail.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/CatPopper.d.ts +0 -13
- package/lib/typescript/src/games/cat-popper/CatPopper.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/CatPopperService.d.ts +0 -32
- package/lib/typescript/src/games/cat-popper/CatPopperService.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/CatPopperStore.d.ts +0 -21
- package/lib/typescript/src/games/cat-popper/CatPopperStore.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/CatCharacter.d.ts +0 -7
- package/lib/typescript/src/games/cat-popper/components/CatCharacter.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/GameBackground.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/GameControls.d.ts +0 -10
- package/lib/typescript/src/games/cat-popper/components/GameControls.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/GameGrid.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/GameHole.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/GameOverModal.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/ScoreBoard.d.ts.map +0 -1
- package/lib/typescript/src/games/cat-popper/components/index.d.ts +0 -8
- package/lib/typescript/src/games/cat-popper/components/index.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/FruitSlicer.d.ts +0 -16
- package/lib/typescript/src/games/fruit-slicer/FruitSlicer.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/FruitSlicerService.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/FruitSlicerStore.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/FruitComponent.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/GameArea.d.ts +0 -17
- package/lib/typescript/src/games/fruit-slicer/components/GameArea.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/GameBackground.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/GameControls.d.ts +0 -10
- package/lib/typescript/src/games/fruit-slicer/components/GameControls.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/GameOverModal.d.ts +0 -9
- package/lib/typescript/src/games/fruit-slicer/components/GameOverModal.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/ParticleSystem.d.ts +0 -8
- package/lib/typescript/src/games/fruit-slicer/components/ParticleSystem.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/ScoreBoard.d.ts +0 -9
- package/lib/typescript/src/games/fruit-slicer/components/ScoreBoard.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/SliceTrail.d.ts +0 -11
- package/lib/typescript/src/games/fruit-slicer/components/SliceTrail.d.ts.map +0 -1
- package/lib/typescript/src/games/fruit-slicer/components/index.d.ts +0 -9
- package/lib/typescript/src/games/fruit-slicer/components/index.d.ts.map +0 -1
- package/lib/typescript/src/games/maze-runner/components/GameControls.d.ts +0 -10
- package/lib/typescript/src/games/maze-runner/components/GameControls.d.ts.map +0 -1
- package/lib/typescript/src/games/maze-runner/components/GameOverModal.d.ts +0 -11
- package/lib/typescript/src/games/maze-runner/components/GameOverModal.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/SpaceTraveller.d.ts +0 -17
- package/lib/typescript/src/games/space-traveller/SpaceTraveller.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/SpaceTravellerService.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/SpaceTravellerStore.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/AsteroidComponent.d.ts +0 -9
- package/lib/typescript/src/games/space-traveller/components/AsteroidComponent.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/GameArea.d.ts +0 -17
- package/lib/typescript/src/games/space-traveller/components/GameArea.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/GameBackground.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/GameControls.d.ts +0 -10
- package/lib/typescript/src/games/space-traveller/components/GameControls.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/GameOverModal.d.ts +0 -9
- package/lib/typescript/src/games/space-traveller/components/GameOverModal.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/ParticleComponent.d.ts +0 -8
- package/lib/typescript/src/games/space-traveller/components/ParticleComponent.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/ScoreBoard.d.ts +0 -8
- package/lib/typescript/src/games/space-traveller/components/ScoreBoard.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/SettingsModal.d.ts +0 -9
- package/lib/typescript/src/games/space-traveller/components/SettingsModal.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/Spacecraft3D.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/SpacecraftPath.d.ts.map +0 -1
- package/lib/typescript/src/games/space-traveller/components/index.d.ts.map +0 -1
- package/lib/typescript/src/shared/settings/GameSettings.d.ts +0 -36
- package/lib/typescript/src/shared/settings/GameSettings.d.ts.map +0 -1
- package/lib/typescript/src/shared/settings/SettingsService.d.ts +0 -32
- package/lib/typescript/src/shared/settings/SettingsService.d.ts.map +0 -1
- /package/lib/typescript/src/games/{cat-popper → fruit-ninja}/components/GameBackground.d.ts +0 -0
- /package/lib/typescript/src/games/{fruit-slicer → space-fighter}/components/GameBackground.d.ts +0 -0
- /package/lib/typescript/src/games/{space-traveller → space-fighter}/components/SpacecraftPath.d.ts +0 -0
- /package/lib/typescript/src/games/{space-traveller → whack-a-mole}/components/GameBackground.d.ts +0 -0
- /package/lib/typescript/src/games/{cat-popper → whack-a-mole}/components/ScoreBoard.d.ts +0 -0
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import type { GameSettingsTheme } from '../../services/GamesConstants';
|
|
2
|
+
export declare const BALLOON_BLASTER_GAME_CONFIG: {
|
|
3
|
+
readonly GAME_DURATION: 60;
|
|
4
|
+
readonly MAX_LIVES: 3;
|
|
5
|
+
readonly BALLOON_SPAWN_INTERVAL: 1200;
|
|
6
|
+
readonly BALLOON_RISE_SPEED: 0.08;
|
|
7
|
+
readonly GRAVITY: -0.003;
|
|
8
|
+
readonly INITIAL_VELOCITY_Y: -0.5;
|
|
9
|
+
readonly INITIAL_VELOCITY_X_RANGE: 0.1;
|
|
10
|
+
readonly ROTATION_SPEED_RANGE: 0.02;
|
|
11
|
+
readonly BALLOON_SIZE: 60;
|
|
12
|
+
readonly SLICE_TRAIL_LENGTH: 10;
|
|
13
|
+
readonly COMBO_TIMEOUT: 2000;
|
|
14
|
+
readonly PARTICLE_COUNT: 4;
|
|
15
|
+
readonly PARTICLE_LIFETIME: 600;
|
|
16
|
+
};
|
|
17
|
+
export declare const BALLOON_BLASTER_ANIMATION_CONFIG: {
|
|
18
|
+
readonly BALLOON_SPRING: {
|
|
19
|
+
readonly damping: 30;
|
|
20
|
+
readonly stiffness: 50;
|
|
21
|
+
};
|
|
22
|
+
readonly POP_SPRING: {
|
|
23
|
+
readonly damping: 20;
|
|
24
|
+
readonly stiffness: 300;
|
|
25
|
+
};
|
|
26
|
+
readonly PARTICLE_SPRING: {
|
|
27
|
+
readonly damping: 25;
|
|
28
|
+
readonly stiffness: 400;
|
|
29
|
+
};
|
|
30
|
+
readonly SLICE_TIMING: {
|
|
31
|
+
readonly duration: 200;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare const BALLOON_BLASTER_COLORS: {
|
|
35
|
+
readonly BACKGROUND: "#87CEEB";
|
|
36
|
+
readonly SCORE_BOARD: "#4169E1";
|
|
37
|
+
readonly SLICE_TRAIL: "#FFD700";
|
|
38
|
+
readonly PARTICLE_COLORS: readonly ["#FF6B6B", "#4ECDC4", "#45B7D1", "#96CEB4", "#FFEAA7", "#DDA0DD"];
|
|
39
|
+
readonly COMBO_TEXT: "#FF4757";
|
|
40
|
+
readonly LIVES_COLOR: "#FF6B6B";
|
|
41
|
+
readonly PARTICLE_GLOW: "rgba(255,255,255,0.9)";
|
|
42
|
+
readonly SCORE: "#FFFFFF";
|
|
43
|
+
readonly UI: "#FF6347";
|
|
44
|
+
readonly BUTTON_ACTIVE: "#FF7F50";
|
|
45
|
+
readonly BUTTON_INACTIVE: "#FFA07A";
|
|
46
|
+
readonly TEXT_PRIMARY: "#FFFFFF";
|
|
47
|
+
readonly TEXT_SECONDARY: "#F0F8FF";
|
|
48
|
+
readonly WHITE: "#FFFFFF";
|
|
49
|
+
readonly START_BUTTON: "#4CAF50";
|
|
50
|
+
readonly GAME_OVER_OVERLAY: "rgba(0, 0, 0, 0.85)";
|
|
51
|
+
};
|
|
52
|
+
export declare const BALLOON_TYPES: readonly [{
|
|
53
|
+
readonly emoji: "🎈";
|
|
54
|
+
readonly points: 10;
|
|
55
|
+
readonly name: "red balloon";
|
|
56
|
+
readonly color: "#FF0040";
|
|
57
|
+
readonly gradient: readonly ["#FF0040", "#FF4080"];
|
|
58
|
+
}, {
|
|
59
|
+
readonly emoji: "🎈";
|
|
60
|
+
readonly points: 10;
|
|
61
|
+
readonly name: "blue balloon";
|
|
62
|
+
readonly color: "#0080FF";
|
|
63
|
+
readonly gradient: readonly ["#0080FF", "#40A0FF"];
|
|
64
|
+
}, {
|
|
65
|
+
readonly emoji: "🎈";
|
|
66
|
+
readonly points: 15;
|
|
67
|
+
readonly name: "yellow balloon";
|
|
68
|
+
readonly color: "#FFD700";
|
|
69
|
+
readonly gradient: readonly ["#FFD700", "#FFEB3B"];
|
|
70
|
+
}, {
|
|
71
|
+
readonly emoji: "🎈";
|
|
72
|
+
readonly points: 20;
|
|
73
|
+
readonly name: "green balloon";
|
|
74
|
+
readonly color: "#00FF80";
|
|
75
|
+
readonly gradient: readonly ["#00FF80", "#40FFA0"];
|
|
76
|
+
}, {
|
|
77
|
+
readonly emoji: "🎈";
|
|
78
|
+
readonly points: 25;
|
|
79
|
+
readonly name: "purple balloon";
|
|
80
|
+
readonly color: "#8000FF";
|
|
81
|
+
readonly gradient: readonly ["#8000FF", "#A040FF"];
|
|
82
|
+
}, {
|
|
83
|
+
readonly emoji: "🎈";
|
|
84
|
+
readonly points: 15;
|
|
85
|
+
readonly name: "pink balloon";
|
|
86
|
+
readonly color: "#FF0080";
|
|
87
|
+
readonly gradient: readonly ["#FF0080", "#FF40A0"];
|
|
88
|
+
}, {
|
|
89
|
+
readonly emoji: "🎈";
|
|
90
|
+
readonly points: 30;
|
|
91
|
+
readonly name: "orange balloon";
|
|
92
|
+
readonly color: "#FF4000";
|
|
93
|
+
readonly gradient: readonly ["#FF4000", "#FF8040"];
|
|
94
|
+
}, {
|
|
95
|
+
readonly emoji: "🎈";
|
|
96
|
+
readonly points: 25;
|
|
97
|
+
readonly name: "cyan balloon";
|
|
98
|
+
readonly color: "#00FFFF";
|
|
99
|
+
readonly gradient: readonly ["#00FFFF", "#40FFFF"];
|
|
100
|
+
}, {
|
|
101
|
+
readonly emoji: "🎈";
|
|
102
|
+
readonly points: 35;
|
|
103
|
+
readonly name: "magenta balloon";
|
|
104
|
+
readonly color: "#FF00FF";
|
|
105
|
+
readonly gradient: readonly ["#FF00FF", "#FF40FF"];
|
|
106
|
+
}, {
|
|
107
|
+
readonly emoji: "🎈";
|
|
108
|
+
readonly points: 40;
|
|
109
|
+
readonly name: "gold balloon";
|
|
110
|
+
readonly color: "#FFB000";
|
|
111
|
+
readonly gradient: readonly ["#FFB000", "#FFD700"];
|
|
112
|
+
}, {
|
|
113
|
+
readonly emoji: "🎈";
|
|
114
|
+
readonly points: 45;
|
|
115
|
+
readonly name: "rainbow balloon";
|
|
116
|
+
readonly color: "#FF0080";
|
|
117
|
+
readonly gradient: readonly ["#FF0080", "#8000FF", "#0080FF", "#00FF80"];
|
|
118
|
+
}, {
|
|
119
|
+
readonly emoji: "🎈";
|
|
120
|
+
readonly points: 50;
|
|
121
|
+
readonly name: "neon balloon";
|
|
122
|
+
readonly color: "#00FF00";
|
|
123
|
+
readonly gradient: readonly ["#00FF00", "#FFFF00"];
|
|
124
|
+
}];
|
|
125
|
+
export declare const BALLOON_SPECIAL_ITEMS: readonly [{
|
|
126
|
+
readonly emoji: "💣";
|
|
127
|
+
readonly points: -50;
|
|
128
|
+
readonly name: "bomb";
|
|
129
|
+
readonly isBomb: true;
|
|
130
|
+
readonly color: "#FF4444";
|
|
131
|
+
}, {
|
|
132
|
+
readonly emoji: "⭐";
|
|
133
|
+
readonly points: 50;
|
|
134
|
+
readonly name: "star";
|
|
135
|
+
readonly isBonus: true;
|
|
136
|
+
readonly color: "#FFD700";
|
|
137
|
+
}];
|
|
138
|
+
export declare const BALLOON_BLASTER_THEME: GameSettingsTheme;
|
|
139
|
+
export declare const BALLOON_BLASTER_DIFFICULTY_DESCRIPTIONS: {
|
|
140
|
+
readonly easy: "Balloons spawn slower, more forgiving";
|
|
141
|
+
readonly medium: "Balanced gameplay and balloon speed";
|
|
142
|
+
readonly hard: "Fast balloons, quick reflexes needed!";
|
|
143
|
+
};
|
|
144
|
+
//# sourceMappingURL=BalloonBlasterConstants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BalloonBlasterConstants.d.ts","sourceRoot":"","sources":["../../../../../src/games/balloon-blaster/BalloonBlasterConstants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAGvE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;CAc9B,CAAC;AAEX,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;CAgBnC,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;CAiBzB,CAAC;AAGX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAahB,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;EAGxB,CAAC;AAGX,eAAO,MAAM,qBAAqB,EAAE,iBAcnC,CAAC;AAGF,eAAO,MAAM,uCAAuC;;;;CAI1C,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BALLOON_BLASTER_GAME_CONFIG as GAME_CONFIG, BALLOON_BLASTER_ANIMATION_CONFIG as ANIMATION_CONFIG, BALLOON_BLASTER_COLORS as COLORS, BALLOON_TYPES, BALLOON_SPECIAL_ITEMS as SPECIAL_ITEMS } from '
|
|
1
|
+
import { BALLOON_BLASTER_GAME_CONFIG as GAME_CONFIG, BALLOON_BLASTER_ANIMATION_CONFIG as ANIMATION_CONFIG, BALLOON_BLASTER_COLORS as COLORS, BALLOON_TYPES, BALLOON_SPECIAL_ITEMS as SPECIAL_ITEMS } from './BalloonBlasterConstants';
|
|
2
2
|
export { GAME_CONFIG, ANIMATION_CONFIG, COLORS, BALLOON_TYPES, SPECIAL_ITEMS };
|
|
3
3
|
export interface Balloon {
|
|
4
4
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BalloonBlasterService.d.ts","sourceRoot":"","sources":["../../../../../src/games/balloon-blaster/BalloonBlasterService.ts"],"names":[],"mappings":"AACA,OAAO,EACL,2BAA2B,IAAI,WAAW,EAC1C,gCAAgC,IAAI,gBAAgB,EACpD,sBAAsB,IAAI,MAAM,EAChC,aAAa,EACb,qBAAqB,IAAI,aAAa,EACvC,MAAM
|
|
1
|
+
{"version":3,"file":"BalloonBlasterService.d.ts","sourceRoot":"","sources":["../../../../../src/games/balloon-blaster/BalloonBlasterService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Balloon } from './BalloonBlasterService';
|
|
1
|
+
import type { Balloon, Particle } from './BalloonBlasterService';
|
|
2
2
|
export interface GameState {
|
|
3
3
|
score: number;
|
|
4
4
|
timeLeft: number;
|
|
@@ -9,6 +9,7 @@ export interface GameState {
|
|
|
9
9
|
}
|
|
10
10
|
export interface BalloonBlasterStore extends GameState {
|
|
11
11
|
balloons: Balloon[];
|
|
12
|
+
particles: Particle[];
|
|
12
13
|
slicePath: {
|
|
13
14
|
x: number;
|
|
14
15
|
y: number;
|
|
@@ -23,6 +24,7 @@ export interface BalloonBlasterStore extends GameState {
|
|
|
23
24
|
addBalloon: (balloon: Balloon) => void;
|
|
24
25
|
removeBalloon: (balloonId: string) => void;
|
|
25
26
|
updateBalloon: (balloonId: string, updates: Partial<Balloon>) => void;
|
|
27
|
+
setParticles: (particles: Particle[]) => void;
|
|
26
28
|
setSlicePath: (path: {
|
|
27
29
|
x: number;
|
|
28
30
|
y: number;
|
|
@@ -33,5 +35,13 @@ export interface BalloonBlasterStore extends GameState {
|
|
|
33
35
|
loseLife: () => void;
|
|
34
36
|
addLife: () => void;
|
|
35
37
|
}
|
|
36
|
-
export declare const useBalloonBlasterStore: import("zustand").UseBoundStore<import("zustand").StoreApi<BalloonBlasterStore
|
|
38
|
+
export declare const useBalloonBlasterStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<BalloonBlasterStore>, "subscribe"> & {
|
|
39
|
+
subscribe: {
|
|
40
|
+
(listener: (selectedState: BalloonBlasterStore, previousSelectedState: BalloonBlasterStore) => void): () => void;
|
|
41
|
+
<U>(selector: (state: BalloonBlasterStore) => U, listener: (selectedState: U, previousSelectedState: U) => void, options?: {
|
|
42
|
+
equalityFn?: ((a: U, b: U) => boolean) | undefined;
|
|
43
|
+
fireImmediately?: boolean;
|
|
44
|
+
} | undefined): () => void;
|
|
45
|
+
};
|
|
46
|
+
}>;
|
|
37
47
|
//# sourceMappingURL=BalloonBlasterStore.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BalloonBlasterStore.d.ts","sourceRoot":"","sources":["../../../../../src/games/balloon-blaster/BalloonBlasterStore.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BalloonBlasterStore.d.ts","sourceRoot":"","sources":["../../../../../src/games/balloon-blaster/BalloonBlasterStore.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AAIjE,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAoB,SAAQ,SAAS;IACpD,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,SAAS,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACtC,SAAS,EAAE,OAAO,CAAC;IAGnB,SAAS,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IACvC,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,aAAa,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,OAAO,CAAC,KAAK,IAAI,CAAC;IACtE,YAAY,EAAE,CAAC,SAAS,EAAE,QAAQ,EAAE,KAAK,IAAI,CAAC;IAC9C,YAAY,EAAE,CAAC,IAAI,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,KAAK,IAAI,CAAC;IACzD,YAAY,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;IAC3C,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAGD,eAAO,MAAM,sBAAsB;;;;;;;;EA4L9B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BalloonComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/BalloonComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"BalloonComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/BalloonComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAS/D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAoBxD,UAAU,qBAAqB;IAC7B,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,KAAK,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAmP3D,CAAC"}
|
|
@@ -1,17 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
interface GameAreaProps {
|
|
4
|
-
balloons: Balloon[];
|
|
5
|
-
balloonAnimations: Map<string, any>;
|
|
6
|
-
slicePath: {
|
|
7
|
-
x: number;
|
|
8
|
-
y: number;
|
|
9
|
-
}[];
|
|
10
|
-
isSlicing: boolean;
|
|
11
|
-
particles: Particle[];
|
|
12
|
-
onBalloonPop: (balloonId: string) => void;
|
|
13
|
-
children?: React.ReactNode;
|
|
14
|
-
}
|
|
15
|
-
export declare const GameArea: React.FC<GameAreaProps>;
|
|
16
|
-
export {};
|
|
2
|
+
export declare const GameArea: React.FC;
|
|
17
3
|
//# sourceMappingURL=GameArea.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GameArea.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/GameArea.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"GameArea.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/GameArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoD,MAAM,OAAO,CAAC;AAqBzE,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAqJ3B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GameBackground.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/GameBackground.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"GameBackground.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/GameBackground.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAgB1B,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAiQxD,CAAC"}
|
|
@@ -1,9 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
score: number;
|
|
4
|
-
timeLeft: number;
|
|
5
|
-
lives: number;
|
|
6
|
-
}
|
|
7
|
-
export declare const ScoreBoard: React.FC<ScoreBoardProps>;
|
|
8
|
-
export {};
|
|
2
|
+
export declare const ScoreBoard: React.FC;
|
|
9
3
|
//# sourceMappingURL=ScoreBoard.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScoreBoard.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/ScoreBoard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ScoreBoard.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/ScoreBoard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EA8B7B,CAAC"}
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
export { BalloonComponent } from './BalloonComponent';
|
|
2
2
|
export { GameArea } from './GameArea';
|
|
3
3
|
export { GameBackground } from './GameBackground';
|
|
4
|
-
export { GameControls } from './GameControls';
|
|
5
|
-
export { GameOverModal } from './GameOverModal';
|
|
6
|
-
export { ParticleSystem } from './ParticleSystem';
|
|
7
4
|
export { ScoreBoard } from './ScoreBoard';
|
|
8
|
-
export { SliceTrail } from './SliceTrail';
|
|
9
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/games/balloon-blaster/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FruitNinja.d.ts","sourceRoot":"","sources":["../../../../../src/games/fruit-ninja/FruitNinja.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAQjD,OAAO,EAAY,KAAK,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAEvE,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA8H1C,CAAC"}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import type { GameSettingsTheme } from '../../services/GamesConstants';
|
|
2
|
+
export declare const FRUIT_NINJA_GAME_CONFIG: {
|
|
3
|
+
readonly GAME_DURATION: 60;
|
|
4
|
+
readonly MAX_LIVES: 3;
|
|
5
|
+
readonly FRUIT_SPAWN_INTERVAL: 1500;
|
|
6
|
+
readonly FRUIT_FALL_SPEED: 2;
|
|
7
|
+
readonly GRAVITY: 0.12;
|
|
8
|
+
readonly INITIAL_VELOCITY_Y: -10;
|
|
9
|
+
readonly INITIAL_VELOCITY_X_RANGE: 1.5;
|
|
10
|
+
readonly FRUIT_SIZE: 60;
|
|
11
|
+
readonly SLICE_TRAIL_LENGTH: 10;
|
|
12
|
+
readonly SLICE_TRAIL_WIDTH: 8;
|
|
13
|
+
readonly COMBO_TIMEOUT: 2000;
|
|
14
|
+
readonly PARTICLE_COUNT: 6;
|
|
15
|
+
readonly PARTICLE_LIFETIME: 1000;
|
|
16
|
+
};
|
|
17
|
+
export declare const FRUIT_NINJA_ANIMATION_CONFIG: {
|
|
18
|
+
readonly FRUIT_SPRING: {
|
|
19
|
+
readonly damping: 15;
|
|
20
|
+
readonly stiffness: 200;
|
|
21
|
+
};
|
|
22
|
+
readonly SLICE_SPRING: {
|
|
23
|
+
readonly damping: 20;
|
|
24
|
+
readonly stiffness: 300;
|
|
25
|
+
};
|
|
26
|
+
readonly PARTICLE_SPRING: {
|
|
27
|
+
readonly damping: 25;
|
|
28
|
+
readonly stiffness: 400;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export declare const FRUIT_NINJA_COLORS: {
|
|
32
|
+
readonly BACKGROUND: "#87CEEB";
|
|
33
|
+
readonly SCORE_BOARD: "#4169E1";
|
|
34
|
+
readonly SLICE_TRAIL: "#FFD700";
|
|
35
|
+
readonly PARTICLE_COLORS: readonly ["#FF6B6B", "#4ECDC4", "#45B7D1", "#96CEB4", "#FFEAA7", "#DDA0DD"];
|
|
36
|
+
readonly PARTICLE_GLOW: "rgba(255,255,255,0.9)";
|
|
37
|
+
readonly COMBO_TEXT: "#FF4757";
|
|
38
|
+
readonly LIVES_COLOR: "#FF6B6B";
|
|
39
|
+
readonly SCORE: "#FFFFFF";
|
|
40
|
+
readonly UI: "#FF6347";
|
|
41
|
+
readonly BUTTON_ACTIVE: "#FF7F50";
|
|
42
|
+
readonly BUTTON_INACTIVE: "#FFA07A";
|
|
43
|
+
readonly TEXT_PRIMARY: "#FFFFFF";
|
|
44
|
+
readonly TEXT_SECONDARY: "#F0F8FF";
|
|
45
|
+
readonly WHITE: "#FFFFFF";
|
|
46
|
+
readonly START_BUTTON: "#4CAF50";
|
|
47
|
+
readonly GAME_OVER_OVERLAY: "rgba(0, 0, 0, 0.85)";
|
|
48
|
+
};
|
|
49
|
+
export declare const FRUIT_TYPES: readonly [{
|
|
50
|
+
readonly emoji: "🍎";
|
|
51
|
+
readonly points: 10;
|
|
52
|
+
readonly name: "apple";
|
|
53
|
+
}, {
|
|
54
|
+
readonly emoji: "🍊";
|
|
55
|
+
readonly points: 10;
|
|
56
|
+
readonly name: "orange";
|
|
57
|
+
}, {
|
|
58
|
+
readonly emoji: "🍌";
|
|
59
|
+
readonly points: 15;
|
|
60
|
+
readonly name: "banana";
|
|
61
|
+
}, {
|
|
62
|
+
readonly emoji: "🍇";
|
|
63
|
+
readonly points: 20;
|
|
64
|
+
readonly name: "grapes";
|
|
65
|
+
}, {
|
|
66
|
+
readonly emoji: "🥝";
|
|
67
|
+
readonly points: 25;
|
|
68
|
+
readonly name: "kiwi";
|
|
69
|
+
}, {
|
|
70
|
+
readonly emoji: "🍓";
|
|
71
|
+
readonly points: 15;
|
|
72
|
+
readonly name: "strawberry";
|
|
73
|
+
}, {
|
|
74
|
+
readonly emoji: "🥭";
|
|
75
|
+
readonly points: 30;
|
|
76
|
+
readonly name: "mango";
|
|
77
|
+
}, {
|
|
78
|
+
readonly emoji: "🍑";
|
|
79
|
+
readonly points: 25;
|
|
80
|
+
readonly name: "cherry";
|
|
81
|
+
}, {
|
|
82
|
+
readonly emoji: "🍒";
|
|
83
|
+
readonly points: 35;
|
|
84
|
+
readonly name: "cherries";
|
|
85
|
+
}, {
|
|
86
|
+
readonly emoji: "🥥";
|
|
87
|
+
readonly points: 40;
|
|
88
|
+
readonly name: "coconut";
|
|
89
|
+
}];
|
|
90
|
+
export declare const FRUIT_SPECIAL_ITEMS: readonly [{
|
|
91
|
+
readonly emoji: "💣";
|
|
92
|
+
readonly points: -50;
|
|
93
|
+
readonly name: "bomb";
|
|
94
|
+
readonly isBomb: true;
|
|
95
|
+
}, {
|
|
96
|
+
readonly emoji: "⭐";
|
|
97
|
+
readonly points: 50;
|
|
98
|
+
readonly name: "star";
|
|
99
|
+
readonly isBonus: true;
|
|
100
|
+
}, {
|
|
101
|
+
readonly emoji: "❄️";
|
|
102
|
+
readonly points: 0;
|
|
103
|
+
readonly name: "freeze";
|
|
104
|
+
readonly isFreeze: true;
|
|
105
|
+
}];
|
|
106
|
+
export declare const FRUIT_NINJA_THEME: GameSettingsTheme;
|
|
107
|
+
export declare const FRUIT_NINJA_DIFFICULTY_DESCRIPTIONS: {
|
|
108
|
+
readonly easy: "Fruits spawn slower, more forgiving";
|
|
109
|
+
readonly medium: "Balanced gameplay and fruit speed";
|
|
110
|
+
readonly hard: "Fast fruits, quick reflexes needed!";
|
|
111
|
+
};
|
|
112
|
+
//# sourceMappingURL=FruitNinjaConstants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FruitNinjaConstants.d.ts","sourceRoot":"","sources":["../../../../../src/games/fruit-ninja/FruitNinjaConstants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAGvE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;CAc1B,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;CAa/B,CAAC;AAEX,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;CAiBrB,CAAC;AAGX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWd,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAItB,CAAC;AAGX,eAAO,MAAM,iBAAiB,EAAE,iBAc/B,CAAC;AAGF,eAAO,MAAM,mCAAmC;;;;CAItC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FRUIT_NINJA_GAME_CONFIG as GAME_CONFIG, FRUIT_NINJA_ANIMATION_CONFIG as ANIMATION_CONFIG, FRUIT_NINJA_COLORS as COLORS, FRUIT_TYPES, FRUIT_SPECIAL_ITEMS as SPECIAL_ITEMS } from './FruitNinjaConstants';
|
|
2
2
|
export { GAME_CONFIG, ANIMATION_CONFIG, COLORS, FRUIT_TYPES, SPECIAL_ITEMS };
|
|
3
3
|
export interface Fruit {
|
|
4
4
|
id: string;
|
|
@@ -35,7 +35,15 @@ export interface Particle {
|
|
|
35
35
|
lifetime: number;
|
|
36
36
|
maxLifetime: number;
|
|
37
37
|
}
|
|
38
|
-
export
|
|
38
|
+
export interface FruitNinjaGameSettings {
|
|
39
|
+
gameDuration: number;
|
|
40
|
+
difficulty: 'easy' | 'medium' | 'hard';
|
|
41
|
+
soundEnabled: boolean;
|
|
42
|
+
hapticEnabled: boolean;
|
|
43
|
+
}
|
|
44
|
+
export declare const DEFAULT_FRUIT_NINJA_SETTINGS: FruitNinjaGameSettings;
|
|
45
|
+
export declare const getDifficultySpawnInterval: (difficulty: "easy" | "medium" | "hard") => number;
|
|
46
|
+
export declare class FruitNinjaService {
|
|
39
47
|
private fruitAnimations;
|
|
40
48
|
private particleAnimations;
|
|
41
49
|
private gameTimerRef;
|
|
@@ -46,7 +54,7 @@ export declare class FruitSlicerService {
|
|
|
46
54
|
constructor(fruitAnimations: Map<string, any>, particleAnimations: Map<string, any>);
|
|
47
55
|
startGameTimer(onTick: () => void): void;
|
|
48
56
|
startFruitSpawning(spawnFruit: (fruit: Fruit) => void, customSpawnInterval?: number): void;
|
|
49
|
-
startPhysicsLoop(updateFruit: (fruitId: string, updates: Partial<Fruit>) => void, removeFruit: (fruitId: string) => void, getFruits: () => Fruit[]): void;
|
|
57
|
+
startPhysicsLoop(updateFruit: (fruitId: string, updates: Partial<Fruit>) => void, removeFruit: (fruitId: string) => void, getFruits: () => Fruit[], loseLife: () => void): void;
|
|
50
58
|
createRandomFruit(): Fruit;
|
|
51
59
|
createSliceParticles(fruit: Fruit): Particle[];
|
|
52
60
|
private updateParticles;
|
|
@@ -63,5 +71,5 @@ export declare class FruitSlicerService {
|
|
|
63
71
|
private clearAnimationLoop;
|
|
64
72
|
private clearComboTimeout;
|
|
65
73
|
}
|
|
66
|
-
export declare const
|
|
67
|
-
//# sourceMappingURL=
|
|
74
|
+
export declare const createFruitNinjaService: (fruitAnimations: Map<string, any>, particleAnimations: Map<string, any>) => FruitNinjaService;
|
|
75
|
+
//# sourceMappingURL=FruitNinjaService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FruitNinjaService.d.ts","sourceRoot":"","sources":["../../../../../src/games/fruit-ninja/FruitNinjaService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Fruit } from './
|
|
1
|
+
import type { Fruit } from './FruitNinjaService';
|
|
2
2
|
export interface GameState {
|
|
3
3
|
score: number;
|
|
4
4
|
timeLeft: number;
|
|
@@ -7,7 +7,7 @@ export interface GameState {
|
|
|
7
7
|
combo: number;
|
|
8
8
|
lives: number;
|
|
9
9
|
}
|
|
10
|
-
export interface
|
|
10
|
+
export interface FruitNinjaStore extends GameState {
|
|
11
11
|
fruits: Fruit[];
|
|
12
12
|
slicePath: {
|
|
13
13
|
x: number;
|
|
@@ -33,5 +33,14 @@ export interface FruitSlicerStore extends GameState {
|
|
|
33
33
|
loseLife: () => void;
|
|
34
34
|
addLife: () => void;
|
|
35
35
|
}
|
|
36
|
-
export declare const
|
|
37
|
-
|
|
36
|
+
export declare const useFruitNinjaStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<FruitNinjaStore>, "subscribe"> & {
|
|
37
|
+
subscribe: {
|
|
38
|
+
(listener: (selectedState: FruitNinjaStore, previousSelectedState: FruitNinjaStore) => void): () => void;
|
|
39
|
+
<U>(selector: (state: FruitNinjaStore) => U, listener: (selectedState: U, previousSelectedState: U) => void, options?: {
|
|
40
|
+
equalityFn?: ((a: U, b: U) => boolean) | undefined;
|
|
41
|
+
fireImmediately?: boolean;
|
|
42
|
+
} | undefined): () => void;
|
|
43
|
+
};
|
|
44
|
+
}>;
|
|
45
|
+
export declare const registerGameService: (gameService: any) => void;
|
|
46
|
+
//# sourceMappingURL=FruitNinjaStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FruitNinjaStore.d.ts","sourceRoot":"","sources":["../../../../../src/games/fruit-ninja/FruitNinjaStore.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAIjD,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,eAAgB,SAAQ,SAAS;IAChD,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,SAAS,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACtC,SAAS,EAAE,OAAO,CAAC;IAGnB,SAAS,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,UAAU,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IACjC,WAAW,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IACvC,WAAW,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC;IAChE,YAAY,EAAE,CAAC,IAAI,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,KAAK,IAAI,CAAC;IACzD,YAAY,EAAE,CAAC,SAAS,EAAE,OAAO,KAAK,IAAI,CAAC;IAC3C,cAAc,EAAE,MAAM,IAAI,CAAC;IAC3B,UAAU,EAAE,MAAM,IAAI,CAAC;IACvB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAGD,eAAO,MAAM,kBAAkB;;;;;;;;EA0K1B,CAAC;AAMN,eAAO,MAAM,mBAAmB,GAAI,aAAa,GAAG,SAEnD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FruitComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/fruit-ninja/components/FruitComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAGlD,UAAU,mBAAmB;IAC3B,KAAK,EAAE,KAAK,CAAC;IACb,SAAS,CAAC,EAAE,GAAG,CAAC;IAChB,OAAO,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CACrC;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA8DxD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GameArea.d.ts","sourceRoot":"","sources":["../../../../../../src/games/fruit-ninja/components/GameArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAW3D,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAuM3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GameBackground.d.ts","sourceRoot":"","sources":["../../../../../../src/games/fruit-ninja/components/GameBackground.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAgB1B,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAiED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAmhBxD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScoreBoard.d.ts","sourceRoot":"","sources":["../../../../../../src/games/fruit-ninja/components/ScoreBoard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EA6B7B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/games/fruit-ninja/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -1,18 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
difficulty: 'easy' | 'medium' | 'hard';
|
|
5
|
-
soundEnabled: boolean;
|
|
6
|
-
hapticEnabled: boolean;
|
|
7
|
-
gridSize: number;
|
|
8
|
-
showHints: boolean;
|
|
9
|
-
}
|
|
10
|
-
export interface MazeRunnerProps {
|
|
11
|
-
settings?: Partial<MazeRunnerSettings>;
|
|
12
|
-
onSettingsChange?: (settings: MazeRunnerSettings) => void;
|
|
13
|
-
showSettingsModal?: boolean;
|
|
14
|
-
onToggleSettingsModal?: () => void;
|
|
15
|
-
}
|
|
16
|
-
export declare const MazeRunner: React.FC<MazeRunnerProps>;
|
|
17
|
-
export {};
|
|
2
|
+
import { type GameProps } from '../../services/GamesService';
|
|
3
|
+
export declare const MazeRunner: React.FC<GameProps>;
|
|
18
4
|
//# sourceMappingURL=MazeRunner.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MazeRunner.d.ts","sourceRoot":"","sources":["../../../../../src/games/maze-runner/MazeRunner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MazeRunner.d.ts","sourceRoot":"","sources":["../../../../../src/games/maze-runner/MazeRunner.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4D,MAAM,OAAO,CAAC;AAiBjF,OAAO,EAAY,KAAK,SAAS,EAAE,MAAM,6BAA6B,CAAC;AA2BvE,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoN1C,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { GameSettingsTheme } from '../../services/GamesConstants';
|
|
2
|
+
export interface MazeRunnerSettings {
|
|
3
|
+
gameDuration: number;
|
|
4
|
+
difficulty: 'easy' | 'medium' | 'hard';
|
|
5
|
+
soundEnabled: boolean;
|
|
6
|
+
hapticEnabled: boolean;
|
|
7
|
+
gridSize: number;
|
|
8
|
+
showHints: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const DEFAULT_MAZE_RUNNER_SETTINGS: MazeRunnerSettings;
|
|
11
|
+
export declare const MAZE_RUNNER_DIFFICULTY_CONFIG: {
|
|
12
|
+
readonly easy: {
|
|
13
|
+
readonly gridSize: 8;
|
|
14
|
+
readonly timeBonus: 1.5;
|
|
15
|
+
readonly scoreMultiplier: 1;
|
|
16
|
+
readonly hintAvailable: true;
|
|
17
|
+
readonly gameDuration: 60;
|
|
18
|
+
};
|
|
19
|
+
readonly medium: {
|
|
20
|
+
readonly gridSize: 10;
|
|
21
|
+
readonly timeBonus: 1.2;
|
|
22
|
+
readonly scoreMultiplier: 1.2;
|
|
23
|
+
readonly hintAvailable: false;
|
|
24
|
+
readonly gameDuration: 120;
|
|
25
|
+
};
|
|
26
|
+
readonly hard: {
|
|
27
|
+
readonly gridSize: 12;
|
|
28
|
+
readonly timeBonus: 1;
|
|
29
|
+
readonly scoreMultiplier: 1.5;
|
|
30
|
+
readonly hintAvailable: false;
|
|
31
|
+
readonly gameDuration: 180;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare const MAZE_RUNNER_THEME: GameSettingsTheme;
|
|
35
|
+
export declare const MAZE_RUNNER_DIFFICULTY_DESCRIPTIONS: {
|
|
36
|
+
readonly easy: "Small maze, more forgiving maze";
|
|
37
|
+
readonly medium: "Balanced maze, balanced challenge";
|
|
38
|
+
readonly hard: "Complex maze, maximum challenge!";
|
|
39
|
+
};
|
|
40
|
+
export declare const MAZE_ADVENTURE_COLORS: readonly ["#FF6B6B", "#4ECDC4", "#45B7D1", "#96CEB4", "#FFEAA7", "#DDA0DD", "#98D8C8", "#F7DC6F", "#BB8FCE", "#85C1E9", "#82E0AA", "#F8C471", "#D7BDE2", "#A9DFBF", "#FAD7A0", "#D5A6BD"];
|
|
41
|
+
//# sourceMappingURL=MazeRunnerConstants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MazeRunnerConstants.d.ts","sourceRoot":"","sources":["../../../../../src/games/maze-runner/MazeRunnerConstants.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAGvE,MAAM,WAAW,kBAAkB;IACjC,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;IACvC,YAAY,EAAE,OAAO,CAAC;IACtB,aAAa,EAAE,OAAO,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,4BAA4B,EAAE,kBAO1C,CAAC;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;CAsBhC,CAAC;AAGX,eAAO,MAAM,iBAAiB,EAAE,iBAc/B,CAAC;AAGF,eAAO,MAAM,mCAAmC;;;;CAItC,CAAC;AAGX,eAAO,MAAM,qBAAqB,2LAiBxB,CAAC"}
|