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
|
@@ -1,222 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { View, TouchableOpacity, Text, Modal, StyleSheet } from 'react-native';
|
|
5
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
-
export const SettingsModal = ({
|
|
7
|
-
isVisible,
|
|
8
|
-
onClose,
|
|
9
|
-
onResetHighScore
|
|
10
|
-
}) => {
|
|
11
|
-
return /*#__PURE__*/_jsx(Modal, {
|
|
12
|
-
visible: isVisible,
|
|
13
|
-
transparent: true,
|
|
14
|
-
animationType: "slide",
|
|
15
|
-
onRequestClose: onClose,
|
|
16
|
-
children: /*#__PURE__*/_jsx(View, {
|
|
17
|
-
style: styles.settingsOverlay,
|
|
18
|
-
children: /*#__PURE__*/_jsxs(View, {
|
|
19
|
-
style: styles.settingsModal,
|
|
20
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
21
|
-
style: styles.settingsEmoji,
|
|
22
|
-
children: "\u2699\uFE0F"
|
|
23
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
24
|
-
style: styles.settingsTitle,
|
|
25
|
-
children: "Game Settings"
|
|
26
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
27
|
-
style: styles.gameInfoContainer,
|
|
28
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
29
|
-
style: styles.gameInfoTitle,
|
|
30
|
-
children: "Game Controls"
|
|
31
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
32
|
-
style: styles.gameInfoText,
|
|
33
|
-
children: "\uD83D\uDE80 Touch and drag to control spacecraft"
|
|
34
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
35
|
-
style: styles.gameInfoText,
|
|
36
|
-
children: "\uD83E\uDEA8 Avoid asteroids to survive"
|
|
37
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
38
|
-
style: styles.gameInfoText,
|
|
39
|
-
children: "\u23F1\uFE0F Survive as long as possible"
|
|
40
|
-
})]
|
|
41
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
42
|
-
style: styles.scoringContainer,
|
|
43
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
44
|
-
style: styles.scoringTitle,
|
|
45
|
-
children: "Scoring System"
|
|
46
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
47
|
-
style: styles.rookieText,
|
|
48
|
-
children: "\uD83D\uDE80 Rookie Astronaut: 0-49 points"
|
|
49
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
50
|
-
style: styles.navigatorText,
|
|
51
|
-
children: "\uD83E\uDD48 Space Navigator: 50-99 points"
|
|
52
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
53
|
-
style: styles.aceText,
|
|
54
|
-
children: "\uD83E\uDD47 Ace Pilot: 100-199 points"
|
|
55
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
56
|
-
style: styles.commanderText,
|
|
57
|
-
children: "\uD83C\uDFC6 Space Commander: 200+ points"
|
|
58
|
-
})]
|
|
59
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
60
|
-
style: styles.actionButtonsContainer,
|
|
61
|
-
children: [onResetHighScore && /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
62
|
-
onPress: onResetHighScore,
|
|
63
|
-
style: styles.resetButton,
|
|
64
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
65
|
-
style: styles.resetButtonText,
|
|
66
|
-
children: "\uD83D\uDDD1\uFE0F Reset High Score"
|
|
67
|
-
})
|
|
68
|
-
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
69
|
-
onPress: onClose,
|
|
70
|
-
style: styles.closeSettingsButton,
|
|
71
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
72
|
-
style: styles.closeSettingsText,
|
|
73
|
-
children: "\u2705 Close Settings"
|
|
74
|
-
})
|
|
75
|
-
})]
|
|
76
|
-
})]
|
|
77
|
-
})
|
|
78
|
-
})
|
|
79
|
-
});
|
|
80
|
-
};
|
|
81
|
-
const styles = StyleSheet.create({
|
|
82
|
-
settingsOverlay: {
|
|
83
|
-
flex: 1,
|
|
84
|
-
backgroundColor: 'rgba(0, 0, 0, 0.85)',
|
|
85
|
-
justifyContent: 'center',
|
|
86
|
-
alignItems: 'center'
|
|
87
|
-
},
|
|
88
|
-
settingsModal: {
|
|
89
|
-
backgroundColor: '#1e3a8a',
|
|
90
|
-
// bg-blue-900
|
|
91
|
-
borderRadius: 24,
|
|
92
|
-
padding: 32,
|
|
93
|
-
marginHorizontal: 24,
|
|
94
|
-
shadowColor: '#000',
|
|
95
|
-
shadowOffset: {
|
|
96
|
-
width: 0,
|
|
97
|
-
height: 4
|
|
98
|
-
},
|
|
99
|
-
shadowOpacity: 0.5,
|
|
100
|
-
shadowRadius: 8,
|
|
101
|
-
elevation: 10,
|
|
102
|
-
borderWidth: 2,
|
|
103
|
-
borderColor: '#1d4ed8',
|
|
104
|
-
// border-blue-700
|
|
105
|
-
maxWidth: 400,
|
|
106
|
-
width: '100%'
|
|
107
|
-
},
|
|
108
|
-
settingsEmoji: {
|
|
109
|
-
fontSize: 48,
|
|
110
|
-
textAlign: 'center',
|
|
111
|
-
marginBottom: 16
|
|
112
|
-
},
|
|
113
|
-
settingsTitle: {
|
|
114
|
-
color: '#ffffff',
|
|
115
|
-
fontSize: 24,
|
|
116
|
-
fontWeight: 'bold',
|
|
117
|
-
textAlign: 'center',
|
|
118
|
-
marginBottom: 32
|
|
119
|
-
},
|
|
120
|
-
gameInfoContainer: {
|
|
121
|
-
marginBottom: 24,
|
|
122
|
-
backgroundColor: '#1e40af',
|
|
123
|
-
// bg-blue-800
|
|
124
|
-
borderRadius: 16,
|
|
125
|
-
padding: 16
|
|
126
|
-
},
|
|
127
|
-
gameInfoTitle: {
|
|
128
|
-
fontSize: 18,
|
|
129
|
-
color: '#ffffff',
|
|
130
|
-
fontWeight: 'bold',
|
|
131
|
-
marginBottom: 12,
|
|
132
|
-
textAlign: 'center'
|
|
133
|
-
},
|
|
134
|
-
gameInfoText: {
|
|
135
|
-
color: '#ffffff',
|
|
136
|
-
textAlign: 'center',
|
|
137
|
-
marginBottom: 8
|
|
138
|
-
},
|
|
139
|
-
scoringContainer: {
|
|
140
|
-
marginBottom: 24,
|
|
141
|
-
backgroundColor: '#1d4ed8',
|
|
142
|
-
// bg-blue-700
|
|
143
|
-
borderRadius: 12,
|
|
144
|
-
padding: 16
|
|
145
|
-
},
|
|
146
|
-
scoringTitle: {
|
|
147
|
-
fontSize: 18,
|
|
148
|
-
color: '#ffffff',
|
|
149
|
-
fontWeight: 'bold',
|
|
150
|
-
marginBottom: 12,
|
|
151
|
-
textAlign: 'center'
|
|
152
|
-
},
|
|
153
|
-
rookieText: {
|
|
154
|
-
color: '#22d3ee',
|
|
155
|
-
// text-cyan-400
|
|
156
|
-
textAlign: 'center',
|
|
157
|
-
marginBottom: 4
|
|
158
|
-
},
|
|
159
|
-
navigatorText: {
|
|
160
|
-
color: '#fb923c',
|
|
161
|
-
// text-orange-400
|
|
162
|
-
textAlign: 'center',
|
|
163
|
-
marginBottom: 4
|
|
164
|
-
},
|
|
165
|
-
aceText: {
|
|
166
|
-
color: '#d1d5db',
|
|
167
|
-
// text-gray-300
|
|
168
|
-
textAlign: 'center',
|
|
169
|
-
marginBottom: 4
|
|
170
|
-
},
|
|
171
|
-
commanderText: {
|
|
172
|
-
color: '#fbbf24',
|
|
173
|
-
// text-yellow-400
|
|
174
|
-
textAlign: 'center'
|
|
175
|
-
},
|
|
176
|
-
actionButtonsContainer: {
|
|
177
|
-
gap: 12
|
|
178
|
-
},
|
|
179
|
-
resetButton: {
|
|
180
|
-
backgroundColor: '#dc2626',
|
|
181
|
-
// bg-red-600
|
|
182
|
-
paddingVertical: 16,
|
|
183
|
-
paddingHorizontal: 24,
|
|
184
|
-
borderRadius: 16,
|
|
185
|
-
shadowColor: '#000',
|
|
186
|
-
shadowOffset: {
|
|
187
|
-
width: 0,
|
|
188
|
-
height: 2
|
|
189
|
-
},
|
|
190
|
-
shadowOpacity: 0.25,
|
|
191
|
-
shadowRadius: 3.84,
|
|
192
|
-
elevation: 5
|
|
193
|
-
},
|
|
194
|
-
resetButtonText: {
|
|
195
|
-
color: '#ffffff',
|
|
196
|
-
fontWeight: 'bold',
|
|
197
|
-
fontSize: 18,
|
|
198
|
-
textAlign: 'center'
|
|
199
|
-
},
|
|
200
|
-
closeSettingsButton: {
|
|
201
|
-
backgroundColor: '#4b5563',
|
|
202
|
-
// bg-gray-600
|
|
203
|
-
paddingVertical: 16,
|
|
204
|
-
paddingHorizontal: 24,
|
|
205
|
-
borderRadius: 16,
|
|
206
|
-
shadowColor: '#000',
|
|
207
|
-
shadowOffset: {
|
|
208
|
-
width: 0,
|
|
209
|
-
height: 2
|
|
210
|
-
},
|
|
211
|
-
shadowOpacity: 0.25,
|
|
212
|
-
shadowRadius: 3.84,
|
|
213
|
-
elevation: 5
|
|
214
|
-
},
|
|
215
|
-
closeSettingsText: {
|
|
216
|
-
color: '#ffffff',
|
|
217
|
-
fontWeight: 'bold',
|
|
218
|
-
fontSize: 18,
|
|
219
|
-
textAlign: 'center'
|
|
220
|
-
}
|
|
221
|
-
});
|
|
222
|
-
//# sourceMappingURL=SettingsModal.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","View","TouchableOpacity","Text","Modal","StyleSheet","jsx","_jsx","jsxs","_jsxs","SettingsModal","isVisible","onClose","onResetHighScore","visible","transparent","animationType","onRequestClose","children","style","styles","settingsOverlay","settingsModal","settingsEmoji","settingsTitle","gameInfoContainer","gameInfoTitle","gameInfoText","scoringContainer","scoringTitle","rookieText","navigatorText","aceText","commanderText","actionButtonsContainer","onPress","resetButton","resetButtonText","closeSettingsButton","closeSettingsText","create","flex","backgroundColor","justifyContent","alignItems","borderRadius","padding","marginHorizontal","shadowColor","shadowOffset","width","height","shadowOpacity","shadowRadius","elevation","borderWidth","borderColor","maxWidth","fontSize","textAlign","marginBottom","color","fontWeight","gap","paddingVertical","paddingHorizontal"],"sourceRoot":"../../../../../src","sources":["games/space-traveller/components/SettingsModal.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","useEffect","Canvas","Circle","Path","Skia","vec","Group","Shadow","LinearGradient","RadialGradient","useSharedValue","useAnimatedStyle","withRepeat","withTiming","withSequence","interpolate","Extrapolation","Animated","jsx","_jsx","jsxs","_jsxs","Spacecraft3D","spacecraft","isControlled","size","canvasSize","engineGlow","thrusterPulse","hoverFloat","energyField","plasmaEffect","value","duration","animatedStyle","scale","floatY","CLAMP","transform","translateY","createSpacecraftBody","path","Make","centerX","centerY","bodyWidth","bodyHeight","addOval","x","y","width","height","createWings","leftWing","rightWing","wingWidth","wingHeight","moveTo","lineTo","close","createCockpit","cockpitSize","spacecraftBody","cockpit","View","style","position","left","top","children","dx","dy","blur","color","cx","cy","r","start","end","colors","c","Array","from","length","_","i","Math","cos","PI","sin","abs"],"sourceRoot":"../../../../../src","sources":["games/space-traveller/components/Spacecraft3D.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { View } from 'react-native';
|
|
5
|
-
import { COLORS } from "../SpaceTravellerService.js";
|
|
6
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
-
export const SpacecraftPath = ({
|
|
8
|
-
path
|
|
9
|
-
}) => {
|
|
10
|
-
if (path.length < 2) return null;
|
|
11
|
-
return /*#__PURE__*/_jsx(View, {
|
|
12
|
-
style: {
|
|
13
|
-
position: 'absolute',
|
|
14
|
-
top: 0,
|
|
15
|
-
left: 0,
|
|
16
|
-
right: 0,
|
|
17
|
-
bottom: 0
|
|
18
|
-
},
|
|
19
|
-
children: path.map((point, index) => {
|
|
20
|
-
if (index === 0) return null;
|
|
21
|
-
const opacity = index / path.length * 0.5;
|
|
22
|
-
return /*#__PURE__*/_jsx(View, {
|
|
23
|
-
style: {
|
|
24
|
-
position: 'absolute',
|
|
25
|
-
left: point.x - 2,
|
|
26
|
-
top: point.y - 2,
|
|
27
|
-
width: 4,
|
|
28
|
-
height: 4,
|
|
29
|
-
borderRadius: 2,
|
|
30
|
-
backgroundColor: COLORS.SPACECRAFT,
|
|
31
|
-
opacity
|
|
32
|
-
}
|
|
33
|
-
}, index);
|
|
34
|
-
})
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
//# sourceMappingURL=SpacecraftPath.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","View","COLORS","jsx","_jsx","SpacecraftPath","path","length","style","position","top","left","right","bottom","children","map","point","index","opacity","x","y","width","height","borderRadius","backgroundColor","SPACECRAFT"],"sourceRoot":"../../../../../src","sources":["games/space-traveller/components/SpacecraftPath.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,IAAI,QAAQ,cAAc;AACnC,SAASC,MAAM,QAAQ,6BAA0B;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAMlD,OAAO,MAAMC,cAA6C,GAAGA,CAAC;EAAEC;AAAK,CAAC,KAAK;EACzE,IAAIA,IAAI,CAACC,MAAM,GAAG,CAAC,EAAE,OAAO,IAAI;EAEhC,oBACEH,IAAA,CAACH,IAAI;IAACO,KAAK,EAAE;MAAEC,QAAQ,EAAE,UAAU;MAAEC,GAAG,EAAE,CAAC;MAAEC,IAAI,EAAE,CAAC;MAAEC,KAAK,EAAE,CAAC;MAAEC,MAAM,EAAE;IAAE,CAAE;IAAAC,QAAA,EACzER,IAAI,CAACS,GAAG,CAAC,CAACC,KAAK,EAAEC,KAAK,KAAK;MAC1B,IAAIA,KAAK,KAAK,CAAC,EAAE,OAAO,IAAI;MAC5B,MAAMC,OAAO,GAAID,KAAK,GAAGX,IAAI,CAACC,MAAM,GAAI,GAAG;MAC3C,oBACEH,IAAA,CAACH,IAAI;QAEHO,KAAK,EAAE;UACLC,QAAQ,EAAE,UAAU;UACpBE,IAAI,EAAEK,KAAK,CAACG,CAAC,GAAG,CAAC;UACjBT,GAAG,EAAEM,KAAK,CAACI,CAAC,GAAG,CAAC;UAChBC,KAAK,EAAE,CAAC;UACRC,MAAM,EAAE,CAAC;UACTC,YAAY,EAAE,CAAC;UACfC,eAAe,EAAEtB,MAAM,CAACuB,UAAU;UAClCP;QACF;MAAE,GAVGD,KAWN,CAAC;IAEN,CAAC;EAAC,CACE,CAAC;AAEX,CAAC","ignoreList":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["ScoreBoard","AsteroidComponent","Spacecraft3D","ParticleComponent","SpacecraftPath","GameArea","GameControls","GameOverModal","SettingsModal","GameBackground"],"sourceRoot":"../../../../../src","sources":["games/space-traveller/components/index.ts"],"mappings":";;AAAA,SAASA,UAAU,QAAQ,iBAAc;AACzC,SAASC,iBAAiB,QAAQ,wBAAqB;AACvD,SAASC,YAAY,QAAQ,mBAAgB;AAC7C,SAASC,iBAAiB,QAAQ,wBAAqB;AACvD,SAASC,cAAc,QAAQ,qBAAkB;AACjD,SAASC,QAAQ,QAAQ,eAAY;AACrC,SAASC,YAAY,QAAQ,mBAAgB;AAC7C,SAASC,aAAa,QAAQ,oBAAiB;AAC/C,SAASC,aAAa,QAAQ,oBAAiB;AAC/C,SAASC,cAAc,QAAQ,qBAAkB","ignoreList":[]}
|
|
@@ -1,295 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
import React from 'react';
|
|
4
|
-
import { View, Text, ScrollView, TouchableOpacity, Switch, StyleSheet } from 'react-native';
|
|
5
|
-
import { getGameTheme, getGameDifficultyDescriptions, getGameTitle } from "../../services/GamesConstants.js";
|
|
6
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
7
|
-
export const GameSettings = ({
|
|
8
|
-
gameId,
|
|
9
|
-
onClose,
|
|
10
|
-
settingsStore
|
|
11
|
-
}) => {
|
|
12
|
-
const theme = getGameTheme(gameId);
|
|
13
|
-
const difficultyDescriptions = getGameDifficultyDescriptions(gameId);
|
|
14
|
-
const title = `${getGameTitle(gameId)} Settings`;
|
|
15
|
-
const {
|
|
16
|
-
difficulty,
|
|
17
|
-
soundEnabled,
|
|
18
|
-
hapticEnabled
|
|
19
|
-
} = settingsStore;
|
|
20
|
-
const handleDifficultyChange = newDifficulty => {
|
|
21
|
-
if (settingsStore.setDifficulty) {
|
|
22
|
-
settingsStore.setDifficulty(newDifficulty);
|
|
23
|
-
} else if (settingsStore.updateSettings) {
|
|
24
|
-
settingsStore.updateSettings({
|
|
25
|
-
difficulty: newDifficulty
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
};
|
|
29
|
-
const handleSoundToggle = enabled => {
|
|
30
|
-
if (settingsStore.setSoundEnabled) {
|
|
31
|
-
settingsStore.setSoundEnabled(enabled);
|
|
32
|
-
} else if (settingsStore.updateSettings) {
|
|
33
|
-
settingsStore.updateSettings({
|
|
34
|
-
soundEnabled: enabled
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
|
-
const handleHapticToggle = enabled => {
|
|
39
|
-
if (settingsStore.setHapticEnabled) {
|
|
40
|
-
settingsStore.setHapticEnabled(enabled);
|
|
41
|
-
} else if (settingsStore.updateSettings) {
|
|
42
|
-
settingsStore.updateSettings({
|
|
43
|
-
hapticEnabled: enabled
|
|
44
|
-
});
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
const handleResetDefaults = () => {
|
|
48
|
-
settingsStore.resetToDefaults();
|
|
49
|
-
};
|
|
50
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
51
|
-
style: [styles.container, {
|
|
52
|
-
backgroundColor: theme.backgroundColor
|
|
53
|
-
}],
|
|
54
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
55
|
-
style: [styles.header, {
|
|
56
|
-
backgroundColor: theme.headerBackgroundColor
|
|
57
|
-
}],
|
|
58
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
59
|
-
style: [styles.headerTitle, {
|
|
60
|
-
color: theme.headerTextColor
|
|
61
|
-
}],
|
|
62
|
-
children: title
|
|
63
|
-
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
64
|
-
onPress: onClose,
|
|
65
|
-
style: styles.closeButton,
|
|
66
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
67
|
-
style: [styles.closeButtonText, {
|
|
68
|
-
color: theme.headerTextColor
|
|
69
|
-
}],
|
|
70
|
-
children: "\u2715"
|
|
71
|
-
})
|
|
72
|
-
})]
|
|
73
|
-
}), /*#__PURE__*/_jsxs(ScrollView, {
|
|
74
|
-
style: styles.scrollView,
|
|
75
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
76
|
-
style: [styles.section, {
|
|
77
|
-
backgroundColor: theme.sectionBackgroundColor
|
|
78
|
-
}],
|
|
79
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
80
|
-
style: [styles.sectionTitle, {
|
|
81
|
-
color: theme.sectionTitleColor
|
|
82
|
-
}],
|
|
83
|
-
children: "Difficulty Level"
|
|
84
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
85
|
-
style: styles.difficultyRow,
|
|
86
|
-
children: ['easy', 'medium', 'hard'].map(level => /*#__PURE__*/_jsx(TouchableOpacity, {
|
|
87
|
-
onPress: () => handleDifficultyChange(level),
|
|
88
|
-
style: [styles.difficultyButton, {
|
|
89
|
-
backgroundColor: difficulty === level ? theme.buttonSelectedColor : theme.buttonUnselectedColor
|
|
90
|
-
}],
|
|
91
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
92
|
-
style: [styles.buttonText, styles.capitalize, {
|
|
93
|
-
color: difficulty === level ? theme.buttonSelectedTextColor : theme.buttonUnselectedTextColor
|
|
94
|
-
}],
|
|
95
|
-
children: level
|
|
96
|
-
})
|
|
97
|
-
}, level))
|
|
98
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
99
|
-
style: styles.infoBox,
|
|
100
|
-
children: /*#__PURE__*/_jsxs(Text, {
|
|
101
|
-
style: [styles.infoText, {
|
|
102
|
-
color: theme.infoTextColor
|
|
103
|
-
}],
|
|
104
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
105
|
-
style: styles.boldText,
|
|
106
|
-
children: "Easy:"
|
|
107
|
-
}), " ", difficultyDescriptions.easy, '\n', /*#__PURE__*/_jsx(Text, {
|
|
108
|
-
style: styles.boldText,
|
|
109
|
-
children: "Medium:"
|
|
110
|
-
}), " ", difficultyDescriptions.medium, '\n', /*#__PURE__*/_jsx(Text, {
|
|
111
|
-
style: styles.boldText,
|
|
112
|
-
children: "Hard:"
|
|
113
|
-
}), " ", difficultyDescriptions.hard]
|
|
114
|
-
})
|
|
115
|
-
})]
|
|
116
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
117
|
-
style: [styles.section, {
|
|
118
|
-
backgroundColor: theme.sectionBackgroundColor
|
|
119
|
-
}],
|
|
120
|
-
children: /*#__PURE__*/_jsxs(View, {
|
|
121
|
-
style: styles.toggleContainer,
|
|
122
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
123
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
124
|
-
style: [styles.toggleTitle, {
|
|
125
|
-
color: theme.sectionTitleColor
|
|
126
|
-
}],
|
|
127
|
-
children: "Sound Effects"
|
|
128
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
129
|
-
style: [styles.toggleSubtitle, {
|
|
130
|
-
color: theme.infoTextColor
|
|
131
|
-
}],
|
|
132
|
-
children: "Play sounds during gameplay"
|
|
133
|
-
})]
|
|
134
|
-
}), /*#__PURE__*/_jsx(Switch, {
|
|
135
|
-
value: soundEnabled,
|
|
136
|
-
onValueChange: handleSoundToggle,
|
|
137
|
-
trackColor: {
|
|
138
|
-
false: theme.switchTrackColorFalse,
|
|
139
|
-
true: theme.switchTrackColorTrue
|
|
140
|
-
},
|
|
141
|
-
thumbColor: theme.switchThumbColor
|
|
142
|
-
})]
|
|
143
|
-
})
|
|
144
|
-
}), /*#__PURE__*/_jsx(View, {
|
|
145
|
-
style: [styles.section, {
|
|
146
|
-
backgroundColor: theme.sectionBackgroundColor
|
|
147
|
-
}],
|
|
148
|
-
children: /*#__PURE__*/_jsxs(View, {
|
|
149
|
-
style: styles.toggleContainer,
|
|
150
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
151
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
152
|
-
style: [styles.toggleTitle, {
|
|
153
|
-
color: theme.sectionTitleColor
|
|
154
|
-
}],
|
|
155
|
-
children: "Haptic Feedback"
|
|
156
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
157
|
-
style: [styles.toggleSubtitle, {
|
|
158
|
-
color: theme.infoTextColor
|
|
159
|
-
}],
|
|
160
|
-
children: "Vibration feedback for interactions"
|
|
161
|
-
})]
|
|
162
|
-
}), /*#__PURE__*/_jsx(Switch, {
|
|
163
|
-
value: hapticEnabled,
|
|
164
|
-
onValueChange: handleHapticToggle,
|
|
165
|
-
trackColor: {
|
|
166
|
-
false: theme.switchTrackColorFalse,
|
|
167
|
-
true: theme.switchTrackColorTrue
|
|
168
|
-
},
|
|
169
|
-
thumbColor: theme.switchThumbColor
|
|
170
|
-
})]
|
|
171
|
-
})
|
|
172
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
173
|
-
style: styles.resetSection,
|
|
174
|
-
children: [/*#__PURE__*/_jsx(TouchableOpacity, {
|
|
175
|
-
onPress: handleResetDefaults,
|
|
176
|
-
style: [styles.resetButton, {
|
|
177
|
-
backgroundColor: theme.resetButtonColor
|
|
178
|
-
}],
|
|
179
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
180
|
-
style: [styles.resetButtonText, {
|
|
181
|
-
color: theme.resetButtonTextColor
|
|
182
|
-
}],
|
|
183
|
-
children: "Reset to Defaults"
|
|
184
|
-
})
|
|
185
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
186
|
-
style: [styles.resetDescription, {
|
|
187
|
-
color: theme.infoTextColor
|
|
188
|
-
}],
|
|
189
|
-
children: "This will restore all settings to their original values"
|
|
190
|
-
})]
|
|
191
|
-
})]
|
|
192
|
-
})]
|
|
193
|
-
});
|
|
194
|
-
};
|
|
195
|
-
const styles = StyleSheet.create({
|
|
196
|
-
container: {
|
|
197
|
-
flex: 1
|
|
198
|
-
},
|
|
199
|
-
header: {
|
|
200
|
-
flexDirection: 'row',
|
|
201
|
-
justifyContent: 'space-between',
|
|
202
|
-
alignItems: 'center',
|
|
203
|
-
padding: 16
|
|
204
|
-
},
|
|
205
|
-
headerTitle: {
|
|
206
|
-
fontSize: 20,
|
|
207
|
-
fontWeight: 'bold'
|
|
208
|
-
},
|
|
209
|
-
closeButton: {
|
|
210
|
-
padding: 8
|
|
211
|
-
},
|
|
212
|
-
closeButtonText: {
|
|
213
|
-
fontSize: 18,
|
|
214
|
-
fontWeight: 'bold'
|
|
215
|
-
},
|
|
216
|
-
scrollView: {
|
|
217
|
-
flex: 1,
|
|
218
|
-
padding: 16
|
|
219
|
-
},
|
|
220
|
-
section: {
|
|
221
|
-
borderRadius: 12,
|
|
222
|
-
padding: 16,
|
|
223
|
-
marginBottom: 16
|
|
224
|
-
},
|
|
225
|
-
sectionTitle: {
|
|
226
|
-
fontSize: 18,
|
|
227
|
-
fontWeight: 'bold',
|
|
228
|
-
marginBottom: 12
|
|
229
|
-
},
|
|
230
|
-
difficultyRow: {
|
|
231
|
-
flexDirection: 'row',
|
|
232
|
-
justifyContent: 'space-between',
|
|
233
|
-
marginBottom: 12
|
|
234
|
-
},
|
|
235
|
-
difficultyButton: {
|
|
236
|
-
flex: 1,
|
|
237
|
-
paddingVertical: 12,
|
|
238
|
-
paddingHorizontal: 8,
|
|
239
|
-
borderRadius: 8,
|
|
240
|
-
marginHorizontal: 4,
|
|
241
|
-
alignItems: 'center'
|
|
242
|
-
},
|
|
243
|
-
buttonText: {
|
|
244
|
-
fontSize: 16,
|
|
245
|
-
fontWeight: '600'
|
|
246
|
-
},
|
|
247
|
-
capitalize: {
|
|
248
|
-
textTransform: 'capitalize'
|
|
249
|
-
},
|
|
250
|
-
infoBox: {
|
|
251
|
-
backgroundColor: 'rgba(255, 255, 255, 0.1)',
|
|
252
|
-
borderRadius: 8,
|
|
253
|
-
padding: 12
|
|
254
|
-
},
|
|
255
|
-
infoText: {
|
|
256
|
-
fontSize: 14,
|
|
257
|
-
lineHeight: 20
|
|
258
|
-
},
|
|
259
|
-
boldText: {
|
|
260
|
-
fontWeight: 'bold'
|
|
261
|
-
},
|
|
262
|
-
toggleContainer: {
|
|
263
|
-
flexDirection: 'row',
|
|
264
|
-
justifyContent: 'space-between',
|
|
265
|
-
alignItems: 'center'
|
|
266
|
-
},
|
|
267
|
-
toggleTitle: {
|
|
268
|
-
fontSize: 16,
|
|
269
|
-
fontWeight: '600'
|
|
270
|
-
},
|
|
271
|
-
toggleSubtitle: {
|
|
272
|
-
fontSize: 14,
|
|
273
|
-
marginTop: 2
|
|
274
|
-
},
|
|
275
|
-
resetSection: {
|
|
276
|
-
alignItems: 'center',
|
|
277
|
-
marginTop: 8
|
|
278
|
-
},
|
|
279
|
-
resetButton: {
|
|
280
|
-
paddingVertical: 12,
|
|
281
|
-
paddingHorizontal: 24,
|
|
282
|
-
borderRadius: 8,
|
|
283
|
-
marginBottom: 8
|
|
284
|
-
},
|
|
285
|
-
resetButtonText: {
|
|
286
|
-
fontSize: 16,
|
|
287
|
-
fontWeight: '600'
|
|
288
|
-
},
|
|
289
|
-
resetDescription: {
|
|
290
|
-
fontSize: 12,
|
|
291
|
-
textAlign: 'center'
|
|
292
|
-
}
|
|
293
|
-
});
|
|
294
|
-
export default GameSettings;
|
|
295
|
-
//# sourceMappingURL=GameSettings.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["React","View","Text","ScrollView","TouchableOpacity","Switch","StyleSheet","getGameTheme","getGameDifficultyDescriptions","getGameTitle","jsx","_jsx","jsxs","_jsxs","GameSettings","gameId","onClose","settingsStore","theme","difficultyDescriptions","title","difficulty","soundEnabled","hapticEnabled","handleDifficultyChange","newDifficulty","setDifficulty","updateSettings","handleSoundToggle","enabled","setSoundEnabled","handleHapticToggle","setHapticEnabled","handleResetDefaults","resetToDefaults","style","styles","container","backgroundColor","children","header","headerBackgroundColor","headerTitle","color","headerTextColor","onPress","closeButton","closeButtonText","scrollView","section","sectionBackgroundColor","sectionTitle","sectionTitleColor","difficultyRow","map","level","difficultyButton","buttonSelectedColor","buttonUnselectedColor","buttonText","capitalize","buttonSelectedTextColor","buttonUnselectedTextColor","infoBox","infoText","infoTextColor","boldText","easy","medium","hard","toggleContainer","toggleTitle","toggleSubtitle","value","onValueChange","trackColor","false","switchTrackColorFalse","true","switchTrackColorTrue","thumbColor","switchThumbColor","resetSection","resetButton","resetButtonColor","resetButtonText","resetButtonTextColor","resetDescription","create","flex","flexDirection","justifyContent","alignItems","padding","fontSize","fontWeight","borderRadius","marginBottom","paddingVertical","paddingHorizontal","marginHorizontal","textTransform","lineHeight","marginTop","textAlign"],"sourceRoot":"../../../../src","sources":["shared/settings/GameSettings.tsx"],"mappings":"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","ignoreList":[]}
|