redscript-mc 2.4.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -5
- package/README.md +2 -0
- package/dist/__tests__/cli.test.d.ts +1 -0
- package/dist/__tests__/cli.test.js +278 -0
- package/dist/__tests__/codegen.test.d.ts +1 -0
- package/dist/__tests__/codegen.test.js +152 -0
- package/dist/__tests__/compile-all.test.d.ts +10 -0
- package/dist/__tests__/compile-all.test.js +108 -0
- package/dist/__tests__/dce.test.d.ts +1 -0
- package/dist/__tests__/dce.test.js +138 -0
- package/dist/__tests__/diagnostics.test.d.ts +4 -0
- package/dist/__tests__/diagnostics.test.js +149 -0
- package/dist/__tests__/e2e.test.d.ts +6 -0
- package/dist/__tests__/e2e.test.js +1847 -0
- package/dist/__tests__/entity-types.test.d.ts +1 -0
- package/dist/__tests__/entity-types.test.js +203 -0
- package/dist/__tests__/formatter.test.d.ts +1 -0
- package/dist/__tests__/formatter.test.js +40 -0
- package/dist/__tests__/lexer.test.d.ts +1 -0
- package/dist/__tests__/lexer.test.js +343 -0
- package/dist/__tests__/lowering.test.d.ts +1 -0
- package/dist/__tests__/lowering.test.js +1015 -0
- package/dist/__tests__/macro.test.d.ts +8 -0
- package/dist/__tests__/macro.test.js +305 -0
- package/dist/__tests__/mc-integration.test.d.ts +12 -0
- package/dist/__tests__/mc-integration.test.js +819 -0
- package/dist/__tests__/mc-syntax.test.d.ts +1 -0
- package/dist/__tests__/mc-syntax.test.js +124 -0
- package/dist/__tests__/nbt.test.d.ts +1 -0
- package/dist/__tests__/nbt.test.js +82 -0
- package/dist/__tests__/optimizer-advanced.test.d.ts +1 -0
- package/dist/__tests__/optimizer-advanced.test.js +124 -0
- package/dist/__tests__/optimizer.test.d.ts +1 -0
- package/dist/__tests__/optimizer.test.js +149 -0
- package/dist/__tests__/parser.test.d.ts +1 -0
- package/dist/__tests__/parser.test.js +807 -0
- package/dist/__tests__/repl.test.d.ts +1 -0
- package/dist/__tests__/repl.test.js +27 -0
- package/dist/__tests__/runtime.test.d.ts +1 -0
- package/dist/__tests__/runtime.test.js +289 -0
- package/dist/__tests__/stdlib-advanced.test.d.ts +4 -0
- package/dist/__tests__/stdlib-advanced.test.js +378 -0
- package/dist/__tests__/stdlib-bigint.test.d.ts +7 -0
- package/dist/__tests__/stdlib-bigint.test.js +428 -0
- package/dist/__tests__/stdlib-math.test.d.ts +7 -0
- package/dist/__tests__/stdlib-math.test.js +352 -0
- package/dist/__tests__/stdlib-vec.test.d.ts +4 -0
- package/dist/__tests__/stdlib-vec.test.js +264 -0
- package/dist/__tests__/structure-optimizer.test.d.ts +1 -0
- package/dist/__tests__/structure-optimizer.test.js +33 -0
- package/dist/__tests__/typechecker.test.d.ts +1 -0
- package/dist/__tests__/typechecker.test.js +552 -0
- package/dist/__tests__/var-allocator.test.d.ts +1 -0
- package/dist/__tests__/var-allocator.test.js +69 -0
- package/dist/ast/types.d.ts +514 -0
- package/dist/ast/types.js +9 -0
- package/dist/builtins/metadata.d.ts +36 -0
- package/dist/builtins/metadata.js +1014 -0
- package/dist/cli.d.ts +11 -0
- package/dist/cli.js +0 -0
- package/dist/codegen/cmdblock/index.d.ts +26 -0
- package/dist/codegen/cmdblock/index.js +45 -0
- package/dist/codegen/mcfunction/index.d.ts +40 -0
- package/dist/codegen/mcfunction/index.js +606 -0
- package/dist/codegen/structure/index.d.ts +24 -0
- package/dist/codegen/structure/index.js +279 -0
- package/dist/codegen/var-allocator.d.ts +45 -0
- package/dist/codegen/var-allocator.js +104 -0
- package/dist/compile.d.ts +68 -0
- package/dist/data/arena/function/__load.mcfunction +6 -0
- package/dist/data/arena/function/__tick.mcfunction +2 -0
- package/dist/data/arena/function/announce_leaders/else_1.mcfunction +3 -0
- package/dist/data/arena/function/announce_leaders/foreach_0/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/announce_leaders/foreach_0/then_0.mcfunction +3 -0
- package/dist/data/arena/function/announce_leaders/foreach_0.mcfunction +7 -0
- package/dist/data/arena/function/announce_leaders/foreach_1/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/announce_leaders/foreach_1/then_0.mcfunction +4 -0
- package/dist/data/arena/function/announce_leaders/foreach_1.mcfunction +6 -0
- package/dist/data/arena/function/announce_leaders/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/announce_leaders/then_0.mcfunction +4 -0
- package/dist/data/arena/function/announce_leaders.mcfunction +6 -0
- package/dist/data/arena/function/arena_tick/merge_2.mcfunction +1 -0
- package/dist/data/arena/function/arena_tick/then_0.mcfunction +4 -0
- package/dist/data/arena/function/arena_tick.mcfunction +11 -0
- package/dist/data/capture_the_flag/function/add_to_team.mcfunction +5 -0
- package/dist/data/capture_the_flag/function/angry_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/assign_teams.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1__else_2.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1__merge_1.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/assign_teams__foreach_t1__then_0.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/barrier_wall.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/buff_all.mcfunction +22 -0
- package/dist/data/capture_the_flag/function/check_flag_capture.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t0.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t0__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t1.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t1__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_capture__foreach_t1__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t0.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t0__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t1.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t1__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/check_flag_pickup__foreach_t1__then_0.mcfunction +7 -0
- package/dist/data/capture_the_flag/function/check_win.mcfunction +4 -0
- package/dist/data/capture_the_flag/function/cleanup_teams.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/clear_area.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/clear_effect.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/clear_effects.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/clear_inventory.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/create_blue_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/create_green_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/create_red_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/create_team.mcfunction +8 -0
- package/dist/data/capture_the_flag/function/create_yellow_team.mcfunction +10 -0
- package/dist/data/capture_the_flag/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/distance_to.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/distance_to__const_0_0_0_0.mcfunction +5 -0
- package/dist/data/capture_the_flag/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/end_game.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/end_game__else_2.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/end_game__foreach_t7.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/end_game__merge_1.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/end_game__then_0.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/explosion_effect.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/flames.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/game_tick.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/give_kit_archer.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/give_kit_mage.mcfunction +5 -0
- package/dist/data/capture_the_flag/function/give_kit_warrior.mcfunction +6 -0
- package/dist/data/capture_the_flag/function/glass_box.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/glow.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/happy_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/hearts_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/init.mcfunction +11 -0
- package/dist/data/capture_the_flag/function/invisible.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/jump.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/load.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/night_vision.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/place_flags.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/portal_effect.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/regen.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/remove_from_teams.mcfunction +3 -0
- package/dist/data/capture_the_flag/function/remove_item.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/resistance.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_day.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_easy.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_hard.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_midnight.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_night.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_noon.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_normal.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/set_peaceful.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/setup_four_teams.mcfunction +4 -0
- package/dist/data/capture_the_flag/function/setup_two_teams.mcfunction +2 -0
- package/dist/data/capture_the_flag/function/slow_fall.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/smoke.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/sparkles_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/speed.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/start_game.mcfunction +15 -0
- package/dist/data/capture_the_flag/function/start_game__foreach_t10.mcfunction +4 -0
- package/dist/data/capture_the_flag/function/strength.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/totem_at.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/weather_clear.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/weather_rain.mcfunction +1 -0
- package/dist/data/capture_the_flag/function/weather_thunder.mcfunction +1 -0
- package/dist/data/counter/function/__load.mcfunction +5 -0
- package/dist/data/counter/function/__tick.mcfunction +2 -0
- package/dist/data/counter/function/counter_tick/merge_2.mcfunction +1 -0
- package/dist/data/counter/function/counter_tick/then_0.mcfunction +3 -0
- package/dist/data/counter/function/counter_tick.mcfunction +11 -0
- package/dist/data/gcd2/function/__load.mcfunction +3 -0
- package/dist/data/gcd2/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd2/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd2/function/abs.mcfunction +7 -0
- package/dist/data/gcd2/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd2/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd2/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd2/function/gcd.mcfunction +14 -0
- package/dist/data/gcd3/function/__load.mcfunction +3 -0
- package/dist/data/gcd3/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd3/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd3/function/abs.mcfunction +7 -0
- package/dist/data/gcd3/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd3/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd3/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd3/function/gcd.mcfunction +14 -0
- package/dist/data/gcd3/function/test.mcfunction +7 -0
- package/dist/data/gcd3nm/function/__load.mcfunction +3 -0
- package/dist/data/gcd3nm/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd3nm/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd3nm/function/abs.mcfunction +7 -0
- package/dist/data/gcd3nm/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd3nm/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd3nm/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd3nm/function/gcd.mcfunction +14 -0
- package/dist/data/gcd3nm/function/test.mcfunction +7 -0
- package/dist/data/gcd_test/function/__load.mcfunction +3 -0
- package/dist/data/gcd_test/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/gcd_test/function/abs/then_0.mcfunction +5 -0
- package/dist/data/gcd_test/function/abs.mcfunction +7 -0
- package/dist/data/gcd_test/function/gcd/loop_body_1.mcfunction +7 -0
- package/dist/data/gcd_test/function/gcd/loop_check_0.mcfunction +5 -0
- package/dist/data/gcd_test/function/gcd/loop_exit_2.mcfunction +3 -0
- package/dist/data/gcd_test/function/gcd.mcfunction +14 -0
- package/dist/data/hunger_games/function/angry_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/barrier_wall.mcfunction +1 -0
- package/dist/data/hunger_games/function/buff_all.mcfunction +22 -0
- package/dist/data/hunger_games/function/check_alive.mcfunction +3 -0
- package/dist/data/hunger_games/function/check_alive__foreach_t3.mcfunction +10 -0
- package/dist/data/hunger_games/function/check_alive__foreach_t3__merge_1.mcfunction +1 -0
- package/dist/data/hunger_games/function/check_alive__foreach_t3__then_0.mcfunction +5 -0
- package/dist/data/hunger_games/function/check_border_damage.mcfunction +1 -0
- package/dist/data/hunger_games/function/check_border_damage__foreach_t0.mcfunction +1 -0
- package/dist/data/hunger_games/function/clear_area.mcfunction +1 -0
- package/dist/data/hunger_games/function/clear_effect.mcfunction +1 -0
- package/dist/data/hunger_games/function/clear_effects.mcfunction +1 -0
- package/dist/data/hunger_games/function/countdown_tick.mcfunction +1 -0
- package/dist/data/hunger_games/function/create_health_bar.mcfunction +24 -0
- package/dist/data/hunger_games/function/create_progress_bar.mcfunction +24 -0
- package/dist/data/hunger_games/function/create_progress_bar__const_0_0_0.mcfunction +21 -0
- package/dist/data/hunger_games/function/create_timer_bar.mcfunction +30 -0
- package/dist/data/hunger_games/function/declare_winner.mcfunction +13 -0
- package/dist/data/hunger_games/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/hunger_games/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/hunger_games/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/hunger_games/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/hunger_games/function/end_game_no_winner.mcfunction +3 -0
- package/dist/data/hunger_games/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/explosion_effect.mcfunction +1 -0
- package/dist/data/hunger_games/function/flames.mcfunction +1 -0
- package/dist/data/hunger_games/function/game_tick.mcfunction +1 -0
- package/dist/data/hunger_games/function/glass_box.mcfunction +2 -0
- package/dist/data/hunger_games/function/glow.mcfunction +1 -0
- package/dist/data/hunger_games/function/happy_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/hearts_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/hide_bar.mcfunction +4 -0
- package/dist/data/hunger_games/function/init.mcfunction +7 -0
- package/dist/data/hunger_games/function/invisible.mcfunction +1 -0
- package/dist/data/hunger_games/function/jump.mcfunction +1 -0
- package/dist/data/hunger_games/function/load.mcfunction +1 -0
- package/dist/data/hunger_games/function/main_game_tick.mcfunction +4 -0
- package/dist/data/hunger_games/function/night_vision.mcfunction +1 -0
- package/dist/data/hunger_games/function/on_player_death.mcfunction +14 -0
- package/dist/data/hunger_games/function/portal_effect.mcfunction +1 -0
- package/dist/data/hunger_games/function/regen.mcfunction +1 -0
- package/dist/data/hunger_games/function/remove_bar.mcfunction +3 -0
- package/dist/data/hunger_games/function/remove_bar__const_0.mcfunction +2 -0
- package/dist/data/hunger_games/function/reset_game.mcfunction +3 -0
- package/dist/data/hunger_games/function/reset_game__foreach_t0.mcfunction +9 -0
- package/dist/data/hunger_games/function/resistance.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_day.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_easy.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_hard.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_midnight.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_night.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_noon.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_normal.mcfunction +1 -0
- package/dist/data/hunger_games/function/set_peaceful.mcfunction +1 -0
- package/dist/data/hunger_games/function/show_bar.mcfunction +4 -0
- package/dist/data/hunger_games/function/shrink_border.mcfunction +1 -0
- package/dist/data/hunger_games/function/slow_fall.mcfunction +1 -0
- package/dist/data/hunger_games/function/smoke.mcfunction +1 -0
- package/dist/data/hunger_games/function/sparkles_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/speed.mcfunction +1 -0
- package/dist/data/hunger_games/function/start_countdown.mcfunction +3 -0
- package/dist/data/hunger_games/function/start_countdown__foreach_t0.mcfunction +16 -0
- package/dist/data/hunger_games/function/start_game.mcfunction +4 -0
- package/dist/data/hunger_games/function/start_game__foreach_t3.mcfunction +4 -0
- package/dist/data/hunger_games/function/strength.mcfunction +1 -0
- package/dist/data/hunger_games/function/totem_at.mcfunction +1 -0
- package/dist/data/hunger_games/function/update_bar.mcfunction +5 -0
- package/dist/data/hunger_games/function/update_bar__const_0_0.mcfunction +3 -0
- package/dist/data/hunger_games/function/update_bar_color.mcfunction +7 -0
- package/dist/data/hunger_games/function/update_bar_color__else_2.mcfunction +5 -0
- package/dist/data/hunger_games/function/update_bar_color__else_5.mcfunction +4 -0
- package/dist/data/hunger_games/function/update_bar_color__merge_1.mcfunction +1 -0
- package/dist/data/hunger_games/function/update_bar_color__merge_4.mcfunction +1 -0
- package/dist/data/hunger_games/function/update_bar_color__then_0.mcfunction +4 -0
- package/dist/data/hunger_games/function/update_bar_color__then_3.mcfunction +4 -0
- package/dist/data/hunger_games/function/weather_clear.mcfunction +1 -0
- package/dist/data/hunger_games/function/weather_rain.mcfunction +1 -0
- package/dist/data/hunger_games/function/weather_thunder.mcfunction +1 -0
- package/dist/data/isqrttest/function/__load.mcfunction +6 -0
- package/dist/data/isqrttest/function/isqrt/loop_body_4.mcfunction +12 -0
- package/dist/data/isqrttest/function/isqrt/loop_check_3.mcfunction +5 -0
- package/dist/data/isqrttest/function/isqrt/loop_exit_5.mcfunction +3 -0
- package/dist/data/isqrttest/function/isqrt/merge_2.mcfunction +4 -0
- package/dist/data/isqrttest/function/isqrt/merge_8.mcfunction +6 -0
- package/dist/data/isqrttest/function/isqrt/then_0.mcfunction +3 -0
- package/dist/data/isqrttest/function/isqrt/then_6.mcfunction +3 -0
- package/dist/data/isqrttest/function/isqrt.mcfunction +7 -0
- package/dist/data/isqrttest/function/test.mcfunction +6 -0
- package/dist/data/macrotest/function/get_element.mcfunction +2 -0
- package/dist/data/macrotest/function/load.mcfunction +1 -0
- package/dist/data/macrotest/function/test_dynamic_index.mcfunction +2 -0
- package/dist/data/mathdemo/function/__load.mcfunction +2 -0
- package/dist/data/mathdemo/function/_atan_init.mcfunction +4 -0
- package/dist/data/mathdemo/function/_math_init.mcfunction +4 -0
- package/dist/data/mathdemo/function/add2d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/add2d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/add3d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/add3d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/add3d_z.mcfunction +5 -0
- package/dist/data/mathdemo/function/air_drag_fx.mcfunction +2 -0
- package/dist/data/mathdemo/function/apply_drag.mcfunction +8 -0
- package/dist/data/mathdemo/function/apply_gravity.mcfunction +6 -0
- package/dist/data/mathdemo/function/approx_eq.mcfunction +10 -0
- package/dist/data/mathdemo/function/approx_eq__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/approx_eq__merge_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/approx_eq__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/approx_eq__then_2.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed.mcfunction +6 -0
- package/dist/data/mathdemo/function/atan2_fixed__else_30.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__loop_body_26.mcfunction +21 -0
- package/dist/data/mathdemo/function/atan2_fixed__loop_exit_27.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__loop_header_25.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_10.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_12.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_16.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_18.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_20.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_22.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_24.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_29.mcfunction +1 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_32.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_34.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_36.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_40.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__merge_6.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_11.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_15.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_17.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_19.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_2.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_21.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_23.mcfunction +5 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_28.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_31.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_33.mcfunction +4 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_35.mcfunction +1 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_39.mcfunction +3 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_5.mcfunction +2 -0
- package/dist/data/mathdemo/function/atan2_fixed__then_9.mcfunction +4 -0
- package/dist/data/mathdemo/function/bounce_v.mcfunction +10 -0
- package/dist/data/mathdemo/function/cbrt_fx.mcfunction +5 -0
- package/dist/data/mathdemo/function/cbrt_fx__loop_body_6.mcfunction +7 -0
- package/dist/data/mathdemo/function/cbrt_fx__loop_exit_7.mcfunction +1 -0
- package/dist/data/mathdemo/function/cbrt_fx__loop_header_5.mcfunction +4 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_1.mcfunction +8 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_11.mcfunction +5 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_13.mcfunction +4 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_4.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__merge_9.mcfunction +13 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_10.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_12.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/cbrt_fx__then_8.mcfunction +2 -0
- package/dist/data/mathdemo/function/ceil_div.mcfunction +9 -0
- package/dist/data/mathdemo/function/chebyshev.mcfunction +14 -0
- package/dist/data/mathdemo/function/chebyshev3d.mcfunction +19 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_5.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_7.mcfunction +3 -0
- package/dist/data/mathdemo/function/chebyshev3d__merge_9.mcfunction +1 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_6.mcfunction +2 -0
- package/dist/data/mathdemo/function/chebyshev3d__then_8.mcfunction +2 -0
- package/dist/data/mathdemo/function/chebyshev__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev__merge_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/chebyshev__merge_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/chebyshev__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/chebyshev__then_4.mcfunction +1 -0
- package/dist/data/mathdemo/function/circular_x.mcfunction +14 -0
- package/dist/data/mathdemo/function/circular_z.mcfunction +14 -0
- package/dist/data/mathdemo/function/clamp_velocity.mcfunction +5 -0
- package/dist/data/mathdemo/function/clamp_velocity__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/clamp_velocity__merge_4.mcfunction +1 -0
- package/dist/data/mathdemo/function/clamp_velocity__then_0.mcfunction +1 -0
- package/dist/data/mathdemo/function/clamp_velocity__then_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations.mcfunction +6 -0
- package/dist/data/mathdemo/function/combinations__loop_body_9.mcfunction +15 -0
- package/dist/data/mathdemo/function/combinations__loop_exit_10.mcfunction +1 -0
- package/dist/data/mathdemo/function/combinations__loop_header_8.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations__merge_4.mcfunction +6 -0
- package/dist/data/mathdemo/function/combinations__merge_7.mcfunction +3 -0
- package/dist/data/mathdemo/function/combinations__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/combinations__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/combinations__then_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/cos_fixed.mcfunction +7 -0
- package/dist/data/mathdemo/function/cross2d.mcfunction +11 -0
- package/dist/data/mathdemo/function/cross3d_x.mcfunction +11 -0
- package/dist/data/mathdemo/function/cross3d_y.mcfunction +11 -0
- package/dist/data/mathdemo/function/cross3d_z.mcfunction +11 -0
- package/dist/data/mathdemo/function/demo_easing.mcfunction +12 -0
- package/dist/data/mathdemo/function/demo_math.mcfunction +16 -0
- package/dist/data/mathdemo/function/demo_noise.mcfunction +14 -0
- package/dist/data/mathdemo/function/demo_physics.mcfunction +11 -0
- package/dist/data/mathdemo/function/demo_physics__loop_body_1.mcfunction +9 -0
- package/dist/data/mathdemo/function/demo_physics__loop_body_4.mcfunction +18 -0
- package/dist/data/mathdemo/function/demo_physics__loop_exit_2.mcfunction +6 -0
- package/dist/data/mathdemo/function/demo_physics__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/demo_physics__loop_header_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/demo_physics__loop_header_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/distance2d_fixed.mcfunction +13 -0
- package/dist/data/mathdemo/function/distance3d_fixed.mcfunction +18 -0
- package/dist/data/mathdemo/function/divfix.mcfunction +6 -0
- package/dist/data/mathdemo/function/divfix__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/divfix__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/dot2d.mcfunction +11 -0
- package/dist/data/mathdemo/function/dot3d.mcfunction +17 -0
- package/dist/data/mathdemo/function/ease_in_back.mcfunction +26 -0
- package/dist/data/mathdemo/function/ease_in_bounce.mcfunction +9 -0
- package/dist/data/mathdemo/function/ease_in_cubic.mcfunction +12 -0
- package/dist/data/mathdemo/function/ease_in_expo.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_expo__merge_1.mcfunction +11 -0
- package/dist/data/mathdemo/function/ease_in_expo__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_in_out_back.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_back__merge_1.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_in_out_back__then_0.mcfunction +10 -0
- package/dist/data/mathdemo/function/ease_in_out_bounce.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_bounce__merge_1.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_in_out_bounce__then_0.mcfunction +10 -0
- package/dist/data/mathdemo/function/ease_in_out_cubic.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_cubic__merge_1.mcfunction +17 -0
- package/dist/data/mathdemo/function/ease_in_out_cubic__then_0.mcfunction +13 -0
- package/dist/data/mathdemo/function/ease_in_out_quad.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_quad__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/ease_in_out_quad__then_0.mcfunction +8 -0
- package/dist/data/mathdemo/function/ease_in_out_sine.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_out_sine__merge_1.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_in_out_sine__then_0.mcfunction +10 -0
- package/dist/data/mathdemo/function/ease_in_quad.mcfunction +7 -0
- package/dist/data/mathdemo/function/ease_in_quad__const_5000.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_in_quart.mcfunction +12 -0
- package/dist/data/mathdemo/function/ease_in_sine.mcfunction +30 -0
- package/dist/data/mathdemo/function/ease_linear.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_linear__const_5000.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_out_back.mcfunction +9 -0
- package/dist/data/mathdemo/function/ease_out_back__const_5000.mcfunction +7 -0
- package/dist/data/mathdemo/function/ease_out_bounce.mcfunction +6 -0
- package/dist/data/mathdemo/function/ease_out_bounce__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/ease_out_bounce__merge_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/ease_out_bounce__merge_7.mcfunction +15 -0
- package/dist/data/mathdemo/function/ease_out_bounce__then_0.mcfunction +11 -0
- package/dist/data/mathdemo/function/ease_out_bounce__then_3.mcfunction +15 -0
- package/dist/data/mathdemo/function/ease_out_bounce__then_6.mcfunction +15 -0
- package/dist/data/mathdemo/function/ease_out_cubic.mcfunction +16 -0
- package/dist/data/mathdemo/function/ease_out_cubic__const_5000.mcfunction +14 -0
- package/dist/data/mathdemo/function/ease_out_expo.mcfunction +5 -0
- package/dist/data/mathdemo/function/ease_out_expo__merge_1.mcfunction +8 -0
- package/dist/data/mathdemo/function/ease_out_expo__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/ease_out_quad.mcfunction +11 -0
- package/dist/data/mathdemo/function/ease_out_quart.mcfunction +16 -0
- package/dist/data/mathdemo/function/ease_out_sine.mcfunction +9 -0
- package/dist/data/mathdemo/function/ease_smooth.mcfunction +23 -0
- package/dist/data/mathdemo/function/ease_smoother.mcfunction +41 -0
- package/dist/data/mathdemo/function/exp_fx.mcfunction +16 -0
- package/dist/data/mathdemo/function/exp_fx__loop_body_10.mcfunction +8 -0
- package/dist/data/mathdemo/function/exp_fx__loop_body_5.mcfunction +8 -0
- package/dist/data/mathdemo/function/exp_fx__loop_exit_11.mcfunction +1 -0
- package/dist/data/mathdemo/function/exp_fx__loop_exit_6.mcfunction +1 -0
- package/dist/data/mathdemo/function/exp_fx__loop_header_4.mcfunction +3 -0
- package/dist/data/mathdemo/function/exp_fx__loop_header_9.mcfunction +3 -0
- package/dist/data/mathdemo/function/exp_fx__merge_1.mcfunction +47 -0
- package/dist/data/mathdemo/function/exp_fx__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/exp_fx__merge_8.mcfunction +1 -0
- package/dist/data/mathdemo/function/exp_fx__then_0.mcfunction +7 -0
- package/dist/data/mathdemo/function/exp_fx__then_2.mcfunction +2 -0
- package/dist/data/mathdemo/function/exp_fx__then_7.mcfunction +5 -0
- package/dist/data/mathdemo/function/factorial.mcfunction +5 -0
- package/dist/data/mathdemo/function/factorial__loop_body_4.mcfunction +7 -0
- package/dist/data/mathdemo/function/factorial__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/factorial__loop_header_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/factorial__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/factorial__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/fbm_1d.mcfunction +9 -0
- package/dist/data/mathdemo/function/fbm_1d__loop_body_1.mcfunction +33 -0
- package/dist/data/mathdemo/function/fbm_1d__loop_exit_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/fbm_1d__loop_header_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/fbm_1d__merge_4.mcfunction +6 -0
- package/dist/data/mathdemo/function/fbm_1d__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/fbm_2d.mcfunction +10 -0
- package/dist/data/mathdemo/function/fbm_2d__loop_body_1.mcfunction +39 -0
- package/dist/data/mathdemo/function/fbm_2d__loop_exit_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/fbm_2d__loop_header_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/fbm_2d__merge_4.mcfunction +6 -0
- package/dist/data/mathdemo/function/fbm_2d__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/friction_decel.mcfunction +5 -0
- package/dist/data/mathdemo/function/friction_decel__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/friction_decel__merge_4.mcfunction +2 -0
- package/dist/data/mathdemo/function/friction_decel__then_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/friction_decel__then_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/gamma_int.mcfunction +5 -0
- package/dist/data/mathdemo/function/gamma_int__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/gamma_int__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/gcd.mcfunction +7 -0
- package/dist/data/mathdemo/function/gcd__loop_body_5.mcfunction +5 -0
- package/dist/data/mathdemo/function/gcd__loop_exit_6.mcfunction +1 -0
- package/dist/data/mathdemo/function/gcd__loop_header_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/gcd__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/gcd__merge_3.mcfunction +1 -0
- package/dist/data/mathdemo/function/gcd__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/gcd__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/gravity_fx.mcfunction +2 -0
- package/dist/data/mathdemo/function/hash_1d.mcfunction +15 -0
- package/dist/data/mathdemo/function/hash_1d_pos.mcfunction +9 -0
- package/dist/data/mathdemo/function/hash_1d_pos__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/hash_1d_pos__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/hash_2d.mcfunction +11 -0
- package/dist/data/mathdemo/function/hash_2d_pos.mcfunction +11 -0
- package/dist/data/mathdemo/function/hash_2d_pos__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/hash_2d_pos__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/impact_velocity.mcfunction +5 -0
- package/dist/data/mathdemo/function/impact_velocity__merge_1.mcfunction +16 -0
- package/dist/data/mathdemo/function/impact_velocity__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/is_grounded.mcfunction +5 -0
- package/dist/data/mathdemo/function/is_grounded__merge_1.mcfunction +2 -0
- package/dist/data/mathdemo/function/is_grounded__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/isqrt.mcfunction +5 -0
- package/dist/data/mathdemo/function/isqrt__loop_body_10.mcfunction +8 -0
- package/dist/data/mathdemo/function/isqrt__loop_body_13.mcfunction +11 -0
- package/dist/data/mathdemo/function/isqrt__loop_body_7.mcfunction +8 -0
- package/dist/data/mathdemo/function/isqrt__loop_exit_11.mcfunction +2 -0
- package/dist/data/mathdemo/function/isqrt__loop_exit_14.mcfunction +1 -0
- package/dist/data/mathdemo/function/isqrt__loop_exit_8.mcfunction +9 -0
- package/dist/data/mathdemo/function/isqrt__loop_header_12.mcfunction +4 -0
- package/dist/data/mathdemo/function/isqrt__loop_header_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/isqrt__loop_header_9.mcfunction +3 -0
- package/dist/data/mathdemo/function/isqrt__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/isqrt__merge_16.mcfunction +5 -0
- package/dist/data/mathdemo/function/isqrt__merge_4.mcfunction +3 -0
- package/dist/data/mathdemo/function/isqrt__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/isqrt__then_15.mcfunction +1 -0
- package/dist/data/mathdemo/function/isqrt__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/lcm.mcfunction +11 -0
- package/dist/data/mathdemo/function/lcm__merge_1.mcfunction +5 -0
- package/dist/data/mathdemo/function/lcm__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/length2d_fixed.mcfunction +15 -0
- package/dist/data/mathdemo/function/length3d_fixed.mcfunction +20 -0
- package/dist/data/mathdemo/function/lerp.mcfunction +13 -0
- package/dist/data/mathdemo/function/lerp2d_x.mcfunction +13 -0
- package/dist/data/mathdemo/function/lerp2d_y.mcfunction +13 -0
- package/dist/data/mathdemo/function/ln.mcfunction +9 -0
- package/dist/data/mathdemo/function/ln__loop_body_1.mcfunction +8 -0
- package/dist/data/mathdemo/function/ln__loop_body_4.mcfunction +8 -0
- package/dist/data/mathdemo/function/ln__loop_exit_2.mcfunction +1 -0
- package/dist/data/mathdemo/function/ln__loop_exit_5.mcfunction +37 -0
- package/dist/data/mathdemo/function/ln__loop_header_0.mcfunction +3 -0
- package/dist/data/mathdemo/function/ln__loop_header_3.mcfunction +6 -0
- package/dist/data/mathdemo/function/load.mcfunction +1 -0
- package/dist/data/mathdemo/function/log10_fx.mcfunction +11 -0
- package/dist/data/mathdemo/function/log2_fx.mcfunction +11 -0
- package/dist/data/mathdemo/function/log2_int.mcfunction +5 -0
- package/dist/data/mathdemo/function/log2_int__loop_body_4.mcfunction +8 -0
- package/dist/data/mathdemo/function/log2_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/log2_int__loop_header_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/log2_int__merge_1.mcfunction +3 -0
- package/dist/data/mathdemo/function/log2_int__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/loga_fx.mcfunction +10 -0
- package/dist/data/mathdemo/function/loga_fx__merge_1.mcfunction +9 -0
- package/dist/data/mathdemo/function/loga_fx__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/manhattan.mcfunction +14 -0
- package/dist/data/mathdemo/function/manhattan3d.mcfunction +19 -0
- package/dist/data/mathdemo/function/manhattan3d__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__merge_5.mcfunction +5 -0
- package/dist/data/mathdemo/function/manhattan3d__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan3d__then_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan__merge_3.mcfunction +3 -0
- package/dist/data/mathdemo/function/manhattan__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/manhattan__then_2.mcfunction +4 -0
- package/dist/data/mathdemo/function/map.mcfunction +12 -0
- package/dist/data/mathdemo/function/map__merge_1.mcfunction +11 -0
- package/dist/data/mathdemo/function/map__then_0.mcfunction +1 -0
- package/dist/data/mathdemo/function/mulfix.mcfunction +8 -0
- package/dist/data/mathdemo/function/neg2d_x.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg2d_y.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg3d_x.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg3d_y.mcfunction +4 -0
- package/dist/data/mathdemo/function/neg3d_z.mcfunction +4 -0
- package/dist/data/mathdemo/function/normalize2d_x.mcfunction +11 -0
- package/dist/data/mathdemo/function/normalize2d_x__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/normalize2d_x__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/normalize2d_y.mcfunction +11 -0
- package/dist/data/mathdemo/function/normalize2d_y__merge_1.mcfunction +6 -0
- package/dist/data/mathdemo/function/normalize2d_y__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/pow_int.mcfunction +6 -0
- package/dist/data/mathdemo/function/pow_int__loop_body_4.mcfunction +7 -0
- package/dist/data/mathdemo/function/pow_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/mathdemo/function/pow_int__loop_header_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/pow_int__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/pow_int__merge_7.mcfunction +8 -0
- package/dist/data/mathdemo/function/pow_int__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/pow_int__then_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/projectile_land_t.mcfunction +5 -0
- package/dist/data/mathdemo/function/projectile_land_t__merge_1.mcfunction +7 -0
- package/dist/data/mathdemo/function/projectile_land_t__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/projectile_max_height.mcfunction +10 -0
- package/dist/data/mathdemo/function/projectile_max_height__const_200.mcfunction +8 -0
- package/dist/data/mathdemo/function/projectile_vy.mcfunction +9 -0
- package/dist/data/mathdemo/function/projectile_x.mcfunction +8 -0
- package/dist/data/mathdemo/function/projectile_y.mcfunction +19 -0
- package/dist/data/mathdemo/function/quadratic_disc.mcfunction +12 -0
- package/dist/data/mathdemo/function/quadratic_x1.mcfunction +7 -0
- package/dist/data/mathdemo/function/quadratic_x1__merge_1.mcfunction +13 -0
- package/dist/data/mathdemo/function/quadratic_x1__merge_4.mcfunction +15 -0
- package/dist/data/mathdemo/function/quadratic_x1__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/quadratic_x1__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/quadratic_x2.mcfunction +7 -0
- package/dist/data/mathdemo/function/quadratic_x2__merge_1.mcfunction +13 -0
- package/dist/data/mathdemo/function/quadratic_x2__merge_4.mcfunction +15 -0
- package/dist/data/mathdemo/function/quadratic_x2__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/quadratic_x2__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/rotate2d_x.mcfunction +20 -0
- package/dist/data/mathdemo/function/rotate2d_y.mcfunction +20 -0
- package/dist/data/mathdemo/function/scale2d_x.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale2d_y.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale3d_x.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale3d_y.mcfunction +8 -0
- package/dist/data/mathdemo/function/scale3d_z.mcfunction +8 -0
- package/dist/data/mathdemo/function/sign.mcfunction +5 -0
- package/dist/data/mathdemo/function/sign__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/sign__merge_4.mcfunction +2 -0
- package/dist/data/mathdemo/function/sign__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/sign__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/sin_fixed.mcfunction +9 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_1.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_3.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_6.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__merge_9.mcfunction +10 -0
- package/dist/data/mathdemo/function/sin_fixed__then_0.mcfunction +4 -0
- package/dist/data/mathdemo/function/sin_fixed__then_2.mcfunction +6 -0
- package/dist/data/mathdemo/function/sin_fixed__then_5.mcfunction +8 -0
- package/dist/data/mathdemo/function/sin_fixed__then_8.mcfunction +10 -0
- package/dist/data/mathdemo/function/smootherstep.mcfunction +10 -0
- package/dist/data/mathdemo/function/smootherstep__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/smootherstep__merge_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/smootherstep__merge_6.mcfunction +27 -0
- package/dist/data/mathdemo/function/smootherstep__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/smootherstep__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/smootherstep__then_5.mcfunction +2 -0
- package/dist/data/mathdemo/function/smoothstep.mcfunction +10 -0
- package/dist/data/mathdemo/function/smoothstep__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/smoothstep__merge_4.mcfunction +4 -0
- package/dist/data/mathdemo/function/smoothstep__merge_6.mcfunction +15 -0
- package/dist/data/mathdemo/function/smoothstep__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/smoothstep__then_3.mcfunction +2 -0
- package/dist/data/mathdemo/function/smoothstep__then_5.mcfunction +2 -0
- package/dist/data/mathdemo/function/solve2x2_x.mcfunction +17 -0
- package/dist/data/mathdemo/function/solve2x2_x__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/solve2x2_x__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/solve2x2_y.mcfunction +17 -0
- package/dist/data/mathdemo/function/solve2x2_y__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/solve2x2_y__then_0.mcfunction +2 -0
- package/dist/data/mathdemo/function/spring_force.mcfunction +11 -0
- package/dist/data/mathdemo/function/spring_update_v.mcfunction +18 -0
- package/dist/data/mathdemo/function/sqrt_fixed.mcfunction +8 -0
- package/dist/data/mathdemo/function/sqrt_fx.mcfunction +11 -0
- package/dist/data/mathdemo/function/sqrt_fx__const_20000.mcfunction +8 -0
- package/dist/data/mathdemo/function/start.mcfunction +6 -0
- package/dist/data/mathdemo/function/sub2d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub2d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub3d_x.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub3d_y.mcfunction +5 -0
- package/dist/data/mathdemo/function/sub3d_z.mcfunction +5 -0
- package/dist/data/mathdemo/function/terrain_height.mcfunction +24 -0
- package/dist/data/mathdemo/function/terrain_height__const_0_0_64_20.mcfunction +17 -0
- package/dist/data/mathdemo/function/terrain_height__const_10_5_64_20.mcfunction +17 -0
- package/dist/data/mathdemo/function/update_pos.mcfunction +5 -0
- package/dist/data/mathdemo/function/value_noise_1d.mcfunction +13 -0
- package/dist/data/mathdemo/function/value_noise_1d__merge_1.mcfunction +39 -0
- package/dist/data/mathdemo/function/value_noise_1d__then_0.mcfunction +7 -0
- package/dist/data/mathdemo/function/value_noise_2d.mcfunction +14 -0
- package/dist/data/mathdemo/function/value_noise_2d__merge_1.mcfunction +12 -0
- package/dist/data/mathdemo/function/value_noise_2d__merge_3.mcfunction +98 -0
- package/dist/data/mathdemo/function/value_noise_2d__then_0.mcfunction +7 -0
- package/dist/data/mathdemo/function/value_noise_2d__then_2.mcfunction +7 -0
- package/dist/data/mathdemo/function/water_drag_fx.mcfunction +2 -0
- package/dist/data/mathtest/function/__load.mcfunction +3 -0
- package/dist/data/mathtest/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/mathtest/function/abs/then_0.mcfunction +5 -0
- package/dist/data/mathtest/function/abs.mcfunction +6 -0
- package/dist/data/mathtest/function/test.mcfunction +5 -0
- package/dist/data/minecraft/tags/function/load.json +6 -0
- package/dist/data/minecraft/tags/function/tick.json +5 -0
- package/dist/data/mypack/function/__load.mcfunction +13 -0
- package/dist/data/mypack/function/_atan_init.mcfunction +2 -0
- package/dist/data/mypack/function/abs/merge_2.mcfunction +3 -0
- package/dist/data/mypack/function/abs/then_0.mcfunction +5 -0
- package/dist/data/mypack/function/abs.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/__sgi_1.mcfunction +2 -0
- package/dist/data/mypack/function/atan2_fixed/else_34.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/loop_body_31.mcfunction +19 -0
- package/dist/data/mypack/function/atan2_fixed/loop_check_30.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/loop_exit_32.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_11.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_14.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/merge_17.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_2.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_20.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_23.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_26.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/merge_29.mcfunction +4 -0
- package/dist/data/mypack/function/atan2_fixed/merge_38.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_41.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_44.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_47.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_5.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/merge_8.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_0.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_12.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_15.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_18.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_21.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_24.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_27.mcfunction +6 -0
- package/dist/data/mypack/function/atan2_fixed/then_3.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_33.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_36.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_39.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_42.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_45.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed/then_6.mcfunction +3 -0
- package/dist/data/mypack/function/atan2_fixed/then_9.mcfunction +5 -0
- package/dist/data/mypack/function/atan2_fixed.mcfunction +7 -0
- package/dist/data/mypack/function/my_game.mcfunction +10 -0
- package/dist/data/parkour_race/function/angry_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/barrier_wall.mcfunction +1 -0
- package/dist/data/parkour_race/function/buff_all.mcfunction +22 -0
- package/dist/data/parkour_race/function/check_checkpoints.mcfunction +11 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t11.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t13.mcfunction +3 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t5.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t7.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__exec_t9.mcfunction +4 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_1.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_3.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_5.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_7.mcfunction +5 -0
- package/dist/data/parkour_race/function/check_checkpoints__merge_9.mcfunction +1 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_0.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_2.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_4.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_6.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_checkpoints__then_8.mcfunction +2 -0
- package/dist/data/parkour_race/function/check_fall.mcfunction +1 -0
- package/dist/data/parkour_race/function/check_fall__exec_t1.mcfunction +10 -0
- package/dist/data/parkour_race/function/clear_area.mcfunction +1 -0
- package/dist/data/parkour_race/function/clear_effect.mcfunction +1 -0
- package/dist/data/parkour_race/function/clear_effects.mcfunction +1 -0
- package/dist/data/parkour_race/function/create_health_bar.mcfunction +24 -0
- package/dist/data/parkour_race/function/create_progress_bar.mcfunction +24 -0
- package/dist/data/parkour_race/function/create_timer_bar.mcfunction +30 -0
- package/dist/data/parkour_race/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/parkour_race/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/parkour_race/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/parkour_race/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/parkour_race/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/explosion_effect.mcfunction +1 -0
- package/dist/data/parkour_race/function/finish_race.mcfunction +20 -0
- package/dist/data/parkour_race/function/finish_race__else_2.mcfunction +4 -0
- package/dist/data/parkour_race/function/finish_race__else_5.mcfunction +3 -0
- package/dist/data/parkour_race/function/finish_race__merge_1.mcfunction +3 -0
- package/dist/data/parkour_race/function/finish_race__merge_4.mcfunction +1 -0
- package/dist/data/parkour_race/function/finish_race__then_0.mcfunction +8 -0
- package/dist/data/parkour_race/function/finish_race__then_3.mcfunction +10 -0
- package/dist/data/parkour_race/function/flames.mcfunction +1 -0
- package/dist/data/parkour_race/function/glass_box.mcfunction +2 -0
- package/dist/data/parkour_race/function/glow.mcfunction +1 -0
- package/dist/data/parkour_race/function/happy_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/hearts_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/hide_bar.mcfunction +4 -0
- package/dist/data/parkour_race/function/init.mcfunction +18 -0
- package/dist/data/parkour_race/function/invisible.mcfunction +1 -0
- package/dist/data/parkour_race/function/jump.mcfunction +1 -0
- package/dist/data/parkour_race/function/load.mcfunction +1 -0
- package/dist/data/parkour_race/function/night_vision.mcfunction +1 -0
- package/dist/data/parkour_race/function/portal_effect.mcfunction +1 -0
- package/dist/data/parkour_race/function/quit_race.mcfunction +10 -0
- package/dist/data/parkour_race/function/quit_race__merge_1.mcfunction +1 -0
- package/dist/data/parkour_race/function/quit_race__then_0.mcfunction +11 -0
- package/dist/data/parkour_race/function/race_tick.mcfunction +1 -0
- package/dist/data/parkour_race/function/race_tick__foreach_t0.mcfunction +10 -0
- package/dist/data/parkour_race/function/race_tick__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/parkour_race/function/race_tick__foreach_t0__then_0.mcfunction +13 -0
- package/dist/data/parkour_race/function/reach_checkpoint.mcfunction +11 -0
- package/dist/data/parkour_race/function/regen.mcfunction +1 -0
- package/dist/data/parkour_race/function/remove_bar.mcfunction +3 -0
- package/dist/data/parkour_race/function/resistance.mcfunction +1 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint.mcfunction +7 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_1.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_3.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_5.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_7.mcfunction +5 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__merge_9.mcfunction +1 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_0.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_2.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_4.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_6.mcfunction +6 -0
- package/dist/data/parkour_race/function/respawn_at_checkpoint__then_8.mcfunction +6 -0
- package/dist/data/parkour_race/function/set_day.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_easy.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_hard.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_midnight.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_night.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_noon.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_normal.mcfunction +1 -0
- package/dist/data/parkour_race/function/set_peaceful.mcfunction +1 -0
- package/dist/data/parkour_race/function/show_bar.mcfunction +4 -0
- package/dist/data/parkour_race/function/show_leaderboard.mcfunction +4 -0
- package/dist/data/parkour_race/function/slow_fall.mcfunction +1 -0
- package/dist/data/parkour_race/function/smoke.mcfunction +1 -0
- package/dist/data/parkour_race/function/sparkles_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/speed.mcfunction +1 -0
- package/dist/data/parkour_race/function/start_race.mcfunction +10 -0
- package/dist/data/parkour_race/function/start_race__merge_1.mcfunction +23 -0
- package/dist/data/parkour_race/function/start_race__then_0.mcfunction +1 -0
- package/dist/data/parkour_race/function/strength.mcfunction +1 -0
- package/dist/data/parkour_race/function/totem_at.mcfunction +1 -0
- package/dist/data/parkour_race/function/update_bar.mcfunction +5 -0
- package/dist/data/parkour_race/function/update_bar_color.mcfunction +7 -0
- package/dist/data/parkour_race/function/update_bar_color__else_2.mcfunction +5 -0
- package/dist/data/parkour_race/function/update_bar_color__else_5.mcfunction +4 -0
- package/dist/data/parkour_race/function/update_bar_color__merge_1.mcfunction +1 -0
- package/dist/data/parkour_race/function/update_bar_color__merge_4.mcfunction +1 -0
- package/dist/data/parkour_race/function/update_bar_color__then_0.mcfunction +4 -0
- package/dist/data/parkour_race/function/update_bar_color__then_3.mcfunction +4 -0
- package/dist/data/parkour_race/function/weather_clear.mcfunction +1 -0
- package/dist/data/parkour_race/function/weather_rain.mcfunction +1 -0
- package/dist/data/parkour_race/function/weather_thunder.mcfunction +1 -0
- package/dist/data/quiz/function/__load.mcfunction +16 -0
- package/dist/data/quiz/function/__tick.mcfunction +6 -0
- package/dist/data/quiz/function/__trigger_quiz_a_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/__trigger_quiz_b_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/__trigger_quiz_c_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/__trigger_quiz_start_dispatch.mcfunction +4 -0
- package/dist/data/quiz/function/answer_a.mcfunction +4 -0
- package/dist/data/quiz/function/answer_b.mcfunction +4 -0
- package/dist/data/quiz/function/answer_c.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/else_1.mcfunction +5 -0
- package/dist/data/quiz/function/ask_question/else_4.mcfunction +5 -0
- package/dist/data/quiz/function/ask_question/else_7.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/merge_2.mcfunction +1 -0
- package/dist/data/quiz/function/ask_question/merge_5.mcfunction +2 -0
- package/dist/data/quiz/function/ask_question/merge_8.mcfunction +2 -0
- package/dist/data/quiz/function/ask_question/then_0.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/then_3.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question/then_6.mcfunction +4 -0
- package/dist/data/quiz/function/ask_question.mcfunction +7 -0
- package/dist/data/quiz/function/finish_quiz.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer/else_1.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/else_10.mcfunction +3 -0
- package/dist/data/quiz/function/handle_answer/else_16.mcfunction +3 -0
- package/dist/data/quiz/function/handle_answer/else_4.mcfunction +3 -0
- package/dist/data/quiz/function/handle_answer/else_7.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/merge_11.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_14.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_17.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_2.mcfunction +8 -0
- package/dist/data/quiz/function/handle_answer/merge_5.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/merge_8.mcfunction +2 -0
- package/dist/data/quiz/function/handle_answer/then_0.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/then_12.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/then_15.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer/then_3.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer/then_6.mcfunction +5 -0
- package/dist/data/quiz/function/handle_answer/then_9.mcfunction +6 -0
- package/dist/data/quiz/function/handle_answer.mcfunction +11 -0
- package/dist/data/quiz/function/start_quiz.mcfunction +5 -0
- package/dist/data/rawtest/function/load.mcfunction +1 -0
- package/dist/data/rawtest/function/test.mcfunction +2 -0
- package/dist/data/reqtest/function/__load.mcfunction +4 -0
- package/dist/data/reqtest/function/_table_init.mcfunction +2 -0
- package/dist/data/reqtest/function/no_trig.mcfunction +3 -0
- package/dist/data/reqtest/function/use_table.mcfunction +4 -0
- package/dist/data/reqtest2/function/__load.mcfunction +3 -0
- package/dist/data/reqtest2/function/no_trig.mcfunction +3 -0
- package/dist/data/runtime/function/__load.mcfunction +5 -0
- package/dist/data/runtime/function/__tick.mcfunction +2 -0
- package/dist/data/runtime/function/counter_tick/then_0.mcfunction +3 -0
- package/dist/data/runtime/function/counter_tick.mcfunction +13 -0
- package/dist/data/shop/function/__load.mcfunction +7 -0
- package/dist/data/shop/function/__tick.mcfunction +3 -0
- package/dist/data/shop/function/__trigger_shop_buy_dispatch.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase/else_1.mcfunction +5 -0
- package/dist/data/shop/function/complete_purchase/else_4.mcfunction +5 -0
- package/dist/data/shop/function/complete_purchase/else_7.mcfunction +3 -0
- package/dist/data/shop/function/complete_purchase/merge_2.mcfunction +2 -0
- package/dist/data/shop/function/complete_purchase/merge_5.mcfunction +2 -0
- package/dist/data/shop/function/complete_purchase/merge_8.mcfunction +2 -0
- package/dist/data/shop/function/complete_purchase/then_0.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase/then_3.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase/then_6.mcfunction +4 -0
- package/dist/data/shop/function/complete_purchase.mcfunction +7 -0
- package/dist/data/shop/function/handle_shop_trigger.mcfunction +3 -0
- package/dist/data/swap_test/function/__load.mcfunction +3 -0
- package/dist/data/swap_test/function/gcd_old/loop_body_1.mcfunction +7 -0
- package/dist/data/swap_test/function/gcd_old/loop_check_0.mcfunction +5 -0
- package/dist/data/swap_test/function/gcd_old/loop_exit_2.mcfunction +3 -0
- package/dist/data/swap_test/function/gcd_old.mcfunction +8 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_a.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_b.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_c.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_counter.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_d.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_e.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_g.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_h.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_one.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_f.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_r.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_s.mcfunction +1 -0
- package/dist/data/test/function/_apply.mcfunction +5 -0
- package/dist/data/test/function/_atan_init.mcfunction +4 -0
- package/dist/data/test/function/_divider.mcfunction +1 -0
- package/dist/data/test/function/_dump_advanced_phase.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_body_6.mcfunction +10 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_exit_2.mcfunction +20 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_exit_7.mcfunction +12 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__merge_4.mcfunction +4 -0
- package/dist/data/test/function/_dump_advanced_phase__then_3.mcfunction +2 -0
- package/dist/data/test/function/_dump_bigint_phase.mcfunction +28 -0
- package/dist/data/test/function/_dump_math_phase.mcfunction +4 -0
- package/dist/data/test/function/_dump_math_phase__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/_dump_math_phase__loop_exit_2.mcfunction +18 -0
- package/dist/data/test/function/_dump_math_phase__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/_fp.mcfunction +2 -0
- package/dist/data/test/function/_hsl_chroma_x.mcfunction +11 -0
- package/dist/data/test/function/_hsl_chroma_x__merge_1.mcfunction +6 -0
- package/dist/data/test/function/_hsl_chroma_x__then_0.mcfunction +4 -0
- package/dist/data/test/function/_math_init.mcfunction +4 -0
- package/dist/data/test/function/_next_phase.mcfunction +1 -0
- package/dist/data/test/function/_section.mcfunction +3 -0
- package/dist/data/test/function/_section__const_0.mcfunction +3 -0
- package/dist/data/test/function/_tick_advanced_live.mcfunction +5 -0
- package/dist/data/test/function/_tick_advanced_live__foreach_t12.mcfunction +1 -0
- package/dist/data/test/function/_tick_bigint_live.mcfunction +8 -0
- package/dist/data/test/function/_tick_bigint_live__foreach_t11.mcfunction +1 -0
- package/dist/data/test/function/_tick_math.mcfunction +9 -0
- package/dist/data/test/function/_tick_math__foreach_t12.mcfunction +1 -0
- package/dist/data/test/function/_tick_visual.mcfunction +11 -0
- package/dist/data/test/function/_tick_visual__foreach_t12.mcfunction +1 -0
- package/dist/data/test/function/_tick_visual__foreach_t16.mcfunction +8 -0
- package/dist/data/test/function/_tick_visual__foreach_t17.mcfunction +8 -0
- package/dist/data/test/function/_tick_visual__foreach_t21.mcfunction +1 -0
- package/dist/data/test/function/aabb_contains.mcfunction +13 -0
- package/dist/data/test/function/aabb_contains__merge_1.mcfunction +4 -0
- package/dist/data/test/function/aabb_contains__merge_10.mcfunction +4 -0
- package/dist/data/test/function/aabb_contains__merge_13.mcfunction +4 -0
- package/dist/data/test/function/aabb_contains__merge_16.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__merge_4.mcfunction +4 -0
- package/dist/data/test/function/aabb_contains__merge_7.mcfunction +4 -0
- package/dist/data/test/function/aabb_contains__then_0.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_12.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_15.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_3.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_6.mcfunction +2 -0
- package/dist/data/test/function/aabb_contains__then_9.mcfunction +2 -0
- package/dist/data/test/function/add2d_x.mcfunction +5 -0
- package/dist/data/test/function/add2d_y.mcfunction +5 -0
- package/dist/data/test/function/add3d_x.mcfunction +5 -0
- package/dist/data/test/function/add3d_y.mcfunction +5 -0
- package/dist/data/test/function/add3d_z.mcfunction +5 -0
- package/dist/data/test/function/air_drag_fx.mcfunction +2 -0
- package/dist/data/test/function/angle_between.mcfunction +28 -0
- package/dist/data/test/function/angle_between__and_false_2.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_false_8.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_merge_1.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_merge_7.mcfunction +2 -0
- package/dist/data/test/function/angle_between__and_right_0.mcfunction +4 -0
- package/dist/data/test/function/angle_between__and_right_6.mcfunction +4 -0
- package/dist/data/test/function/angle_between__merge_10.mcfunction +26 -0
- package/dist/data/test/function/angle_between__merge_4.mcfunction +4 -0
- package/dist/data/test/function/angle_between__then_3.mcfunction +2 -0
- package/dist/data/test/function/angle_between__then_9.mcfunction +2 -0
- package/dist/data/test/function/angle_diff.mcfunction +13 -0
- package/dist/data/test/function/angle_diff__merge_1.mcfunction +1 -0
- package/dist/data/test/function/angle_diff__then_0.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize.mcfunction +3 -0
- package/dist/data/test/function/angle_normalize__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/angle_normalize__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/angle_normalize__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/angle_normalize__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/angle_normalize__loop_header_3.mcfunction +5 -0
- package/dist/data/test/function/apply_drag.mcfunction +8 -0
- package/dist/data/test/function/apply_gravity.mcfunction +6 -0
- package/dist/data/test/function/approx_eq.mcfunction +10 -0
- package/dist/data/test/function/approx_eq__merge_1.mcfunction +3 -0
- package/dist/data/test/function/approx_eq__merge_3.mcfunction +2 -0
- package/dist/data/test/function/approx_eq__then_0.mcfunction +4 -0
- package/dist/data/test/function/approx_eq__then_2.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed.mcfunction +6 -0
- package/dist/data/test/function/atan2_fixed__else_30.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__loop_body_26.mcfunction +21 -0
- package/dist/data/test/function/atan2_fixed__loop_exit_27.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__loop_header_25.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_1.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_10.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__merge_12.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__merge_16.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__merge_18.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_20.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_22.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_24.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_29.mcfunction +1 -0
- package/dist/data/test/function/atan2_fixed__merge_3.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_32.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_34.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__merge_36.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_40.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__merge_6.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_0.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_11.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_15.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_17.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_19.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_2.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_21.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_23.mcfunction +5 -0
- package/dist/data/test/function/atan2_fixed__then_28.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_31.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_33.mcfunction +4 -0
- package/dist/data/test/function/atan2_fixed__then_35.mcfunction +1 -0
- package/dist/data/test/function/atan2_fixed__then_39.mcfunction +3 -0
- package/dist/data/test/function/atan2_fixed__then_5.mcfunction +2 -0
- package/dist/data/test/function/atan2_fixed__then_9.mcfunction +4 -0
- package/dist/data/test/function/avg3.mcfunction +11 -0
- package/dist/data/test/function/avg5.mcfunction +17 -0
- package/dist/data/test/function/bernoulli.mcfunction +13 -0
- package/dist/data/test/function/bernoulli__merge_1.mcfunction +7 -0
- package/dist/data/test/function/bernoulli__merge_3.mcfunction +2 -0
- package/dist/data/test/function/bernoulli__then_0.mcfunction +4 -0
- package/dist/data/test/function/bernoulli__then_2.mcfunction +2 -0
- package/dist/data/test/function/bezier_cubic.mcfunction +36 -0
- package/dist/data/test/function/bezier_quad.mcfunction +20 -0
- package/dist/data/test/function/bigint3_add_hi.mcfunction +11 -0
- package/dist/data/test/function/bigint3_add_lo.mcfunction +8 -0
- package/dist/data/test/function/bigint3_add_mid.mcfunction +11 -0
- package/dist/data/test/function/bigint3_borrow_lo.mcfunction +5 -0
- package/dist/data/test/function/bigint3_borrow_lo__merge_1.mcfunction +2 -0
- package/dist/data/test/function/bigint3_borrow_lo__then_0.mcfunction +2 -0
- package/dist/data/test/function/bigint3_borrow_mid.mcfunction +8 -0
- package/dist/data/test/function/bigint3_borrow_mid__merge_1.mcfunction +2 -0
- package/dist/data/test/function/bigint3_borrow_mid__then_0.mcfunction +2 -0
- package/dist/data/test/function/bigint3_carry_lo.mcfunction +8 -0
- package/dist/data/test/function/bigint3_carry_mid.mcfunction +11 -0
- package/dist/data/test/function/bigint3_cmp.mcfunction +9 -0
- package/dist/data/test/function/bigint3_cmp__merge_1.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_10.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_13.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_16.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__merge_4.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__merge_7.mcfunction +3 -0
- package/dist/data/test/function/bigint3_cmp__then_0.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_12.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_15.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_6.mcfunction +2 -0
- package/dist/data/test/function/bigint3_cmp__then_9.mcfunction +2 -0
- package/dist/data/test/function/bigint3_div_chunk.mcfunction +11 -0
- package/dist/data/test/function/bigint3_mul1_hi.mcfunction +8 -0
- package/dist/data/test/function/bigint3_mul1_lo.mcfunction +8 -0
- package/dist/data/test/function/bigint3_mul1_mid.mcfunction +2 -0
- package/dist/data/test/function/bigint3_rem_chunk.mcfunction +11 -0
- package/dist/data/test/function/bigint3_sub_hi.mcfunction +8 -0
- package/dist/data/test/function/bigint3_sub_lo.mcfunction +5 -0
- package/dist/data/test/function/bigint3_sub_lo__merge_1.mcfunction +5 -0
- package/dist/data/test/function/bigint3_sub_lo__then_0.mcfunction +3 -0
- package/dist/data/test/function/bigint3_sub_mid.mcfunction +12 -0
- package/dist/data/test/function/bigint3_sub_mid__merge_1.mcfunction +1 -0
- package/dist/data/test/function/bigint3_sub_mid__then_0.mcfunction +4 -0
- package/dist/data/test/function/bigint3_to_int32.mcfunction +14 -0
- package/dist/data/test/function/bigint_add.mcfunction +8 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r.mcfunction +6 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r__loop_body_1.mcfunction +22 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__a__b__test_arrays__b__result__test_arrays__r__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r.mcfunction +6 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r__loop_body_1.mcfunction +22 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_add__arr_a__test_arrays__counter__b__test_arrays__one__result__test_arrays__r__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_add__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_add__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_add__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_base.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp.mcfunction +5 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__merge_4.mcfunction +7 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__merge_7.mcfunction +4 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__arr_a__test_arrays__g__b__test_arrays__h__then_6.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__loop_body_1.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__merge_4.mcfunction +3 -0
- package/dist/data/test/function/bigint_cmp__merge_7.mcfunction +4 -0
- package/dist/data/test/function/bigint_cmp__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint_cmp__then_6.mcfunction +2 -0
- package/dist/data/test/function/bigint_copy.mcfunction +3 -0
- package/dist/data/test/function/bigint_copy__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_copy__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_copy__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_is_zero.mcfunction +4 -0
- package/dist/data/test/function/bigint_is_zero__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_is_zero__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/bigint_is_zero__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_is_zero__merge_4.mcfunction +4 -0
- package/dist/data/test/function/bigint_is_zero__then_3.mcfunction +2 -0
- package/dist/data/test/function/bigint_leading_zeros.mcfunction +5 -0
- package/dist/data/test/function/bigint_leading_zeros__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_leading_zeros__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_leading_zeros__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_leading_zeros__merge_4.mcfunction +9 -0
- package/dist/data/test/function/bigint_leading_zeros__then_3.mcfunction +1 -0
- package/dist/data/test/function/bigint_mul_small.mcfunction +8 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f.mcfunction +7 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f__loop_body_1.mcfunction +20 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_mul_small__arr_a__test_arrays__e__result__test_arrays__f__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_mul_small__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_mul_small__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_mul_small__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_shift_left.mcfunction +3 -0
- package/dist/data/test/function/bigint_shift_left__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_shift_left__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_shift_left__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/bigint_sub.mcfunction +8 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s.mcfunction +6 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__loop_body_1.mcfunction +13 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__merge_4.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__merge_6.mcfunction +7 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__then_3.mcfunction +5 -0
- package/dist/data/test/function/bigint_sub__arr_a__test_arrays__c__b__test_arrays__d__result__test_arrays__s__then_5.mcfunction +2 -0
- package/dist/data/test/function/bigint_sub__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/bigint_sub__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_sub__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__merge_4.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__merge_6.mcfunction +4 -0
- package/dist/data/test/function/bigint_sub__then_3.mcfunction +5 -0
- package/dist/data/test/function/bigint_sub__then_5.mcfunction +2 -0
- package/dist/data/test/function/bigint_zero.mcfunction +3 -0
- package/dist/data/test/function/bigint_zero__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/bigint_zero__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_zero__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/billboard_y.mcfunction +7 -0
- package/dist/data/test/function/bit_and.mcfunction +6 -0
- package/dist/data/test/function/bit_and__loop_body_1.mcfunction +10 -0
- package/dist/data/test/function/bit_and__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_and__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/bit_and__merge_4.mcfunction +8 -0
- package/dist/data/test/function/bit_and__merge_6.mcfunction +1 -0
- package/dist/data/test/function/bit_and__then_3.mcfunction +10 -0
- package/dist/data/test/function/bit_and__then_5.mcfunction +4 -0
- package/dist/data/test/function/bit_clear.mcfunction +5 -0
- package/dist/data/test/function/bit_clear__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_clear__loop_exit_2.mcfunction +10 -0
- package/dist/data/test/function/bit_clear__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_clear__merge_4.mcfunction +1 -0
- package/dist/data/test/function/bit_clear__then_3.mcfunction +3 -0
- package/dist/data/test/function/bit_get.mcfunction +5 -0
- package/dist/data/test/function/bit_get__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_get__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/bit_get__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_not.mcfunction +5 -0
- package/dist/data/test/function/bit_not__loop_body_1.mcfunction +10 -0
- package/dist/data/test/function/bit_not__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_not__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/bit_not__merge_4.mcfunction +8 -0
- package/dist/data/test/function/bit_not__then_3.mcfunction +4 -0
- package/dist/data/test/function/bit_or.mcfunction +6 -0
- package/dist/data/test/function/bit_or__loop_body_1.mcfunction +10 -0
- package/dist/data/test/function/bit_or__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_or__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/bit_or__merge_4.mcfunction +10 -0
- package/dist/data/test/function/bit_or__merge_6.mcfunction +8 -0
- package/dist/data/test/function/bit_or__merge_8.mcfunction +1 -0
- package/dist/data/test/function/bit_or__then_3.mcfunction +4 -0
- package/dist/data/test/function/bit_or__then_5.mcfunction +10 -0
- package/dist/data/test/function/bit_or__then_7.mcfunction +4 -0
- package/dist/data/test/function/bit_set.mcfunction +5 -0
- package/dist/data/test/function/bit_set__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_set__loop_exit_2.mcfunction +10 -0
- package/dist/data/test/function/bit_set__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_set__merge_4.mcfunction +1 -0
- package/dist/data/test/function/bit_set__then_3.mcfunction +3 -0
- package/dist/data/test/function/bit_shl.mcfunction +5 -0
- package/dist/data/test/function/bit_shl__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_shl__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_shl__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_shr.mcfunction +5 -0
- package/dist/data/test/function/bit_shr__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_shr__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_shr__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_toggle.mcfunction +5 -0
- package/dist/data/test/function/bit_toggle__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/bit_toggle__loop_exit_2.mcfunction +10 -0
- package/dist/data/test/function/bit_toggle__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/bit_toggle__merge_4.mcfunction +3 -0
- package/dist/data/test/function/bit_toggle__then_3.mcfunction +3 -0
- package/dist/data/test/function/bit_xor.mcfunction +6 -0
- package/dist/data/test/function/bit_xor__loop_body_1.mcfunction +14 -0
- package/dist/data/test/function/bit_xor__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bit_xor__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/bit_xor__merge_4.mcfunction +8 -0
- package/dist/data/test/function/bit_xor__then_3.mcfunction +4 -0
- package/dist/data/test/function/bounce_v.mcfunction +10 -0
- package/dist/data/test/function/cbrt_fx.mcfunction +5 -0
- package/dist/data/test/function/cbrt_fx__loop_body_6.mcfunction +7 -0
- package/dist/data/test/function/cbrt_fx__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/cbrt_fx__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/cbrt_fx__merge_1.mcfunction +8 -0
- package/dist/data/test/function/cbrt_fx__merge_11.mcfunction +5 -0
- package/dist/data/test/function/cbrt_fx__merge_13.mcfunction +4 -0
- package/dist/data/test/function/cbrt_fx__merge_4.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__merge_9.mcfunction +13 -0
- package/dist/data/test/function/cbrt_fx__then_0.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_10.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_12.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_3.mcfunction +2 -0
- package/dist/data/test/function/cbrt_fx__then_8.mcfunction +2 -0
- package/dist/data/test/function/ceil_div.mcfunction +9 -0
- package/dist/data/test/function/chebyshev.mcfunction +14 -0
- package/dist/data/test/function/chebyshev3d.mcfunction +19 -0
- package/dist/data/test/function/chebyshev3d__merge_1.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__merge_3.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__merge_5.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__merge_7.mcfunction +3 -0
- package/dist/data/test/function/chebyshev3d__merge_9.mcfunction +1 -0
- package/dist/data/test/function/chebyshev3d__then_0.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__then_2.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__then_4.mcfunction +4 -0
- package/dist/data/test/function/chebyshev3d__then_6.mcfunction +2 -0
- package/dist/data/test/function/chebyshev3d__then_8.mcfunction +2 -0
- package/dist/data/test/function/chebyshev__merge_1.mcfunction +4 -0
- package/dist/data/test/function/chebyshev__merge_3.mcfunction +3 -0
- package/dist/data/test/function/chebyshev__merge_5.mcfunction +1 -0
- package/dist/data/test/function/chebyshev__then_0.mcfunction +4 -0
- package/dist/data/test/function/chebyshev__then_2.mcfunction +4 -0
- package/dist/data/test/function/chebyshev__then_4.mcfunction +1 -0
- package/dist/data/test/function/chunk_hi.mcfunction +5 -0
- package/dist/data/test/function/chunk_lo.mcfunction +5 -0
- package/dist/data/test/function/circular_x.mcfunction +14 -0
- package/dist/data/test/function/circular_z.mcfunction +14 -0
- package/dist/data/test/function/clamp3.mcfunction +7 -0
- package/dist/data/test/function/clamp3__merge_1.mcfunction +4 -0
- package/dist/data/test/function/clamp3__merge_4.mcfunction +1 -0
- package/dist/data/test/function/clamp3__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp3__then_3.mcfunction +1 -0
- package/dist/data/test/function/clamp_circle_x.mcfunction +13 -0
- package/dist/data/test/function/clamp_circle_x__merge_1.mcfunction +10 -0
- package/dist/data/test/function/clamp_circle_x__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp_circle_y.mcfunction +13 -0
- package/dist/data/test/function/clamp_circle_y__merge_1.mcfunction +10 -0
- package/dist/data/test/function/clamp_circle_y__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp_velocity.mcfunction +5 -0
- package/dist/data/test/function/clamp_velocity__merge_1.mcfunction +5 -0
- package/dist/data/test/function/clamp_velocity__merge_4.mcfunction +1 -0
- package/dist/data/test/function/clamp_velocity__then_0.mcfunction +1 -0
- package/dist/data/test/function/clamp_velocity__then_3.mcfunction +3 -0
- package/dist/data/test/function/collatz_steps.mcfunction +5 -0
- package/dist/data/test/function/collatz_steps__else_8.mcfunction +6 -0
- package/dist/data/test/function/collatz_steps__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/collatz_steps__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/collatz_steps__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/collatz_steps__merge_1.mcfunction +3 -0
- package/dist/data/test/function/collatz_steps__merge_7.mcfunction +4 -0
- package/dist/data/test/function/collatz_steps__then_0.mcfunction +2 -0
- package/dist/data/test/function/collatz_steps__then_6.mcfunction +5 -0
- package/dist/data/test/function/combinations.mcfunction +6 -0
- package/dist/data/test/function/combinations__loop_body_9.mcfunction +15 -0
- package/dist/data/test/function/combinations__loop_exit_10.mcfunction +1 -0
- package/dist/data/test/function/combinations__loop_header_8.mcfunction +3 -0
- package/dist/data/test/function/combinations__merge_1.mcfunction +3 -0
- package/dist/data/test/function/combinations__merge_4.mcfunction +6 -0
- package/dist/data/test/function/combinations__merge_7.mcfunction +3 -0
- package/dist/data/test/function/combinations__then_0.mcfunction +2 -0
- package/dist/data/test/function/combinations__then_3.mcfunction +2 -0
- package/dist/data/test/function/combinations__then_6.mcfunction +4 -0
- package/dist/data/test/function/cos_fixed.mcfunction +7 -0
- package/dist/data/test/function/cos_fixed__const_0.mcfunction +5 -0
- package/dist/data/test/function/cos_hp.mcfunction +6 -0
- package/dist/data/test/function/count_digits.mcfunction +6 -0
- package/dist/data/test/function/count_digits__loop_body_6.mcfunction +8 -0
- package/dist/data/test/function/count_digits__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/count_digits__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/count_digits__merge_1.mcfunction +4 -0
- package/dist/data/test/function/count_digits__merge_3.mcfunction +2 -0
- package/dist/data/test/function/count_digits__then_0.mcfunction +4 -0
- package/dist/data/test/function/count_digits__then_2.mcfunction +2 -0
- package/dist/data/test/function/cross2d.mcfunction +11 -0
- package/dist/data/test/function/cross3d_x.mcfunction +11 -0
- package/dist/data/test/function/cross3d_y.mcfunction +11 -0
- package/dist/data/test/function/cross3d_z.mcfunction +11 -0
- package/dist/data/test/function/cylinder_contains.mcfunction +21 -0
- package/dist/data/test/function/cylinder_contains__merge_1.mcfunction +2 -0
- package/dist/data/test/function/cylinder_contains__then_0.mcfunction +2 -0
- package/dist/data/test/function/debug_bigint.mcfunction +25 -0
- package/dist/data/test/function/digit_sum.mcfunction +6 -0
- package/dist/data/test/function/digit_sum__loop_body_6.mcfunction +11 -0
- package/dist/data/test/function/digit_sum__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/digit_sum__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/digit_sum__merge_1.mcfunction +4 -0
- package/dist/data/test/function/digit_sum__merge_3.mcfunction +2 -0
- package/dist/data/test/function/digit_sum__then_0.mcfunction +4 -0
- package/dist/data/test/function/digit_sum__then_2.mcfunction +2 -0
- package/dist/data/test/function/digital_root.mcfunction +5 -0
- package/dist/data/test/function/digital_root__merge_1.mcfunction +8 -0
- package/dist/data/test/function/digital_root__merge_4.mcfunction +1 -0
- package/dist/data/test/function/digital_root__then_0.mcfunction +2 -0
- package/dist/data/test/function/digital_root__then_3.mcfunction +2 -0
- package/dist/data/test/function/distance2d_fixed.mcfunction +13 -0
- package/dist/data/test/function/distance3d_fixed.mcfunction +18 -0
- package/dist/data/test/function/divfix.mcfunction +6 -0
- package/dist/data/test/function/divfix__merge_1.mcfunction +6 -0
- package/dist/data/test/function/divfix__then_0.mcfunction +2 -0
- package/dist/data/test/function/dot2d.mcfunction +11 -0
- package/dist/data/test/function/dot3d.mcfunction +17 -0
- package/dist/data/test/function/dump_advanced.mcfunction +1 -0
- package/dist/data/test/function/dump_bigint.mcfunction +1 -0
- package/dist/data/test/function/dump_math.mcfunction +1 -0
- package/dist/data/test/function/ease_in_back.mcfunction +26 -0
- package/dist/data/test/function/ease_in_bounce.mcfunction +9 -0
- package/dist/data/test/function/ease_in_cubic.mcfunction +12 -0
- package/dist/data/test/function/ease_in_expo.mcfunction +6 -0
- package/dist/data/test/function/ease_in_expo__merge_1.mcfunction +11 -0
- package/dist/data/test/function/ease_in_expo__then_0.mcfunction +2 -0
- package/dist/data/test/function/ease_in_out_back.mcfunction +6 -0
- package/dist/data/test/function/ease_in_out_back__merge_1.mcfunction +14 -0
- package/dist/data/test/function/ease_in_out_back__then_0.mcfunction +10 -0
- package/dist/data/test/function/ease_in_out_bounce.mcfunction +6 -0
- package/dist/data/test/function/ease_in_out_bounce__merge_1.mcfunction +14 -0
- package/dist/data/test/function/ease_in_out_bounce__then_0.mcfunction +10 -0
- package/dist/data/test/function/ease_in_out_cubic.mcfunction +6 -0
- package/dist/data/test/function/ease_in_out_cubic__merge_1.mcfunction +17 -0
- package/dist/data/test/function/ease_in_out_cubic__then_0.mcfunction +13 -0
- package/dist/data/test/function/ease_in_out_quad.mcfunction +6 -0
- package/dist/data/test/function/ease_in_out_quad__merge_1.mcfunction +12 -0
- package/dist/data/test/function/ease_in_out_quad__then_0.mcfunction +8 -0
- package/dist/data/test/function/ease_in_out_sine.mcfunction +6 -0
- package/dist/data/test/function/ease_in_out_sine__merge_1.mcfunction +14 -0
- package/dist/data/test/function/ease_in_out_sine__then_0.mcfunction +10 -0
- package/dist/data/test/function/ease_in_quad.mcfunction +7 -0
- package/dist/data/test/function/ease_in_quart.mcfunction +12 -0
- package/dist/data/test/function/ease_in_sine.mcfunction +30 -0
- package/dist/data/test/function/ease_linear.mcfunction +2 -0
- package/dist/data/test/function/ease_out_back.mcfunction +9 -0
- package/dist/data/test/function/ease_out_bounce.mcfunction +7 -0
- package/dist/data/test/function/ease_out_bounce__merge_1.mcfunction +5 -0
- package/dist/data/test/function/ease_out_bounce__merge_4.mcfunction +5 -0
- package/dist/data/test/function/ease_out_bounce__merge_7.mcfunction +15 -0
- package/dist/data/test/function/ease_out_bounce__then_0.mcfunction +11 -0
- package/dist/data/test/function/ease_out_bounce__then_3.mcfunction +15 -0
- package/dist/data/test/function/ease_out_bounce__then_6.mcfunction +15 -0
- package/dist/data/test/function/ease_out_cubic.mcfunction +16 -0
- package/dist/data/test/function/ease_out_expo.mcfunction +6 -0
- package/dist/data/test/function/ease_out_expo__merge_1.mcfunction +8 -0
- package/dist/data/test/function/ease_out_expo__then_0.mcfunction +2 -0
- package/dist/data/test/function/ease_out_quad.mcfunction +11 -0
- package/dist/data/test/function/ease_out_quart.mcfunction +16 -0
- package/dist/data/test/function/ease_out_sine.mcfunction +9 -0
- package/dist/data/test/function/ease_smooth.mcfunction +23 -0
- package/dist/data/test/function/ease_smoother.mcfunction +41 -0
- package/dist/data/test/function/exp_dist_approx.mcfunction +13 -0
- package/dist/data/test/function/exp_dist_approx__merge_1.mcfunction +16 -0
- package/dist/data/test/function/exp_dist_approx__merge_3.mcfunction +11 -0
- package/dist/data/test/function/exp_dist_approx__merge_5.mcfunction +1 -0
- package/dist/data/test/function/exp_dist_approx__then_0.mcfunction +4 -0
- package/dist/data/test/function/exp_dist_approx__then_2.mcfunction +2 -0
- package/dist/data/test/function/exp_dist_approx__then_4.mcfunction +2 -0
- package/dist/data/test/function/exp_fx.mcfunction +16 -0
- package/dist/data/test/function/exp_fx__loop_body_10.mcfunction +8 -0
- package/dist/data/test/function/exp_fx__loop_body_5.mcfunction +8 -0
- package/dist/data/test/function/exp_fx__loop_exit_11.mcfunction +1 -0
- package/dist/data/test/function/exp_fx__loop_exit_6.mcfunction +1 -0
- package/dist/data/test/function/exp_fx__loop_header_4.mcfunction +3 -0
- package/dist/data/test/function/exp_fx__loop_header_9.mcfunction +3 -0
- package/dist/data/test/function/exp_fx__merge_1.mcfunction +47 -0
- package/dist/data/test/function/exp_fx__merge_3.mcfunction +4 -0
- package/dist/data/test/function/exp_fx__merge_8.mcfunction +1 -0
- package/dist/data/test/function/exp_fx__then_0.mcfunction +7 -0
- package/dist/data/test/function/exp_fx__then_2.mcfunction +2 -0
- package/dist/data/test/function/exp_fx__then_7.mcfunction +5 -0
- package/dist/data/test/function/factorial.mcfunction +5 -0
- package/dist/data/test/function/factorial__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/factorial__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/factorial__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/factorial__merge_1.mcfunction +3 -0
- package/dist/data/test/function/factorial__then_0.mcfunction +2 -0
- package/dist/data/test/function/fbm_1d.mcfunction +9 -0
- package/dist/data/test/function/fbm_1d__loop_body_1.mcfunction +33 -0
- package/dist/data/test/function/fbm_1d__loop_exit_2.mcfunction +5 -0
- package/dist/data/test/function/fbm_1d__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/fbm_1d__merge_4.mcfunction +6 -0
- package/dist/data/test/function/fbm_1d__then_3.mcfunction +2 -0
- package/dist/data/test/function/fbm_2d.mcfunction +10 -0
- package/dist/data/test/function/fbm_2d__loop_body_1.mcfunction +39 -0
- package/dist/data/test/function/fbm_2d__loop_exit_2.mcfunction +5 -0
- package/dist/data/test/function/fbm_2d__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/fbm_2d__merge_4.mcfunction +6 -0
- package/dist/data/test/function/fbm_2d__then_3.mcfunction +2 -0
- package/dist/data/test/function/fib.mcfunction +5 -0
- package/dist/data/test/function/fib__loop_body_7.mcfunction +8 -0
- package/dist/data/test/function/fib__loop_exit_8.mcfunction +1 -0
- package/dist/data/test/function/fib__loop_header_6.mcfunction +3 -0
- package/dist/data/test/function/fib__merge_1.mcfunction +4 -0
- package/dist/data/test/function/fib__merge_4.mcfunction +4 -0
- package/dist/data/test/function/fib__then_0.mcfunction +2 -0
- package/dist/data/test/function/fib__then_3.mcfunction +2 -0
- package/dist/data/test/function/format_time_h.mcfunction +5 -0
- package/dist/data/test/function/format_time_m.mcfunction +8 -0
- package/dist/data/test/function/format_time_s.mcfunction +8 -0
- package/dist/data/test/function/friction_decel.mcfunction +5 -0
- package/dist/data/test/function/friction_decel__merge_1.mcfunction +5 -0
- package/dist/data/test/function/friction_decel__merge_4.mcfunction +2 -0
- package/dist/data/test/function/friction_decel__then_0.mcfunction +3 -0
- package/dist/data/test/function/friction_decel__then_3.mcfunction +3 -0
- package/dist/data/test/function/gamma_int.mcfunction +5 -0
- package/dist/data/test/function/gamma_int__merge_1.mcfunction +6 -0
- package/dist/data/test/function/gamma_int__then_0.mcfunction +2 -0
- package/dist/data/test/function/gcd.mcfunction +7 -0
- package/dist/data/test/function/gcd__loop_body_5.mcfunction +5 -0
- package/dist/data/test/function/gcd__loop_exit_6.mcfunction +1 -0
- package/dist/data/test/function/gcd__loop_header_4.mcfunction +4 -0
- package/dist/data/test/function/gcd__merge_1.mcfunction +5 -0
- package/dist/data/test/function/gcd__merge_3.mcfunction +1 -0
- package/dist/data/test/function/gcd__then_0.mcfunction +4 -0
- package/dist/data/test/function/gcd__then_2.mcfunction +4 -0
- package/dist/data/test/function/gravity_fx.mcfunction +2 -0
- package/dist/data/test/function/hash_1d.mcfunction +15 -0
- package/dist/data/test/function/hash_1d_pos.mcfunction +10 -0
- package/dist/data/test/function/hash_1d_pos__merge_1.mcfunction +4 -0
- package/dist/data/test/function/hash_1d_pos__then_0.mcfunction +4 -0
- package/dist/data/test/function/hash_2d.mcfunction +11 -0
- package/dist/data/test/function/hash_2d_pos.mcfunction +12 -0
- package/dist/data/test/function/hash_2d_pos__merge_1.mcfunction +4 -0
- package/dist/data/test/function/hash_2d_pos__then_0.mcfunction +4 -0
- package/dist/data/test/function/hash_int.mcfunction +6 -0
- package/dist/data/test/function/hash_int__merge_1.mcfunction +14 -0
- package/dist/data/test/function/hash_int__merge_3.mcfunction +14 -0
- package/dist/data/test/function/hash_int__merge_5.mcfunction +1 -0
- package/dist/data/test/function/hash_int__then_0.mcfunction +4 -0
- package/dist/data/test/function/hash_int__then_2.mcfunction +4 -0
- package/dist/data/test/function/hash_int__then_4.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b.mcfunction +24 -0
- package/dist/data/test/function/hsl_to_b__merge_1.mcfunction +30 -0
- package/dist/data/test/function/hsl_to_b__merge_12.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_b__merge_15.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_b__merge_3.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_b__merge_6.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_b__merge_9.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_b__then_0.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b__then_11.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_b__then_14.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_b__then_2.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_b__then_5.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_b__then_8.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g.mcfunction +24 -0
- package/dist/data/test/function/hsl_to_g__merge_1.mcfunction +30 -0
- package/dist/data/test/function/hsl_to_g__merge_12.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_g__merge_15.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_g__merge_3.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_g__merge_6.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_g__merge_9.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_g__then_0.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_g__then_11.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g__then_14.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_g__then_2.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g__then_5.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_g__then_8.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_packed.mcfunction +24 -0
- package/dist/data/test/function/hsl_to_r.mcfunction +24 -0
- package/dist/data/test/function/hsl_to_r__merge_1.mcfunction +30 -0
- package/dist/data/test/function/hsl_to_r__merge_12.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_r__merge_15.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__merge_3.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_r__merge_6.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_r__merge_9.mcfunction +5 -0
- package/dist/data/test/function/hsl_to_r__then_0.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_r__then_11.mcfunction +1 -0
- package/dist/data/test/function/hsl_to_r__then_14.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__then_2.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__then_5.mcfunction +3 -0
- package/dist/data/test/function/hsl_to_r__then_8.mcfunction +1 -0
- package/dist/data/test/function/impact_velocity.mcfunction +5 -0
- package/dist/data/test/function/impact_velocity__merge_1.mcfunction +16 -0
- package/dist/data/test/function/impact_velocity__then_0.mcfunction +2 -0
- package/dist/data/test/function/init_trig.mcfunction +1 -0
- package/dist/data/test/function/int32_to_bigint3_hi.mcfunction +5 -0
- package/dist/data/test/function/int32_to_bigint3_hi__merge_1.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_hi__then_0.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_lo.mcfunction +5 -0
- package/dist/data/test/function/int32_to_bigint3_lo__merge_1.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_lo__then_0.mcfunction +4 -0
- package/dist/data/test/function/int32_to_bigint3_mid.mcfunction +5 -0
- package/dist/data/test/function/int32_to_bigint3_mid__merge_1.mcfunction +7 -0
- package/dist/data/test/function/int32_to_bigint3_mid__then_0.mcfunction +4 -0
- package/dist/data/test/function/is_grounded.mcfunction +5 -0
- package/dist/data/test/function/is_grounded__merge_1.mcfunction +2 -0
- package/dist/data/test/function/is_grounded__then_0.mcfunction +2 -0
- package/dist/data/test/function/is_prime.mcfunction +5 -0
- package/dist/data/test/function/is_prime__loop_body_10.mcfunction +6 -0
- package/dist/data/test/function/is_prime__loop_exit_11.mcfunction +2 -0
- package/dist/data/test/function/is_prime__loop_header_9.mcfunction +5 -0
- package/dist/data/test/function/is_prime__merge_1.mcfunction +4 -0
- package/dist/data/test/function/is_prime__merge_13.mcfunction +4 -0
- package/dist/data/test/function/is_prime__merge_4.mcfunction +7 -0
- package/dist/data/test/function/is_prime__merge_7.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_0.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_12.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_3.mcfunction +2 -0
- package/dist/data/test/function/is_prime__then_6.mcfunction +2 -0
- package/dist/data/test/function/isqrt.mcfunction +5 -0
- package/dist/data/test/function/isqrt__loop_body_10.mcfunction +8 -0
- package/dist/data/test/function/isqrt__loop_body_13.mcfunction +11 -0
- package/dist/data/test/function/isqrt__loop_body_7.mcfunction +8 -0
- package/dist/data/test/function/isqrt__loop_exit_11.mcfunction +2 -0
- package/dist/data/test/function/isqrt__loop_exit_14.mcfunction +1 -0
- package/dist/data/test/function/isqrt__loop_exit_8.mcfunction +9 -0
- package/dist/data/test/function/isqrt__loop_header_12.mcfunction +4 -0
- package/dist/data/test/function/isqrt__loop_header_6.mcfunction +4 -0
- package/dist/data/test/function/isqrt__loop_header_9.mcfunction +3 -0
- package/dist/data/test/function/isqrt__merge_1.mcfunction +4 -0
- package/dist/data/test/function/isqrt__merge_16.mcfunction +5 -0
- package/dist/data/test/function/isqrt__merge_4.mcfunction +3 -0
- package/dist/data/test/function/isqrt__then_0.mcfunction +2 -0
- package/dist/data/test/function/isqrt__then_15.mcfunction +1 -0
- package/dist/data/test/function/isqrt__then_3.mcfunction +2 -0
- package/dist/data/test/function/julia_iter.mcfunction +9 -0
- package/dist/data/test/function/julia_iter__loop_body_1.mcfunction +36 -0
- package/dist/data/test/function/julia_iter__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/julia_iter__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/julia_iter__merge_4.mcfunction +4 -0
- package/dist/data/test/function/julia_iter__then_3.mcfunction +1 -0
- package/dist/data/test/function/lambda_demo.mcfunction +2 -0
- package/dist/data/test/function/lcm.mcfunction +11 -0
- package/dist/data/test/function/lcm__merge_1.mcfunction +5 -0
- package/dist/data/test/function/lcm__then_0.mcfunction +2 -0
- package/dist/data/test/function/length2d_fixed.mcfunction +15 -0
- package/dist/data/test/function/length3d_fixed.mcfunction +20 -0
- package/dist/data/test/function/lerp.mcfunction +13 -0
- package/dist/data/test/function/lerp2d_x.mcfunction +13 -0
- package/dist/data/test/function/lerp2d_y.mcfunction +13 -0
- package/dist/data/test/function/lerp_angle.mcfunction +7 -0
- package/dist/data/test/function/lerp_angle__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/lerp_angle__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/lerp_angle__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/lerp_angle__loop_exit_5.mcfunction +8 -0
- package/dist/data/test/function/lerp_angle__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/lerp_angle__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/list_avg.mcfunction +9 -0
- package/dist/data/test/function/list_clamp_all.mcfunction +6 -0
- package/dist/data/test/function/list_clamp_all__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_clamp_all__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__merge_6.mcfunction +4 -0
- package/dist/data/test/function/list_clamp_all__then_3.mcfunction +1 -0
- package/dist/data/test/function/list_clamp_all__then_5.mcfunction +1 -0
- package/dist/data/test/function/list_contains.mcfunction +5 -0
- package/dist/data/test/function/list_contains__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_contains__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/list_contains__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_contains__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_contains__then_3.mcfunction +2 -0
- package/dist/data/test/function/list_count_if_gt.mcfunction +6 -0
- package/dist/data/test/function/list_count_if_gt__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_count_if_gt__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_count_if_gt__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_count_if_gt__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_count_if_gt__then_3.mcfunction +4 -0
- package/dist/data/test/function/list_fill.mcfunction +3 -0
- package/dist/data/test/function/list_fill__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_fill__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_fill__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_index_of.mcfunction +5 -0
- package/dist/data/test/function/list_index_of__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_index_of__loop_exit_2.mcfunction +2 -0
- package/dist/data/test/function/list_index_of__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_index_of__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_index_of__then_3.mcfunction +1 -0
- package/dist/data/test/function/list_max.mcfunction +5 -0
- package/dist/data/test/function/list_max3.mcfunction +8 -0
- package/dist/data/test/function/list_max3__merge_1.mcfunction +4 -0
- package/dist/data/test/function/list_max3__merge_3.mcfunction +1 -0
- package/dist/data/test/function/list_max3__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_max3__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_max5.mcfunction +10 -0
- package/dist/data/test/function/list_max5__merge_1.mcfunction +4 -0
- package/dist/data/test/function/list_max5__merge_3.mcfunction +4 -0
- package/dist/data/test/function/list_max5__merge_5.mcfunction +4 -0
- package/dist/data/test/function/list_max5__merge_7.mcfunction +1 -0
- package/dist/data/test/function/list_max5__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_max5__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_max5__then_4.mcfunction +2 -0
- package/dist/data/test/function/list_max5__then_6.mcfunction +2 -0
- package/dist/data/test/function/list_max__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_max__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_max__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_max__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_max__then_3.mcfunction +2 -0
- package/dist/data/test/function/list_min.mcfunction +5 -0
- package/dist/data/test/function/list_min3.mcfunction +8 -0
- package/dist/data/test/function/list_min3__merge_1.mcfunction +4 -0
- package/dist/data/test/function/list_min3__merge_3.mcfunction +1 -0
- package/dist/data/test/function/list_min3__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_min3__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_min5.mcfunction +10 -0
- package/dist/data/test/function/list_min5__merge_1.mcfunction +4 -0
- package/dist/data/test/function/list_min5__merge_3.mcfunction +4 -0
- package/dist/data/test/function/list_min5__merge_5.mcfunction +4 -0
- package/dist/data/test/function/list_min5__merge_7.mcfunction +1 -0
- package/dist/data/test/function/list_min5__then_0.mcfunction +2 -0
- package/dist/data/test/function/list_min5__then_2.mcfunction +2 -0
- package/dist/data/test/function/list_min5__then_4.mcfunction +2 -0
- package/dist/data/test/function/list_min5__then_6.mcfunction +2 -0
- package/dist/data/test/function/list_min__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/list_min__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_min__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_min__merge_4.mcfunction +4 -0
- package/dist/data/test/function/list_min__then_3.mcfunction +2 -0
- package/dist/data/test/function/list_reverse.mcfunction +6 -0
- package/dist/data/test/function/list_reverse__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/list_reverse__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_reverse__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__loop_body_1.mcfunction +2 -0
- package/dist/data/test/function/list_sort_asc__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_sort_asc__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__loop_header_0.mcfunction +6 -0
- package/dist/data/test/function/list_sort_asc__loop_header_3.mcfunction +8 -0
- package/dist/data/test/function/list_sort_asc__merge_7.mcfunction +4 -0
- package/dist/data/test/function/list_sort_asc__then_6.mcfunction +1 -0
- package/dist/data/test/function/list_sort_desc.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__loop_body_1.mcfunction +2 -0
- package/dist/data/test/function/list_sort_desc__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_sort_desc__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__loop_header_0.mcfunction +6 -0
- package/dist/data/test/function/list_sort_desc__loop_header_3.mcfunction +8 -0
- package/dist/data/test/function/list_sort_desc__merge_7.mcfunction +4 -0
- package/dist/data/test/function/list_sort_desc__then_6.mcfunction +1 -0
- package/dist/data/test/function/list_sum.mcfunction +5 -0
- package/dist/data/test/function/list_sum3.mcfunction +8 -0
- package/dist/data/test/function/list_sum4.mcfunction +11 -0
- package/dist/data/test/function/list_sum5.mcfunction +14 -0
- package/dist/data/test/function/list_sum__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/list_sum__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/list_sum__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/ln.mcfunction +9 -0
- package/dist/data/test/function/ln__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/ln__loop_body_4.mcfunction +8 -0
- package/dist/data/test/function/ln__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/ln__loop_exit_5.mcfunction +37 -0
- package/dist/data/test/function/ln__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/ln__loop_header_3.mcfunction +6 -0
- package/dist/data/test/function/load.mcfunction +1 -0
- package/dist/data/test/function/log10_fx.mcfunction +11 -0
- package/dist/data/test/function/log2_fx.mcfunction +11 -0
- package/dist/data/test/function/log2_int.mcfunction +5 -0
- package/dist/data/test/function/log2_int__loop_body_4.mcfunction +8 -0
- package/dist/data/test/function/log2_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/log2_int__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/log2_int__merge_1.mcfunction +3 -0
- package/dist/data/test/function/log2_int__then_0.mcfunction +2 -0
- package/dist/data/test/function/loga_fx.mcfunction +10 -0
- package/dist/data/test/function/loga_fx__merge_1.mcfunction +9 -0
- package/dist/data/test/function/loga_fx__then_0.mcfunction +2 -0
- package/dist/data/test/function/mandelbrot_iter.mcfunction +7 -0
- package/dist/data/test/function/mandelbrot_iter__loop_body_1.mcfunction +36 -0
- package/dist/data/test/function/mandelbrot_iter__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/mandelbrot_iter__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/mandelbrot_iter__merge_4.mcfunction +4 -0
- package/dist/data/test/function/mandelbrot_iter__then_3.mcfunction +1 -0
- package/dist/data/test/function/manhattan.mcfunction +14 -0
- package/dist/data/test/function/manhattan3d.mcfunction +19 -0
- package/dist/data/test/function/manhattan3d__merge_1.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__merge_3.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__merge_5.mcfunction +5 -0
- package/dist/data/test/function/manhattan3d__then_0.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__then_2.mcfunction +4 -0
- package/dist/data/test/function/manhattan3d__then_4.mcfunction +4 -0
- package/dist/data/test/function/manhattan__merge_1.mcfunction +4 -0
- package/dist/data/test/function/manhattan__merge_3.mcfunction +3 -0
- package/dist/data/test/function/manhattan__then_0.mcfunction +4 -0
- package/dist/data/test/function/manhattan__then_2.mcfunction +4 -0
- package/dist/data/test/function/map.mcfunction +12 -0
- package/dist/data/test/function/map__merge_1.mcfunction +11 -0
- package/dist/data/test/function/map__then_0.mcfunction +1 -0
- package/dist/data/test/function/mc_day_angle.mcfunction +16 -0
- package/dist/data/test/function/midpoint.mcfunction +8 -0
- package/dist/data/test/function/mod_pow.mcfunction +7 -0
- package/dist/data/test/function/mod_pow__loop_body_6.mcfunction +7 -0
- package/dist/data/test/function/mod_pow__loop_exit_7.mcfunction +1 -0
- package/dist/data/test/function/mod_pow__loop_header_5.mcfunction +4 -0
- package/dist/data/test/function/mod_pow__merge_1.mcfunction +8 -0
- package/dist/data/test/function/mod_pow__merge_4.mcfunction +2 -0
- package/dist/data/test/function/mod_pow__merge_9.mcfunction +10 -0
- package/dist/data/test/function/mod_pow__then_0.mcfunction +2 -0
- package/dist/data/test/function/mod_pow__then_3.mcfunction +4 -0
- package/dist/data/test/function/mod_pow__then_8.mcfunction +6 -0
- package/dist/data/test/function/mulfix.mcfunction +8 -0
- package/dist/data/test/function/neg2d_x.mcfunction +4 -0
- package/dist/data/test/function/neg2d_y.mcfunction +4 -0
- package/dist/data/test/function/neg3d_x.mcfunction +4 -0
- package/dist/data/test/function/neg3d_y.mcfunction +4 -0
- package/dist/data/test/function/neg3d_z.mcfunction +4 -0
- package/dist/data/test/function/newton_sqrt.mcfunction +5 -0
- package/dist/data/test/function/newton_sqrt__loop_body_7.mcfunction +10 -0
- package/dist/data/test/function/newton_sqrt__loop_exit_8.mcfunction +1 -0
- package/dist/data/test/function/newton_sqrt__loop_header_6.mcfunction +3 -0
- package/dist/data/test/function/newton_sqrt__merge_1.mcfunction +4 -0
- package/dist/data/test/function/newton_sqrt__merge_4.mcfunction +6 -0
- package/dist/data/test/function/newton_sqrt__then_0.mcfunction +2 -0
- package/dist/data/test/function/newton_sqrt__then_3.mcfunction +2 -0
- package/dist/data/test/function/next_lcg.mcfunction +7 -0
- package/dist/data/test/function/noise1d.mcfunction +13 -0
- package/dist/data/test/function/noise1d__merge_1.mcfunction +20 -0
- package/dist/data/test/function/noise1d__merge_3.mcfunction +4 -0
- package/dist/data/test/function/noise1d__merge_5.mcfunction +11 -0
- package/dist/data/test/function/noise1d__then_0.mcfunction +7 -0
- package/dist/data/test/function/noise1d__then_2.mcfunction +4 -0
- package/dist/data/test/function/noise1d__then_4.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12.mcfunction +16 -0
- package/dist/data/test/function/normal_approx12__merge_1.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_11.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_13.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_15.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_17.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_19.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_21.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_23.mcfunction +9 -0
- package/dist/data/test/function/normal_approx12__merge_3.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_5.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_7.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__merge_9.mcfunction +18 -0
- package/dist/data/test/function/normal_approx12__then_0.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_10.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_12.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_14.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_16.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_18.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_2.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_20.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_22.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_4.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_6.mcfunction +4 -0
- package/dist/data/test/function/normal_approx12__then_8.mcfunction +4 -0
- package/dist/data/test/function/normalize2d_x.mcfunction +11 -0
- package/dist/data/test/function/normalize2d_x__merge_1.mcfunction +6 -0
- package/dist/data/test/function/normalize2d_x__then_0.mcfunction +2 -0
- package/dist/data/test/function/normalize2d_y.mcfunction +11 -0
- package/dist/data/test/function/normalize2d_y__merge_1.mcfunction +6 -0
- package/dist/data/test/function/normalize2d_y__then_0.mcfunction +2 -0
- package/dist/data/test/function/parabola_land_t.mcfunction +7 -0
- package/dist/data/test/function/parabola_x.mcfunction +8 -0
- package/dist/data/test/function/parabola_y.mcfunction +17 -0
- package/dist/data/test/function/pcg_next_hi.mcfunction +8 -0
- package/dist/data/test/function/pcg_next_lo.mcfunction +7 -0
- package/dist/data/test/function/pcg_output.mcfunction +15 -0
- package/dist/data/test/function/pcg_output__merge_1.mcfunction +1 -0
- package/dist/data/test/function/pcg_output__then_0.mcfunction +4 -0
- package/dist/data/test/function/popcount.mcfunction +5 -0
- package/dist/data/test/function/popcount__loop_body_1.mcfunction +8 -0
- package/dist/data/test/function/popcount__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/popcount__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/popcount__merge_4.mcfunction +8 -0
- package/dist/data/test/function/popcount__then_3.mcfunction +4 -0
- package/dist/data/test/function/pow_int.mcfunction +6 -0
- package/dist/data/test/function/pow_int__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/pow_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/test/function/pow_int__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/pow_int__merge_1.mcfunction +4 -0
- package/dist/data/test/function/pow_int__merge_7.mcfunction +8 -0
- package/dist/data/test/function/pow_int__then_0.mcfunction +2 -0
- package/dist/data/test/function/pow_int__then_6.mcfunction +4 -0
- package/dist/data/test/function/projectile_land_t.mcfunction +5 -0
- package/dist/data/test/function/projectile_land_t__merge_1.mcfunction +7 -0
- package/dist/data/test/function/projectile_land_t__then_0.mcfunction +2 -0
- package/dist/data/test/function/projectile_max_height.mcfunction +10 -0
- package/dist/data/test/function/projectile_vy.mcfunction +9 -0
- package/dist/data/test/function/projectile_x.mcfunction +8 -0
- package/dist/data/test/function/projectile_y.mcfunction +19 -0
- package/dist/data/test/function/ptimer/new.mcfunction +3 -0
- package/dist/data/test/function/ptimer/reset.mcfunction +1 -0
- package/dist/data/test/function/ptimer/tick.mcfunction +8 -0
- package/dist/data/test/function/ptimer/tick__merge_1.mcfunction +2 -0
- package/dist/data/test/function/ptimer/tick__then_0.mcfunction +3 -0
- package/dist/data/test/function/quadratic_disc.mcfunction +12 -0
- package/dist/data/test/function/quadratic_x1.mcfunction +7 -0
- package/dist/data/test/function/quadratic_x1__merge_1.mcfunction +13 -0
- package/dist/data/test/function/quadratic_x1__merge_4.mcfunction +15 -0
- package/dist/data/test/function/quadratic_x1__then_0.mcfunction +2 -0
- package/dist/data/test/function/quadratic_x1__then_3.mcfunction +2 -0
- package/dist/data/test/function/quadratic_x2.mcfunction +7 -0
- package/dist/data/test/function/quadratic_x2__merge_1.mcfunction +13 -0
- package/dist/data/test/function/quadratic_x2__merge_4.mcfunction +15 -0
- package/dist/data/test/function/quadratic_x2__then_0.mcfunction +2 -0
- package/dist/data/test/function/quadratic_x2__then_3.mcfunction +2 -0
- package/dist/data/test/function/quat_cos_half.mcfunction +8 -0
- package/dist/data/test/function/quat_sin_half.mcfunction +8 -0
- package/dist/data/test/function/random_bool.mcfunction +7 -0
- package/dist/data/test/function/random_bool__merge_1.mcfunction +4 -0
- package/dist/data/test/function/random_bool__then_0.mcfunction +4 -0
- package/dist/data/test/function/random_range.mcfunction +9 -0
- package/dist/data/test/function/random_range__merge_1.mcfunction +7 -0
- package/dist/data/test/function/random_range__then_0.mcfunction +4 -0
- package/dist/data/test/function/reverse_int.mcfunction +7 -0
- package/dist/data/test/function/reverse_int__loop_body_3.mcfunction +14 -0
- package/dist/data/test/function/reverse_int__loop_exit_4.mcfunction +4 -0
- package/dist/data/test/function/reverse_int__loop_header_2.mcfunction +4 -0
- package/dist/data/test/function/reverse_int__merge_1.mcfunction +2 -0
- package/dist/data/test/function/reverse_int__merge_6.mcfunction +1 -0
- package/dist/data/test/function/reverse_int__then_0.mcfunction +5 -0
- package/dist/data/test/function/reverse_int__then_5.mcfunction +3 -0
- package/dist/data/test/function/rgb_b.mcfunction +5 -0
- package/dist/data/test/function/rgb_g.mcfunction +8 -0
- package/dist/data/test/function/rgb_lerp.mcfunction +71 -0
- package/dist/data/test/function/rgb_pack.mcfunction +14 -0
- package/dist/data/test/function/rgb_r.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_h.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_h__merge_1.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__merge_12.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__merge_14.mcfunction +1 -0
- package/dist/data/test/function/rgb_to_h__merge_17.mcfunction +9 -0
- package/dist/data/test/function/rgb_to_h__merge_3.mcfunction +5 -0
- package/dist/data/test/function/rgb_to_h__merge_5.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__merge_7.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_h__merge_9.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__then_0.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_11.mcfunction +12 -0
- package/dist/data/test/function/rgb_to_h__then_13.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_h__then_16.mcfunction +9 -0
- package/dist/data/test/function/rgb_to_h__then_2.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_4.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_6.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_h__then_8.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_l__merge_1.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_l__merge_3.mcfunction +5 -0
- package/dist/data/test/function/rgb_to_l__merge_5.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_l__merge_7.mcfunction +9 -0
- package/dist/data/test/function/rgb_to_l__then_0.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l__then_2.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l__then_4.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_l__then_6.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_s__merge_1.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_s__merge_12.mcfunction +10 -0
- package/dist/data/test/function/rgb_to_s__merge_3.mcfunction +5 -0
- package/dist/data/test/function/rgb_to_s__merge_5.mcfunction +4 -0
- package/dist/data/test/function/rgb_to_s__merge_7.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_s__merge_9.mcfunction +13 -0
- package/dist/data/test/function/rgb_to_s__then_0.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_11.mcfunction +8 -0
- package/dist/data/test/function/rgb_to_s__then_2.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_4.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_6.mcfunction +2 -0
- package/dist/data/test/function/rgb_to_s__then_8.mcfunction +2 -0
- package/dist/data/test/function/rotate2d_x.mcfunction +20 -0
- package/dist/data/test/function/rotate2d_y.mcfunction +20 -0
- package/dist/data/test/function/rotate_x_y.mcfunction +28 -0
- package/dist/data/test/function/rotate_x_z.mcfunction +28 -0
- package/dist/data/test/function/rotate_y_x.mcfunction +28 -0
- package/dist/data/test/function/rotate_y_z.mcfunction +30 -0
- package/dist/data/test/function/scale2d_x.mcfunction +8 -0
- package/dist/data/test/function/scale2d_y.mcfunction +8 -0
- package/dist/data/test/function/scale3d_x.mcfunction +8 -0
- package/dist/data/test/function/scale3d_y.mcfunction +8 -0
- package/dist/data/test/function/scale3d_z.mcfunction +8 -0
- package/dist/data/test/function/scale_x.mcfunction +8 -0
- package/dist/data/test/function/scale_y.mcfunction +8 -0
- package/dist/data/test/function/scale_z.mcfunction +8 -0
- package/dist/data/test/function/seconds_to_ticks.mcfunction +5 -0
- package/dist/data/test/function/showcase_load.mcfunction +4 -0
- package/dist/data/test/function/showcase_tick.mcfunction +1 -0
- package/dist/data/test/function/sign.mcfunction +5 -0
- package/dist/data/test/function/sign__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sign__merge_4.mcfunction +2 -0
- package/dist/data/test/function/sign__then_0.mcfunction +2 -0
- package/dist/data/test/function/sign__then_3.mcfunction +2 -0
- package/dist/data/test/function/sin_fixed.mcfunction +9 -0
- package/dist/data/test/function/sin_fixed__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__merge_3.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__merge_6.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__merge_9.mcfunction +10 -0
- package/dist/data/test/function/sin_fixed__then_0.mcfunction +4 -0
- package/dist/data/test/function/sin_fixed__then_2.mcfunction +6 -0
- package/dist/data/test/function/sin_fixed__then_5.mcfunction +8 -0
- package/dist/data/test/function/sin_fixed__then_8.mcfunction +10 -0
- package/dist/data/test/function/sin_hp.mcfunction +6 -0
- package/dist/data/test/function/smootherstep.mcfunction +10 -0
- package/dist/data/test/function/smootherstep__merge_1.mcfunction +12 -0
- package/dist/data/test/function/smootherstep__merge_4.mcfunction +4 -0
- package/dist/data/test/function/smootherstep__merge_6.mcfunction +27 -0
- package/dist/data/test/function/smootherstep__then_0.mcfunction +2 -0
- package/dist/data/test/function/smootherstep__then_3.mcfunction +2 -0
- package/dist/data/test/function/smootherstep__then_5.mcfunction +2 -0
- package/dist/data/test/function/smoothstep.mcfunction +10 -0
- package/dist/data/test/function/smoothstep__merge_1.mcfunction +12 -0
- package/dist/data/test/function/smoothstep__merge_4.mcfunction +4 -0
- package/dist/data/test/function/smoothstep__merge_6.mcfunction +15 -0
- package/dist/data/test/function/smoothstep__then_0.mcfunction +2 -0
- package/dist/data/test/function/smoothstep__then_3.mcfunction +2 -0
- package/dist/data/test/function/smoothstep__then_5.mcfunction +2 -0
- package/dist/data/test/function/solve2x2_x.mcfunction +17 -0
- package/dist/data/test/function/solve2x2_x__merge_1.mcfunction +12 -0
- package/dist/data/test/function/solve2x2_x__then_0.mcfunction +2 -0
- package/dist/data/test/function/solve2x2_y.mcfunction +17 -0
- package/dist/data/test/function/solve2x2_y__merge_1.mcfunction +12 -0
- package/dist/data/test/function/solve2x2_y__then_0.mcfunction +2 -0
- package/dist/data/test/function/sort2_max.mcfunction +6 -0
- package/dist/data/test/function/sort2_max__merge_1.mcfunction +1 -0
- package/dist/data/test/function/sort2_max__then_0.mcfunction +1 -0
- package/dist/data/test/function/sort2_min.mcfunction +6 -0
- package/dist/data/test/function/sort2_min__merge_1.mcfunction +1 -0
- package/dist/data/test/function/sort2_min__then_0.mcfunction +1 -0
- package/dist/data/test/function/sort3.mcfunction +11 -0
- package/dist/data/test/function/sort3__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sort3__merge_10.mcfunction +1 -0
- package/dist/data/test/function/sort3__merge_3.mcfunction +4 -0
- package/dist/data/test/function/sort3__merge_5.mcfunction +5 -0
- package/dist/data/test/function/sort3__merge_7.mcfunction +5 -0
- package/dist/data/test/function/sort3__then_0.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_2.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_4.mcfunction +4 -0
- package/dist/data/test/function/sort3__then_6.mcfunction +1 -0
- package/dist/data/test/function/sort3__then_9.mcfunction +1 -0
- package/dist/data/test/function/sort4.mcfunction +13 -0
- package/dist/data/test/function/sort4__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sort4__merge_11.mcfunction +5 -0
- package/dist/data/test/function/sort4__merge_14.mcfunction +5 -0
- package/dist/data/test/function/sort4__merge_17.mcfunction +1 -0
- package/dist/data/test/function/sort4__merge_3.mcfunction +4 -0
- package/dist/data/test/function/sort4__merge_5.mcfunction +4 -0
- package/dist/data/test/function/sort4__merge_7.mcfunction +4 -0
- package/dist/data/test/function/sort4__merge_9.mcfunction +5 -0
- package/dist/data/test/function/sort4__then_0.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_10.mcfunction +1 -0
- package/dist/data/test/function/sort4__then_13.mcfunction +1 -0
- package/dist/data/test/function/sort4__then_16.mcfunction +1 -0
- package/dist/data/test/function/sort4__then_2.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_4.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_6.mcfunction +4 -0
- package/dist/data/test/function/sort4__then_8.mcfunction +4 -0
- package/dist/data/test/function/sort5.mcfunction +15 -0
- package/dist/data/test/function/sort5__merge_1.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_11.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_13.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_15.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_17.mcfunction +5 -0
- package/dist/data/test/function/sort5__merge_19.mcfunction +5 -0
- package/dist/data/test/function/sort5__merge_22.mcfunction +5 -0
- package/dist/data/test/function/sort5__merge_25.mcfunction +5 -0
- package/dist/data/test/function/sort5__merge_28.mcfunction +1 -0
- package/dist/data/test/function/sort5__merge_3.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_5.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_7.mcfunction +4 -0
- package/dist/data/test/function/sort5__merge_9.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_0.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_10.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_12.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_14.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_16.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_18.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_2.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_21.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_24.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_27.mcfunction +1 -0
- package/dist/data/test/function/sort5__then_4.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_6.mcfunction +4 -0
- package/dist/data/test/function/sort5__then_8.mcfunction +4 -0
- package/dist/data/test/function/sphere_contains.mcfunction +29 -0
- package/dist/data/test/function/sphere_contains__merge_1.mcfunction +2 -0
- package/dist/data/test/function/sphere_contains__then_0.mcfunction +2 -0
- package/dist/data/test/function/spiral_ring.mcfunction +5 -0
- package/dist/data/test/function/spiral_ring__merge_1.mcfunction +13 -0
- package/dist/data/test/function/spiral_ring__then_0.mcfunction +2 -0
- package/dist/data/test/function/spring_force.mcfunction +11 -0
- package/dist/data/test/function/spring_update_v.mcfunction +18 -0
- package/dist/data/test/function/sqrt_fixed.mcfunction +8 -0
- package/dist/data/test/function/sqrt_fx.mcfunction +11 -0
- package/dist/data/test/function/start.mcfunction +8 -0
- package/dist/data/test/function/stop.mcfunction +2 -0
- package/dist/data/test/function/stop__foreach_t0.mcfunction +1 -0
- package/dist/data/test/function/sub2d_x.mcfunction +5 -0
- package/dist/data/test/function/sub2d_y.mcfunction +5 -0
- package/dist/data/test/function/sub3d_x.mcfunction +5 -0
- package/dist/data/test/function/sub3d_y.mcfunction +5 -0
- package/dist/data/test/function/sub3d_z.mcfunction +5 -0
- package/dist/data/test/function/terrain_height.mcfunction +24 -0
- package/dist/data/test/function/tick_to_ms.mcfunction +5 -0
- package/dist/data/test/function/tick_to_seconds.mcfunction +5 -0
- package/dist/data/test/function/tile_center.mcfunction +10 -0
- package/dist/data/test/function/tile_of.mcfunction +7 -0
- package/dist/data/test/function/tile_of__merge_1.mcfunction +7 -0
- package/dist/data/test/function/tile_of__then_0.mcfunction +3 -0
- package/dist/data/test/function/timer/done.mcfunction +5 -0
- package/dist/data/test/function/timer/elapsed.mcfunction +2 -0
- package/dist/data/test/function/timer/new.mcfunction +5 -0
- package/dist/data/test/function/timer/pause.mcfunction +1 -0
- package/dist/data/test/function/timer/remaining.mcfunction +10 -0
- package/dist/data/test/function/timer/remaining__merge_1.mcfunction +2 -0
- package/dist/data/test/function/timer/remaining__then_0.mcfunction +1 -0
- package/dist/data/test/function/timer/reset.mcfunction +1 -0
- package/dist/data/test/function/timer/start.mcfunction +1 -0
- package/dist/data/test/function/timer/tick.mcfunction +9 -0
- package/dist/data/test/function/timer/tick__merge_1.mcfunction +1 -0
- package/dist/data/test/function/timer/tick__merge_3.mcfunction +1 -0
- package/dist/data/test/function/timer/tick__then_0.mcfunction +4 -0
- package/dist/data/test/function/timer/tick__then_2.mcfunction +4 -0
- package/dist/data/test/function/uniform_frac.mcfunction +12 -0
- package/dist/data/test/function/uniform_frac__merge_1.mcfunction +4 -0
- package/dist/data/test/function/uniform_frac__then_0.mcfunction +4 -0
- package/dist/data/test/function/uniform_int.mcfunction +14 -0
- package/dist/data/test/function/uniform_int__merge_1.mcfunction +9 -0
- package/dist/data/test/function/uniform_int__then_0.mcfunction +4 -0
- package/dist/data/test/function/uniform_scale.mcfunction +8 -0
- package/dist/data/test/function/update_pos.mcfunction +5 -0
- package/dist/data/test/function/value_noise_1d.mcfunction +14 -0
- package/dist/data/test/function/value_noise_1d__merge_1.mcfunction +39 -0
- package/dist/data/test/function/value_noise_1d__then_0.mcfunction +7 -0
- package/dist/data/test/function/value_noise_2d.mcfunction +15 -0
- package/dist/data/test/function/value_noise_2d__merge_1.mcfunction +13 -0
- package/dist/data/test/function/value_noise_2d__merge_3.mcfunction +98 -0
- package/dist/data/test/function/value_noise_2d__then_0.mcfunction +7 -0
- package/dist/data/test/function/value_noise_2d__then_2.mcfunction +7 -0
- package/dist/data/test/function/water_drag_fx.mcfunction +2 -0
- package/dist/data/test/function/weighted2.mcfunction +17 -0
- package/dist/data/test/function/weighted2__merge_1.mcfunction +6 -0
- package/dist/data/test/function/weighted2__merge_3.mcfunction +2 -0
- package/dist/data/test/function/weighted2__then_0.mcfunction +4 -0
- package/dist/data/test/function/weighted2__then_2.mcfunction +2 -0
- package/dist/data/test/function/weighted3.mcfunction +20 -0
- package/dist/data/test/function/weighted3__merge_1.mcfunction +7 -0
- package/dist/data/test/function/weighted3__merge_3.mcfunction +6 -0
- package/dist/data/test/function/weighted3__merge_6.mcfunction +2 -0
- package/dist/data/test/function/weighted3__then_0.mcfunction +4 -0
- package/dist/data/test/function/weighted3__then_2.mcfunction +2 -0
- package/dist/data/test/function/weighted3__then_5.mcfunction +2 -0
- package/dist/data/turret/function/__load.mcfunction +5 -0
- package/dist/data/turret/function/__tick.mcfunction +4 -0
- package/dist/data/turret/function/__trigger_deploy_turret_dispatch.mcfunction +4 -0
- package/dist/data/turret/function/deploy_turret.mcfunction +8 -0
- package/dist/data/turret/function/turret_tick/at_1.mcfunction +2 -0
- package/dist/data/turret/function/turret_tick/foreach_0.mcfunction +2 -0
- package/dist/data/turret/function/turret_tick/foreach_2.mcfunction +2 -0
- package/dist/data/turret/function/turret_tick/tick_body.mcfunction +3 -0
- package/dist/data/turret/function/turret_tick/tick_skip.mcfunction +1 -0
- package/dist/data/turret/function/turret_tick.mcfunction +5 -0
- package/dist/diagnostics/index.d.ts +44 -0
- package/dist/diagnostics/index.js +140 -0
- package/dist/events/types.d.ts +35 -0
- package/dist/events/types.js +59 -0
- package/dist/formatter/index.d.ts +1 -0
- package/dist/formatter/index.js +26 -0
- package/dist/gcd2.map.json +15 -0
- package/dist/gcd3.map.json +17 -0
- package/dist/gcd_test.map.json +15 -0
- package/dist/index.d.ts +62 -0
- package/dist/ir/builder.d.ts +33 -0
- package/dist/ir/builder.js +99 -0
- package/dist/ir/types.d.ts +132 -0
- package/dist/ir/types.js +15 -0
- package/dist/isqrttest.map.json +15 -0
- package/dist/lexer/index.d.ts +37 -0
- package/dist/lexer/index.js +569 -0
- package/dist/lowering/index.d.ts +188 -0
- package/dist/lowering/index.js +3405 -0
- package/dist/mathtest.map.json +6 -0
- package/dist/mc-test/client.d.ts +128 -0
- package/dist/mc-test/client.js +174 -0
- package/dist/mc-test/runner.d.ts +28 -0
- package/dist/mc-test/runner.js +150 -0
- package/dist/mc-test/setup.d.ts +11 -0
- package/dist/mc-test/setup.js +98 -0
- package/dist/mc-validator/index.d.ts +17 -0
- package/dist/mc-validator/index.js +322 -0
- package/dist/mypack.map.json +27 -0
- package/dist/nbt/index.d.ts +86 -0
- package/dist/nbt/index.js +250 -0
- package/dist/optimizer/commands.d.ts +38 -0
- package/dist/optimizer/commands.js +451 -0
- package/dist/optimizer/dce.d.ts +34 -0
- package/dist/optimizer/dce.js +639 -0
- package/dist/optimizer/passes.d.ts +34 -0
- package/dist/optimizer/passes.js +243 -0
- package/dist/optimizer/structure.d.ts +9 -0
- package/dist/optimizer/structure.js +356 -0
- package/dist/pack.mcmeta +6 -0
- package/dist/parser/index.d.ts +93 -0
- package/dist/parser/index.js +1687 -0
- package/dist/repl.d.ts +16 -0
- package/dist/repl.js +165 -0
- package/dist/reqtest.map.json +4 -0
- package/dist/reqtest2.map.json +4 -0
- package/dist/runtime/index.d.ts +107 -0
- package/dist/runtime/index.js +1409 -0
- package/dist/runtime.map.json +7 -0
- package/dist/src/__tests__/array-param.test.d.ts +9 -0
- package/dist/src/__tests__/array-param.test.js +69 -0
- package/dist/src/__tests__/codegen.test.d.ts +1 -0
- package/dist/src/__tests__/codegen.test.js +152 -0
- package/dist/src/__tests__/debug-compile.test.d.ts +1 -0
- package/dist/src/__tests__/debug-compile.test.js +24 -0
- package/dist/src/__tests__/debug-compile2.test.d.ts +1 -0
- package/dist/src/__tests__/debug-compile2.test.js +19 -0
- package/dist/src/__tests__/debug-compile3.test.d.ts +1 -0
- package/dist/src/__tests__/debug-compile3.test.js +22 -0
- package/dist/src/__tests__/debug-wm.test.d.ts +1 -0
- package/dist/src/__tests__/debug-wm.test.js +50 -0
- package/dist/src/__tests__/debug_gen.d.ts +1 -0
- package/dist/src/__tests__/debug_gen.js +24 -0
- package/dist/src/__tests__/debug_scoreboard.test.d.ts +1 -0
- package/dist/src/__tests__/debug_scoreboard.test.js +19 -0
- package/dist/src/__tests__/debug_scoreboard2.test.d.ts +1 -0
- package/dist/src/__tests__/debug_scoreboard2.test.js +27 -0
- package/dist/src/__tests__/debug_scoreboard3.test.d.ts +1 -0
- package/dist/src/__tests__/debug_scoreboard3.test.js +37 -0
- package/dist/src/__tests__/e2e.test.d.ts +6 -0
- package/dist/src/__tests__/e2e.test.js +1789 -0
- package/dist/src/__tests__/entity-types.test.d.ts +1 -0
- package/dist/src/__tests__/entity-types.test.js +203 -0
- package/dist/src/__tests__/lowering.test.d.ts +1 -0
- package/dist/src/__tests__/lowering.test.js +1015 -0
- package/dist/src/__tests__/macro.test.d.ts +8 -0
- package/dist/src/__tests__/macro.test.js +306 -0
- package/dist/src/__tests__/nbt.test.d.ts +1 -0
- package/dist/src/__tests__/nbt.test.js +82 -0
- package/dist/src/__tests__/optimizer/lir/peephole.test.js +92 -0
- package/dist/src/__tests__/optimizer-advanced.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer-advanced.test.js +124 -0
- package/dist/src/__tests__/optimizer.test.d.ts +1 -0
- package/dist/src/__tests__/optimizer.test.js +149 -0
- package/dist/src/__tests__/runtime.test.d.ts +1 -0
- package/dist/src/__tests__/runtime.test.js +289 -0
- package/dist/src/__tests__/stdlib/math.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/math.test.js +121 -0
- package/dist/src/__tests__/stdlib-advanced.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib-advanced.test.js +374 -0
- package/dist/src/__tests__/stdlib-bigint.test.d.ts +7 -0
- package/dist/src/__tests__/stdlib-bigint.test.js +426 -0
- package/dist/src/__tests__/stdlib-math.test.d.ts +7 -0
- package/dist/src/__tests__/stdlib-math.test.js +351 -0
- package/dist/src/__tests__/stdlib-vec.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib-vec.test.js +263 -0
- package/dist/src/__tests__/structure-optimizer.test.d.ts +1 -0
- package/dist/src/__tests__/structure-optimizer.test.js +33 -0
- package/dist/src/__tests__/timer-debug.test.d.ts +1 -0
- package/dist/src/__tests__/timer-debug.test.js +33 -0
- package/dist/src/__tests__/var-allocator.test.d.ts +1 -0
- package/dist/src/__tests__/var-allocator.test.js +69 -0
- package/dist/src/ast/types.d.ts +7 -0
- package/dist/src/codegen/cmdblock/index.d.ts +26 -0
- package/dist/src/codegen/cmdblock/index.js +45 -0
- package/dist/src/codegen/mcfunction/index.d.ts +40 -0
- package/dist/src/codegen/mcfunction/index.js +606 -0
- package/dist/src/codegen/structure/index.d.ts +24 -0
- package/dist/src/codegen/structure/index.js +279 -0
- package/dist/src/codegen/var-allocator.d.ts +45 -0
- package/dist/src/codegen/var-allocator.js +104 -0
- package/dist/src/hir/lower.js +51 -0
- package/dist/src/ir/builder.d.ts +33 -0
- package/dist/src/ir/builder.js +99 -0
- package/dist/src/ir/types.d.ts +132 -0
- package/dist/src/ir/types.js +15 -0
- package/dist/src/lowering/index.d.ts +188 -0
- package/dist/src/lowering/index.js +3405 -0
- package/dist/src/lsp/main.js +0 -0
- package/dist/src/mir/lower.js +93 -12
- package/dist/src/optimizer/commands.d.ts +38 -0
- package/dist/src/optimizer/commands.js +451 -0
- package/dist/src/optimizer/lir/peephole.d.ts +13 -4
- package/dist/src/optimizer/lir/peephole.js +44 -5
- package/dist/src/optimizer/passes.d.ts +34 -0
- package/dist/src/optimizer/passes.js +243 -0
- package/dist/src/optimizer/structure.d.ts +9 -0
- package/dist/src/optimizer/structure.js +356 -0
- package/dist/src/parser/index.js +12 -0
- package/dist/src2/__tests__/e2e/basic.test.d.ts +8 -0
- package/dist/src2/__tests__/e2e/basic.test.js +140 -0
- package/dist/src2/__tests__/e2e/macros.test.d.ts +9 -0
- package/dist/src2/__tests__/e2e/macros.test.js +182 -0
- package/dist/src2/__tests__/e2e/migrate.test.d.ts +13 -0
- package/dist/src2/__tests__/e2e/migrate.test.js +2739 -0
- package/dist/src2/__tests__/hir/desugar.test.d.ts +1 -0
- package/dist/src2/__tests__/hir/desugar.test.js +234 -0
- package/dist/src2/__tests__/lir/lower.test.d.ts +1 -0
- package/dist/src2/__tests__/lir/lower.test.js +559 -0
- package/dist/src2/__tests__/lir/types.test.d.ts +1 -0
- package/dist/src2/__tests__/lir/types.test.js +185 -0
- package/dist/src2/__tests__/lir/verify.test.d.ts +1 -0
- package/dist/src2/__tests__/lir/verify.test.js +221 -0
- package/dist/src2/__tests__/mir/arithmetic.test.d.ts +1 -0
- package/dist/src2/__tests__/mir/arithmetic.test.js +130 -0
- package/dist/src2/__tests__/mir/control-flow.test.d.ts +1 -0
- package/dist/src2/__tests__/mir/control-flow.test.js +205 -0
- package/dist/src2/__tests__/mir/verify.test.d.ts +1 -0
- package/dist/src2/__tests__/mir/verify.test.js +223 -0
- package/dist/src2/__tests__/optimizer/block_merge.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/block_merge.test.js +78 -0
- package/dist/src2/__tests__/optimizer/branch_simplify.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/branch_simplify.test.js +58 -0
- package/dist/src2/__tests__/optimizer/constant_fold.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/constant_fold.test.js +131 -0
- package/dist/src2/__tests__/optimizer/copy_prop.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/copy_prop.test.js +91 -0
- package/dist/src2/__tests__/optimizer/dce.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/dce.test.js +76 -0
- package/dist/src2/__tests__/optimizer/pipeline.test.d.ts +1 -0
- package/dist/src2/__tests__/optimizer/pipeline.test.js +102 -0
- package/dist/src2/emit/compile.d.ts +19 -0
- package/dist/src2/emit/compile.js +80 -0
- package/dist/src2/emit/index.d.ts +17 -0
- package/dist/src2/emit/index.js +172 -0
- package/dist/src2/hir/lower.d.ts +15 -0
- package/dist/src2/hir/lower.js +378 -0
- package/dist/src2/hir/types.d.ts +373 -0
- package/dist/src2/hir/types.js +16 -0
- package/dist/src2/lir/lower.d.ts +15 -0
- package/dist/src2/lir/lower.js +453 -0
- package/dist/src2/lir/types.d.ts +136 -0
- package/dist/src2/lir/types.js +11 -0
- package/dist/src2/lir/verify.d.ts +14 -0
- package/dist/src2/lir/verify.js +113 -0
- package/dist/src2/mir/lower.d.ts +9 -0
- package/dist/src2/mir/lower.js +1030 -0
- package/dist/src2/mir/macro.d.ts +22 -0
- package/dist/src2/mir/macro.js +168 -0
- package/dist/src2/mir/types.d.ts +183 -0
- package/dist/src2/mir/types.js +11 -0
- package/dist/src2/mir/verify.d.ts +16 -0
- package/dist/src2/mir/verify.js +216 -0
- package/dist/src2/optimizer/block_merge.d.ts +12 -0
- package/dist/src2/optimizer/block_merge.js +84 -0
- package/dist/src2/optimizer/branch_simplify.d.ts +9 -0
- package/dist/src2/optimizer/branch_simplify.js +28 -0
- package/dist/src2/optimizer/constant_fold.d.ts +10 -0
- package/dist/src2/optimizer/constant_fold.js +85 -0
- package/dist/src2/optimizer/copy_prop.d.ts +9 -0
- package/dist/src2/optimizer/copy_prop.js +113 -0
- package/dist/src2/optimizer/dce.d.ts +8 -0
- package/dist/src2/optimizer/dce.js +155 -0
- package/dist/src2/optimizer/pipeline.d.ts +10 -0
- package/dist/src2/optimizer/pipeline.js +42 -0
- package/dist/swap_test.map.json +14 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/typechecker/index.d.ts +61 -0
- package/dist/typechecker/index.js +1034 -0
- package/dist/types/entity-hierarchy.d.ts +29 -0
- package/dist/types/entity-hierarchy.js +107 -0
- package/editors/vscode/package-lock.json +3 -3
- package/editors/vscode/package.json +1 -1
- package/examples/math-demo.mcrs +127 -0
- package/examples/showcase.mcrs +64 -109
- package/package.json +1 -1
- package/src/__tests__/array-param.test.ts +77 -0
- package/src/__tests__/e2e/for-in-array.test.ts +62 -0
- package/src/__tests__/optimizer/lir/peephole.test.ts +100 -0
- package/src/__tests__/stdlib/math.test.ts +102 -0
- package/src/ast/types.ts +1 -0
- package/src/hir/lower.ts +52 -0
- package/src/mir/lower.ts +109 -11
- package/src/optimizer/lir/peephole.ts +50 -5
- package/src/parser/index.ts +13 -0
- package/src/stdlib/bigint.mcrs +128 -100
- package/src/stdlib/easing.mcrs +182 -0
- package/src/stdlib/list.mcrs +76 -0
- package/src/stdlib/matrix.mcrs +108 -0
- package/src/stdlib/noise.mcrs +153 -0
- package/src/stdlib/physics.mcrs +134 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* RedScript MC Test Client
|
|
3
|
+
*
|
|
4
|
+
* Connects to a Paper server running TestHarnessPlugin and provides
|
|
5
|
+
* a fluent API for integration testing compiled datapacks.
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* const mc = new MCTestClient('localhost', 25561)
|
|
9
|
+
* await mc.command('/function arena:start')
|
|
10
|
+
* await mc.ticks(100)
|
|
11
|
+
* const score = await mc.scoreboard('Alice', 'kills')
|
|
12
|
+
* expect(score).toBe(3)
|
|
13
|
+
*/
|
|
14
|
+
export interface ScoreResult {
|
|
15
|
+
player: string;
|
|
16
|
+
obj: string;
|
|
17
|
+
value: number;
|
|
18
|
+
}
|
|
19
|
+
export interface BlockResult {
|
|
20
|
+
x: number;
|
|
21
|
+
y: number;
|
|
22
|
+
z: number;
|
|
23
|
+
world: string;
|
|
24
|
+
type: string;
|
|
25
|
+
blockData: string;
|
|
26
|
+
}
|
|
27
|
+
export interface EntityResult {
|
|
28
|
+
uuid: string;
|
|
29
|
+
name: string;
|
|
30
|
+
type: string;
|
|
31
|
+
x: number;
|
|
32
|
+
y: number;
|
|
33
|
+
z: number;
|
|
34
|
+
world: string;
|
|
35
|
+
tags: string[];
|
|
36
|
+
}
|
|
37
|
+
export interface ChatMessage {
|
|
38
|
+
tick: number;
|
|
39
|
+
type: string;
|
|
40
|
+
sender?: string;
|
|
41
|
+
message: string;
|
|
42
|
+
}
|
|
43
|
+
export interface GameEvent {
|
|
44
|
+
tick: number;
|
|
45
|
+
type: string;
|
|
46
|
+
player?: string;
|
|
47
|
+
advancement?: string;
|
|
48
|
+
cause?: string;
|
|
49
|
+
}
|
|
50
|
+
export interface ServerStatus {
|
|
51
|
+
online: boolean;
|
|
52
|
+
tps_1m: number;
|
|
53
|
+
tps_5m: number;
|
|
54
|
+
tps_15m: number;
|
|
55
|
+
players: number;
|
|
56
|
+
playerNames: string[];
|
|
57
|
+
worlds: string[];
|
|
58
|
+
version: string;
|
|
59
|
+
}
|
|
60
|
+
export declare class MCTestClient {
|
|
61
|
+
private baseUrl;
|
|
62
|
+
constructor(host?: string, port?: number);
|
|
63
|
+
private get;
|
|
64
|
+
private post;
|
|
65
|
+
/** Check if server is reachable */
|
|
66
|
+
isOnline(): Promise<boolean>;
|
|
67
|
+
/** Get server status */
|
|
68
|
+
status(): Promise<ServerStatus>;
|
|
69
|
+
/** Run a command on the server (as console sender) */
|
|
70
|
+
command(cmd: string): Promise<{
|
|
71
|
+
ok: boolean;
|
|
72
|
+
cmd: string;
|
|
73
|
+
}>;
|
|
74
|
+
/** Wait for N server ticks (50ms each) */
|
|
75
|
+
ticks(count: number): Promise<void>;
|
|
76
|
+
/** Wait for 1 second = 20 ticks */
|
|
77
|
+
seconds(s: number): Promise<void>;
|
|
78
|
+
/** Get a scoreboard value */
|
|
79
|
+
scoreboard(player: string, obj: string): Promise<number>;
|
|
80
|
+
/** Get all scoreboard values for a selector */
|
|
81
|
+
scoreboardAll(selector: string, obj: string): Promise<ScoreResult[]>;
|
|
82
|
+
/** Get block at position */
|
|
83
|
+
block(x: number, y: number, z: number, world?: string): Promise<BlockResult>;
|
|
84
|
+
/** Get entities matching selector */
|
|
85
|
+
entities(selector?: string): Promise<EntityResult[]>;
|
|
86
|
+
/** Get chat log since a tick */
|
|
87
|
+
chat(since?: number): Promise<ChatMessage[]>;
|
|
88
|
+
/** Get last N chat messages */
|
|
89
|
+
chatLast(n: number): Promise<ChatMessage[]>;
|
|
90
|
+
/** Get events since a tick, optionally filtered by type */
|
|
91
|
+
events(since?: number, type?: string): Promise<GameEvent[]>;
|
|
92
|
+
/** Clear chat and event logs */
|
|
93
|
+
reset(): Promise<void>;
|
|
94
|
+
/**
|
|
95
|
+
* Full test reset: clear logs + fill test area with air + kill entities + reset scoreboards.
|
|
96
|
+
* Call this at the start of each integration test.
|
|
97
|
+
*/
|
|
98
|
+
fullReset(options?: {
|
|
99
|
+
x1?: number;
|
|
100
|
+
y1?: number;
|
|
101
|
+
z1?: number;
|
|
102
|
+
x2?: number;
|
|
103
|
+
y2?: number;
|
|
104
|
+
z2?: number;
|
|
105
|
+
clearArea?: boolean;
|
|
106
|
+
killEntities?: boolean;
|
|
107
|
+
resetScoreboards?: boolean;
|
|
108
|
+
}): Promise<void>;
|
|
109
|
+
/** Reload datapacks */
|
|
110
|
+
reload(): Promise<void>;
|
|
111
|
+
/**
|
|
112
|
+
* Assert a scoreboard value equals expected.
|
|
113
|
+
* Throws with a descriptive error if it doesn't match.
|
|
114
|
+
*/
|
|
115
|
+
assertScore(player: string, obj: string, expected: number, msg?: string): Promise<void>;
|
|
116
|
+
/**
|
|
117
|
+
* Assert a block type at position.
|
|
118
|
+
*/
|
|
119
|
+
assertBlock(x: number, y: number, z: number, expectedType: string, world?: string): Promise<void>;
|
|
120
|
+
/**
|
|
121
|
+
* Assert chat log contains a message matching substring.
|
|
122
|
+
*/
|
|
123
|
+
assertChatContains(substring: string, since?: number): Promise<void>;
|
|
124
|
+
/**
|
|
125
|
+
* Wait until a scoreboard value equals expected, up to timeout ms.
|
|
126
|
+
*/
|
|
127
|
+
waitForScore(player: string, obj: string, expected: number, timeoutMs?: number, pollMs?: number): Promise<void>;
|
|
128
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* RedScript MC Test Client
|
|
4
|
+
*
|
|
5
|
+
* Connects to a Paper server running TestHarnessPlugin and provides
|
|
6
|
+
* a fluent API for integration testing compiled datapacks.
|
|
7
|
+
*
|
|
8
|
+
* Usage:
|
|
9
|
+
* const mc = new MCTestClient('localhost', 25561)
|
|
10
|
+
* await mc.command('/function arena:start')
|
|
11
|
+
* await mc.ticks(100)
|
|
12
|
+
* const score = await mc.scoreboard('Alice', 'kills')
|
|
13
|
+
* expect(score).toBe(3)
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.MCTestClient = void 0;
|
|
17
|
+
class MCTestClient {
|
|
18
|
+
constructor(host = 'localhost', port = 25561) {
|
|
19
|
+
this.baseUrl = `http://${host}:${port}`;
|
|
20
|
+
}
|
|
21
|
+
async get(path, params = {}) {
|
|
22
|
+
const qs = Object.entries(params)
|
|
23
|
+
.map(([k, v]) => `${k}=${encodeURIComponent(String(v))}`)
|
|
24
|
+
.join('&');
|
|
25
|
+
const url = `${this.baseUrl}${path}${qs ? '?' + qs : ''}`;
|
|
26
|
+
const res = await fetch(url);
|
|
27
|
+
if (!res.ok) {
|
|
28
|
+
const body = await res.text();
|
|
29
|
+
throw new Error(`GET ${path} failed ${res.status}: ${body}`);
|
|
30
|
+
}
|
|
31
|
+
return res.json();
|
|
32
|
+
}
|
|
33
|
+
async post(path, body = {}) {
|
|
34
|
+
const res = await fetch(`${this.baseUrl}${path}`, {
|
|
35
|
+
method: 'POST',
|
|
36
|
+
headers: { 'Content-Type': 'application/json' },
|
|
37
|
+
body: JSON.stringify(body)
|
|
38
|
+
});
|
|
39
|
+
if (!res.ok) {
|
|
40
|
+
const text = await res.text();
|
|
41
|
+
throw new Error(`POST ${path} failed ${res.status}: ${text}`);
|
|
42
|
+
}
|
|
43
|
+
return res.json();
|
|
44
|
+
}
|
|
45
|
+
/** Check if server is reachable */
|
|
46
|
+
async isOnline() {
|
|
47
|
+
try {
|
|
48
|
+
const status = await this.get('/status');
|
|
49
|
+
return status.online;
|
|
50
|
+
}
|
|
51
|
+
catch {
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
/** Get server status */
|
|
56
|
+
async status() {
|
|
57
|
+
return this.get('/status');
|
|
58
|
+
}
|
|
59
|
+
/** Run a command on the server (as console sender) */
|
|
60
|
+
async command(cmd) {
|
|
61
|
+
return this.post('/command', { cmd });
|
|
62
|
+
}
|
|
63
|
+
/** Wait for N server ticks (50ms each) */
|
|
64
|
+
async ticks(count) {
|
|
65
|
+
await this.post('/tick', { count });
|
|
66
|
+
}
|
|
67
|
+
/** Wait for 1 second = 20 ticks */
|
|
68
|
+
async seconds(s) {
|
|
69
|
+
await this.ticks(s * 20);
|
|
70
|
+
}
|
|
71
|
+
/** Get a scoreboard value */
|
|
72
|
+
async scoreboard(player, obj) {
|
|
73
|
+
const result = await this.get('/scoreboard', { player, obj });
|
|
74
|
+
return result.value;
|
|
75
|
+
}
|
|
76
|
+
/** Get all scoreboard values for a selector */
|
|
77
|
+
async scoreboardAll(selector, obj) {
|
|
78
|
+
return this.get('/scoreboard', { player: selector, obj });
|
|
79
|
+
}
|
|
80
|
+
/** Get block at position */
|
|
81
|
+
async block(x, y, z, world = 'world') {
|
|
82
|
+
return this.get('/block', { x, y, z, world });
|
|
83
|
+
}
|
|
84
|
+
/** Get entities matching selector */
|
|
85
|
+
async entities(selector = '@e') {
|
|
86
|
+
return this.get('/entity', { sel: selector });
|
|
87
|
+
}
|
|
88
|
+
/** Get chat log since a tick */
|
|
89
|
+
async chat(since = 0) {
|
|
90
|
+
return this.get('/chat', { since });
|
|
91
|
+
}
|
|
92
|
+
/** Get last N chat messages */
|
|
93
|
+
async chatLast(n) {
|
|
94
|
+
return this.get('/chat', { last: n });
|
|
95
|
+
}
|
|
96
|
+
/** Get events since a tick, optionally filtered by type */
|
|
97
|
+
async events(since = 0, type) {
|
|
98
|
+
const params = { since };
|
|
99
|
+
if (type)
|
|
100
|
+
params.type = type;
|
|
101
|
+
return this.get('/events', params);
|
|
102
|
+
}
|
|
103
|
+
/** Clear chat and event logs */
|
|
104
|
+
async reset() {
|
|
105
|
+
await this.post('/reset');
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Full test reset: clear logs + fill test area with air + kill entities + reset scoreboards.
|
|
109
|
+
* Call this at the start of each integration test.
|
|
110
|
+
*/
|
|
111
|
+
async fullReset(options) {
|
|
112
|
+
await this.post('/reset', {
|
|
113
|
+
clearArea: options?.clearArea ?? true,
|
|
114
|
+
killEntities: options?.killEntities ?? true,
|
|
115
|
+
resetScoreboards: options?.resetScoreboards ?? true,
|
|
116
|
+
x1: options?.x1 ?? -50, y1: options?.y1 ?? 0, z1: options?.z1 ?? -50,
|
|
117
|
+
x2: options?.x2 ?? 50, y2: options?.y2 ?? 100, z2: options?.z2 ?? 50,
|
|
118
|
+
});
|
|
119
|
+
}
|
|
120
|
+
/** Reload datapacks */
|
|
121
|
+
async reload() {
|
|
122
|
+
await this.post('/reload');
|
|
123
|
+
await this.ticks(40); // wait 2s for reload
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Assert a scoreboard value equals expected.
|
|
127
|
+
* Throws with a descriptive error if it doesn't match.
|
|
128
|
+
*/
|
|
129
|
+
async assertScore(player, obj, expected, msg) {
|
|
130
|
+
const actual = await this.scoreboard(player, obj);
|
|
131
|
+
if (actual !== expected) {
|
|
132
|
+
throw new Error(msg ?? `assertScore failed: ${player}/${obj} expected ${expected}, got ${actual}`);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Assert a block type at position.
|
|
137
|
+
*/
|
|
138
|
+
async assertBlock(x, y, z, expectedType, world = 'world') {
|
|
139
|
+
const block = await this.block(x, y, z, world);
|
|
140
|
+
if (block.type !== expectedType) {
|
|
141
|
+
throw new Error(`assertBlock failed: (${x},${y},${z}) expected ${expectedType}, got ${block.type}`);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Assert chat log contains a message matching substring.
|
|
146
|
+
*/
|
|
147
|
+
async assertChatContains(substring, since = 0) {
|
|
148
|
+
const msgs = await this.chat(since);
|
|
149
|
+
const found = msgs.some(m => m.message.includes(substring));
|
|
150
|
+
if (!found) {
|
|
151
|
+
const recent = msgs.map(m => m.message).slice(-5).join(', ');
|
|
152
|
+
throw new Error(`assertChatContains: "${substring}" not found in chat. Recent: [${recent}]`);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Wait until a scoreboard value equals expected, up to timeout ms.
|
|
157
|
+
*/
|
|
158
|
+
async waitForScore(player, obj, expected, timeoutMs = 5000, pollMs = 100) {
|
|
159
|
+
const start = Date.now();
|
|
160
|
+
while (Date.now() - start < timeoutMs) {
|
|
161
|
+
try {
|
|
162
|
+
const val = await this.scoreboard(player, obj);
|
|
163
|
+
if (val === expected)
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
catch { /* ignore transient errors */ }
|
|
167
|
+
await new Promise(r => setTimeout(r, pollMs));
|
|
168
|
+
}
|
|
169
|
+
const final = await this.scoreboard(player, obj);
|
|
170
|
+
throw new Error(`waitForScore: ${player}/${obj} never reached ${expected} (last: ${final})`);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
exports.MCTestClient = MCTestClient;
|
|
174
|
+
//# sourceMappingURL=client.js.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* RedScript MC Integration Test Runner
|
|
3
|
+
*
|
|
4
|
+
* Compiles a .mcrs file, installs it to a running Paper server,
|
|
5
|
+
* runs test scenarios, and reports results.
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* npx ts-node src/mc-test/runner.ts src/examples/counter.mcrs
|
|
9
|
+
*
|
|
10
|
+
* Requires:
|
|
11
|
+
* - Paper server running with TestHarnessPlugin
|
|
12
|
+
* - MC_SERVER_DIR env var pointing to server directory
|
|
13
|
+
* - MC_HOST and MC_PORT env vars (default: localhost:25561)
|
|
14
|
+
*/
|
|
15
|
+
import { MCTestClient } from './client';
|
|
16
|
+
export interface TestCase {
|
|
17
|
+
name: string;
|
|
18
|
+
run: (mc: MCTestClient) => Promise<void>;
|
|
19
|
+
}
|
|
20
|
+
export interface TestResult {
|
|
21
|
+
name: string;
|
|
22
|
+
passed: boolean;
|
|
23
|
+
error?: string;
|
|
24
|
+
durationMs: number;
|
|
25
|
+
}
|
|
26
|
+
export declare function runMCTests(sourceFile: string, tests: TestCase[], options?: {
|
|
27
|
+
skipInstall?: boolean;
|
|
28
|
+
}): Promise<TestResult[]>;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* RedScript MC Integration Test Runner
|
|
4
|
+
*
|
|
5
|
+
* Compiles a .mcrs file, installs it to a running Paper server,
|
|
6
|
+
* runs test scenarios, and reports results.
|
|
7
|
+
*
|
|
8
|
+
* Usage:
|
|
9
|
+
* npx ts-node src/mc-test/runner.ts src/examples/counter.mcrs
|
|
10
|
+
*
|
|
11
|
+
* Requires:
|
|
12
|
+
* - Paper server running with TestHarnessPlugin
|
|
13
|
+
* - MC_SERVER_DIR env var pointing to server directory
|
|
14
|
+
* - MC_HOST and MC_PORT env vars (default: localhost:25561)
|
|
15
|
+
*/
|
|
16
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
19
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
20
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
21
|
+
}
|
|
22
|
+
Object.defineProperty(o, k2, desc);
|
|
23
|
+
}) : (function(o, m, k, k2) {
|
|
24
|
+
if (k2 === undefined) k2 = k;
|
|
25
|
+
o[k2] = m[k];
|
|
26
|
+
}));
|
|
27
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
28
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
29
|
+
}) : function(o, v) {
|
|
30
|
+
o["default"] = v;
|
|
31
|
+
});
|
|
32
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
33
|
+
var ownKeys = function(o) {
|
|
34
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
35
|
+
var ar = [];
|
|
36
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
37
|
+
return ar;
|
|
38
|
+
};
|
|
39
|
+
return ownKeys(o);
|
|
40
|
+
};
|
|
41
|
+
return function (mod) {
|
|
42
|
+
if (mod && mod.__esModule) return mod;
|
|
43
|
+
var result = {};
|
|
44
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
45
|
+
__setModuleDefault(result, mod);
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
})();
|
|
49
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50
|
+
exports.runMCTests = runMCTests;
|
|
51
|
+
const fs = __importStar(require("fs"));
|
|
52
|
+
const path = __importStar(require("path"));
|
|
53
|
+
const client_1 = require("./client");
|
|
54
|
+
const compile_1 = require("../compile");
|
|
55
|
+
const MC_HOST = process.env.MC_HOST ?? 'localhost';
|
|
56
|
+
const MC_PORT = parseInt(process.env.MC_PORT ?? '25561');
|
|
57
|
+
const MC_SERVER_DIR = process.env.MC_SERVER_DIR ?? path.join(process.env.HOME, 'mc-test-server');
|
|
58
|
+
async function runMCTests(sourceFile, tests, options = {}) {
|
|
59
|
+
const mc = new client_1.MCTestClient(MC_HOST, MC_PORT);
|
|
60
|
+
// Check server is online
|
|
61
|
+
console.log(`Connecting to MC server at ${MC_HOST}:${MC_PORT}...`);
|
|
62
|
+
const online = await mc.isOnline();
|
|
63
|
+
if (!online) {
|
|
64
|
+
throw new Error(`MC server not reachable at ${MC_HOST}:${MC_PORT}. Start Paper server first.`);
|
|
65
|
+
}
|
|
66
|
+
console.log('✓ Server online');
|
|
67
|
+
if (!options.skipInstall) {
|
|
68
|
+
// Compile and install datapack
|
|
69
|
+
const outDir = path.join(MC_SERVER_DIR, 'world', 'datapacks', 'redscript-test');
|
|
70
|
+
console.log(`Compiling ${sourceFile}...`);
|
|
71
|
+
const result = (0, compile_1.compile)(fs.readFileSync(sourceFile, 'utf-8'));
|
|
72
|
+
if (!result.success || !result.files) {
|
|
73
|
+
throw result.error ?? new Error('Compilation failed');
|
|
74
|
+
}
|
|
75
|
+
// Write files
|
|
76
|
+
fs.mkdirSync(outDir, { recursive: true });
|
|
77
|
+
for (const file of result.files) {
|
|
78
|
+
const filePath = path.join(outDir, file.path);
|
|
79
|
+
fs.mkdirSync(path.dirname(filePath), { recursive: true });
|
|
80
|
+
fs.writeFileSync(filePath, file.content);
|
|
81
|
+
}
|
|
82
|
+
console.log(`✓ Datapack installed to ${outDir}`);
|
|
83
|
+
// Reload datapacks
|
|
84
|
+
await mc.command('/reload');
|
|
85
|
+
await mc.ticks(40); // wait 2s for reload
|
|
86
|
+
console.log('✓ Datapacks reloaded');
|
|
87
|
+
}
|
|
88
|
+
// Run tests
|
|
89
|
+
const results = [];
|
|
90
|
+
for (const test of tests) {
|
|
91
|
+
await mc.reset(); // clear logs before each test
|
|
92
|
+
const start = Date.now();
|
|
93
|
+
try {
|
|
94
|
+
await test.run(mc);
|
|
95
|
+
results.push({ name: test.name, passed: true, durationMs: Date.now() - start });
|
|
96
|
+
console.log(` ✓ ${test.name} (${Date.now() - start}ms)`);
|
|
97
|
+
}
|
|
98
|
+
catch (err) {
|
|
99
|
+
results.push({
|
|
100
|
+
name: test.name,
|
|
101
|
+
passed: false,
|
|
102
|
+
error: err.message,
|
|
103
|
+
durationMs: Date.now() - start
|
|
104
|
+
});
|
|
105
|
+
console.log(` ✗ ${test.name}: ${err.message}`);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
// Summary
|
|
109
|
+
const passed = results.filter(r => r.passed).length;
|
|
110
|
+
const failed = results.length - passed;
|
|
111
|
+
console.log(`\nResults: ${passed}/${results.length} passed${failed > 0 ? ` (${failed} FAILED)` : ''}`);
|
|
112
|
+
return results;
|
|
113
|
+
}
|
|
114
|
+
// CLI entry point
|
|
115
|
+
if (require.main === module) {
|
|
116
|
+
const sourceFile = process.argv[2];
|
|
117
|
+
if (!sourceFile) {
|
|
118
|
+
console.error('Usage: ts-node runner.ts <source.mcrs>');
|
|
119
|
+
process.exit(1);
|
|
120
|
+
}
|
|
121
|
+
// Example test suite (replace with actual tests)
|
|
122
|
+
const exampleTests = [
|
|
123
|
+
{
|
|
124
|
+
name: 'server is online',
|
|
125
|
+
run: async (mc) => {
|
|
126
|
+
const status = await mc.status();
|
|
127
|
+
if (!status.online)
|
|
128
|
+
throw new Error('Server not online');
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
name: 'datapack loads without errors',
|
|
133
|
+
run: async (mc) => {
|
|
134
|
+
await mc.command('/reload');
|
|
135
|
+
await mc.ticks(20);
|
|
136
|
+
// If reload didn't crash, we're good
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
];
|
|
140
|
+
runMCTests(sourceFile, exampleTests)
|
|
141
|
+
.then(results => {
|
|
142
|
+
const failed = results.filter(r => !r.passed);
|
|
143
|
+
process.exit(failed.length > 0 ? 1 : 0);
|
|
144
|
+
})
|
|
145
|
+
.catch(err => {
|
|
146
|
+
console.error(err.message);
|
|
147
|
+
process.exit(1);
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
//# sourceMappingURL=runner.js.map
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MC Test Setup Script
|
|
3
|
+
*
|
|
4
|
+
* Pre-compiles all RedScript test fixtures into the datapack directory.
|
|
5
|
+
* Run this ONCE before starting the Paper server, or before running tests
|
|
6
|
+
* with a fresh server.
|
|
7
|
+
*
|
|
8
|
+
* Usage:
|
|
9
|
+
* MC_SERVER_DIR=~/mc-test-server npx ts-node src/mc-test/setup.ts
|
|
10
|
+
*/
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* MC Test Setup Script
|
|
4
|
+
*
|
|
5
|
+
* Pre-compiles all RedScript test fixtures into the datapack directory.
|
|
6
|
+
* Run this ONCE before starting the Paper server, or before running tests
|
|
7
|
+
* with a fresh server.
|
|
8
|
+
*
|
|
9
|
+
* Usage:
|
|
10
|
+
* MC_SERVER_DIR=~/mc-test-server npx ts-node src/mc-test/setup.ts
|
|
11
|
+
*/
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
29
|
+
var ownKeys = function(o) {
|
|
30
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
31
|
+
var ar = [];
|
|
32
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
33
|
+
return ar;
|
|
34
|
+
};
|
|
35
|
+
return ownKeys(o);
|
|
36
|
+
};
|
|
37
|
+
return function (mod) {
|
|
38
|
+
if (mod && mod.__esModule) return mod;
|
|
39
|
+
var result = {};
|
|
40
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
41
|
+
__setModuleDefault(result, mod);
|
|
42
|
+
return result;
|
|
43
|
+
};
|
|
44
|
+
})();
|
|
45
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46
|
+
const fs = __importStar(require("fs"));
|
|
47
|
+
const path = __importStar(require("path"));
|
|
48
|
+
const compile_1 = require("../compile");
|
|
49
|
+
const MC_SERVER_DIR = process.env.MC_SERVER_DIR ?? path.join(process.env.HOME, 'mc-test-server');
|
|
50
|
+
const DATAPACK_DIR = path.join(MC_SERVER_DIR, 'world', 'datapacks', 'redscript-test');
|
|
51
|
+
const EXAMPLES_DIR = path.join(__dirname, '../examples');
|
|
52
|
+
function writeFixture(source, namespace) {
|
|
53
|
+
const result = (0, compile_1.compile)(source, { namespace });
|
|
54
|
+
let fileCount = 0;
|
|
55
|
+
for (const file of result.files ?? []) {
|
|
56
|
+
const filePath = path.join(DATAPACK_DIR, file.path);
|
|
57
|
+
fs.mkdirSync(path.dirname(filePath), { recursive: true });
|
|
58
|
+
fs.writeFileSync(filePath, file.content);
|
|
59
|
+
fileCount++;
|
|
60
|
+
}
|
|
61
|
+
console.log(` ✓ ${namespace} (${fileCount} files)`);
|
|
62
|
+
}
|
|
63
|
+
function main() {
|
|
64
|
+
console.log(`Setting up MC test fixtures in:\n ${DATAPACK_DIR}\n`);
|
|
65
|
+
fs.mkdirSync(DATAPACK_DIR, { recursive: true });
|
|
66
|
+
// Example files
|
|
67
|
+
const exampleNamespaces = ['counter', 'world_manager'];
|
|
68
|
+
for (const ns of exampleNamespaces) {
|
|
69
|
+
const file = path.join(EXAMPLES_DIR, `${ns}.mcrs`);
|
|
70
|
+
if (fs.existsSync(file)) {
|
|
71
|
+
writeFixture(fs.readFileSync(file, 'utf-8'), ns);
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
console.log(` ⚠ ${ns}.mcrs not found, skipping`);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
// Inline test fixtures
|
|
78
|
+
writeFixture(`
|
|
79
|
+
@tick
|
|
80
|
+
fn on_tick() {
|
|
81
|
+
scoreboard_set("#tick_counter", "ticks", scoreboard_get("#tick_counter", "ticks") + 1)
|
|
82
|
+
}
|
|
83
|
+
`, 'tick_test');
|
|
84
|
+
writeFixture(`
|
|
85
|
+
fn check_score() {
|
|
86
|
+
let x: int = scoreboard_get("#check_x", "test_score")
|
|
87
|
+
if (x > 5) {
|
|
88
|
+
scoreboard_set("#check_x", "result", 1)
|
|
89
|
+
} else {
|
|
90
|
+
scoreboard_set("#check_x", "result", 0)
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
`, 'inline_test');
|
|
94
|
+
console.log('\n✅ All fixtures written. Restart the MC server to load them.');
|
|
95
|
+
console.log(' Then run: MC_SERVER_DIR=... npx jest mc-integration --testTimeout=60000');
|
|
96
|
+
}
|
|
97
|
+
main();
|
|
98
|
+
//# sourceMappingURL=setup.js.map
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface ValidationResult {
|
|
2
|
+
valid: boolean;
|
|
3
|
+
error?: string;
|
|
4
|
+
}
|
|
5
|
+
export declare class MCCommandValidator {
|
|
6
|
+
private readonly root;
|
|
7
|
+
private readonly rootChildren;
|
|
8
|
+
constructor(commandsPath: string);
|
|
9
|
+
validate(line: string): ValidationResult;
|
|
10
|
+
private hasRootCommand;
|
|
11
|
+
private validateExecute;
|
|
12
|
+
private validateScoreboard;
|
|
13
|
+
private validateFunction;
|
|
14
|
+
private validateData;
|
|
15
|
+
private validateReturn;
|
|
16
|
+
private validateAgainstTree;
|
|
17
|
+
}
|