react-native-games 0.3.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.
Files changed (269) hide show
  1. package/LICENSE +66 -0
  2. package/README.md +269 -0
  3. package/lib/module/games/balloon-blaster/BalloonBlaster.js +391 -0
  4. package/lib/module/games/balloon-blaster/BalloonBlaster.js.map +1 -0
  5. package/lib/module/games/balloon-blaster/BalloonBlasterService.js +293 -0
  6. package/lib/module/games/balloon-blaster/BalloonBlasterService.js.map +1 -0
  7. package/lib/module/games/balloon-blaster/BalloonBlasterStore.js +156 -0
  8. package/lib/module/games/balloon-blaster/BalloonBlasterStore.js.map +1 -0
  9. package/lib/module/games/balloon-blaster/components/BalloonComponent.js +227 -0
  10. package/lib/module/games/balloon-blaster/components/BalloonComponent.js.map +1 -0
  11. package/lib/module/games/balloon-blaster/components/GameArea.js +42 -0
  12. package/lib/module/games/balloon-blaster/components/GameArea.js.map +1 -0
  13. package/lib/module/games/balloon-blaster/components/GameBackground.js +544 -0
  14. package/lib/module/games/balloon-blaster/components/GameBackground.js.map +1 -0
  15. package/lib/module/games/balloon-blaster/components/GameControls.js +229 -0
  16. package/lib/module/games/balloon-blaster/components/GameControls.js.map +1 -0
  17. package/lib/module/games/balloon-blaster/components/GameOverModal.js +133 -0
  18. package/lib/module/games/balloon-blaster/components/GameOverModal.js.map +1 -0
  19. package/lib/module/games/balloon-blaster/components/ParticleSystem.js +52 -0
  20. package/lib/module/games/balloon-blaster/components/ParticleSystem.js.map +1 -0
  21. package/lib/module/games/balloon-blaster/components/ScoreBoard.js +119 -0
  22. package/lib/module/games/balloon-blaster/components/ScoreBoard.js.map +1 -0
  23. package/lib/module/games/balloon-blaster/components/SliceTrail.js +58 -0
  24. package/lib/module/games/balloon-blaster/components/SliceTrail.js.map +1 -0
  25. package/lib/module/games/balloon-blaster/components/index.js +11 -0
  26. package/lib/module/games/balloon-blaster/components/index.js.map +1 -0
  27. package/lib/module/games/cat-popper/CatPopper.js +230 -0
  28. package/lib/module/games/cat-popper/CatPopper.js.map +1 -0
  29. package/lib/module/games/cat-popper/CatPopperService.js +100 -0
  30. package/lib/module/games/cat-popper/CatPopperService.js.map +1 -0
  31. package/lib/module/games/cat-popper/CatPopperStore.js +113 -0
  32. package/lib/module/games/cat-popper/CatPopperStore.js.map +1 -0
  33. package/lib/module/games/cat-popper/components/CatCharacter.js +281 -0
  34. package/lib/module/games/cat-popper/components/CatCharacter.js.map +1 -0
  35. package/lib/module/games/cat-popper/components/GameBackground.js +531 -0
  36. package/lib/module/games/cat-popper/components/GameBackground.js.map +1 -0
  37. package/lib/module/games/cat-popper/components/GameControls.js +230 -0
  38. package/lib/module/games/cat-popper/components/GameControls.js.map +1 -0
  39. package/lib/module/games/cat-popper/components/GameGrid.js +66 -0
  40. package/lib/module/games/cat-popper/components/GameGrid.js.map +1 -0
  41. package/lib/module/games/cat-popper/components/GameHole.js +183 -0
  42. package/lib/module/games/cat-popper/components/GameHole.js.map +1 -0
  43. package/lib/module/games/cat-popper/components/GameOverModal.js +131 -0
  44. package/lib/module/games/cat-popper/components/GameOverModal.js.map +1 -0
  45. package/lib/module/games/cat-popper/components/ScoreBoard.js +77 -0
  46. package/lib/module/games/cat-popper/components/ScoreBoard.js.map +1 -0
  47. package/lib/module/games/cat-popper/components/index.js +10 -0
  48. package/lib/module/games/cat-popper/components/index.js.map +1 -0
  49. package/lib/module/games/fruit-slicer/FruitSlicer.js +411 -0
  50. package/lib/module/games/fruit-slicer/FruitSlicer.js.map +1 -0
  51. package/lib/module/games/fruit-slicer/FruitSlicerService.js +293 -0
  52. package/lib/module/games/fruit-slicer/FruitSlicerService.js.map +1 -0
  53. package/lib/module/games/fruit-slicer/FruitSlicerStore.js +156 -0
  54. package/lib/module/games/fruit-slicer/FruitSlicerStore.js.map +1 -0
  55. package/lib/module/games/fruit-slicer/components/FruitComponent.js +99 -0
  56. package/lib/module/games/fruit-slicer/components/FruitComponent.js.map +1 -0
  57. package/lib/module/games/fruit-slicer/components/GameArea.js +50 -0
  58. package/lib/module/games/fruit-slicer/components/GameArea.js.map +1 -0
  59. package/lib/module/games/fruit-slicer/components/GameBackground.js +1296 -0
  60. package/lib/module/games/fruit-slicer/components/GameBackground.js.map +1 -0
  61. package/lib/module/games/fruit-slicer/components/GameControls.js +230 -0
  62. package/lib/module/games/fruit-slicer/components/GameControls.js.map +1 -0
  63. package/lib/module/games/fruit-slicer/components/GameOverModal.js +189 -0
  64. package/lib/module/games/fruit-slicer/components/GameOverModal.js.map +1 -0
  65. package/lib/module/games/fruit-slicer/components/ParticleSystem.js +52 -0
  66. package/lib/module/games/fruit-slicer/components/ParticleSystem.js.map +1 -0
  67. package/lib/module/games/fruit-slicer/components/ScoreBoard.js +121 -0
  68. package/lib/module/games/fruit-slicer/components/ScoreBoard.js.map +1 -0
  69. package/lib/module/games/fruit-slicer/components/SliceTrail.js +58 -0
  70. package/lib/module/games/fruit-slicer/components/SliceTrail.js.map +1 -0
  71. package/lib/module/games/fruit-slicer/components/index.js +11 -0
  72. package/lib/module/games/fruit-slicer/components/index.js.map +1 -0
  73. package/lib/module/games/maze-runner/MazeRunner.js +242 -0
  74. package/lib/module/games/maze-runner/MazeRunner.js.map +1 -0
  75. package/lib/module/games/maze-runner/MazeRunnerService.js +560 -0
  76. package/lib/module/games/maze-runner/MazeRunnerService.js.map +1 -0
  77. package/lib/module/games/maze-runner/components/EnhancedBallComponent.js +149 -0
  78. package/lib/module/games/maze-runner/components/EnhancedBallComponent.js.map +1 -0
  79. package/lib/module/games/maze-runner/components/EnhancedGameArea.js +357 -0
  80. package/lib/module/games/maze-runner/components/EnhancedGameArea.js.map +1 -0
  81. package/lib/module/games/maze-runner/components/GameBackground.js +216 -0
  82. package/lib/module/games/maze-runner/components/GameBackground.js.map +1 -0
  83. package/lib/module/games/maze-runner/components/GameControls.js +129 -0
  84. package/lib/module/games/maze-runner/components/GameControls.js.map +1 -0
  85. package/lib/module/games/maze-runner/components/GameOverModal.js +134 -0
  86. package/lib/module/games/maze-runner/components/GameOverModal.js.map +1 -0
  87. package/lib/module/games/maze-runner/components/ScoreBoard.js +81 -0
  88. package/lib/module/games/maze-runner/components/ScoreBoard.js.map +1 -0
  89. package/lib/module/games/maze-runner/components/SkiaPipeComponent.js +209 -0
  90. package/lib/module/games/maze-runner/components/SkiaPipeComponent.js.map +1 -0
  91. package/lib/module/games/maze-runner/components/StaticGameBackground.js +169 -0
  92. package/lib/module/games/maze-runner/components/StaticGameBackground.js.map +1 -0
  93. package/lib/module/games/maze-runner/components/WallComponent.js +90 -0
  94. package/lib/module/games/maze-runner/components/WallComponent.js.map +1 -0
  95. package/lib/module/games/maze-runner/components/index.js +10 -0
  96. package/lib/module/games/maze-runner/components/index.js.map +1 -0
  97. package/lib/module/games/space-traveller/SpaceTraveller.js +393 -0
  98. package/lib/module/games/space-traveller/SpaceTraveller.js.map +1 -0
  99. package/lib/module/games/space-traveller/SpaceTravellerService.js +298 -0
  100. package/lib/module/games/space-traveller/SpaceTravellerService.js.map +1 -0
  101. package/lib/module/games/space-traveller/SpaceTravellerStore.js +139 -0
  102. package/lib/module/games/space-traveller/SpaceTravellerStore.js.map +1 -0
  103. package/lib/module/games/space-traveller/components/AsteroidComponent.js +111 -0
  104. package/lib/module/games/space-traveller/components/AsteroidComponent.js.map +1 -0
  105. package/lib/module/games/space-traveller/components/GameArea.js +75 -0
  106. package/lib/module/games/space-traveller/components/GameArea.js.map +1 -0
  107. package/lib/module/games/space-traveller/components/GameBackground.js +294 -0
  108. package/lib/module/games/space-traveller/components/GameBackground.js.map +1 -0
  109. package/lib/module/games/space-traveller/components/GameControls.js +177 -0
  110. package/lib/module/games/space-traveller/components/GameControls.js.map +1 -0
  111. package/lib/module/games/space-traveller/components/GameOverModal.js +182 -0
  112. package/lib/module/games/space-traveller/components/GameOverModal.js.map +1 -0
  113. package/lib/module/games/space-traveller/components/ParticleComponent.js +34 -0
  114. package/lib/module/games/space-traveller/components/ParticleComponent.js.map +1 -0
  115. package/lib/module/games/space-traveller/components/ScoreBoard.js +143 -0
  116. package/lib/module/games/space-traveller/components/ScoreBoard.js.map +1 -0
  117. package/lib/module/games/space-traveller/components/SettingsModal.js +222 -0
  118. package/lib/module/games/space-traveller/components/SettingsModal.js.map +1 -0
  119. package/lib/module/games/space-traveller/components/Spacecraft3D.js +362 -0
  120. package/lib/module/games/space-traveller/components/Spacecraft3D.js.map +1 -0
  121. package/lib/module/games/space-traveller/components/SpacecraftPath.js +37 -0
  122. package/lib/module/games/space-traveller/components/SpacecraftPath.js.map +1 -0
  123. package/lib/module/games/space-traveller/components/index.js +13 -0
  124. package/lib/module/games/space-traveller/components/index.js.map +1 -0
  125. package/lib/module/index.js +12 -0
  126. package/lib/module/index.js.map +1 -0
  127. package/lib/module/package.json +1 -0
  128. package/lib/module/services/GamesConstants.js +561 -0
  129. package/lib/module/services/GamesConstants.js.map +1 -0
  130. package/lib/module/services/GamesService.js +34 -0
  131. package/lib/module/services/GamesService.js.map +1 -0
  132. package/lib/module/shared/settings/GameSettings.js +295 -0
  133. package/lib/module/shared/settings/GameSettings.js.map +1 -0
  134. package/lib/module/shared/settings/SettingsService.js +119 -0
  135. package/lib/module/shared/settings/SettingsService.js.map +1 -0
  136. package/lib/typescript/package.json +1 -0
  137. package/lib/typescript/src/games/balloon-blaster/BalloonBlaster.d.ts +16 -0
  138. package/lib/typescript/src/games/balloon-blaster/BalloonBlaster.d.ts.map +1 -0
  139. package/lib/typescript/src/games/balloon-blaster/BalloonBlasterService.d.ts +66 -0
  140. package/lib/typescript/src/games/balloon-blaster/BalloonBlasterService.d.ts.map +1 -0
  141. package/lib/typescript/src/games/balloon-blaster/BalloonBlasterStore.d.ts +37 -0
  142. package/lib/typescript/src/games/balloon-blaster/BalloonBlasterStore.d.ts.map +1 -0
  143. package/lib/typescript/src/games/balloon-blaster/components/BalloonComponent.d.ts +10 -0
  144. package/lib/typescript/src/games/balloon-blaster/components/BalloonComponent.d.ts.map +1 -0
  145. package/lib/typescript/src/games/balloon-blaster/components/GameArea.d.ts +17 -0
  146. package/lib/typescript/src/games/balloon-blaster/components/GameArea.d.ts.map +1 -0
  147. package/lib/typescript/src/games/balloon-blaster/components/GameBackground.d.ts +7 -0
  148. package/lib/typescript/src/games/balloon-blaster/components/GameBackground.d.ts.map +1 -0
  149. package/lib/typescript/src/games/balloon-blaster/components/GameControls.d.ts +10 -0
  150. package/lib/typescript/src/games/balloon-blaster/components/GameControls.d.ts.map +1 -0
  151. package/lib/typescript/src/games/balloon-blaster/components/GameOverModal.d.ts +9 -0
  152. package/lib/typescript/src/games/balloon-blaster/components/GameOverModal.d.ts.map +1 -0
  153. package/lib/typescript/src/games/balloon-blaster/components/ParticleSystem.d.ts +8 -0
  154. package/lib/typescript/src/games/balloon-blaster/components/ParticleSystem.d.ts.map +1 -0
  155. package/lib/typescript/src/games/balloon-blaster/components/ScoreBoard.d.ts +9 -0
  156. package/lib/typescript/src/games/balloon-blaster/components/ScoreBoard.d.ts.map +1 -0
  157. package/lib/typescript/src/games/balloon-blaster/components/SliceTrail.d.ts +11 -0
  158. package/lib/typescript/src/games/balloon-blaster/components/SliceTrail.d.ts.map +1 -0
  159. package/lib/typescript/src/games/balloon-blaster/components/index.d.ts +9 -0
  160. package/lib/typescript/src/games/balloon-blaster/components/index.d.ts.map +1 -0
  161. package/lib/typescript/src/games/cat-popper/CatPopper.d.ts +13 -0
  162. package/lib/typescript/src/games/cat-popper/CatPopper.d.ts.map +1 -0
  163. package/lib/typescript/src/games/cat-popper/CatPopperService.d.ts +32 -0
  164. package/lib/typescript/src/games/cat-popper/CatPopperService.d.ts.map +1 -0
  165. package/lib/typescript/src/games/cat-popper/CatPopperStore.d.ts +21 -0
  166. package/lib/typescript/src/games/cat-popper/CatPopperStore.d.ts.map +1 -0
  167. package/lib/typescript/src/games/cat-popper/components/CatCharacter.d.ts +7 -0
  168. package/lib/typescript/src/games/cat-popper/components/CatCharacter.d.ts.map +1 -0
  169. package/lib/typescript/src/games/cat-popper/components/GameBackground.d.ts +7 -0
  170. package/lib/typescript/src/games/cat-popper/components/GameBackground.d.ts.map +1 -0
  171. package/lib/typescript/src/games/cat-popper/components/GameControls.d.ts +10 -0
  172. package/lib/typescript/src/games/cat-popper/components/GameControls.d.ts.map +1 -0
  173. package/lib/typescript/src/games/cat-popper/components/GameGrid.d.ts +13 -0
  174. package/lib/typescript/src/games/cat-popper/components/GameGrid.d.ts.map +1 -0
  175. package/lib/typescript/src/games/cat-popper/components/GameHole.d.ts +12 -0
  176. package/lib/typescript/src/games/cat-popper/components/GameHole.d.ts.map +1 -0
  177. package/lib/typescript/src/games/cat-popper/components/GameOverModal.d.ts +9 -0
  178. package/lib/typescript/src/games/cat-popper/components/GameOverModal.d.ts.map +1 -0
  179. package/lib/typescript/src/games/cat-popper/components/ScoreBoard.d.ts +8 -0
  180. package/lib/typescript/src/games/cat-popper/components/ScoreBoard.d.ts.map +1 -0
  181. package/lib/typescript/src/games/cat-popper/components/index.d.ts +8 -0
  182. package/lib/typescript/src/games/cat-popper/components/index.d.ts.map +1 -0
  183. package/lib/typescript/src/games/fruit-slicer/FruitSlicer.d.ts +16 -0
  184. package/lib/typescript/src/games/fruit-slicer/FruitSlicer.d.ts.map +1 -0
  185. package/lib/typescript/src/games/fruit-slicer/FruitSlicerService.d.ts +67 -0
  186. package/lib/typescript/src/games/fruit-slicer/FruitSlicerService.d.ts.map +1 -0
  187. package/lib/typescript/src/games/fruit-slicer/FruitSlicerStore.d.ts +37 -0
  188. package/lib/typescript/src/games/fruit-slicer/FruitSlicerStore.d.ts.map +1 -0
  189. package/lib/typescript/src/games/fruit-slicer/components/FruitComponent.d.ts +10 -0
  190. package/lib/typescript/src/games/fruit-slicer/components/FruitComponent.d.ts.map +1 -0
  191. package/lib/typescript/src/games/fruit-slicer/components/GameArea.d.ts +17 -0
  192. package/lib/typescript/src/games/fruit-slicer/components/GameArea.d.ts.map +1 -0
  193. package/lib/typescript/src/games/fruit-slicer/components/GameBackground.d.ts +7 -0
  194. package/lib/typescript/src/games/fruit-slicer/components/GameBackground.d.ts.map +1 -0
  195. package/lib/typescript/src/games/fruit-slicer/components/GameControls.d.ts +10 -0
  196. package/lib/typescript/src/games/fruit-slicer/components/GameControls.d.ts.map +1 -0
  197. package/lib/typescript/src/games/fruit-slicer/components/GameOverModal.d.ts +9 -0
  198. package/lib/typescript/src/games/fruit-slicer/components/GameOverModal.d.ts.map +1 -0
  199. package/lib/typescript/src/games/fruit-slicer/components/ParticleSystem.d.ts +8 -0
  200. package/lib/typescript/src/games/fruit-slicer/components/ParticleSystem.d.ts.map +1 -0
  201. package/lib/typescript/src/games/fruit-slicer/components/ScoreBoard.d.ts +9 -0
  202. package/lib/typescript/src/games/fruit-slicer/components/ScoreBoard.d.ts.map +1 -0
  203. package/lib/typescript/src/games/fruit-slicer/components/SliceTrail.d.ts +11 -0
  204. package/lib/typescript/src/games/fruit-slicer/components/SliceTrail.d.ts.map +1 -0
  205. package/lib/typescript/src/games/fruit-slicer/components/index.d.ts +9 -0
  206. package/lib/typescript/src/games/fruit-slicer/components/index.d.ts.map +1 -0
  207. package/lib/typescript/src/games/maze-runner/MazeRunner.d.ts +18 -0
  208. package/lib/typescript/src/games/maze-runner/MazeRunner.d.ts.map +1 -0
  209. package/lib/typescript/src/games/maze-runner/MazeRunnerService.d.ts +82 -0
  210. package/lib/typescript/src/games/maze-runner/MazeRunnerService.d.ts.map +1 -0
  211. package/lib/typescript/src/games/maze-runner/components/EnhancedBallComponent.d.ts +11 -0
  212. package/lib/typescript/src/games/maze-runner/components/EnhancedBallComponent.d.ts.map +1 -0
  213. package/lib/typescript/src/games/maze-runner/components/EnhancedGameArea.d.ts +12 -0
  214. package/lib/typescript/src/games/maze-runner/components/EnhancedGameArea.d.ts.map +1 -0
  215. package/lib/typescript/src/games/maze-runner/components/GameBackground.d.ts +7 -0
  216. package/lib/typescript/src/games/maze-runner/components/GameBackground.d.ts.map +1 -0
  217. package/lib/typescript/src/games/maze-runner/components/GameControls.d.ts +10 -0
  218. package/lib/typescript/src/games/maze-runner/components/GameControls.d.ts.map +1 -0
  219. package/lib/typescript/src/games/maze-runner/components/GameOverModal.d.ts +11 -0
  220. package/lib/typescript/src/games/maze-runner/components/GameOverModal.d.ts.map +1 -0
  221. package/lib/typescript/src/games/maze-runner/components/ScoreBoard.d.ts +8 -0
  222. package/lib/typescript/src/games/maze-runner/components/ScoreBoard.d.ts.map +1 -0
  223. package/lib/typescript/src/games/maze-runner/components/SkiaPipeComponent.d.ts +25 -0
  224. package/lib/typescript/src/games/maze-runner/components/SkiaPipeComponent.d.ts.map +1 -0
  225. package/lib/typescript/src/games/maze-runner/components/StaticGameBackground.d.ts +7 -0
  226. package/lib/typescript/src/games/maze-runner/components/StaticGameBackground.d.ts.map +1 -0
  227. package/lib/typescript/src/games/maze-runner/components/WallComponent.d.ts +10 -0
  228. package/lib/typescript/src/games/maze-runner/components/WallComponent.d.ts.map +1 -0
  229. package/lib/typescript/src/games/maze-runner/components/index.d.ts +8 -0
  230. package/lib/typescript/src/games/maze-runner/components/index.d.ts.map +1 -0
  231. package/lib/typescript/src/games/space-traveller/SpaceTraveller.d.ts +17 -0
  232. package/lib/typescript/src/games/space-traveller/SpaceTraveller.d.ts.map +1 -0
  233. package/lib/typescript/src/games/space-traveller/SpaceTravellerService.d.ts +65 -0
  234. package/lib/typescript/src/games/space-traveller/SpaceTravellerService.d.ts.map +1 -0
  235. package/lib/typescript/src/games/space-traveller/SpaceTravellerStore.d.ts +35 -0
  236. package/lib/typescript/src/games/space-traveller/SpaceTravellerStore.d.ts.map +1 -0
  237. package/lib/typescript/src/games/space-traveller/components/AsteroidComponent.d.ts +9 -0
  238. package/lib/typescript/src/games/space-traveller/components/AsteroidComponent.d.ts.map +1 -0
  239. package/lib/typescript/src/games/space-traveller/components/GameArea.d.ts +17 -0
  240. package/lib/typescript/src/games/space-traveller/components/GameArea.d.ts.map +1 -0
  241. package/lib/typescript/src/games/space-traveller/components/GameBackground.d.ts +7 -0
  242. package/lib/typescript/src/games/space-traveller/components/GameBackground.d.ts.map +1 -0
  243. package/lib/typescript/src/games/space-traveller/components/GameControls.d.ts +10 -0
  244. package/lib/typescript/src/games/space-traveller/components/GameControls.d.ts.map +1 -0
  245. package/lib/typescript/src/games/space-traveller/components/GameOverModal.d.ts +9 -0
  246. package/lib/typescript/src/games/space-traveller/components/GameOverModal.d.ts.map +1 -0
  247. package/lib/typescript/src/games/space-traveller/components/ParticleComponent.d.ts +8 -0
  248. package/lib/typescript/src/games/space-traveller/components/ParticleComponent.d.ts.map +1 -0
  249. package/lib/typescript/src/games/space-traveller/components/ScoreBoard.d.ts +8 -0
  250. package/lib/typescript/src/games/space-traveller/components/ScoreBoard.d.ts.map +1 -0
  251. package/lib/typescript/src/games/space-traveller/components/SettingsModal.d.ts +9 -0
  252. package/lib/typescript/src/games/space-traveller/components/SettingsModal.d.ts.map +1 -0
  253. package/lib/typescript/src/games/space-traveller/components/Spacecraft3D.d.ts +9 -0
  254. package/lib/typescript/src/games/space-traveller/components/Spacecraft3D.d.ts.map +1 -0
  255. package/lib/typescript/src/games/space-traveller/components/SpacecraftPath.d.ts +10 -0
  256. package/lib/typescript/src/games/space-traveller/components/SpacecraftPath.d.ts.map +1 -0
  257. package/lib/typescript/src/games/space-traveller/components/index.d.ts +11 -0
  258. package/lib/typescript/src/games/space-traveller/components/index.d.ts.map +1 -0
  259. package/lib/typescript/src/index.d.ts +7 -0
  260. package/lib/typescript/src/index.d.ts.map +1 -0
  261. package/lib/typescript/src/services/GamesConstants.d.ts +372 -0
  262. package/lib/typescript/src/services/GamesConstants.d.ts.map +1 -0
  263. package/lib/typescript/src/services/GamesService.d.ts +8 -0
  264. package/lib/typescript/src/services/GamesService.d.ts.map +1 -0
  265. package/lib/typescript/src/shared/settings/GameSettings.d.ts +36 -0
  266. package/lib/typescript/src/shared/settings/GameSettings.d.ts.map +1 -0
  267. package/lib/typescript/src/shared/settings/SettingsService.d.ts +32 -0
  268. package/lib/typescript/src/shared/settings/SettingsService.d.ts.map +1 -0
  269. package/package.json +125 -0
@@ -0,0 +1,82 @@
1
+ export interface Position {
2
+ x: number;
3
+ y: number;
4
+ }
5
+ export interface MazeCell {
6
+ x: number;
7
+ y: number;
8
+ walls: {
9
+ top: boolean;
10
+ right: boolean;
11
+ bottom: boolean;
12
+ left: boolean;
13
+ };
14
+ visited: boolean;
15
+ }
16
+ export interface Wall {
17
+ x: number;
18
+ y: number;
19
+ width: number;
20
+ height: number;
21
+ type: 'horizontal' | 'vertical';
22
+ }
23
+ export interface GameState {
24
+ isPlaying: boolean;
25
+ isPaused: boolean;
26
+ score: number;
27
+ timeElapsed: number;
28
+ ballPosition: Position;
29
+ targetPosition: Position;
30
+ isCompleted: boolean;
31
+ }
32
+ export interface GameConfig {
33
+ GRID_SIZE: number;
34
+ CELL_SIZE: number;
35
+ BALL_SIZE: number;
36
+ PIPE_WIDTH: number;
37
+ GAME_AREA_WIDTH: number;
38
+ GAME_AREA_HEIGHT: number;
39
+ COLLISION_TOLERANCE: number;
40
+ SCORE_PER_COMPLETION: number;
41
+ TIME_BONUS_MULTIPLIER: number;
42
+ }
43
+ export declare class MazeRunnerService {
44
+ private gameConfig;
45
+ private gameState;
46
+ private maze;
47
+ private walls;
48
+ private gameTimer;
49
+ private onGameStateChange?;
50
+ constructor(gridSize?: number, gameAreaWidth?: number, gameAreaHeight?: number);
51
+ setGameStateChangeCallback(callback: (state: GameState) => void): void;
52
+ private notifyGameStateChange;
53
+ private initializeMaze;
54
+ generateNewMaze(): void;
55
+ private generateMazeWithBacktracking;
56
+ private ensureConnectivity;
57
+ private hasPathFromStartToEnd;
58
+ private createMinimalPath;
59
+ private getUnvisitedNeighbors;
60
+ private removeWallBetween;
61
+ private generateWalls;
62
+ private setStartAndEndPositions;
63
+ updateSettings(gridSize: number, _gameDuration: number): void;
64
+ resetGame(): void;
65
+ startGame(): void;
66
+ pauseGame(): void;
67
+ resumeGame(): void;
68
+ stopGame(): void;
69
+ private startTimer;
70
+ private stopTimer;
71
+ updateBallPosition(newPosition: Position): boolean;
72
+ private isValidPosition;
73
+ private ballCollidesWithWall;
74
+ private isNearTarget;
75
+ private completeLevel;
76
+ getGameState(): GameState;
77
+ getGameConfig(): GameConfig;
78
+ getWalls(): Wall[];
79
+ getMaze(): MazeCell[][];
80
+ cleanup(): void;
81
+ }
82
+ //# sourceMappingURL=MazeRunnerService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MazeRunnerService.d.ts","sourceRoot":"","sources":["../../../../../src/games/maze-runner/MazeRunnerService.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX;AAED,MAAM,WAAW,QAAQ;IACvB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE;QACL,GAAG,EAAE,OAAO,CAAC;QACb,KAAK,EAAE,OAAO,CAAC;QACf,MAAM,EAAE,OAAO,CAAC;QAChB,IAAI,EAAE,OAAO,CAAC;KACf,CAAC;IACF,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,IAAI;IACnB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,YAAY,GAAG,UAAU,CAAC;CACjC;AAED,MAAM,WAAW,SAAS;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,QAAQ,CAAC;IACvB,cAAc,EAAE,QAAQ,CAAC;IACzB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,UAAU;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,qBAAqB,EAAE,MAAM,CAAC;CAC/B;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,UAAU,CAAa;IAC/B,OAAO,CAAC,SAAS,CAAY;IAC7B,OAAO,CAAC,IAAI,CAAe;IAC3B,OAAO,CAAC,KAAK,CAAS;IACtB,OAAO,CAAC,SAAS,CAA+B;IAChD,OAAO,CAAC,iBAAiB,CAAC,CAA6B;gBAGrD,QAAQ,GAAE,MAAW,EACrB,aAAa,GAAE,MAAY,EAC3B,cAAc,GAAE,MAAY;IAiCvB,0BAA0B,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI;IAItE,OAAO,CAAC,qBAAqB;IAM7B,OAAO,CAAC,cAAc;IAkBf,eAAe,IAAI,IAAI;IAe9B,OAAO,CAAC,4BAA4B;IA8BpC,OAAO,CAAC,kBAAkB;IAS1B,OAAO,CAAC,qBAAqB;IA0C7B,OAAO,CAAC,iBAAiB;IAuEzB,OAAO,CAAC,qBAAqB;IAoC7B,OAAO,CAAC,iBAAiB;IAuBzB,OAAO,CAAC,aAAa;IAiFrB,OAAO,CAAC,uBAAuB;IAgBxB,cAAc,CAAC,QAAQ,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,IAAI;IAoB7D,SAAS,IAAI,IAAI;IAajB,SAAS,IAAI,IAAI;IAgBjB,SAAS,IAAI,IAAI;IAMjB,UAAU,IAAI,IAAI;IAMlB,QAAQ,IAAI,IAAI;IAOvB,OAAO,CAAC,UAAU;IAUlB,OAAO,CAAC,SAAS;IAOV,kBAAkB,CAAC,WAAW,EAAE,QAAQ,GAAG,OAAO;IAqBzD,OAAO,CAAC,eAAe;IAuBvB,OAAO,CAAC,oBAAoB;IAc5B,OAAO,CAAC,YAAY;IAQpB,OAAO,CAAC,aAAa;IASd,YAAY,IAAI,SAAS;IAIzB,aAAa,IAAI,UAAU;IAI3B,QAAQ,IAAI,IAAI,EAAE;IAIlB,OAAO,IAAI,QAAQ,EAAE,EAAE;IAIvB,OAAO,IAAI,IAAI;CAGvB"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import type { Position } from '../MazeRunnerService';
3
+ interface EnhancedBallComponentProps {
4
+ position: Position;
5
+ size: number;
6
+ isDragging: boolean;
7
+ isCompleted: boolean;
8
+ }
9
+ export declare const EnhancedBallComponent: React.FC<EnhancedBallComponentProps>;
10
+ export {};
11
+ //# sourceMappingURL=EnhancedBallComponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnhancedBallComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/EnhancedBallComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,UAAU,0BAA0B;IAClC,QAAQ,EAAE,QAAQ,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAoKtE,CAAC"}
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { type GameState, type Position, type Wall, type GameConfig } from '../MazeRunnerService';
3
+ interface EnhancedGameAreaProps {
4
+ gameState: GameState;
5
+ gameConfig: GameConfig;
6
+ walls: Wall[];
7
+ onBallPositionChange: (position: Position) => boolean;
8
+ hapticEnabled: boolean;
9
+ }
10
+ export declare const EnhancedGameArea: React.FC<EnhancedGameAreaProps>;
11
+ export {};
12
+ //# sourceMappingURL=EnhancedGameArea.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EnhancedGameArea.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/EnhancedGameArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,EAAE,KAAK,SAAS,EAAE,KAAK,QAAQ,EAAE,KAAK,IAAI,EAAE,KAAK,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAIjG,UAAU,qBAAqB;IAC7B,SAAS,EAAE,SAAS,CAAC;IACrB,UAAU,EAAE,UAAU,CAAC;IACvB,KAAK,EAAE,IAAI,EAAE,CAAC;IACd,oBAAoB,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,OAAO,CAAC;IACtD,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAwT5D,CAAC"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ interface GameBackgroundProps {
3
+ children?: React.ReactNode;
4
+ }
5
+ export declare const GameBackground: React.FC<GameBackgroundProps>;
6
+ export {};
7
+ //# sourceMappingURL=GameBackground.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameBackground.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/GameBackground.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAc1B,UAAU,mBAAmB;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAkOxD,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { GameState } from '../MazeRunnerService';
3
+ interface GameControlsProps {
4
+ gameState: GameState;
5
+ onStartGame: () => void;
6
+ onStopGame: () => void;
7
+ }
8
+ export declare const GameControls: React.FC<GameControlsProps>;
9
+ export {};
10
+ //# sourceMappingURL=GameControls.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameControls.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/GameControls.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAU1B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEtD,UAAU,iBAAiB;IACzB,SAAS,EAAE,SAAS,CAAC;IACrB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CA+DpD,CAAC"}
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import type { GameState } from '../MazeRunnerService';
3
+ interface GameOverModalProps {
4
+ visible: boolean;
5
+ gameState: GameState;
6
+ onPlayAgain: () => void;
7
+ onClose: () => void;
8
+ }
9
+ export declare const GameOverModal: React.FC<GameOverModalProps>;
10
+ export {};
11
+ //# sourceMappingURL=GameOverModal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameOverModal.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/GameOverModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEtD,UAAU,kBAAkB;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,SAAS,CAAC;IACrB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAiCtD,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { GameState } from '../MazeRunnerService';
3
+ interface ScoreBoardProps {
4
+ gameState: GameState;
5
+ }
6
+ export declare const ScoreBoard: React.FC<ScoreBoardProps>;
7
+ export {};
8
+ //# sourceMappingURL=ScoreBoard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScoreBoard.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/ScoreBoard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEtD,UAAU,eAAe;IACvB,SAAS,EAAE,SAAS,CAAC;CACtB;AAED,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CAqBhD,CAAC"}
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ type PipeSegment = {
3
+ x: number;
4
+ y: number;
5
+ width: number;
6
+ height: number;
7
+ start: {
8
+ x: number;
9
+ y: number;
10
+ };
11
+ end: {
12
+ x: number;
13
+ y: number;
14
+ };
15
+ direction: 'horizontal' | 'vertical';
16
+ type: 'straight' | 'corner';
17
+ cornerType?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
18
+ };
19
+ interface SkiaPipeComponentProps {
20
+ segment: PipeSegment;
21
+ pipeWidth: number;
22
+ }
23
+ export declare const SkiaPipeComponent: React.FC<SkiaPipeComponentProps>;
24
+ export {};
25
+ //# sourceMappingURL=SkiaPipeComponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SkiaPipeComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/SkiaPipeComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,KAAK,WAAW,GAAG;IACjB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAChC,GAAG,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,SAAS,EAAE,YAAY,GAAG,UAAU,CAAC;IACrC,IAAI,EAAE,UAAU,GAAG,QAAQ,CAAC;IAC5B,UAAU,CAAC,EAAE,UAAU,GAAG,WAAW,GAAG,aAAa,GAAG,cAAc,CAAC;CACxE,CAAC;AAEF,UAAU,sBAAsB;IAC9B,OAAO,EAAE,WAAW,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CA8N9D,CAAC"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ interface GameBackgroundProps {
3
+ children?: React.ReactNode;
4
+ }
5
+ export declare const GameBackground: React.FC<GameBackgroundProps>;
6
+ export {};
7
+ //# sourceMappingURL=StaticGameBackground.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StaticGameBackground.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/StaticGameBackground.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,UAAU,mBAAmB;IAC3B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA6KxD,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { Wall } from '../MazeRunnerService';
3
+ interface WallComponentProps {
4
+ walls: Wall[];
5
+ width: number;
6
+ height: number;
7
+ }
8
+ export declare const WallComponent: React.FC<WallComponentProps>;
9
+ export {};
10
+ //# sourceMappingURL=WallComponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WallComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/WallComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC;AAEjD,UAAU,kBAAkB;IAC1B,KAAK,EAAE,IAAI,EAAE,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA+FtD,CAAC"}
@@ -0,0 +1,8 @@
1
+ export { EnhancedBallComponent } from './EnhancedBallComponent';
2
+ export { WallComponent } from './WallComponent';
3
+ export { EnhancedGameArea } from './EnhancedGameArea';
4
+ export { GameBackground } from './GameBackground';
5
+ export { ScoreBoard } from './ScoreBoard';
6
+ export { GameControls } from './GameControls';
7
+ export { GameOverModal } from './GameOverModal';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/games/maze-runner/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC"}
@@ -0,0 +1,17 @@
1
+ interface SpaceTravellerGameSettings {
2
+ gameDuration: number;
3
+ difficulty: 'easy' | 'medium' | 'hard';
4
+ soundEnabled: boolean;
5
+ hapticEnabled: boolean;
6
+ asteroidSpawnInterval: number;
7
+ asteroidSpeed: number;
8
+ }
9
+ export interface SpaceTravellerProps {
10
+ showSettingsModal: boolean;
11
+ onToggleSettingsModal?: () => void;
12
+ settings?: SpaceTravellerGameSettings;
13
+ onSettingsChange?: (settings: SpaceTravellerGameSettings) => void;
14
+ }
15
+ export declare const SpaceTraveller: ({ showSettingsModal, onToggleSettingsModal, settings, onSettingsChange }: SpaceTravellerProps) => import("react/jsx-runtime").JSX.Element;
16
+ export {};
17
+ //# sourceMappingURL=SpaceTraveller.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SpaceTraveller.d.ts","sourceRoot":"","sources":["../../../../../src/games/space-traveller/SpaceTraveller.tsx"],"names":[],"mappings":"AASA,UAAU,0BAA0B;IAClC,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;IACvC,YAAY,EAAE,OAAO,CAAC;IACtB,aAAa,EAAE,OAAO,CAAC;IACvB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;CACvB;AAOD,MAAM,WAAW,mBAAmB;IAClC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,qBAAqB,CAAC,EAAE,MAAM,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,0BAA0B,CAAC;IACtC,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,0BAA0B,KAAK,IAAI,CAAC;CACnE;AAED,eAAO,MAAM,cAAc,GAAI,0EAK5B,mBAAmB,4CAyVrB,CAAC"}
@@ -0,0 +1,65 @@
1
+ import { SPACE_TRAVELLER_GAME_CONFIG as GAME_CONFIG, SPACE_TRAVELLER_COLORS as COLORS } from '../../services/GamesConstants';
2
+ export { GAME_CONFIG, COLORS };
3
+ export interface Asteroid {
4
+ id: string;
5
+ x: number;
6
+ y: number;
7
+ width: number;
8
+ height: number;
9
+ type: 'left' | 'right';
10
+ pairId: string;
11
+ passed: boolean;
12
+ spawnTime: number;
13
+ }
14
+ export interface Spacecraft {
15
+ x: number;
16
+ y: number;
17
+ velocityX: number;
18
+ velocityY: number;
19
+ size: number;
20
+ isControlled: boolean;
21
+ }
22
+ export interface Particle {
23
+ id: string;
24
+ x: number;
25
+ y: number;
26
+ velocityX: number;
27
+ velocityY: number;
28
+ color: string;
29
+ life: number;
30
+ maxLife: number;
31
+ size: number;
32
+ }
33
+ declare class SpaceTravellerGameService {
34
+ private width;
35
+ private height;
36
+ private gameTimer;
37
+ private asteroidSpawnTimer;
38
+ private physicsTimer;
39
+ private particles;
40
+ private lastCollisionTime;
41
+ constructor(screenWidth: number, screenHeight: number);
42
+ startGame(): void;
43
+ cleanup(): void;
44
+ startGameTimer(decrementTime: () => void): void;
45
+ startAsteroidSpawning(spawnAsteroid: (asteroid: Asteroid[]) => void): void;
46
+ startPhysicsLoop(updateSpacecraft: (spacecraft: Spacecraft) => void, updateAsteroid: (asteroidId: string, updates: Partial<Asteroid>) => void, removeAsteroid: (asteroidId: string) => void, getSpacecraft: () => Spacecraft, getAsteroids: () => Asteroid[]): void;
47
+ generateAsteroidPair(): Asteroid[];
48
+ updatePhysics(updateSpacecraft: (spacecraft: Spacecraft) => void, updateAsteroid: (asteroidId: string, updates: Partial<Asteroid>) => void, removeAsteroid: (asteroidId: string) => void, getSpacecraft: () => Spacecraft, getAsteroids: () => Asteroid[]): void;
49
+ controlSpacecraft(spacecraft: Spacecraft, targetX: number, _targetY: number): Spacecraft;
50
+ releaseSpacecraft(spacecraft: Spacecraft): Spacecraft;
51
+ checkCollision(spacecraft: Spacecraft, asteroids: Asteroid[]): {
52
+ collision: boolean;
53
+ asteroidId?: string;
54
+ };
55
+ private spacecraftAsteroidCollision;
56
+ checkAsteroidPass(spacecraft: Spacecraft, asteroids: Asteroid[]): string[];
57
+ createCollisionParticles(x: number, y: number): void;
58
+ private updateParticles;
59
+ getParticles(): Particle[];
60
+ isInCollisionImmunity(): boolean;
61
+ getRemainingImmunityTime(): number;
62
+ getInitialSpacecraft(): Spacecraft;
63
+ }
64
+ export declare const createSpaceTravellerService: (width: number, height: number) => SpaceTravellerGameService;
65
+ //# sourceMappingURL=SpaceTravellerService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SpaceTravellerService.d.ts","sourceRoot":"","sources":["../../../../../src/games/space-traveller/SpaceTravellerService.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,35 @@
1
+ import type { Asteroid, Spacecraft } from './SpaceTravellerService';
2
+ export interface GameState {
3
+ score: number;
4
+ timeLeft: number;
5
+ isPlaying: boolean;
6
+ gameOver: boolean;
7
+ lives: number;
8
+ }
9
+ export interface SpaceTravellerStore extends GameState {
10
+ asteroids: Asteroid[];
11
+ spacecraft: Spacecraft;
12
+ spacecraftPath: {
13
+ x: number;
14
+ y: number;
15
+ }[];
16
+ isControllingSpacecraft: boolean;
17
+ startGame: (gameDuration?: number) => void;
18
+ stopGame: () => void;
19
+ resetGame: () => void;
20
+ updateScore: (points: number) => void;
21
+ decrementTime: () => void;
22
+ addAsteroids: (asteroids: Asteroid[]) => void;
23
+ removeAsteroid: (asteroidId: string) => void;
24
+ updateAsteroid: (asteroidId: string, updates: Partial<Asteroid>) => void;
25
+ updateSpacecraft: (spacecraft: Spacecraft) => void;
26
+ setSpacecraftPath: (path: {
27
+ x: number;
28
+ y: number;
29
+ }[]) => void;
30
+ setIsControllingSpacecraft: (isControlling: boolean) => void;
31
+ markAsteroidPassed: (pairId: string) => void;
32
+ loseLife: () => void;
33
+ }
34
+ export declare const useSpaceTravellerStore: import("zustand").UseBoundStore<import("zustand").StoreApi<SpaceTravellerStore>>;
35
+ //# sourceMappingURL=SpaceTravellerStore.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SpaceTravellerStore.d.ts","sourceRoot":"","sources":["../../../../../src/games/space-traveller/SpaceTravellerStore.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAGpE,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;CACf;AAED,MAAM,WAAW,mBAAoB,SAAQ,SAAS;IACpD,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;IACvB,cAAc,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC3C,uBAAuB,EAAE,OAAO,CAAC;IAGjC,SAAS,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACtC,aAAa,EAAE,MAAM,IAAI,CAAC;IAC1B,YAAY,EAAE,CAAC,SAAS,EAAE,QAAQ,EAAE,KAAK,IAAI,CAAC;IAC9C,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,cAAc,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,QAAQ,CAAC,KAAK,IAAI,CAAC;IACzE,gBAAgB,EAAE,CAAC,UAAU,EAAE,UAAU,KAAK,IAAI,CAAC;IACnD,iBAAiB,EAAE,CAAC,IAAI,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,KAAK,IAAI,CAAC;IAC9D,0BAA0B,EAAE,CAAC,aAAa,EAAE,OAAO,KAAK,IAAI,CAAC;IAC7D,kBAAkB,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAC7C,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,sBAAsB,kFAoIhC,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import type { Asteroid } from '../SpaceTravellerService';
3
+ interface AsteroidComponentProps {
4
+ asteroid: Asteroid;
5
+ }
6
+ export declare const AsteroidComponent: React.FC<AsteroidComponentProps>;
7
+ export declare const PipeComponent: React.FC<AsteroidComponentProps>;
8
+ export {};
9
+ //# sourceMappingURL=AsteroidComponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AsteroidComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/AsteroidComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEzD,UAAU,sBAAsB;IAC9B,QAAQ,EAAE,QAAQ,CAAC;CACpB;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAgH9D,CAAC;AAGF,eAAO,MAAM,aAAa,kCAAoB,CAAC"}
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { type Asteroid, type Spacecraft, type Particle } from '../SpaceTravellerService';
3
+ interface GameAreaProps {
4
+ asteroids: Asteroid[];
5
+ spacecraft: Spacecraft;
6
+ particles: Particle[];
7
+ spacecraftPath: {
8
+ x: number;
9
+ y: number;
10
+ }[];
11
+ isControllingSpacecraft: boolean;
12
+ onSpacecraftControl: (x: number, y: number) => void;
13
+ onSpacecraftRelease: () => void;
14
+ }
15
+ export declare const GameArea: React.FC<GameAreaProps>;
16
+ export {};
17
+ //# sourceMappingURL=GameArea.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameArea.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/GameArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,KAAK,QAAQ,EAAE,KAAK,UAAU,EAAE,KAAK,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAMzF,UAAU,aAAa;IACrB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,UAAU,EAAE,UAAU,CAAC;IACvB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,cAAc,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC3C,uBAAuB,EAAE,OAAO,CAAC;IACjC,mBAAmB,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACpD,mBAAmB,EAAE,MAAM,IAAI,CAAC;CACjC;AAED,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CAyC5C,CAAC"}
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ interface GameBackgroundProps {
3
+ children: React.ReactNode;
4
+ }
5
+ export declare const GameBackground: React.FC<GameBackgroundProps>;
6
+ export {};
7
+ //# sourceMappingURL=GameBackground.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameBackground.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/GameBackground.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAwBzC,UAAU,mBAAmB;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAgPxD,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ interface GameControlsProps {
3
+ isPlaying: boolean;
4
+ gameOver: boolean;
5
+ onStartGame: () => void;
6
+ onStopGame: () => void;
7
+ }
8
+ export declare const GameControls: React.FC<GameControlsProps>;
9
+ export {};
10
+ //# sourceMappingURL=GameControls.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameControls.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/GameControls.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAazC,UAAU,iBAAiB;IACzB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,IAAI,CAAC;IACxB,UAAU,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAkFpD,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface GameOverModalProps {
3
+ isVisible: boolean;
4
+ score: number;
5
+ onPlayAgain: () => void;
6
+ }
7
+ export declare const GameOverModal: React.FC<GameOverModalProps>;
8
+ export {};
9
+ //# sourceMappingURL=GameOverModal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"GameOverModal.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/GameOverModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,UAAU,kBAAkB;IAC1B,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,IAAI,CAAC;CACzB;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CA0CtD,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { Particle } from '../SpaceTravellerService';
3
+ interface ParticleComponentProps {
4
+ particle: Particle;
5
+ }
6
+ export declare const ParticleComponent: React.FC<ParticleComponentProps>;
7
+ export {};
8
+ //# sourceMappingURL=ParticleComponent.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ParticleComponent.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/ParticleComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AAEzD,UAAU,sBAAsB;IAC9B,QAAQ,EAAE,QAAQ,CAAC;CACpB;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,sBAAsB,CAyB9D,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ interface ScoreBoardProps {
3
+ score: number;
4
+ timeLeft: number;
5
+ }
6
+ export declare const ScoreBoard: React.FC<ScoreBoardProps>;
7
+ export {};
8
+ //# sourceMappingURL=ScoreBoard.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ScoreBoard.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/ScoreBoard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,eAAe;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAAE,CAAC,eAAe,CA4BhD,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ interface SettingsModalProps {
3
+ isVisible: boolean;
4
+ onClose: () => void;
5
+ onResetHighScore?: () => void;
6
+ }
7
+ export declare const SettingsModal: React.FC<SettingsModalProps>;
8
+ export {};
9
+ //# sourceMappingURL=SettingsModal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SettingsModal.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/SettingsModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,kBAAkB;IAC1B,SAAS,EAAE,OAAO,CAAC;IACnB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAC;CAC/B;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAwDtD,CAAC"}
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import type { Spacecraft } from '../SpaceTravellerService';
3
+ interface Spacecraft3DProps {
4
+ spacecraft: Spacecraft;
5
+ isControlled: boolean;
6
+ }
7
+ export declare const Spacecraft3D: React.FC<Spacecraft3DProps>;
8
+ export {};
9
+ //# sourceMappingURL=Spacecraft3D.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Spacecraft3D.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/Spacecraft3D.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAsBzC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAE3D,UAAU,iBAAiB;IACzB,UAAU,EAAE,UAAU,CAAC;IACvB,YAAY,EAAE,OAAO,CAAC;CACvB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAmbpD,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ interface SpacecraftPathProps {
3
+ path: {
4
+ x: number;
5
+ y: number;
6
+ }[];
7
+ }
8
+ export declare const SpacecraftPath: React.FC<SpacecraftPathProps>;
9
+ export {};
10
+ //# sourceMappingURL=SpacecraftPath.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SpacecraftPath.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/SpacecraftPath.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;CAClC;AAED,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA0BxD,CAAC"}
@@ -0,0 +1,11 @@
1
+ export { ScoreBoard } from './ScoreBoard';
2
+ export { AsteroidComponent } from './AsteroidComponent';
3
+ export { Spacecraft3D } from './Spacecraft3D';
4
+ export { ParticleComponent } from './ParticleComponent';
5
+ export { SpacecraftPath } from './SpacecraftPath';
6
+ export { GameArea } from './GameArea';
7
+ export { GameControls } from './GameControls';
8
+ export { GameOverModal } from './GameOverModal';
9
+ export { SettingsModal } from './SettingsModal';
10
+ export { GameBackground } from './GameBackground';
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/games/space-traveller/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1,7 @@
1
+ export * from './games/balloon-blaster/BalloonBlaster';
2
+ export * from './games/fruit-slicer/FruitSlicer';
3
+ export * from './games/maze-runner/MazeRunner';
4
+ export * from './games/space-traveller/SpaceTraveller';
5
+ export * from './games/cat-popper/CatPopper';
6
+ export * from './services/GamesService';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AACA,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,wCAAwC,CAAC;AACvD,cAAc,8BAA8B,CAAC;AAG7C,cAAc,yBAAyB,CAAC"}