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,281 @@
1
+ "use strict";
2
+
3
+ import React, { useEffect } from 'react';
4
+ import { View, StyleSheet } from 'react-native';
5
+ import { useSharedValue, useAnimatedStyle, withRepeat, withTiming, withSequence } from 'react-native-reanimated';
6
+ import Animated from 'react-native-reanimated';
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
8
+ export const CatCharacter = ({
9
+ size
10
+ }) => {
11
+ const catSize = size * 0.8;
12
+ const styles = createStyles(catSize);
13
+
14
+ // Subtle breathing animation
15
+ const breathingScale = useSharedValue(1);
16
+ const blinkOpacity = useSharedValue(1);
17
+ useEffect(() => {
18
+ // Gentle breathing effect
19
+ breathingScale.value = withRepeat(withSequence(withTiming(1.02, {
20
+ duration: 1500
21
+ }), withTiming(1, {
22
+ duration: 1500
23
+ })), -1, false);
24
+
25
+ // Occasional blinking
26
+ const startBlinking = () => {
27
+ blinkOpacity.value = withSequence(withTiming(0.1, {
28
+ duration: 100
29
+ }), withTiming(1, {
30
+ duration: 100
31
+ }));
32
+ };
33
+
34
+ // Random blinking every 2-4 seconds
35
+ const blinkInterval = setInterval(() => {
36
+ if (Math.random() > 0.3) {
37
+ startBlinking();
38
+ }
39
+ }, 2000 + Math.random() * 2000);
40
+ return () => clearInterval(blinkInterval);
41
+ }, []);
42
+ const animatedStyle = useAnimatedStyle(() => {
43
+ return {
44
+ transform: [{
45
+ scale: breathingScale.value
46
+ }]
47
+ };
48
+ });
49
+ const eyeStyle = useAnimatedStyle(() => {
50
+ return {
51
+ opacity: blinkOpacity.value
52
+ };
53
+ });
54
+ return /*#__PURE__*/_jsx(Animated.View, {
55
+ style: [styles.container, {
56
+ width: size,
57
+ height: size
58
+ }, animatedStyle],
59
+ children: /*#__PURE__*/_jsxs(View, {
60
+ style: styles.body,
61
+ children: [/*#__PURE__*/_jsxs(View, {
62
+ style: styles.head,
63
+ children: [/*#__PURE__*/_jsx(View, {
64
+ style: styles.leftEar
65
+ }), /*#__PURE__*/_jsx(View, {
66
+ style: styles.rightEar
67
+ }), /*#__PURE__*/_jsx(View, {
68
+ style: styles.leftInnerEar
69
+ }), /*#__PURE__*/_jsx(View, {
70
+ style: styles.rightInnerEar
71
+ }), /*#__PURE__*/_jsx(Animated.View, {
72
+ style: [styles.leftEye, eyeStyle],
73
+ children: /*#__PURE__*/_jsx(View, {
74
+ style: styles.eyeHighlight
75
+ })
76
+ }), /*#__PURE__*/_jsx(Animated.View, {
77
+ style: [styles.rightEye, eyeStyle],
78
+ children: /*#__PURE__*/_jsx(View, {
79
+ style: styles.eyeHighlight
80
+ })
81
+ }), /*#__PURE__*/_jsx(View, {
82
+ style: styles.nose
83
+ }), /*#__PURE__*/_jsxs(View, {
84
+ style: styles.mouth,
85
+ children: [/*#__PURE__*/_jsx(View, {
86
+ style: styles.leftMouth
87
+ }), /*#__PURE__*/_jsx(View, {
88
+ style: styles.rightMouth
89
+ })]
90
+ })]
91
+ }), /*#__PURE__*/_jsx(View, {
92
+ style: styles.leftWhisker1
93
+ }), /*#__PURE__*/_jsx(View, {
94
+ style: styles.leftWhisker2
95
+ }), /*#__PURE__*/_jsx(View, {
96
+ style: styles.rightWhisker1
97
+ }), /*#__PURE__*/_jsx(View, {
98
+ style: styles.rightWhisker2
99
+ })]
100
+ })
101
+ });
102
+ };
103
+ const createStyles = catSize => StyleSheet.create({
104
+ container: {
105
+ justifyContent: 'center',
106
+ alignItems: 'center'
107
+ },
108
+ body: {
109
+ width: catSize,
110
+ height: catSize * 0.9,
111
+ backgroundColor: '#FF8C42',
112
+ borderRadius: catSize * 0.4,
113
+ justifyContent: 'center',
114
+ alignItems: 'center',
115
+ shadowColor: '#000',
116
+ shadowOffset: {
117
+ width: 0,
118
+ height: 2
119
+ },
120
+ shadowOpacity: 0.3,
121
+ shadowRadius: 4,
122
+ elevation: 5
123
+ },
124
+ head: {
125
+ width: catSize * 0.8,
126
+ height: catSize * 0.7,
127
+ backgroundColor: '#FFA366',
128
+ borderRadius: catSize * 0.35,
129
+ position: 'relative',
130
+ justifyContent: 'center',
131
+ alignItems: 'center',
132
+ marginTop: -catSize * 0.1
133
+ },
134
+ leftEar: {
135
+ position: 'absolute',
136
+ top: -catSize * 0.15,
137
+ left: catSize * 0.15,
138
+ width: catSize * 0.25,
139
+ height: catSize * 0.25,
140
+ backgroundColor: '#FF8C42',
141
+ borderRadius: catSize * 0.125,
142
+ transform: [{
143
+ rotate: '-30deg'
144
+ }]
145
+ },
146
+ rightEar: {
147
+ position: 'absolute',
148
+ top: -catSize * 0.15,
149
+ right: catSize * 0.15,
150
+ width: catSize * 0.25,
151
+ height: catSize * 0.25,
152
+ backgroundColor: '#FF8C42',
153
+ borderRadius: catSize * 0.125,
154
+ transform: [{
155
+ rotate: '30deg'
156
+ }]
157
+ },
158
+ leftInnerEar: {
159
+ position: 'absolute',
160
+ top: -catSize * 0.12,
161
+ left: catSize * 0.18,
162
+ width: catSize * 0.15,
163
+ height: catSize * 0.15,
164
+ backgroundColor: '#FF6B1A',
165
+ borderRadius: catSize * 0.075,
166
+ transform: [{
167
+ rotate: '-30deg'
168
+ }]
169
+ },
170
+ rightInnerEar: {
171
+ position: 'absolute',
172
+ top: -catSize * 0.12,
173
+ right: catSize * 0.18,
174
+ width: catSize * 0.15,
175
+ height: catSize * 0.15,
176
+ backgroundColor: '#FF6B1A',
177
+ borderRadius: catSize * 0.075,
178
+ transform: [{
179
+ rotate: '30deg'
180
+ }]
181
+ },
182
+ leftEye: {
183
+ position: 'absolute',
184
+ top: catSize * 0.15,
185
+ left: catSize * 0.2,
186
+ width: catSize * 0.12,
187
+ height: catSize * 0.15,
188
+ backgroundColor: '#000000',
189
+ borderRadius: catSize * 0.075,
190
+ justifyContent: 'center',
191
+ alignItems: 'center'
192
+ },
193
+ rightEye: {
194
+ position: 'absolute',
195
+ top: catSize * 0.15,
196
+ right: catSize * 0.2,
197
+ width: catSize * 0.12,
198
+ height: catSize * 0.15,
199
+ backgroundColor: '#000000',
200
+ borderRadius: catSize * 0.075,
201
+ justifyContent: 'center',
202
+ alignItems: 'center'
203
+ },
204
+ eyeHighlight: {
205
+ width: catSize * 0.04,
206
+ height: catSize * 0.06,
207
+ backgroundColor: '#FFFFFF',
208
+ borderRadius: catSize * 0.02
209
+ },
210
+ nose: {
211
+ position: 'absolute',
212
+ top: catSize * 0.28,
213
+ width: catSize * 0.08,
214
+ height: catSize * 0.06,
215
+ backgroundColor: '#FF1493',
216
+ borderRadius: catSize * 0.04
217
+ },
218
+ mouth: {
219
+ position: 'absolute',
220
+ top: catSize * 0.35,
221
+ width: catSize * 0.2,
222
+ height: catSize * 0.1,
223
+ justifyContent: 'center',
224
+ alignItems: 'center'
225
+ },
226
+ leftMouth: {
227
+ position: 'absolute',
228
+ left: 0,
229
+ width: catSize * 0.08,
230
+ height: 2,
231
+ backgroundColor: '#000000',
232
+ borderRadius: 1,
233
+ transform: [{
234
+ rotate: '20deg'
235
+ }]
236
+ },
237
+ rightMouth: {
238
+ position: 'absolute',
239
+ right: 0,
240
+ width: catSize * 0.08,
241
+ height: 2,
242
+ backgroundColor: '#000000',
243
+ borderRadius: 1,
244
+ transform: [{
245
+ rotate: '-20deg'
246
+ }]
247
+ },
248
+ leftWhisker1: {
249
+ position: 'absolute',
250
+ top: catSize * 0.35,
251
+ left: -catSize * 0.15,
252
+ width: catSize * 0.2,
253
+ height: 1,
254
+ backgroundColor: '#000000'
255
+ },
256
+ leftWhisker2: {
257
+ position: 'absolute',
258
+ top: catSize * 0.4,
259
+ left: -catSize * 0.15,
260
+ width: catSize * 0.18,
261
+ height: 1,
262
+ backgroundColor: '#000000'
263
+ },
264
+ rightWhisker1: {
265
+ position: 'absolute',
266
+ top: catSize * 0.35,
267
+ right: -catSize * 0.15,
268
+ width: catSize * 0.2,
269
+ height: 1,
270
+ backgroundColor: '#000000'
271
+ },
272
+ rightWhisker2: {
273
+ position: 'absolute',
274
+ top: catSize * 0.4,
275
+ right: -catSize * 0.15,
276
+ width: catSize * 0.18,
277
+ height: 1,
278
+ backgroundColor: '#000000'
279
+ }
280
+ });
281
+ //# sourceMappingURL=CatCharacter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","useEffect","View","StyleSheet","useSharedValue","useAnimatedStyle","withRepeat","withTiming","withSequence","Animated","jsx","_jsx","jsxs","_jsxs","CatCharacter","size","catSize","styles","createStyles","breathingScale","blinkOpacity","value","duration","startBlinking","blinkInterval","setInterval","Math","random","clearInterval","animatedStyle","transform","scale","eyeStyle","opacity","style","container","width","height","children","body","head","leftEar","rightEar","leftInnerEar","rightInnerEar","leftEye","eyeHighlight","rightEye","nose","mouth","leftMouth","rightMouth","leftWhisker1","leftWhisker2","rightWhisker1","rightWhisker2","create","justifyContent","alignItems","backgroundColor","borderRadius","shadowColor","shadowOffset","shadowOpacity","shadowRadius","elevation","position","marginTop","top","left","rotate","right"],"sourceRoot":"../../../../../src","sources":["games/cat-popper/components/CatCharacter.tsx"],"mappings":"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","ignoreList":[]}