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,544 @@
1
+ "use strict";
2
+
3
+ import React, { useEffect } from 'react';
4
+ import { Dimensions } from 'react-native';
5
+ import { Canvas, LinearGradient, Rect, Circle, Path, Skia, vec, Group, Shadow } from '@shopify/react-native-skia';
6
+ import { useSharedValue, useAnimatedStyle, withRepeat, withTiming, withSequence, interpolate, Extrapolation } from 'react-native-reanimated';
7
+ import Animated from 'react-native-reanimated';
8
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
9
+ const {
10
+ width,
11
+ height
12
+ } = Dimensions.get('window');
13
+ export const GameBackground = ({
14
+ children
15
+ }) => {
16
+ // Animated values for dynamic background effects
17
+ const cloudFloat = useSharedValue(0);
18
+ const sunGlow = useSharedValue(0);
19
+ const sunRotation = useSharedValue(0);
20
+ const balloonFloat = useSharedValue(0);
21
+ useEffect(() => {
22
+ // Cloud floating animation
23
+ cloudFloat.value = withRepeat(withTiming(1, {
24
+ duration: 8000
25
+ }), -1, false);
26
+
27
+ // Sun glow pulsing
28
+ sunGlow.value = withRepeat(withSequence(withTiming(1, {
29
+ duration: 2000
30
+ }), withTiming(0.7, {
31
+ duration: 2000
32
+ })), -1, false);
33
+
34
+ // Sun rotation animation (slow continuous rotation)
35
+ sunRotation.value = withRepeat(withTiming(360, {
36
+ duration: 30000
37
+ }), -1, false);
38
+
39
+ // Background balloon floating animation
40
+ balloonFloat.value = withRepeat(withSequence(withTiming(1, {
41
+ duration: 4000
42
+ }), withTiming(0, {
43
+ duration: 4000
44
+ })), -1, false);
45
+ }, []);
46
+ const animatedBackgroundStyle = useAnimatedStyle(() => {
47
+ return {
48
+ transform: []
49
+ };
50
+ });
51
+ return /*#__PURE__*/_jsxs(Animated.View, {
52
+ style: [{
53
+ flex: 1
54
+ }, animatedBackgroundStyle],
55
+ children: [/*#__PURE__*/_jsxs(Canvas, {
56
+ style: {
57
+ position: 'absolute',
58
+ top: 0,
59
+ left: 0,
60
+ right: 0,
61
+ bottom: 0,
62
+ width,
63
+ height
64
+ },
65
+ children: [/*#__PURE__*/_jsx(Rect, {
66
+ x: 0,
67
+ y: 0,
68
+ width: width,
69
+ height: height,
70
+ children: /*#__PURE__*/_jsx(LinearGradient, {
71
+ start: vec(0, 0),
72
+ end: vec(0, height),
73
+ colors: ['#87CEEB', '#B0E0E6', '#E0F6FF', '#F0F8FF', '#FFF8DC']
74
+ })
75
+ }), /*#__PURE__*/_jsxs(Group, {
76
+ transform: [{
77
+ translateX: width * 0.8
78
+ }, {
79
+ translateY: height * 0.15
80
+ }, {
81
+ rotate: sunRotation.value * Math.PI / 180
82
+ }, {
83
+ translateX: -width * 0.8
84
+ }, {
85
+ translateY: -height * 0.15
86
+ }],
87
+ children: [/*#__PURE__*/_jsxs(Circle, {
88
+ cx: width * 0.8,
89
+ cy: height * 0.15,
90
+ r: 40,
91
+ children: [/*#__PURE__*/_jsx(LinearGradient, {
92
+ start: vec(-40, -40),
93
+ end: vec(40, 40),
94
+ colors: ['#FFFF99', '#FFD700', '#FFA500', '#FF8C00']
95
+ }), /*#__PURE__*/_jsx(Shadow, {
96
+ dx: 0,
97
+ dy: 0,
98
+ blur: interpolate(sunGlow.value, [0.7, 1], [25, 40], Extrapolation.CLAMP),
99
+ color: "#FFD700"
100
+ })]
101
+ }), /*#__PURE__*/_jsx(Circle, {
102
+ cx: width * 0.8 - 8,
103
+ cy: height * 0.15 - 8,
104
+ r: 15,
105
+ children: /*#__PURE__*/_jsx(LinearGradient, {
106
+ start: vec(-15, -15),
107
+ end: vec(15, 15),
108
+ colors: ['#FFFFFF', '#FFFF99']
109
+ })
110
+ }), Array.from({
111
+ length: 16
112
+ }, (_, index) => {
113
+ const angle = 360 / 16 * index;
114
+ const radian = angle * Math.PI / 180;
115
+ const isLongRay = index % 2 === 0;
116
+ const rayLength = isLongRay ? 25 : 15;
117
+ const rayWidth = isLongRay ? 4 : 2;
118
+ const startDistance = 45;
119
+ const startX = width * 0.8 + Math.cos(radian) * startDistance;
120
+ const startY = height * 0.15 + Math.sin(radian) * startDistance;
121
+ const endX = width * 0.8 + Math.cos(radian) * (startDistance + rayLength);
122
+ const endY = height * 0.15 + Math.sin(radian) * (startDistance + rayLength);
123
+ const rayPath = Skia.Path.Make();
124
+ rayPath.moveTo(startX, startY);
125
+ rayPath.lineTo(endX, endY);
126
+ return /*#__PURE__*/_jsx(Path, {
127
+ path: rayPath,
128
+ style: "stroke",
129
+ strokeWidth: rayWidth,
130
+ color: "#FFD700",
131
+ opacity: interpolate(sunGlow.value, [0.7, 1], [0.6, 0.9], Extrapolation.CLAMP)
132
+ }, index);
133
+ }), /*#__PURE__*/_jsx(Circle, {
134
+ cx: width * 0.8,
135
+ cy: height * 0.15,
136
+ r: 60,
137
+ opacity: 0.1,
138
+ children: /*#__PURE__*/_jsx(LinearGradient, {
139
+ start: vec(-60, -60),
140
+ end: vec(60, 60),
141
+ colors: ['#FFD700', 'transparent']
142
+ })
143
+ })]
144
+ }), /*#__PURE__*/_jsxs(Group, {
145
+ children: [/*#__PURE__*/_jsxs(Group, {
146
+ transform: [{
147
+ translateX: interpolate(cloudFloat.value, [0, 1], [-4, 4], Extrapolation.CLAMP)
148
+ }],
149
+ children: [/*#__PURE__*/_jsx(Circle, {
150
+ cx: width * 0.12,
151
+ cy: height * 0.24,
152
+ r: 16,
153
+ color: "#F0F8FF",
154
+ opacity: 0.35,
155
+ children: /*#__PURE__*/_jsx(Shadow, {
156
+ dx: 1,
157
+ dy: 2,
158
+ blur: 12,
159
+ color: "rgba(0,0,0,0.05)"
160
+ })
161
+ }), /*#__PURE__*/_jsx(Circle, {
162
+ cx: width * 0.18,
163
+ cy: height * 0.21,
164
+ r: 22,
165
+ color: "#FFFFFF",
166
+ opacity: 0.45,
167
+ children: /*#__PURE__*/_jsx(Shadow, {
168
+ dx: 1,
169
+ dy: 2,
170
+ blur: 12,
171
+ color: "rgba(0,0,0,0.05)"
172
+ })
173
+ }), /*#__PURE__*/_jsx(Circle, {
174
+ cx: width * 0.25,
175
+ cy: height * 0.19,
176
+ r: 26,
177
+ color: "#F8F8FF",
178
+ opacity: 0.55,
179
+ children: /*#__PURE__*/_jsx(Shadow, {
180
+ dx: 2,
181
+ dy: 3,
182
+ blur: 12,
183
+ color: "rgba(0,0,0,0.06)"
184
+ })
185
+ }), /*#__PURE__*/_jsx(Circle, {
186
+ cx: width * 0.32,
187
+ cy: height * 0.21,
188
+ r: 20,
189
+ color: "#FFFFFF",
190
+ opacity: 0.50,
191
+ children: /*#__PURE__*/_jsx(Shadow, {
192
+ dx: 1,
193
+ dy: 2,
194
+ blur: 12,
195
+ color: "rgba(0,0,0,0.05)"
196
+ })
197
+ }), /*#__PURE__*/_jsx(Circle, {
198
+ cx: width * 0.37,
199
+ cy: height * 0.24,
200
+ r: 14,
201
+ color: "#F0F8FF",
202
+ opacity: 0.40,
203
+ children: /*#__PURE__*/_jsx(Shadow, {
204
+ dx: 1,
205
+ dy: 2,
206
+ blur: 12,
207
+ color: "rgba(0,0,0,0.04)"
208
+ })
209
+ })]
210
+ }), /*#__PURE__*/_jsxs(Group, {
211
+ transform: [{
212
+ translateX: interpolate(cloudFloat.value, [0, 1], [3, -3], Extrapolation.CLAMP)
213
+ }],
214
+ children: [/*#__PURE__*/_jsx(Circle, {
215
+ cx: width * 0.62,
216
+ cy: height * 0.27,
217
+ r: 15,
218
+ color: "#F0F8FF",
219
+ opacity: 0.40,
220
+ children: /*#__PURE__*/_jsx(Shadow, {
221
+ dx: 1,
222
+ dy: 2,
223
+ blur: 10,
224
+ color: "rgba(0,0,0,0.04)"
225
+ })
226
+ }), /*#__PURE__*/_jsx(Circle, {
227
+ cx: width * 0.69,
228
+ cy: height * 0.24,
229
+ r: 19,
230
+ color: "#FFFFFF",
231
+ opacity: 0.50,
232
+ children: /*#__PURE__*/_jsx(Shadow, {
233
+ dx: 1,
234
+ dy: 2,
235
+ blur: 10,
236
+ color: "rgba(0,0,0,0.05)"
237
+ })
238
+ }), /*#__PURE__*/_jsx(Circle, {
239
+ cx: width * 0.76,
240
+ cy: height * 0.26,
241
+ r: 13,
242
+ color: "#F8F8FF",
243
+ opacity: 0.45,
244
+ children: /*#__PURE__*/_jsx(Shadow, {
245
+ dx: 1,
246
+ dy: 2,
247
+ blur: 10,
248
+ color: "rgba(0,0,0,0.04)"
249
+ })
250
+ })]
251
+ }), /*#__PURE__*/_jsxs(Group, {
252
+ transform: [{
253
+ translateX: interpolate(cloudFloat.value, [0, 1], [1.5, -1.5], Extrapolation.CLAMP)
254
+ }],
255
+ children: [/*#__PURE__*/_jsx(Circle, {
256
+ cx: width * 0.84,
257
+ cy: height * 0.19,
258
+ r: 10,
259
+ color: "#F0F8FF",
260
+ opacity: 0.35,
261
+ children: /*#__PURE__*/_jsx(Shadow, {
262
+ dx: 0,
263
+ dy: 1,
264
+ blur: 6,
265
+ color: "rgba(0,0,0,0.03)"
266
+ })
267
+ }), /*#__PURE__*/_jsx(Circle, {
268
+ cx: width * 0.89,
269
+ cy: height * 0.17,
270
+ r: 12,
271
+ color: "#FFFFFF",
272
+ opacity: 0.40,
273
+ children: /*#__PURE__*/_jsx(Shadow, {
274
+ dx: 0,
275
+ dy: 1,
276
+ blur: 6,
277
+ color: "rgba(0,0,0,0.03)"
278
+ })
279
+ }), /*#__PURE__*/_jsx(Circle, {
280
+ cx: width * 0.93,
281
+ cy: height * 0.19,
282
+ r: 8,
283
+ color: "#F8F8FF",
284
+ opacity: 0.30,
285
+ children: /*#__PURE__*/_jsx(Shadow, {
286
+ dx: 0,
287
+ dy: 1,
288
+ blur: 6,
289
+ color: "rgba(0,0,0,0.02)"
290
+ })
291
+ })]
292
+ })]
293
+ }), /*#__PURE__*/_jsxs(Group, {
294
+ children: [/*#__PURE__*/_jsxs(Group, {
295
+ transform: [{
296
+ translateY: interpolate(balloonFloat.value, [0, 1], [-3, 3], Extrapolation.CLAMP)
297
+ }],
298
+ children: [/*#__PURE__*/_jsx(Circle, {
299
+ cx: width * 0.15,
300
+ cy: height * 0.35,
301
+ r: 12,
302
+ color: "#FF6B6B",
303
+ opacity: 0.3,
304
+ children: /*#__PURE__*/_jsx(Shadow, {
305
+ dx: 2,
306
+ dy: 2,
307
+ blur: 8,
308
+ color: "rgba(0,0,0,0.1)"
309
+ })
310
+ }), /*#__PURE__*/_jsx(Rect, {
311
+ x: width * 0.15 - 0.5,
312
+ y: height * 0.35 + 12,
313
+ width: 1,
314
+ height: 15,
315
+ color: "#8B4513",
316
+ opacity: 0.4
317
+ }), /*#__PURE__*/_jsx(Circle, {
318
+ cx: width * 0.20,
319
+ cy: height * 0.32,
320
+ r: 10,
321
+ color: "#4ECDC4",
322
+ opacity: 0.3,
323
+ children: /*#__PURE__*/_jsx(Shadow, {
324
+ dx: 2,
325
+ dy: 2,
326
+ blur: 6,
327
+ color: "rgba(0,0,0,0.1)"
328
+ })
329
+ }), /*#__PURE__*/_jsx(Rect, {
330
+ x: width * 0.20 - 0.5,
331
+ y: height * 0.32 + 10,
332
+ width: 1,
333
+ height: 12,
334
+ color: "#8B4513",
335
+ opacity: 0.4
336
+ }), /*#__PURE__*/_jsx(Circle, {
337
+ cx: width * 0.12,
338
+ cy: height * 0.38,
339
+ r: 11,
340
+ color: "#FFEAA7",
341
+ opacity: 0.3,
342
+ children: /*#__PURE__*/_jsx(Shadow, {
343
+ dx: 2,
344
+ dy: 2,
345
+ blur: 7,
346
+ color: "rgba(0,0,0,0.1)"
347
+ })
348
+ }), /*#__PURE__*/_jsx(Rect, {
349
+ x: width * 0.12 - 0.5,
350
+ y: height * 0.38 + 11,
351
+ width: 1,
352
+ height: 13,
353
+ color: "#8B4513",
354
+ opacity: 0.4
355
+ })]
356
+ }), /*#__PURE__*/_jsxs(Group, {
357
+ transform: [{
358
+ translateY: interpolate(balloonFloat.value, [0, 1], [2, -2], Extrapolation.CLAMP)
359
+ }],
360
+ children: [/*#__PURE__*/_jsx(Circle, {
361
+ cx: width * 0.45,
362
+ cy: height * 0.28,
363
+ r: 9,
364
+ color: "#DDA0DD",
365
+ opacity: 0.25,
366
+ children: /*#__PURE__*/_jsx(Shadow, {
367
+ dx: 1,
368
+ dy: 2,
369
+ blur: 5,
370
+ color: "rgba(0,0,0,0.08)"
371
+ })
372
+ }), /*#__PURE__*/_jsx(Rect, {
373
+ x: width * 0.45 - 0.5,
374
+ y: height * 0.28 + 9,
375
+ width: 1,
376
+ height: 10,
377
+ color: "#8B4513",
378
+ opacity: 0.3
379
+ }), /*#__PURE__*/_jsx(Circle, {
380
+ cx: width * 0.50,
381
+ cy: height * 0.31,
382
+ r: 8,
383
+ color: "#96CEB4",
384
+ opacity: 0.25,
385
+ children: /*#__PURE__*/_jsx(Shadow, {
386
+ dx: 1,
387
+ dy: 2,
388
+ blur: 4,
389
+ color: "rgba(0,0,0,0.08)"
390
+ })
391
+ }), /*#__PURE__*/_jsx(Rect, {
392
+ x: width * 0.50 - 0.5,
393
+ y: height * 0.31 + 8,
394
+ width: 1,
395
+ height: 9,
396
+ color: "#8B4513",
397
+ opacity: 0.3
398
+ })]
399
+ }), /*#__PURE__*/_jsxs(Group, {
400
+ transform: [{
401
+ translateY: interpolate(balloonFloat.value, [0, 1], [-2, 2], Extrapolation.CLAMP)
402
+ }],
403
+ children: [/*#__PURE__*/_jsx(Circle, {
404
+ cx: width * 0.75,
405
+ cy: height * 0.33,
406
+ r: 7,
407
+ color: "#FFB6C1",
408
+ opacity: 0.2,
409
+ children: /*#__PURE__*/_jsx(Shadow, {
410
+ dx: 1,
411
+ dy: 1,
412
+ blur: 3,
413
+ color: "rgba(0,0,0,0.06)"
414
+ })
415
+ }), /*#__PURE__*/_jsx(Rect, {
416
+ x: width * 0.75 - 0.5,
417
+ y: height * 0.33 + 7,
418
+ width: 1,
419
+ height: 8,
420
+ color: "#8B4513",
421
+ opacity: 0.25
422
+ }), /*#__PURE__*/_jsx(Circle, {
423
+ cx: width * 0.80,
424
+ cy: height * 0.30,
425
+ r: 6,
426
+ color: "#FFA500",
427
+ opacity: 0.2,
428
+ children: /*#__PURE__*/_jsx(Shadow, {
429
+ dx: 1,
430
+ dy: 1,
431
+ blur: 3,
432
+ color: "rgba(0,0,0,0.06)"
433
+ })
434
+ }), /*#__PURE__*/_jsx(Rect, {
435
+ x: width * 0.80 - 0.5,
436
+ y: height * 0.30 + 6,
437
+ width: 1,
438
+ height: 7,
439
+ color: "#8B4513",
440
+ opacity: 0.25
441
+ })]
442
+ }), /*#__PURE__*/_jsxs(Group, {
443
+ transform: [{
444
+ translateY: interpolate(balloonFloat.value, [0, 1], [1, -1], Extrapolation.CLAMP)
445
+ }],
446
+ children: [/*#__PURE__*/_jsx(Circle, {
447
+ cx: width * 0.85,
448
+ cy: height * 0.20,
449
+ r: 4,
450
+ color: "#FF1493",
451
+ opacity: 0.15
452
+ }), /*#__PURE__*/_jsx(Rect, {
453
+ x: width * 0.85 - 0.25,
454
+ y: height * 0.20 + 4,
455
+ width: 0.5,
456
+ height: 5,
457
+ color: "#8B4513",
458
+ opacity: 0.2
459
+ }), /*#__PURE__*/_jsx(Circle, {
460
+ cx: width * 0.25,
461
+ cy: height * 0.25,
462
+ r: 3,
463
+ color: "#00CED1",
464
+ opacity: 0.15
465
+ }), /*#__PURE__*/_jsx(Rect, {
466
+ x: width * 0.25 - 0.25,
467
+ y: height * 0.25 + 3,
468
+ width: 0.5,
469
+ height: 4,
470
+ color: "#8B4513",
471
+ opacity: 0.2
472
+ }), /*#__PURE__*/_jsx(Circle, {
473
+ cx: width * 0.65,
474
+ cy: height * 0.22,
475
+ r: 3.5,
476
+ color: "#FFD700",
477
+ opacity: 0.15
478
+ }), /*#__PURE__*/_jsx(Rect, {
479
+ x: width * 0.65 - 0.25,
480
+ y: height * 0.22 + 3.5,
481
+ width: 0.5,
482
+ height: 4.5,
483
+ color: "#8B4513",
484
+ opacity: 0.2
485
+ })]
486
+ })]
487
+ }), /*#__PURE__*/_jsxs(Group, {
488
+ children: [Array.from({
489
+ length: 15
490
+ }, (_, i) => {
491
+ const x = width / 15 * i + i % 3 * 20;
492
+ const y = height * 0.15 + i % 5 * (height * 0.1);
493
+ const colors = ['#FF6B6B', '#4ECDC4', '#FFEAA7', '#DDA0DD', '#96CEB4', '#FFB6C1'];
494
+ const color = colors[i % colors.length];
495
+ const size = 2 + i % 3;
496
+ return /*#__PURE__*/_jsx(Circle, {
497
+ cx: x,
498
+ cy: y,
499
+ r: size,
500
+ color: color,
501
+ opacity: 0.3
502
+ }, `confetti-${i}`);
503
+ }), Array.from({
504
+ length: 8
505
+ }, (_, i) => {
506
+ const startX = width / 8 * i;
507
+ const startY = height * 0.05;
508
+ const endX = startX + 30 + i % 2 * 20;
509
+ const endY = height * 0.15;
510
+ const colors = ['#FF6B6B', '#4ECDC4', '#FFEAA7', '#DDA0DD'];
511
+ const color = colors[i % colors.length];
512
+ const streamerPath = Skia.Path.Make();
513
+ streamerPath.moveTo(startX, startY);
514
+ streamerPath.quadTo(startX + 15, startY + 20, endX, endY);
515
+ return /*#__PURE__*/_jsx(Path, {
516
+ path: streamerPath,
517
+ style: "stroke",
518
+ strokeWidth: 3,
519
+ color: color,
520
+ opacity: 0.4
521
+ }, `streamer-${i}`);
522
+ })]
523
+ }), /*#__PURE__*/_jsx(Rect, {
524
+ x: 0,
525
+ y: height * 0.85,
526
+ width: width,
527
+ height: height * 0.15,
528
+ children: /*#__PURE__*/_jsx(LinearGradient, {
529
+ start: vec(0, height * 0.85),
530
+ end: vec(0, height),
531
+ colors: ['#F0F8FF', '#E6F3FF', '#DDE9FF']
532
+ })
533
+ }), /*#__PURE__*/_jsx(Rect, {
534
+ x: 0,
535
+ y: height * 0.85,
536
+ width: width,
537
+ height: 2,
538
+ color: "#B0C4DE",
539
+ opacity: 0.6
540
+ })]
541
+ }), children]
542
+ });
543
+ };
544
+ //# sourceMappingURL=GameBackground.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useEffect","Dimensions","Canvas","LinearGradient","Rect","Circle","Path","Skia","vec","Group","Shadow","useSharedValue","useAnimatedStyle","withRepeat","withTiming","withSequence","interpolate","Extrapolation","Animated","jsx","_jsx","jsxs","_jsxs","width","height","get","GameBackground","children","cloudFloat","sunGlow","sunRotation","balloonFloat","value","duration","animatedBackgroundStyle","transform","View","style","flex","position","top","left","right","bottom","x","y","start","end","colors","translateX","translateY","rotate","Math","PI","cx","cy","r","dx","dy","blur","CLAMP","color","Array","from","length","_","index","angle","radian","isLongRay","rayLength","rayWidth","startDistance","startX","cos","startY","sin","endX","endY","rayPath","Make","moveTo","lineTo","path","strokeWidth","opacity","i","size","streamerPath","quadTo"],"sourceRoot":"../../../../../src","sources":["games/balloon-blaster/components/GameBackground.tsx"],"mappings":"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","ignoreList":[]}