@playcraft/skills 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +333 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/skills.loader.d.ts +31 -0
- package/dist/src/skills.loader.d.ts.map +1 -0
- package/dist/src/skills.loader.js +200 -0
- package/dist/src/skills.loader.js.map +1 -0
- package/dist/src/skills.types.d.ts +44 -0
- package/dist/src/skills.types.d.ts.map +1 -0
- package/dist/src/skills.types.js +9 -0
- package/dist/src/skills.types.js.map +1 -0
- package/package.json +35 -0
- package/skills/2048_core.aigameplay/SKILL.md +123 -0
- package/skills/2048_core.aigameplay/manifest.json +159 -0
- package/skills/2048_core.aigameplay/ref/pgs-schema.json +194 -0
- package/skills/2048_core.aigameplay/ref/reducer.template.ts +189 -0
- package/skills/SKILL.md +46 -0
- package/skills/ad_compliance_rules.aiconfig/SKILL.md +85 -0
- package/skills/ad_compliance_rules.aiconfig/manifest.json +60 -0
- package/skills/agent_remix_orchestrator.aicomponent/SKILL.md +257 -0
- package/skills/agent_remix_orchestrator.aicomponent/manifest.json +12 -0
- package/skills/app_metadata.aiconfig/SKILL.md +53 -0
- package/skills/app_metadata.aiconfig/manifest.json +32 -0
- package/skills/appear_sfx.aiaudio/SKILL.md +59 -0
- package/skills/appear_sfx.aiaudio/manifest.json +45 -0
- package/skills/appear_sfx.aiaudio/ref/appear.mp3 +0 -0
- package/skills/arrow_move_error_sfx.aiaudio/SKILL.md +59 -0
- package/skills/arrow_move_error_sfx.aiaudio/manifest.json +45 -0
- package/skills/arrow_move_error_sfx.aiaudio/ref/arrow_move_error.mp3 +0 -0
- package/skills/arrow_path_data_format.aicomponent/SKILL.md +152 -0
- package/skills/arrow_path_data_format.aicomponent/manifest.json +57 -0
- package/skills/arrow_path_data_format.aicomponent/ref/LevelParser.ts +188 -0
- package/skills/arrow_path_data_format.aicomponent/ref/LevelTypes.ts +131 -0
- package/skills/arrow_pick_match_rules.aigameplay/SKILL.md +117 -0
- package/skills/arrow_pick_match_rules.aigameplay/manifest.json +105 -0
- package/skills/arrow_pick_match_rules.aigameplay/ref/pgs-schema.json +180 -0
- package/skills/asset_pipeline_scripts.aicomponent/SKILL.md +117 -0
- package/skills/asset_pipeline_scripts.aicomponent/manifest.json +17 -0
- package/skills/asset_pipeline_scripts.aicomponent/ref/gen-sprite.sh +105 -0
- package/skills/ball_sort.aigameplay/SKILL.md +109 -0
- package/skills/ball_sort.aigameplay/manifest.json +155 -0
- package/skills/ball_sort.aigameplay/ref/pgs-schema.json +192 -0
- package/skills/ball_sort.aigameplay/ref/reducer.template.ts +156 -0
- package/skills/basketball_shot.aigameplay/SKILL.md +94 -0
- package/skills/basketball_shot.aigameplay/manifest.json +150 -0
- package/skills/basketball_shot.aigameplay/ref/pgs-schema.json +229 -0
- package/skills/basketball_shot.aigameplay/ref/reducer.template.ts +189 -0
- package/skills/bg_music.aiaudio/SKILL.md +61 -0
- package/skills/bg_music.aiaudio/manifest.json +48 -0
- package/skills/bg_music.aiaudio/ref/bg.mp3 +0 -0
- package/skills/big_watermelon.aigameplay/SKILL.md +94 -0
- package/skills/big_watermelon.aigameplay/manifest.json +155 -0
- package/skills/big_watermelon.aigameplay/ref/pgs-schema.json +191 -0
- package/skills/big_watermelon.aigameplay/ref/reducer.template.ts +202 -0
- package/skills/block_puzzle.aigameplay/SKILL.md +121 -0
- package/skills/block_puzzle.aigameplay/manifest.json +154 -0
- package/skills/block_puzzle.aigameplay/ref/pgs-schema.json +170 -0
- package/skills/block_puzzle.aigameplay/ref/reducer.template.ts +182 -0
- package/skills/board_entity_sprite.aiimage/SKILL.md +255 -0
- package/skills/board_entity_sprite.aiimage/manifest.json +153 -0
- package/skills/board_entity_sprite.aiimage/ref/ProceduralCar.ts +357 -0
- package/skills/board_entity_sprite.aiimage/ref/car.png +0 -0
- package/skills/board_entity_sprite.aiimage/ref/car.webp +0 -0
- package/skills/bottom_ui_bar.aicomponent/SKILL.md +50 -0
- package/skills/bottom_ui_bar.aicomponent/manifest.json +31 -0
- package/skills/bottom_ui_bar.aicomponent/ref/GameBottomUI.ts +27 -0
- package/skills/bubble_shooter.aigameplay/SKILL.md +129 -0
- package/skills/bubble_shooter.aigameplay/manifest.json +181 -0
- package/skills/bubble_shooter.aigameplay/ref/pgs-schema.json +226 -0
- package/skills/bubble_shooter.aigameplay/ref/reducer.template.ts +228 -0
- package/skills/button_click_sfx.aiaudio/SKILL.md +59 -0
- package/skills/button_click_sfx.aiaudio/manifest.json +45 -0
- package/skills/button_click_sfx.aiaudio/ref/button_click.mp3 +0 -0
- package/skills/calm_piano.aiaudio/SKILL.md +68 -0
- package/skills/calm_piano.aiaudio/manifest.json +50 -0
- package/skills/camera_controller_3d.aicomponent/SKILL.md +100 -0
- package/skills/camera_controller_3d.aicomponent/manifest.json +52 -0
- package/skills/camera_controller_3d.aicomponent/ref/CameraController.ts +199 -0
- package/skills/camera_controller_3d.aicomponent/ref/OrbitControlsAdapter.ts +152 -0
- package/skills/candy_tile.aiimage/SKILL.md +62 -0
- package/skills/candy_tile.aiimage/manifest.json +49 -0
- package/skills/car_parking.aigameplay/SKILL.md +105 -0
- package/skills/car_parking.aigameplay/manifest.json +164 -0
- package/skills/car_parking.aigameplay/ref/pgs-schema.json +163 -0
- package/skills/car_parking.aigameplay/ref/reducer.template.ts +166 -0
- package/skills/castle.aiimage/SKILL.md +64 -0
- package/skills/castle.aiimage/manifest.json +48 -0
- package/skills/cheerful_ukulele.aiaudio/SKILL.md +72 -0
- package/skills/cheerful_ukulele.aiaudio/manifest.json +50 -0
- package/skills/click_sfx.aiaudio/SKILL.md +59 -0
- package/skills/click_sfx.aiaudio/manifest.json +45 -0
- package/skills/click_sfx.aiaudio/ref/click.mp3 +0 -0
- package/skills/combo_display.aicomponent/SKILL.md +45 -0
- package/skills/combo_display.aicomponent/manifest.json +31 -0
- package/skills/combo_display.aicomponent/ref/ComboManager.ts +362 -0
- package/skills/combo_display.aicomponent/ref/ComboSmallUI.ts +232 -0
- package/skills/combo_praise_text.aicomponent/SKILL.md +56 -0
- package/skills/combo_praise_text.aicomponent/manifest.json +34 -0
- package/skills/combo_praise_text.aicomponent/ref/ComboManager.ts +362 -0
- package/skills/countdown_timer.aicomponent/SKILL.md +44 -0
- package/skills/countdown_timer.aicomponent/manifest.json +35 -0
- package/skills/countdown_timer.aicomponent/ref/CountdownDisplay.ts +213 -0
- package/skills/cta_platform_config.aiconfig/SKILL.md +72 -0
- package/skills/cta_platform_config.aiconfig/manifest.json +56 -0
- package/skills/debug_overlay.aicomponent/SKILL.md +75 -0
- package/skills/debug_overlay.aicomponent/manifest.json +17 -0
- package/skills/debug_overlay.aicomponent/ref/DebugOverlay.ts +144 -0
- package/skills/desert.aiimage/SKILL.md +63 -0
- package/skills/desert.aiimage/manifest.json +49 -0
- package/skills/difficulty_curve_designer.aiconfig/SKILL.md +68 -0
- package/skills/difficulty_curve_designer.aiconfig/manifest.json +36 -0
- package/skills/digit_renderer.aicomponent/SKILL.md +43 -0
- package/skills/digit_renderer.aicomponent/manifest.json +25 -0
- package/skills/digit_renderer.aicomponent/ref/DigitRenderer.ts +237 -0
- package/skills/download_button.aicomponent/SKILL.md +44 -0
- package/skills/download_button.aicomponent/manifest.json +25 -0
- package/skills/download_button.aicomponent/ref/DownloadButton.ts +137 -0
- package/skills/draw_line_puzzle.aigameplay/SKILL.md +84 -0
- package/skills/draw_line_puzzle.aigameplay/manifest.json +152 -0
- package/skills/draw_line_puzzle.aigameplay/ref/pgs-schema.json +189 -0
- package/skills/draw_line_puzzle.aigameplay/ref/reducer.template.ts +194 -0
- package/skills/easy_to_hard.aiconfig/SKILL.md +52 -0
- package/skills/easy_to_hard.aiconfig/manifest.json +33 -0
- package/skills/eight_ball_pool.aigameplay/SKILL.md +104 -0
- package/skills/eight_ball_pool.aigameplay/manifest.json +152 -0
- package/skills/eight_ball_pool.aigameplay/ref/pgs-schema.json +205 -0
- package/skills/eight_ball_pool.aigameplay/ref/reducer.template.ts +198 -0
- package/skills/energetic_electronic.aiaudio/SKILL.md +69 -0
- package/skills/energetic_electronic.aiaudio/manifest.json +51 -0
- package/skills/fail_sfx.aiaudio/SKILL.md +59 -0
- package/skills/fail_sfx.aiaudio/manifest.json +44 -0
- package/skills/fail_sfx.aiaudio/ref/fail.mp3 +0 -0
- package/skills/figer_icon.aiimage/SKILL.md +58 -0
- package/skills/figer_icon.aiimage/manifest.json +48 -0
- package/skills/figer_icon.aiimage/ref/figer.png +0 -0
- package/skills/figer_icon.aiimage/ref/figer.webp +0 -0
- package/skills/forest.aiimage/SKILL.md +74 -0
- package/skills/forest.aiimage/manifest.json +48 -0
- package/skills/fruit_tile.aiimage/SKILL.md +68 -0
- package/skills/fruit_tile.aiimage/manifest.json +48 -0
- package/skills/game_over_panel.aicomponent/SKILL.md +47 -0
- package/skills/game_over_panel.aicomponent/manifest.json +61 -0
- package/skills/game_over_panel.aicomponent/ref/GameOverPanel.ts +74 -0
- package/skills/game_scene.aicomponent/SKILL.md +57 -0
- package/skills/game_scene.aicomponent/manifest.json +36 -0
- package/skills/game_scene.aicomponent/ref/Game.ts +748 -0
- package/skills/gameplay_balance_check.aivalidator/SKILL.md +69 -0
- package/skills/gameplay_balance_check.aivalidator/manifest.json +21 -0
- package/skills/gameplay_unit_test.aivalidator/SKILL.md +89 -0
- package/skills/gameplay_unit_test.aivalidator/manifest.json +17 -0
- package/skills/gameplay_unit_test.aivalidator/ref/gameplay.test.ts +202 -0
- package/skills/gameplay_unit_test.aivalidator/ref/vitest.config.ts +13 -0
- package/skills/grid_board_layout.aicomponent/SKILL.md +85 -0
- package/skills/grid_board_layout.aicomponent/manifest.json +69 -0
- package/skills/grid_board_layout.aicomponent/ref/BoardLayout.ts +416 -0
- package/skills/grid_board_layout.aicomponent/ref/BoardLayout3D.ts +125 -0
- package/skills/grid_board_layout.aicomponent/ref/BoardLayoutMath.ts +85 -0
- package/skills/grid_board_layout.aicomponent/ref/BoardRenderer3D.ts +298 -0
- package/skills/heart_lives.aicomponent/SKILL.md +42 -0
- package/skills/heart_lives.aicomponent/manifest.json +25 -0
- package/skills/heart_lives.aicomponent/ref/HeartDisplay.ts +96 -0
- package/skills/idle-breathe.aicomponent/SKILL.md +27 -0
- package/skills/idle-breathe.aicomponent/manifest.json +20 -0
- package/skills/idle-breathe.aicomponent/ref/phaser.js +25 -0
- package/skills/idle-breathe.aicomponent/ref/playcanvas.js +29 -0
- package/skills/jewel_tile.aiimage/SKILL.md +63 -0
- package/skills/jewel_tile.aiimage/manifest.json +49 -0
- package/skills/knife_hit.aigameplay/SKILL.md +103 -0
- package/skills/knife_hit.aigameplay/manifest.json +151 -0
- package/skills/knife_hit.aigameplay/ref/pgs-schema.json +202 -0
- package/skills/knife_hit.aigameplay/ref/reducer.template.ts +196 -0
- package/skills/left_right_parkour.aigameplay/SKILL.md +120 -0
- package/skills/left_right_parkour.aigameplay/manifest.json +165 -0
- package/skills/left_right_parkour.aigameplay/ref/pgs-schema.json +200 -0
- package/skills/left_right_parkour.aigameplay/ref/reducer.template.ts +194 -0
- package/skills/level_data_pack.aiconfig/SKILL.md +64 -0
- package/skills/level_data_pack.aiconfig/manifest.json +37 -0
- package/skills/level_data_validator.aivalidator/SKILL.md +85 -0
- package/skills/level_data_validator.aivalidator/manifest.json +17 -0
- package/skills/level_data_validator.aivalidator/ref/LevelValidator.ts +113 -0
- package/skills/level_lifecycle.aicomponent/SKILL.md +81 -0
- package/skills/level_lifecycle.aicomponent/manifest.json +87 -0
- package/skills/level_lifecycle.aicomponent/ref/LevelLifecycle.ts +235 -0
- package/skills/level_solvability_validator.aivalidator/SKILL.md +74 -0
- package/skills/level_solvability_validator.aivalidator/manifest.json +23 -0
- package/skills/level_solvability_validator.aivalidator/ref/LevelValidator.ts +186 -0
- package/skills/level_state.aicomponent/SKILL.md +55 -0
- package/skills/level_state.aicomponent/manifest.json +34 -0
- package/skills/level_state.aicomponent/ref/LevelDataManager.ts +26 -0
- package/skills/level_state.aicomponent/ref/LevelManager.ts +26 -0
- package/skills/loading_screen.aicomponent/SKILL.md +57 -0
- package/skills/loading_screen.aicomponent/manifest.json +43 -0
- package/skills/loading_screen.aicomponent/ref/LoadingUI.ts +339 -0
- package/skills/lose_result_panel.aiimage/SKILL.md +58 -0
- package/skills/lose_result_panel.aiimage/manifest.json +47 -0
- package/skills/lose_result_panel.aiimage/ref/lose.png +0 -0
- package/skills/lose_result_panel.aiimage/ref/lose.webp +0 -0
- package/skills/lose_sfx.aiaudio/SKILL.md +59 -0
- package/skills/lose_sfx.aiaudio/manifest.json +45 -0
- package/skills/lose_sfx.aiaudio/ref/lose.mp3 +0 -0
- package/skills/match-pop.aicomponent/SKILL.md +29 -0
- package/skills/match-pop.aicomponent/manifest.json +19 -0
- package/skills/match-pop.aicomponent/ref/phaser.js +30 -0
- package/skills/match-pop.aicomponent/ref/playcanvas.js +22 -0
- package/skills/match3_core.aigameplay/SKILL.md +125 -0
- package/skills/match3_core.aigameplay/manifest.json +107 -0
- package/skills/match3_core.aigameplay/ref/pgs-schema.json +154 -0
- package/skills/match3_core.aigameplay/ref/reducer.template.ts +191 -0
- package/skills/match_engine.aicomponent/SKILL.md +84 -0
- package/skills/match_engine.aicomponent/manifest.json +23 -0
- package/skills/match_engine.aicomponent/ref/MatchEngine.ts +75 -0
- package/skills/memory_match.aigameplay/SKILL.md +111 -0
- package/skills/memory_match.aigameplay/manifest.json +164 -0
- package/skills/memory_match.aigameplay/ref/pgs-schema.json +190 -0
- package/skills/memory_match.aigameplay/ref/reducer.template.ts +162 -0
- package/skills/merge_core.aigameplay/SKILL.md +112 -0
- package/skills/merge_core.aigameplay/manifest.json +154 -0
- package/skills/merge_core.aigameplay/ref/pgs-schema.json +202 -0
- package/skills/merge_core.aigameplay/ref/reducer.template.ts +179 -0
- package/skills/mistake_sfx.aiaudio/SKILL.md +59 -0
- package/skills/mistake_sfx.aiaudio/manifest.json +45 -0
- package/skills/mistake_sfx.aiaudio/ref/mistake.mp3 +0 -0
- package/skills/nomove_hint_overlay.aiimage/SKILL.md +58 -0
- package/skills/nomove_hint_overlay.aiimage/manifest.json +48 -0
- package/skills/nomove_hint_overlay.aiimage/ref/nomove_hint.png +0 -0
- package/skills/nomove_hint_overlay.aiimage/ref/nomove_hint.webp +0 -0
- package/skills/normal_dot.aiimage/SKILL.md +58 -0
- package/skills/normal_dot.aiimage/manifest.json +46 -0
- package/skills/normal_dot.aiimage/ref/normal_dot.png +0 -0
- package/skills/normal_dot.aiimage/ref/normal_dot.webp +0 -0
- package/skills/ocean.aiimage/SKILL.md +71 -0
- package/skills/ocean.aiimage/manifest.json +49 -0
- package/skills/particle-confetti.aicomponent/SKILL.md +32 -0
- package/skills/particle-confetti.aicomponent/manifest.json +21 -0
- package/skills/particle-confetti.aicomponent/ref/html5-spritesheet.js +17 -0
- package/skills/particle-confetti.aicomponent/ref/phaser.js +38 -0
- package/skills/particle-explosion.aicomponent/SKILL.md +37 -0
- package/skills/particle-explosion.aicomponent/manifest.json +24 -0
- package/skills/particle-explosion.aicomponent/ref/html5-spritesheet.js +40 -0
- package/skills/particle-explosion.aicomponent/ref/phaser.js +46 -0
- package/skills/particle-explosion.aicomponent/ref/playcanvas.js +33 -0
- package/skills/particle-trail.aicomponent/SKILL.md +25 -0
- package/skills/particle-trail.aicomponent/manifest.json +22 -0
- package/skills/particle-trail.aicomponent/ref/phaser.js +31 -0
- package/skills/path_animation.aicomponent/SKILL.md +82 -0
- package/skills/path_animation.aicomponent/manifest.json +77 -0
- package/skills/path_animation.aicomponent/ref/AnimationManager.ts +694 -0
- package/skills/path_animation.aicomponent/ref/AnimationManager3D.ts +317 -0
- package/skills/path_elimination_rules.aigameplay/SKILL.md +88 -0
- package/skills/path_elimination_rules.aigameplay/manifest.json +119 -0
- package/skills/path_elimination_rules.aigameplay/ref/pgs-schema.json +227 -0
- package/skills/path_input_handler.aicomponent/SKILL.md +87 -0
- package/skills/path_input_handler.aicomponent/manifest.json +97 -0
- package/skills/path_input_handler.aicomponent/ref/InputHandler.ts +714 -0
- package/skills/path_input_handler.aicomponent/ref/InputHandler3D.ts +204 -0
- package/skills/path_renderer.aicomponent/SKILL.md +101 -0
- package/skills/path_renderer.aicomponent/manifest.json +69 -0
- package/skills/path_renderer.aicomponent/ref/PathRenderer.ts +509 -0
- package/skills/path_renderer.aicomponent/ref/PathRenderer3D.ts +176 -0
- package/skills/path_renderer.aicomponent/ref/PathRenderers.ts +640 -0
- package/skills/phaser.aicomponent/SKILL.md +315 -0
- package/skills/phaser.aicomponent/manifest.json +156 -0
- package/skills/phaser.aicomponent/ref/BootScene.ts +29 -0
- package/skills/phaser.aicomponent/ref/GameConfig.ts +29 -0
- package/skills/phaser.aicomponent/ref/GameScene.ts +88 -0
- package/skills/phaser.aicomponent/ref/PreloaderScene.ts +78 -0
- package/skills/phaser.aicomponent/ref/SceneKeys.ts +7 -0
- package/skills/phaser.aicomponent/ref/SoundUtils.ts +21 -0
- package/skills/phaser.aicomponent/ref/UiLayout.ts +74 -0
- package/skills/phaser.aicomponent/ref/globals.d.ts +52 -0
- package/skills/phaser.aicomponent/ref/index.css +40 -0
- package/skills/phaser.aicomponent/ref/index.html +14 -0
- package/skills/phaser.aicomponent/ref/index.ts +48 -0
- package/skills/phaser.aicomponent/ref/main.ts +16 -0
- package/skills/phaser.aicomponent/ref/package.json +22 -0
- package/skills/phaser.aicomponent/ref/tsconfig.json +25 -0
- package/skills/phaser.aicomponent/ref/webpack.config.js +57 -0
- package/skills/phaser_scene_lifecycle.aicomponent/SKILL.md +63 -0
- package/skills/phaser_scene_lifecycle.aicomponent/manifest.json +33 -0
- package/skills/pick_and_match_rules.aigameplay/SKILL.md +113 -0
- package/skills/pick_and_match_rules.aigameplay/manifest.json +121 -0
- package/skills/pick_and_match_rules.aigameplay/ref/pgs-schema.json +354 -0
- package/skills/pin_pull.aigameplay/SKILL.md +110 -0
- package/skills/pin_pull.aigameplay/manifest.json +164 -0
- package/skills/pin_pull.aigameplay/ref/pgs-schema.json +201 -0
- package/skills/pin_pull.aigameplay/ref/reducer.template.ts +216 -0
- package/skills/playable_app_logo.aiimage/SKILL.md +58 -0
- package/skills/playable_app_logo.aiimage/manifest.json +47 -0
- package/skills/playable_app_logo.aiimage/ref/logo.png +0 -0
- package/skills/playable_app_logo.aiimage/ref/logo.webp +0 -0
- package/skills/playable_end_screen_layout.aicomponent/SKILL.md +75 -0
- package/skills/playable_end_screen_layout.aicomponent/manifest.json +24 -0
- package/skills/playable_guidance_layer.aicomponent/SKILL.md +89 -0
- package/skills/playable_guidance_layer.aicomponent/manifest.json +24 -0
- package/skills/playable_hud_layout.aicomponent/SKILL.md +96 -0
- package/skills/playable_hud_layout.aicomponent/manifest.json +24 -0
- package/skills/playable_scripts_build.aicomponent/SKILL.md +69 -0
- package/skills/playable_scripts_build.aicomponent/manifest.json +53 -0
- package/skills/playable_scripts_build.aicomponent/ref/builds.config.js +257 -0
- package/skills/playcraft-3d-flip-sprite/SKILL.md +336 -0
- package/skills/playcraft-3d-flip-sprite/renderer/flatten_glb.mjs +62 -0
- package/skills/playcraft-3d-flip-sprite/renderer/render.mjs +325 -0
- package/skills/playcraft-3d-flip-sprite/renderer/render_single.mjs +138 -0
- package/skills/playcraft-asset-management/SKILL.md +73 -0
- package/skills/playcraft-audio-generation/SKILL.md +126 -0
- package/skills/playcraft-build/SKILL.md +44 -0
- package/skills/playcraft-code-editor/SKILL.md +71 -0
- package/skills/playcraft-create-remix/SKILL.md +62 -0
- package/skills/playcraft-deploy/SKILL.md +59 -0
- package/skills/playcraft-image-generation/SKILL.md +148 -0
- package/skills/playcraft-image-processing/SKILL.md +216 -0
- package/skills/playcraft-platform-intro/SKILL.md +41 -0
- package/skills/playcraft-prefab/SKILL.md +98 -0
- package/skills/playcraft-project-management/SKILL.md +57 -0
- package/skills/playcraft-remix-workflow/SKILL.md +119 -0
- package/skills/playcraft-remix-workflow/references/xplatform.schema.json5 +31 -0
- package/skills/playcraft-save/SKILL.md +46 -0
- package/skills/playcraft-skill-recommender/SKILL.md +152 -0
- package/skills/playcraft-sprite-generation/SKILL.md +534 -0
- package/skills/playcraft-sprite-remix/SKILL.md +155 -0
- package/skills/playcraft-sprite-sheet/SKILL.md +97 -0
- package/skills/playtest_report.aivalidator/SKILL.md +103 -0
- package/skills/playtest_report.aivalidator/manifest.json +21 -0
- package/skills/preloader_scene.aicomponent/SKILL.md +58 -0
- package/skills/preloader_scene.aicomponent/manifest.json +43 -0
- package/skills/preloader_scene.aicomponent/ref/Preloader.ts +339 -0
- package/skills/progress_bar.aicomponent/SKILL.md +38 -0
- package/skills/progress_bar.aicomponent/manifest.json +25 -0
- package/skills/progress_bar.aicomponent/ref/ProgressDisplay.ts +140 -0
- package/skills/references/xplatform.schema.json5 +31 -0
- package/skills/responsive_2d_layout.aicomponent/SKILL.md +161 -0
- package/skills/responsive_2d_layout.aicomponent/manifest.json +43 -0
- package/skills/responsive_2d_layout.aicomponent/ref/UiLayout.ts +56 -0
- package/skills/run_context_state.aicomponent/SKILL.md +54 -0
- package/skills/run_context_state.aicomponent/manifest.json +40 -0
- package/skills/run_context_state.aicomponent/ref/RunContextRuntime.ts +30 -0
- package/skills/score-fly.aicomponent/SKILL.md +31 -0
- package/skills/score-fly.aicomponent/manifest.json +21 -0
- package/skills/score-fly.aicomponent/ref/phaser.js +26 -0
- package/skills/score-fly.aicomponent/ref/playcanvas.js +28 -0
- package/skills/score_goal.aiconfig/SKILL.md +46 -0
- package/skills/score_goal.aiconfig/manifest.json +33 -0
- package/skills/screen-flash.aicomponent/SKILL.md +30 -0
- package/skills/screen-flash.aicomponent/manifest.json +20 -0
- package/skills/screen-flash.aicomponent/ref/phaser.js +48 -0
- package/skills/screen-shake.aicomponent/SKILL.md +30 -0
- package/skills/screen-shake.aicomponent/manifest.json +19 -0
- package/skills/screen-shake.aicomponent/ref/phaser.js +23 -0
- package/skills/screen-shake.aicomponent/ref/playcanvas.js +44 -0
- package/skills/screw_puzzle.aigameplay/SKILL.md +116 -0
- package/skills/screw_puzzle.aigameplay/manifest.json +164 -0
- package/skills/screw_puzzle.aigameplay/ref/pgs-schema.json +235 -0
- package/skills/screw_puzzle.aigameplay/ref/reducer.template.ts +213 -0
- package/skills/settings_state.aicomponent/SKILL.md +61 -0
- package/skills/settings_state.aicomponent/manifest.json +33 -0
- package/skills/settings_state.aicomponent/ref/SettingsManager.ts +130 -0
- package/skills/slide_out_to_tray_animation.aicomponent/SKILL.md +64 -0
- package/skills/slide_out_to_tray_animation.aicomponent/manifest.json +58 -0
- package/skills/slide_out_to_tray_animation.aicomponent/ref/AnimationManager.ts +164 -0
- package/skills/slide_out_to_tray_animation.aicomponent/ref/AnimationManager3D.ts +198 -0
- package/skills/slide_out_to_tray_animation.aicomponent/ref/BezierUtils.ts +59 -0
- package/skills/slot_machine.aigameplay/SKILL.md +119 -0
- package/skills/slot_machine.aigameplay/manifest.json +166 -0
- package/skills/slot_machine.aigameplay/ref/pgs-schema.json +212 -0
- package/skills/slot_machine.aigameplay/ref/reducer.template.ts +212 -0
- package/skills/sniper_shot.aigameplay/SKILL.md +84 -0
- package/skills/sniper_shot.aigameplay/manifest.json +153 -0
- package/skills/sniper_shot.aigameplay/ref/pgs-schema.json +211 -0
- package/skills/sniper_shot.aigameplay/ref/reducer.template.ts +211 -0
- package/skills/solitaire.aigameplay/SKILL.md +101 -0
- package/skills/solitaire.aigameplay/manifest.json +151 -0
- package/skills/solitaire.aigameplay/ref/pgs-schema.json +200 -0
- package/skills/solitaire.aigameplay/ref/reducer.template.ts +176 -0
- package/skills/sound-effects/SKILL.md +46 -0
- package/skills/sound_utils.aicomponent/SKILL.md +52 -0
- package/skills/sound_utils.aicomponent/manifest.json +30 -0
- package/skills/sound_utils.aicomponent/ref/SoundUtils.ts +29 -0
- package/skills/sprite-animation-2d.aicomponent/SKILL.md +45 -0
- package/skills/sprite-animation-2d.aicomponent/manifest.json +28 -0
- package/skills/sprite-animation-2d.aicomponent/ref/html5.js +83 -0
- package/skills/sprite-animation-2d.aicomponent/ref/phaser.js +38 -0
- package/skills/sprite-animation-2d.aicomponent/ref/playcanvas.js +67 -0
- package/skills/sprite_entity_renderer.aicomponent/SKILL.md +148 -0
- package/skills/sprite_entity_renderer.aicomponent/manifest.json +17 -0
- package/skills/sprite_entity_renderer.aicomponent/ref/SpriteEntityRenderer.ts +126 -0
- package/skills/success_sfx.aiaudio/SKILL.md +59 -0
- package/skills/success_sfx.aiaudio/manifest.json +45 -0
- package/skills/success_sfx.aiaudio/ref/success.mp3 +0 -0
- package/skills/tap_blast.aigameplay/SKILL.md +116 -0
- package/skills/tap_blast.aigameplay/manifest.json +153 -0
- package/skills/tap_blast.aigameplay/ref/pgs-schema.json +208 -0
- package/skills/tap_blast.aigameplay/ref/reducer.template.ts +202 -0
- package/skills/theme_state.aicomponent/SKILL.md +53 -0
- package/skills/theme_state.aicomponent/manifest.json +33 -0
- package/skills/theme_state.aicomponent/ref/ThemeManager.ts +174 -0
- package/skills/theme_switcher_build.aicomponent/SKILL.md +62 -0
- package/skills/theme_switcher_build.aicomponent/manifest.json +38 -0
- package/skills/theme_switcher_build.aicomponent/ref/theme-index.ts +8 -0
- package/skills/theme_variant.aiconfig/SKILL.md +78 -0
- package/skills/theme_variant.aiconfig/manifest.json +39 -0
- package/skills/theme_variant.aiconfig/ref/ExampleTheme/index.ts +16 -0
- package/skills/theme_variant.aiconfig/ref/ExampleTheme/levelEasy.json +141 -0
- package/skills/threejs.aicomponent/SKILL.md +422 -0
- package/skills/threejs.aicomponent/manifest.json +166 -0
- package/skills/threejs.aicomponent/ref/AssetLoader.ts +158 -0
- package/skills/threejs.aicomponent/ref/BaseScene.ts +88 -0
- package/skills/threejs.aicomponent/ref/GameConfig.ts +47 -0
- package/skills/threejs.aicomponent/ref/MainScene.ts +170 -0
- package/skills/threejs.aicomponent/ref/PreloaderScene.ts +93 -0
- package/skills/threejs.aicomponent/ref/SceneKeys.ts +6 -0
- package/skills/threejs.aicomponent/ref/SceneManager.ts +69 -0
- package/skills/threejs.aicomponent/ref/ViewportManager.ts +62 -0
- package/skills/threejs.aicomponent/ref/globals.d.ts +74 -0
- package/skills/threejs.aicomponent/ref/index.css +80 -0
- package/skills/threejs.aicomponent/ref/index.html +20 -0
- package/skills/threejs.aicomponent/ref/index.ts +117 -0
- package/skills/threejs.aicomponent/ref/main.ts +10 -0
- package/skills/threejs.aicomponent/ref/package.json +23 -0
- package/skills/threejs.aicomponent/ref/tsconfig.json +24 -0
- package/skills/threejs.aicomponent/ref/webpack.config.js +61 -0
- package/skills/time_clear_goal.aiconfig/SKILL.md +46 -0
- package/skills/time_clear_goal.aiconfig/manifest.json +32 -0
- package/skills/time_icon.aiimage/SKILL.md +58 -0
- package/skills/time_icon.aiimage/manifest.json +47 -0
- package/skills/time_icon.aiimage/ref/time.png +0 -0
- package/skills/time_icon.aiimage/ref/time.webp +0 -0
- package/skills/top_ui_bar.aicomponent/SKILL.md +45 -0
- package/skills/top_ui_bar.aicomponent/manifest.json +27 -0
- package/skills/top_ui_bar.aicomponent/ref/GameTopUI.ts +229 -0
- package/skills/tower_defence.aigameplay/SKILL.md +117 -0
- package/skills/tower_defence.aigameplay/manifest.json +175 -0
- package/skills/tower_defence.aigameplay/ref/pgs-schema.json +247 -0
- package/skills/tower_defence.aigameplay/ref/reducer.template.ts +239 -0
- package/skills/tray_container.aicomponent/SKILL.md +143 -0
- package/skills/tray_container.aicomponent/manifest.json +58 -0
- package/skills/tray_container.aicomponent/ref/TrayRenderer.ts +155 -0
- package/skills/tray_container.aicomponent/ref/TrayRenderer3D.ts +281 -0
- package/skills/tray_container.aicomponent/ref/TrayRendererHtmlOverlay.ts +228 -0
- package/skills/tutorial_overlay.aicomponent/SKILL.md +46 -0
- package/skills/tutorial_overlay.aicomponent/manifest.json +34 -0
- package/skills/tutorial_overlay.aicomponent/ref/TutorialManager.ts +367 -0
- package/skills/tween-animation-2d.aicomponent/SKILL.md +35 -0
- package/skills/tween-animation-2d.aicomponent/manifest.json +28 -0
- package/skills/tween-animation-2d.aicomponent/ref/phaser.js +49 -0
- package/skills/tween-animation-2d.aicomponent/ref/playcanvas.js +36 -0
- package/skills/typescript_module_patterns.aicomponent/SKILL.md +209 -0
- package/skills/typescript_module_patterns.aicomponent/manifest.json +28 -0
- package/skills/typescript_module_patterns.aicomponent/ref/globals.d.ts +31 -0
- package/skills/ui-transition.aicomponent/SKILL.md +33 -0
- package/skills/ui-transition.aicomponent/manifest.json +19 -0
- package/skills/ui-transition.aicomponent/ref/phaser.js +45 -0
- package/skills/ux_flow_spec.aiconfig/SKILL.md +82 -0
- package/skills/ux_flow_spec.aiconfig/manifest.json +39 -0
- package/skills/wave_difficulty.aiconfig/SKILL.md +46 -0
- package/skills/wave_difficulty.aiconfig/manifest.json +33 -0
- package/skills/webpack_build.aicomponent/SKILL.md +204 -0
- package/skills/webpack_build.aicomponent/manifest.json +29 -0
- package/skills/webpack_build.aicomponent/ref/package.json +16 -0
- package/skills/webpack_build.aicomponent/ref/webpack.config.js +53 -0
- package/skills/win_anim_sfx.aiaudio/SKILL.md +59 -0
- package/skills/win_anim_sfx.aiaudio/manifest.json +46 -0
- package/skills/win_anim_sfx.aiaudio/ref/win_anim.mp3 +0 -0
- package/skills/win_dot.aiimage/SKILL.md +58 -0
- package/skills/win_dot.aiimage/manifest.json +47 -0
- package/skills/win_dot.aiimage/ref/win_dot.png +0 -0
- package/skills/win_dot.aiimage/ref/win_dot.webp +0 -0
- package/skills/win_result_panel.aiimage/SKILL.md +58 -0
- package/skills/win_result_panel.aiimage/manifest.json +47 -0
- package/skills/win_result_panel.aiimage/ref/win.png +0 -0
- package/skills/win_result_panel.aiimage/ref/win.webp +0 -0
- package/skills/word_connect.aigameplay/SKILL.md +86 -0
- package/skills/word_connect.aigameplay/manifest.json +154 -0
- package/skills/word_connect.aigameplay/ref/pgs-schema.json +212 -0
- package/skills/word_connect.aigameplay/ref/reducer.template.ts +186 -0
- package/src/index.ts +10 -0
- package/src/skills.loader.ts +225 -0
- package/src/skills.types.ts +42 -0
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
import * as Phaser from "phaser";
|
|
2
|
+
import { ComboSmallUI } from "./ComboSmallUI";
|
|
3
|
+
import { GAME_TOP_UI_BAR_HEIGHT } from "./GameTopUI";
|
|
4
|
+
import { computeUiLayout } from "../../utils/UiLayout";
|
|
5
|
+
|
|
6
|
+
/** 连续成功操作计为连击链的时间窗口(毫秒)。 */
|
|
7
|
+
const COMBO_CHAIN_WINDOW_MS = 1400;
|
|
8
|
+
|
|
9
|
+
export class ComboManager {
|
|
10
|
+
private scene: Phaser.Scene;
|
|
11
|
+
|
|
12
|
+
// ── 连击状态 ──
|
|
13
|
+
private comboClickCount = 0;
|
|
14
|
+
private comboLastSuccessAtMs = 0;
|
|
15
|
+
private comboUi: ComboSmallUI | undefined;
|
|
16
|
+
private comboUiLastCount = 0;
|
|
17
|
+
private comboPraiseText: Phaser.GameObjects.Text | undefined;
|
|
18
|
+
private comboPraiseTween: Phaser.Tweens.Tween | null = null;
|
|
19
|
+
private comboPraiseTimer: Phaser.Time.TimerEvent | null = null;
|
|
20
|
+
private comboPraiseLastShownComboCount = 0;
|
|
21
|
+
|
|
22
|
+
constructor(scene: Phaser.Scene) {
|
|
23
|
+
this.scene = scene;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// ── 公共 getter / setter ──────────────────────────────
|
|
27
|
+
|
|
28
|
+
/** 获取当前连击点击次数 */
|
|
29
|
+
get clickCount(): number {
|
|
30
|
+
return this.comboClickCount;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/** 设置连击点击次数 */
|
|
34
|
+
set clickCount(v: number) {
|
|
35
|
+
this.comboClickCount = v;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/** 获取上次成功操作的时间戳(毫秒) */
|
|
39
|
+
get lastSuccessAtMs(): number {
|
|
40
|
+
return this.comboLastSuccessAtMs;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/** 设置上次成功操作的时间戳(毫秒) */
|
|
44
|
+
set lastSuccessAtMs(v: number) {
|
|
45
|
+
this.comboLastSuccessAtMs = v;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/** 获取连击链时间窗口(毫秒) */
|
|
49
|
+
get chainWindowMs(): number {
|
|
50
|
+
return COMBO_CHAIN_WINDOW_MS;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// ── 生命周期 ──────────────────────────────────────────────
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* 创建 ComboSmallUI 组件。在场景 create() 中调用一次。
|
|
57
|
+
* @param layout 包含宽度和UI缩放比例的布局信息
|
|
58
|
+
*/
|
|
59
|
+
createUi(layout: { width: number; uiScale: number }): void {
|
|
60
|
+
this.comboUi = new ComboSmallUI(this.scene, layout.width * 0.5, 0, {
|
|
61
|
+
uiScale: layout.uiScale,
|
|
62
|
+
progress: 1,
|
|
63
|
+
comboCount: 1,
|
|
64
|
+
depth: 1600,
|
|
65
|
+
});
|
|
66
|
+
this.comboUi.setScrollFactor(0);
|
|
67
|
+
this.comboUi.setVisible(false);
|
|
68
|
+
|
|
69
|
+
this.refreshComboUiPlacement();
|
|
70
|
+
|
|
71
|
+
// 定期刷新倒计时
|
|
72
|
+
this.scene.time.addEvent({
|
|
73
|
+
delay: 33,
|
|
74
|
+
loop: true,
|
|
75
|
+
callback: () => this.refreshComboUiCountdown(),
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* 重置所有连击状态。在每关开始时调用。
|
|
81
|
+
*/
|
|
82
|
+
resetState(): void {
|
|
83
|
+
this.comboClickCount = 0;
|
|
84
|
+
this.comboLastSuccessAtMs = 0;
|
|
85
|
+
this.comboUiLastCount = 0;
|
|
86
|
+
this.comboPraiseLastShownComboCount = 0;
|
|
87
|
+
this.clearComboPraiseText();
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// ── 原先在 Game 上的方法 ─────────────────────────────
|
|
91
|
+
|
|
92
|
+
/** 成功消除路径后处理连击UI显示。 */
|
|
93
|
+
handleComboUiOnSuccess(): void {
|
|
94
|
+
const comboUi = this.comboUi;
|
|
95
|
+
if (!comboUi) {
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (this.comboClickCount < 3) {
|
|
100
|
+
this.hideComboUi();
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (!comboUi.visible) {
|
|
105
|
+
comboUi.setVisible(true);
|
|
106
|
+
this.refreshComboUiPlacement();
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
comboUi.setProgress(1);
|
|
110
|
+
|
|
111
|
+
if (this.comboUiLastCount !== this.comboClickCount) {
|
|
112
|
+
comboUi.setCombo(this.comboClickCount);
|
|
113
|
+
comboUi.playComboPulse();
|
|
114
|
+
this.comboUiLastCount = this.comboClickCount;
|
|
115
|
+
this.refreshComboUiPlacement();
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/** 刷新连击UI倒计时进度条。 */
|
|
120
|
+
refreshComboUiCountdown(): void {
|
|
121
|
+
const comboUi = this.comboUi;
|
|
122
|
+
if (!comboUi || !comboUi.visible) {
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if (this.comboClickCount < 3 || this.comboLastSuccessAtMs <= 0) {
|
|
127
|
+
this.hideComboUi();
|
|
128
|
+
return;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const now = this.scene.time.now;
|
|
132
|
+
const elapsed = now - this.comboLastSuccessAtMs;
|
|
133
|
+
const remain = COMBO_CHAIN_WINDOW_MS - elapsed;
|
|
134
|
+
if (remain <= 0) {
|
|
135
|
+
this.comboClickCount = 0;
|
|
136
|
+
this.comboLastSuccessAtMs = 0;
|
|
137
|
+
this.comboPraiseLastShownComboCount = 0;
|
|
138
|
+
this.clearComboPraiseText();
|
|
139
|
+
this.hideComboUi();
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
comboUi.setProgress(remain / COMBO_CHAIN_WINDOW_MS);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/** 隐藏连击UI组件。 */
|
|
147
|
+
hideComboUi(): void {
|
|
148
|
+
if (this.comboUi) {
|
|
149
|
+
this.comboUi.setVisible(false);
|
|
150
|
+
this.comboUi.setProgress(0);
|
|
151
|
+
this.comboUi.setScale(1);
|
|
152
|
+
}
|
|
153
|
+
this.comboUiLastCount = 0;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/** 刷新连击UI组件的位置。 */
|
|
157
|
+
refreshComboUiPlacement(): void {
|
|
158
|
+
const comboUi = this.comboUi;
|
|
159
|
+
if (!comboUi) {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
const layout = computeUiLayout(this.scene);
|
|
164
|
+
const { width, height, uiScale, vScale } = layout;
|
|
165
|
+
|
|
166
|
+
const topUiBottom = GAME_TOP_UI_BAR_HEIGHT * vScale;
|
|
167
|
+
|
|
168
|
+
const targetComboLeft = 10 * uiScale;
|
|
169
|
+
const targetTextTop = topUiBottom + 10 * vScale;
|
|
170
|
+
const marginRight = 12 * uiScale;
|
|
171
|
+
|
|
172
|
+
comboUi.setScale(1);
|
|
173
|
+
comboUi.setPosition(0, 0);
|
|
174
|
+
|
|
175
|
+
const glyphLeftLocal = comboUi.getComboGlyphLeftLocal();
|
|
176
|
+
const glyphTopLocal = comboUi.getTextGlyphTopLocal();
|
|
177
|
+
|
|
178
|
+
const baseBounds = comboUi.getBounds();
|
|
179
|
+
const localRight = baseBounds.right;
|
|
180
|
+
const distToRight = localRight - glyphLeftLocal;
|
|
181
|
+
const availableW = Math.max(1, width - marginRight - targetComboLeft);
|
|
182
|
+
const fitScale =
|
|
183
|
+
distToRight > 0 ? Math.min(1, availableW / distToRight) : 1;
|
|
184
|
+
|
|
185
|
+
comboUi.setScale(fitScale);
|
|
186
|
+
|
|
187
|
+
const x = targetComboLeft - glyphLeftLocal * fitScale;
|
|
188
|
+
const y = targetTextTop - glyphTopLocal * fitScale;
|
|
189
|
+
comboUi.setPosition(x, y);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/** 清除连击表扬文本及其相关动画。 */
|
|
193
|
+
clearComboPraiseText(): void {
|
|
194
|
+
if (this.comboPraiseTween) {
|
|
195
|
+
this.comboPraiseTween.stop();
|
|
196
|
+
this.comboPraiseTween = null;
|
|
197
|
+
}
|
|
198
|
+
if (this.comboPraiseTimer) {
|
|
199
|
+
this.comboPraiseTimer.remove(false);
|
|
200
|
+
this.comboPraiseTimer = null;
|
|
201
|
+
}
|
|
202
|
+
if (this.comboPraiseText) {
|
|
203
|
+
this.scene.tweens.killTweensOf(this.comboPraiseText);
|
|
204
|
+
this.comboPraiseText.destroy();
|
|
205
|
+
this.comboPraiseText = undefined;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* 根据连击次数获取对应的表扬文本。
|
|
211
|
+
* @param comboCount 连击次数
|
|
212
|
+
* @returns 表扬文本,如果不需要显示则返回 null
|
|
213
|
+
*/
|
|
214
|
+
getComboPraiseMessage(comboCount: number): string | null {
|
|
215
|
+
const c = Math.max(0, Math.floor(comboCount || 0));
|
|
216
|
+
if (c < 3) {
|
|
217
|
+
return null;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
if (c >= 15) {
|
|
221
|
+
if (c === 15 || (c > 15 && (c - 15) % 3 === 0)) {
|
|
222
|
+
const tiers = [
|
|
223
|
+
"LEGENDARY!",
|
|
224
|
+
"GODLIKE!",
|
|
225
|
+
"UNREAL!",
|
|
226
|
+
"PHENOMENAL!",
|
|
227
|
+
"SUPREME!",
|
|
228
|
+
];
|
|
229
|
+
const tierIndex = Math.floor((c - 15) / 3) % tiers.length;
|
|
230
|
+
return tiers[tierIndex] ?? "LEGENDARY!";
|
|
231
|
+
}
|
|
232
|
+
return null;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
switch (c) {
|
|
236
|
+
case 3:
|
|
237
|
+
return "GOOD!";
|
|
238
|
+
case 4:
|
|
239
|
+
return "NICE!";
|
|
240
|
+
case 5:
|
|
241
|
+
return "GREAT!";
|
|
242
|
+
case 6:
|
|
243
|
+
return "AWESOME!";
|
|
244
|
+
case 7:
|
|
245
|
+
return "AMAZING!";
|
|
246
|
+
case 8:
|
|
247
|
+
return "UNSTOPPABLE!";
|
|
248
|
+
case 10:
|
|
249
|
+
return "INCREDIBLE!";
|
|
250
|
+
case 12:
|
|
251
|
+
return "INSANE!";
|
|
252
|
+
default:
|
|
253
|
+
return null;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* 在点击位置(或屏幕中央)显示连击表扬文本。
|
|
259
|
+
* @param comboCount 当前连击次数
|
|
260
|
+
* @param lastTapScreenX 上次点击的屏幕X坐标
|
|
261
|
+
* @param lastTapScreenY 上次点击的屏幕Y坐标
|
|
262
|
+
* @param hasLastTapScreenPos 点击位置是否有效
|
|
263
|
+
*/
|
|
264
|
+
maybeShowComboPraiseText(
|
|
265
|
+
comboCount: number,
|
|
266
|
+
lastTapScreenX: number,
|
|
267
|
+
lastTapScreenY: number,
|
|
268
|
+
hasLastTapScreenPos: boolean,
|
|
269
|
+
): void {
|
|
270
|
+
const message = this.getComboPraiseMessage(comboCount);
|
|
271
|
+
if (!message) {
|
|
272
|
+
return;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
const c = Math.max(0, Math.floor(comboCount || 0));
|
|
276
|
+
if (c === this.comboPraiseLastShownComboCount) {
|
|
277
|
+
return;
|
|
278
|
+
}
|
|
279
|
+
this.comboPraiseLastShownComboCount = c;
|
|
280
|
+
|
|
281
|
+
this.clearComboPraiseText();
|
|
282
|
+
|
|
283
|
+
const layout = computeUiLayout(this.scene);
|
|
284
|
+
const { centerX, uiScale, vScale } = layout;
|
|
285
|
+
|
|
286
|
+
const baseX = hasLastTapScreenPos ? lastTapScreenX : centerX;
|
|
287
|
+
const baseY = hasLastTapScreenPos
|
|
288
|
+
? lastTapScreenY - 30 * uiScale
|
|
289
|
+
: GAME_TOP_UI_BAR_HEIGHT * vScale + 180 * vScale;
|
|
290
|
+
|
|
291
|
+
const hint = this.scene.add.text(baseX, baseY + 14 * uiScale, message, {
|
|
292
|
+
fontFamily: "Poppins, Arial, sans-serif",
|
|
293
|
+
fontSize: `${26 * uiScale}px`,
|
|
294
|
+
color: "#1184ff",
|
|
295
|
+
fontStyle: "bold",
|
|
296
|
+
align: "center",
|
|
297
|
+
});
|
|
298
|
+
|
|
299
|
+
hint.setOrigin(0.5, 0.5);
|
|
300
|
+
hint.setScale(0.6);
|
|
301
|
+
hint.setScrollFactor(0);
|
|
302
|
+
hint.setDepth(1700);
|
|
303
|
+
hint.setAlpha(0.98);
|
|
304
|
+
|
|
305
|
+
// 简洁描边
|
|
306
|
+
hint.setStroke("#FFFFFF", 2 * uiScale);
|
|
307
|
+
|
|
308
|
+
// 蓝色发光效果
|
|
309
|
+
hint.setShadow(0, 0, "#1184ff", 2 * uiScale, true, false);
|
|
310
|
+
|
|
311
|
+
this.comboPraiseText = hint;
|
|
312
|
+
|
|
313
|
+
/** 清理表扬文本 */
|
|
314
|
+
const cleanup = () => {
|
|
315
|
+
if (this.comboPraiseText === hint) {
|
|
316
|
+
this.comboPraiseText = undefined;
|
|
317
|
+
}
|
|
318
|
+
this.comboPraiseTween = null;
|
|
319
|
+
if (this.comboPraiseTimer) {
|
|
320
|
+
this.comboPraiseTimer.remove(false);
|
|
321
|
+
this.comboPraiseTimer = null;
|
|
322
|
+
}
|
|
323
|
+
hint.destroy();
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
const finalY = baseY;
|
|
327
|
+
const popStartY = baseY + 10 * uiScale;
|
|
328
|
+
hint.y = popStartY;
|
|
329
|
+
|
|
330
|
+
// 弹出动画:从下方弹出 -> 缩放回弹 -> 延迟后淡出上移
|
|
331
|
+
this.comboPraiseTween = this.scene.tweens.add({
|
|
332
|
+
targets: hint,
|
|
333
|
+
y: finalY,
|
|
334
|
+
alpha: 1,
|
|
335
|
+
scale: 1.12,
|
|
336
|
+
duration: 90,
|
|
337
|
+
ease: "Back.Out",
|
|
338
|
+
onComplete: () => {
|
|
339
|
+
this.comboPraiseTween = this.scene.tweens.add({
|
|
340
|
+
targets: hint,
|
|
341
|
+
scale: 1,
|
|
342
|
+
duration: 60,
|
|
343
|
+
ease: "Sine.Out",
|
|
344
|
+
onComplete: () => {
|
|
345
|
+
this.comboPraiseTween = null;
|
|
346
|
+
this.comboPraiseTimer = this.scene.time.delayedCall(260, () => {
|
|
347
|
+
this.comboPraiseTimer = null;
|
|
348
|
+
this.comboPraiseTween = this.scene.tweens.add({
|
|
349
|
+
targets: hint,
|
|
350
|
+
y: finalY - 70 * uiScale,
|
|
351
|
+
alpha: 0,
|
|
352
|
+
duration: 360,
|
|
353
|
+
ease: "Cubic.In",
|
|
354
|
+
onComplete: cleanup,
|
|
355
|
+
});
|
|
356
|
+
});
|
|
357
|
+
},
|
|
358
|
+
});
|
|
359
|
+
},
|
|
360
|
+
});
|
|
361
|
+
}
|
|
362
|
+
}
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import * as Phaser from "phaser";
|
|
2
|
+
|
|
3
|
+
/** ComboSmallUI 组件的配置选项 */
|
|
4
|
+
export interface ComboSmallUIConfig {
|
|
5
|
+
uiScale?: number;
|
|
6
|
+
barWidth?: number;
|
|
7
|
+
barHeight?: number;
|
|
8
|
+
progress?: number;
|
|
9
|
+
comboCount?: number;
|
|
10
|
+
depth?: number;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* 连击小型UI组件,显示 "COMBO X数字" 文本。
|
|
15
|
+
* 包含动画效果(呼吸缩放、脉冲等)。
|
|
16
|
+
*/
|
|
17
|
+
export class ComboSmallUI extends Phaser.GameObjects.Container {
|
|
18
|
+
private readonly uiScale: number;
|
|
19
|
+
private readonly textPad: number;
|
|
20
|
+
private readonly textPadRight: number;
|
|
21
|
+
private readonly textGap: number;
|
|
22
|
+
private readonly strokeThickness: number;
|
|
23
|
+
|
|
24
|
+
private progress = 0;
|
|
25
|
+
|
|
26
|
+
private readonly comboText: Phaser.GameObjects.Text;
|
|
27
|
+
private readonly xText: Phaser.GameObjects.Text;
|
|
28
|
+
private xTween: Phaser.Tweens.Tween | undefined;
|
|
29
|
+
|
|
30
|
+
constructor(
|
|
31
|
+
scene: Phaser.Scene,
|
|
32
|
+
x: number,
|
|
33
|
+
y: number,
|
|
34
|
+
config: ComboSmallUIConfig = {},
|
|
35
|
+
) {
|
|
36
|
+
super(scene, x, y);
|
|
37
|
+
|
|
38
|
+
scene.add.existing(this);
|
|
39
|
+
|
|
40
|
+
this.uiScale = config.uiScale ?? 1;
|
|
41
|
+
|
|
42
|
+
const fontSize = 40 * this.uiScale;
|
|
43
|
+
const strokeThickness = 8 * this.uiScale;
|
|
44
|
+
this.strokeThickness = strokeThickness;
|
|
45
|
+
const pad = Math.ceil(strokeThickness * 3 + fontSize * 0.1);
|
|
46
|
+
const padRight = Math.ceil(strokeThickness * 6 + fontSize * 0.4);
|
|
47
|
+
this.textPad = pad;
|
|
48
|
+
this.textPadRight = padRight;
|
|
49
|
+
|
|
50
|
+
// 创建 "COMBO" 文本
|
|
51
|
+
const comboText = scene.add.text(0, 0, "COMBO", {
|
|
52
|
+
fontFamily: "Poppins",
|
|
53
|
+
fontSize: `${fontSize + 6}px`,
|
|
54
|
+
color: "#007AFF", // 蓝色主色调
|
|
55
|
+
fontStyle: "bold",
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
// 描边效果
|
|
59
|
+
comboText.setStroke("#FFFFFF", strokeThickness + 3); // 白色描边
|
|
60
|
+
comboText.setShadow(0, 0, "#007AFF", 8, true, false); // 蓝色外发光
|
|
61
|
+
|
|
62
|
+
// 轻微倾斜角度
|
|
63
|
+
comboText.angle = -3;
|
|
64
|
+
|
|
65
|
+
comboText.setPadding(
|
|
66
|
+
this.textPad + 4,
|
|
67
|
+
this.textPad,
|
|
68
|
+
this.textPadRight + 4,
|
|
69
|
+
this.textPad,
|
|
70
|
+
);
|
|
71
|
+
comboText.setOrigin(1, 0.5);
|
|
72
|
+
|
|
73
|
+
// COMBO 文本呼吸动画
|
|
74
|
+
scene.tweens.add({
|
|
75
|
+
targets: comboText,
|
|
76
|
+
scaleX: 1.1,
|
|
77
|
+
scaleY: 1.1,
|
|
78
|
+
angle: 3,
|
|
79
|
+
duration: 300,
|
|
80
|
+
yoyo: true,
|
|
81
|
+
repeat: -1,
|
|
82
|
+
ease: "Sine.easeInOut",
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
// 创建 "X数字" 文本
|
|
86
|
+
const xText = scene.add.text(0, 0, "X1", {
|
|
87
|
+
fontFamily: "Poppins",
|
|
88
|
+
fontSize: `${fontSize}px`,
|
|
89
|
+
color: "#007AFF", // 蓝色主色调
|
|
90
|
+
fontStyle: "bold italic",
|
|
91
|
+
});
|
|
92
|
+
xText.setResolution(2);
|
|
93
|
+
xText.setStroke("#FFFFFF", strokeThickness + 3); // 白色描边
|
|
94
|
+
xText.setShadow(0, 0, "#007AFF", 4, true, true); // 蓝色外发光
|
|
95
|
+
xText.setPadding(
|
|
96
|
+
this.textPad,
|
|
97
|
+
this.textPad,
|
|
98
|
+
this.textPadRight,
|
|
99
|
+
this.textPad,
|
|
100
|
+
);
|
|
101
|
+
xText.setOrigin(0, 0.5);
|
|
102
|
+
|
|
103
|
+
this.textGap = 2 * this.uiScale;
|
|
104
|
+
|
|
105
|
+
this.comboText = comboText;
|
|
106
|
+
this.xText = xText;
|
|
107
|
+
|
|
108
|
+
this.add(comboText);
|
|
109
|
+
this.add(xText);
|
|
110
|
+
|
|
111
|
+
this.layoutComboText();
|
|
112
|
+
this.recomputeSize();
|
|
113
|
+
|
|
114
|
+
if (typeof config.comboCount === "number") {
|
|
115
|
+
this.setCombo(config.comboCount);
|
|
116
|
+
}
|
|
117
|
+
if (typeof config.progress === "number") {
|
|
118
|
+
this.setProgress(config.progress);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
if (typeof config.depth === "number") {
|
|
122
|
+
this.setDepth(config.depth);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* 设置连击进度(控制整体透明度)。
|
|
128
|
+
* @param progress 进度值(0~1)
|
|
129
|
+
*/
|
|
130
|
+
public setProgress(progress: number): void {
|
|
131
|
+
this.progress = Phaser.Math.Clamp(progress, 0, 1);
|
|
132
|
+
const minAlpha = 0.25;
|
|
133
|
+
const alpha = minAlpha + (1 - minAlpha) * this.progress;
|
|
134
|
+
this.setAlpha(alpha);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* 设置连击计数并更新显示文本。
|
|
139
|
+
* @param count 连击次数
|
|
140
|
+
*/
|
|
141
|
+
public setCombo(count: number): void {
|
|
142
|
+
const safeCount = Math.max(1, Math.floor(count));
|
|
143
|
+
this.xText.setText(`X${safeCount}`);
|
|
144
|
+
this.xText.setPadding(
|
|
145
|
+
this.textPad,
|
|
146
|
+
this.textPad,
|
|
147
|
+
this.textPadRight,
|
|
148
|
+
this.textPad,
|
|
149
|
+
);
|
|
150
|
+
this.layoutComboText();
|
|
151
|
+
this.recomputeSize();
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/** 获取 COMBO 文字图形的本地左边界X坐标。 */
|
|
155
|
+
public getComboGlyphLeftLocal(): number {
|
|
156
|
+
const comboW = this.comboText.displayWidth || 0;
|
|
157
|
+
const comboPadL = this.textPad * this.comboText.scaleX;
|
|
158
|
+
return this.comboText.x - comboW + comboPadL;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/** 获取文字图形的本地顶部Y坐标。 */
|
|
162
|
+
public getTextGlyphTopLocal(): number {
|
|
163
|
+
const topFor = (t: Phaser.GameObjects.Text) => {
|
|
164
|
+
const padTop = this.textPad * t.scaleY;
|
|
165
|
+
const h = t.displayHeight || 0;
|
|
166
|
+
return t.y - h / 2 + padTop;
|
|
167
|
+
};
|
|
168
|
+
return Math.min(topFor(this.comboText), topFor(this.xText));
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/** 播放连击脉冲缩放动画。 */
|
|
172
|
+
public playComboPulse(): void {
|
|
173
|
+
const scene = this.scene;
|
|
174
|
+
if (!scene) {
|
|
175
|
+
return;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
if (this.xTween) {
|
|
179
|
+
this.xTween.stop();
|
|
180
|
+
scene.tweens.remove(this.xTween);
|
|
181
|
+
this.xTween = undefined;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
this.xText.setScale(1);
|
|
185
|
+
this.xTween = scene.tweens.add({
|
|
186
|
+
targets: this.xText,
|
|
187
|
+
scale: 1.18,
|
|
188
|
+
duration: 140,
|
|
189
|
+
yoyo: true,
|
|
190
|
+
ease: "Sine.easeOut",
|
|
191
|
+
onComplete: () => {
|
|
192
|
+
this.xText.setScale(1);
|
|
193
|
+
this.xTween = undefined;
|
|
194
|
+
},
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/** 重新布局 COMBO 和 X数字 文本的水平位置。 */
|
|
199
|
+
private layoutComboText(): void {
|
|
200
|
+
const comboW = this.comboText.displayWidth || 0;
|
|
201
|
+
const xW = this.xText.displayWidth || 0;
|
|
202
|
+
|
|
203
|
+
const comboPadL = this.textPad * this.comboText.scaleX;
|
|
204
|
+
const comboPadR = this.textPadRight * this.comboText.scaleX;
|
|
205
|
+
const xPadL = this.textPad * this.xText.scaleX;
|
|
206
|
+
const xPadR = this.textPadRight * this.xText.scaleX;
|
|
207
|
+
|
|
208
|
+
const comboGlyphW = Math.max(0, comboW - comboPadL - comboPadR);
|
|
209
|
+
const xGlyphW = Math.max(0, xW - xPadL - xPadR);
|
|
210
|
+
|
|
211
|
+
const totalW = comboGlyphW + this.textGap + xGlyphW;
|
|
212
|
+
const startX = -totalW / 2;
|
|
213
|
+
const seamX = startX + comboGlyphW;
|
|
214
|
+
|
|
215
|
+
this.comboText.setPosition(seamX + comboPadR, 0);
|
|
216
|
+
this.xText.setPosition(seamX + this.textGap - xPadL, 0);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/** 重新计算容器的整体尺寸。 */
|
|
220
|
+
private recomputeSize(): void {
|
|
221
|
+
const strokePadding = this.strokeThickness * 2;
|
|
222
|
+
const textGroupW =
|
|
223
|
+
(this.comboText.displayWidth || 0) +
|
|
224
|
+
this.textGap +
|
|
225
|
+
(this.xText.displayWidth || 0);
|
|
226
|
+
const totalWidth = textGroupW + strokePadding;
|
|
227
|
+
const totalHeight =
|
|
228
|
+
Math.max(this.comboText.displayHeight, this.xText.displayHeight) +
|
|
229
|
+
strokePadding;
|
|
230
|
+
this.setSize(totalWidth, totalHeight);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: combo_praise_text.aicomponent
|
|
3
|
+
description: 连击表扬文案弹出动画。在点击成功消除路径时,根据连击数在点击位置弹出 GOOD/NICE/GREAT/AWESOME/INCREDIBLE/LEGENDARY 文字动画,给玩家正向反馈。
|
|
4
|
+
triggers: 需要实现连击正向反馈文字弹出动画时触发。
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 连击表扬文案弹出(Combo Praise Text Popup)
|
|
8
|
+
|
|
9
|
+
## 说明
|
|
10
|
+
|
|
11
|
+
当玩家连续成功消除路径时,在点击位置弹出表扬文案:
|
|
12
|
+
|
|
13
|
+
| 连击数 | 文案 |
|
|
14
|
+
|-----|-----|
|
|
15
|
+
| 1 | GOOD |
|
|
16
|
+
| 2 | NICE |
|
|
17
|
+
| 3 | GREAT |
|
|
18
|
+
| 4 | AWESOME |
|
|
19
|
+
| 5 | INCREDIBLE |
|
|
20
|
+
| 6+ | LEGENDARY |
|
|
21
|
+
|
|
22
|
+
## Scaffold
|
|
23
|
+
|
|
24
|
+
`src/game/scenes/GameUI/ComboPraiseText.ts`(从 ComboManager.ts 提取 `maybeShowComboPraiseText` 方法)
|
|
25
|
+
|
|
26
|
+
## Recipe
|
|
27
|
+
|
|
28
|
+
| 决策 | 原因 |
|
|
29
|
+
|------|------|
|
|
30
|
+
| **从 ComboManager 提取** | 表扬文字弹出是纯视觉反馈,与连击计数逻辑耦合度低;提取为独立函数后,可在不使用 ComboManager 的场景中单独复用 |
|
|
31
|
+
| **位置跟随点击点** | 文字在玩家点击位置弹出,强化操作→反馈的直接关联;固定位置的文字反馈感觉"延迟" |
|
|
32
|
+
| **LEGENDARY 封顶** | 超过 6 连击后文案不再升级,避免需要维护过长的文案列表 |
|
|
33
|
+
|
|
34
|
+
## Adapter
|
|
35
|
+
|
|
36
|
+
- **Role**: `comboPraiseText` — 连击正向反馈文字弹出动画
|
|
37
|
+
- **Provides**: `maybeShowComboPraiseText(scene, comboCount, x, y)` 函数
|
|
38
|
+
- **Requires**: `phaser.aicomponent`(Tween + Text API)
|
|
39
|
+
- **Consumed by**: `combo_display.aicomponent`(ComboManager 在连击计数变化时调用)
|
|
40
|
+
- **Integration point**: `src/game/scenes/GameUI/ComboPraiseText.ts` → ComboManager.addCombo() 内部触发
|
|
41
|
+
|
|
42
|
+
## Imports
|
|
43
|
+
|
|
44
|
+
- `phaser.aicomponent`(硬依赖:Tween + Text API)
|
|
45
|
+
|
|
46
|
+
## Skill Definition
|
|
47
|
+
|
|
48
|
+
```yaml
|
|
49
|
+
tools:
|
|
50
|
+
- read_file
|
|
51
|
+
- write_file
|
|
52
|
+
inputs:
|
|
53
|
+
- source: ref/ComboManager.ts
|
|
54
|
+
outputs:
|
|
55
|
+
- comboPraiseText: maybeShowComboPraiseText function
|
|
56
|
+
```
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"atomId": "combo_praise_text.aicomponent",
|
|
4
|
+
"bundleType": "aicomponent",
|
|
5
|
+
"category": "component",
|
|
6
|
+
"mode": "fixed",
|
|
7
|
+
"label": { "zh": "连击表扬文案弹出", "en": "Combo praise text popup" },
|
|
8
|
+
"tags": ["ui", "combo", "praise", "text", "popup", "animation", "GOOD", "NICE", "GREAT"],
|
|
9
|
+
"bindingRoles": ["comboPraiseText"],
|
|
10
|
+
"scaffold": {
|
|
11
|
+
"files": {
|
|
12
|
+
"src/game/scenes/GameUI/ComboPraiseText.ts": {
|
|
13
|
+
"source": "ref/ComboManager.ts",
|
|
14
|
+
"mode": "full",
|
|
15
|
+
"weight": 8
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"imports": [
|
|
20
|
+
{ "slot": "engine", "pinAtomId": "phaser.aicomponent", "edgeKind": "requires", "bindAs": "engine" }
|
|
21
|
+
],
|
|
22
|
+
"exports": [
|
|
23
|
+
{ "name": "maybeShowComboPraiseText", "kind": "function", "location": "src/game/scenes/GameUI/ComboManager.ts" }
|
|
24
|
+
],
|
|
25
|
+
"neutralDescriptor": {
|
|
26
|
+
"geometry": "animated praise text popup appearing at tap position for consecutive successful actions: GOOD → NICE → GREAT → AWESOME → INCREDIBLE → LEGENDARY"
|
|
27
|
+
},
|
|
28
|
+
"usageHints": [
|
|
29
|
+
"表扬文案 popup 在每次成功消除路径时触发,level 由连击数决定",
|
|
30
|
+
"文案序列:GOOD(1) → NICE(2) → GREAT(3) → AWESOME(4) → INCREDIBLE(5) → LEGENDARY(6+)",
|
|
31
|
+
"弹出位置来自点击坐标(lastTapScreenX/Y)"
|
|
32
|
+
],
|
|
33
|
+
"files": { "skill": "SKILL.md", "comboPraiseText": "ref/ComboManager.ts" }
|
|
34
|
+
}
|