redscript-mc 2.5.0 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +80 -0
- package/README.md +5 -75
- package/README.zh.md +165 -147
- package/ROADMAP.md +195 -0
- package/dist/data/linalg/function/_vec2d_len_sq_fx.mcfunction +17 -0
- package/dist/data/linalg/function/_vec3d_len_sq_fx.mcfunction +27 -0
- package/dist/data/linalg/function/load.mcfunction +1 -0
- package/dist/data/linalg/function/mat2d_det.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r0c0.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r0c1.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r1c0.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_mul_r1c1.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_vecmul_x.mcfunction +16 -0
- package/dist/data/linalg/function/mat2d_vecmul_y.mcfunction +16 -0
- package/dist/data/linalg/function/solve2d_x.mcfunction +27 -0
- package/dist/data/linalg/function/solve2d_y.mcfunction +27 -0
- package/dist/data/linalg/function/vec2d_dist.mcfunction +15 -0
- package/dist/data/linalg/function/vec2d_dot.mcfunction +16 -0
- package/dist/data/linalg/function/vec2d_length.mcfunction +21 -0
- package/dist/data/linalg/function/vec2d_normalize_x.mcfunction +8 -0
- package/dist/data/linalg/function/vec2d_normalize_x__merge_1.mcfunction +10 -0
- package/dist/data/linalg/function/vec2d_normalize_x__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec2d_normalize_y.mcfunction +8 -0
- package/dist/data/linalg/function/vec2d_normalize_y__merge_1.mcfunction +10 -0
- package/dist/data/linalg/function/vec2d_normalize_y__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec3d_cross_x.mcfunction +16 -0
- package/dist/data/linalg/function/vec3d_cross_y.mcfunction +16 -0
- package/dist/data/linalg/function/vec3d_cross_z.mcfunction +16 -0
- package/dist/data/linalg/function/vec3d_dist.mcfunction +21 -0
- package/dist/data/linalg/function/vec3d_dot.mcfunction +26 -0
- package/dist/data/linalg/function/vec3d_length.mcfunction +31 -0
- package/dist/data/linalg/function/vec3d_normalize_x.mcfunction +9 -0
- package/dist/data/linalg/function/vec3d_normalize_x__merge_1.mcfunction +11 -0
- package/dist/data/linalg/function/vec3d_normalize_x__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec3d_normalize_y.mcfunction +9 -0
- package/dist/data/linalg/function/vec3d_normalize_y__merge_1.mcfunction +11 -0
- package/dist/data/linalg/function/vec3d_normalize_y__then_0.mcfunction +3 -0
- package/dist/data/linalg/function/vec3d_normalize_z.mcfunction +9 -0
- package/dist/data/linalg/function/vec3d_normalize_z__merge_1.mcfunction +11 -0
- package/dist/data/linalg/function/vec3d_normalize_z__then_0.mcfunction +3 -0
- package/dist/data/math_hp/function/cos_hp.mcfunction +8 -0
- package/dist/data/math_hp/function/div3_hp.mcfunction +23 -0
- package/dist/data/math_hp/function/div_hp.mcfunction +13 -0
- package/dist/data/math_hp/function/init_div.mcfunction +1 -0
- package/dist/data/math_hp/function/init_trig.mcfunction +1 -0
- package/dist/data/math_hp/function/ln_5term.mcfunction +6 -0
- package/dist/data/math_hp/function/ln_5term__loop_body_1.mcfunction +8 -0
- package/dist/data/math_hp/function/ln_5term__loop_body_4.mcfunction +8 -0
- package/dist/data/math_hp/function/ln_5term__loop_exit_2.mcfunction +1 -0
- package/dist/data/math_hp/function/ln_5term__loop_exit_5.mcfunction +61 -0
- package/dist/data/math_hp/function/ln_5term__loop_header_0.mcfunction +3 -0
- package/dist/data/math_hp/function/ln_5term__loop_header_3.mcfunction +6 -0
- package/dist/data/math_hp/function/load.mcfunction +1 -0
- package/dist/data/math_hp/function/norm3_hp.mcfunction +43 -0
- package/dist/data/math_hp/function/sin_hp.mcfunction +8 -0
- package/dist/data/math_hp/function/sqrt_hp.mcfunction +17 -0
- package/dist/data/math_hp/function/sqrt_hp__merge_1.mcfunction +21 -0
- package/dist/data/math_hp/function/sqrt_hp__then_0.mcfunction +2 -0
- package/dist/data/minecraft/tags/function/load.json +1 -2
- package/dist/data/minecraft/tags/function/tick.json +1 -1
- package/dist/data/readme_demo/function/_draw.mcfunction +1 -0
- package/dist/data/readme_demo/function/_init.mcfunction +1 -0
- package/dist/data/readme_demo/function/_math_init.mcfunction +4 -0
- package/dist/data/readme_demo/function/_wave_tick.mcfunction +1 -0
- package/dist/data/readme_demo/function/_wave_tick__foreach_t8.mcfunction +109 -0
- package/dist/data/readme_demo/function/acos_approx.mcfunction +7 -0
- package/dist/data/readme_demo/function/approx_eq.mcfunction +10 -0
- package/dist/data/readme_demo/function/approx_eq__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/approx_eq__merge_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/approx_eq__then_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/approx_eq__then_2.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx.mcfunction +5 -0
- package/dist/data/readme_demo/function/asin_approx__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/asin_approx__merge_10.mcfunction +5 -0
- package/dist/data/readme_demo/function/asin_approx__merge_4.mcfunction +12 -0
- package/dist/data/readme_demo/function/asin_approx__merge_7.mcfunction +14 -0
- package/dist/data/readme_demo/function/asin_approx__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx__then_6.mcfunction +2 -0
- package/dist/data/readme_demo/function/asin_approx__then_9.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx.mcfunction +5 -0
- package/dist/data/readme_demo/function/cbrt_fx__loop_body_6.mcfunction +7 -0
- package/dist/data/readme_demo/function/cbrt_fx__loop_exit_7.mcfunction +1 -0
- package/dist/data/readme_demo/function/cbrt_fx__loop_header_5.mcfunction +4 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_1.mcfunction +8 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_11.mcfunction +5 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_13.mcfunction +4 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_4.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__merge_9.mcfunction +13 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_10.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_12.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_fx__then_8.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_newton.mcfunction +5 -0
- package/dist/data/readme_demo/function/cbrt_newton__else_7.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_newton__merge_1.mcfunction +11 -0
- package/dist/data/readme_demo/function/cbrt_newton__merge_4.mcfunction +1 -0
- package/dist/data/readme_demo/function/cbrt_newton__merge_6.mcfunction +1 -0
- package/dist/data/readme_demo/function/cbrt_newton__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/cbrt_newton__then_3.mcfunction +17 -0
- package/dist/data/readme_demo/function/cbrt_newton__then_5.mcfunction +11 -0
- package/dist/data/readme_demo/function/ceil_div.mcfunction +9 -0
- package/dist/data/readme_demo/function/combinations.mcfunction +6 -0
- package/dist/data/readme_demo/function/combinations__loop_body_9.mcfunction +15 -0
- package/dist/data/readme_demo/function/combinations__loop_exit_10.mcfunction +1 -0
- package/dist/data/readme_demo/function/combinations__loop_header_8.mcfunction +3 -0
- package/dist/data/readme_demo/function/combinations__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/combinations__merge_4.mcfunction +6 -0
- package/dist/data/readme_demo/function/combinations__merge_7.mcfunction +3 -0
- package/dist/data/readme_demo/function/combinations__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/combinations__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/combinations__then_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/cos_fixed.mcfunction +7 -0
- package/dist/data/readme_demo/function/cubic_disc_fx.mcfunction +26 -0
- package/dist/data/readme_demo/function/cubic_newton.mcfunction +8 -0
- package/dist/data/readme_demo/function/cubic_newton__loop_body_1.mcfunction +55 -0
- package/dist/data/readme_demo/function/cubic_newton__loop_exit_2.mcfunction +1 -0
- package/dist/data/readme_demo/function/cubic_newton__loop_header_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_10.mcfunction +1 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__merge_8.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/cubic_newton__then_5.mcfunction +13 -0
- package/dist/data/readme_demo/function/cubic_newton__then_7.mcfunction +4 -0
- package/dist/data/readme_demo/function/cubic_newton__then_9.mcfunction +2 -0
- package/dist/data/readme_demo/function/divfix.mcfunction +6 -0
- package/dist/data/readme_demo/function/divfix__merge_1.mcfunction +6 -0
- package/dist/data/readme_demo/function/divfix__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/exp_fx.mcfunction +16 -0
- package/dist/data/readme_demo/function/exp_fx__loop_body_10.mcfunction +8 -0
- package/dist/data/readme_demo/function/exp_fx__loop_body_5.mcfunction +8 -0
- package/dist/data/readme_demo/function/exp_fx__loop_exit_11.mcfunction +1 -0
- package/dist/data/readme_demo/function/exp_fx__loop_exit_6.mcfunction +1 -0
- package/dist/data/readme_demo/function/exp_fx__loop_header_4.mcfunction +3 -0
- package/dist/data/readme_demo/function/exp_fx__loop_header_9.mcfunction +3 -0
- package/dist/data/readme_demo/function/exp_fx__merge_1.mcfunction +47 -0
- package/dist/data/readme_demo/function/exp_fx__merge_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/exp_fx__merge_8.mcfunction +1 -0
- package/dist/data/readme_demo/function/exp_fx__then_0.mcfunction +7 -0
- package/dist/data/readme_demo/function/exp_fx__then_2.mcfunction +2 -0
- package/dist/data/readme_demo/function/exp_fx__then_7.mcfunction +5 -0
- package/dist/data/readme_demo/function/factorial.mcfunction +5 -0
- package/dist/data/readme_demo/function/factorial__loop_body_4.mcfunction +7 -0
- package/dist/data/readme_demo/function/factorial__loop_exit_5.mcfunction +1 -0
- package/dist/data/readme_demo/function/factorial__loop_header_3.mcfunction +3 -0
- package/dist/data/readme_demo/function/factorial__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/factorial__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/gamma_int.mcfunction +5 -0
- package/dist/data/readme_demo/function/gamma_int__merge_1.mcfunction +6 -0
- package/dist/data/readme_demo/function/gamma_int__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/gcd.mcfunction +7 -0
- package/dist/data/readme_demo/function/gcd__loop_body_5.mcfunction +5 -0
- package/dist/data/readme_demo/function/gcd__loop_exit_6.mcfunction +1 -0
- package/dist/data/readme_demo/function/gcd__loop_header_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/gcd__merge_1.mcfunction +5 -0
- package/dist/data/readme_demo/function/gcd__merge_3.mcfunction +1 -0
- package/dist/data/readme_demo/function/gcd__then_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/gcd__then_2.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt.mcfunction +5 -0
- package/dist/data/readme_demo/function/isqrt__loop_body_10.mcfunction +8 -0
- package/dist/data/readme_demo/function/isqrt__loop_body_13.mcfunction +11 -0
- package/dist/data/readme_demo/function/isqrt__loop_body_7.mcfunction +8 -0
- package/dist/data/readme_demo/function/isqrt__loop_exit_11.mcfunction +2 -0
- package/dist/data/readme_demo/function/isqrt__loop_exit_14.mcfunction +1 -0
- package/dist/data/readme_demo/function/isqrt__loop_exit_8.mcfunction +9 -0
- package/dist/data/readme_demo/function/isqrt__loop_header_12.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt__loop_header_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt__loop_header_9.mcfunction +3 -0
- package/dist/data/readme_demo/function/isqrt__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/isqrt__merge_16.mcfunction +5 -0
- package/dist/data/readme_demo/function/isqrt__merge_4.mcfunction +3 -0
- package/dist/data/readme_demo/function/isqrt__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/isqrt__then_15.mcfunction +1 -0
- package/dist/data/readme_demo/function/isqrt__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/lcm.mcfunction +11 -0
- package/dist/data/readme_demo/function/lcm__merge_1.mcfunction +5 -0
- package/dist/data/readme_demo/function/lcm__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/lerp.mcfunction +13 -0
- package/dist/data/readme_demo/function/ln.mcfunction +9 -0
- package/dist/data/readme_demo/function/ln__loop_body_1.mcfunction +8 -0
- package/dist/data/readme_demo/function/ln__loop_body_4.mcfunction +8 -0
- package/dist/data/readme_demo/function/ln__loop_exit_2.mcfunction +1 -0
- package/dist/data/readme_demo/function/ln__loop_exit_5.mcfunction +37 -0
- package/dist/data/readme_demo/function/ln__loop_header_0.mcfunction +3 -0
- package/dist/data/readme_demo/function/ln__loop_header_3.mcfunction +6 -0
- package/dist/data/readme_demo/function/load.mcfunction +1 -0
- package/dist/data/readme_demo/function/log10_fx.mcfunction +11 -0
- package/dist/data/readme_demo/function/log2_fx.mcfunction +11 -0
- package/dist/data/readme_demo/function/log2_int.mcfunction +5 -0
- package/dist/data/readme_demo/function/log2_int__loop_body_4.mcfunction +8 -0
- package/dist/data/readme_demo/function/log2_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/readme_demo/function/log2_int__loop_header_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/log2_int__merge_1.mcfunction +3 -0
- package/dist/data/readme_demo/function/log2_int__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/loga_fx.mcfunction +10 -0
- package/dist/data/readme_demo/function/loga_fx__merge_1.mcfunction +9 -0
- package/dist/data/readme_demo/function/loga_fx__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/map.mcfunction +12 -0
- package/dist/data/readme_demo/function/map__merge_1.mcfunction +11 -0
- package/dist/data/readme_demo/function/map__then_0.mcfunction +1 -0
- package/dist/data/readme_demo/function/mulfix.mcfunction +8 -0
- package/dist/data/readme_demo/function/newton_step.mcfunction +7 -0
- package/dist/data/readme_demo/function/newton_step__merge_1.mcfunction +8 -0
- package/dist/data/readme_demo/function/newton_step__then_0.mcfunction +1 -0
- package/dist/data/readme_demo/function/pow_int.mcfunction +6 -0
- package/dist/data/readme_demo/function/pow_int__loop_body_4.mcfunction +7 -0
- package/dist/data/readme_demo/function/pow_int__loop_exit_5.mcfunction +1 -0
- package/dist/data/readme_demo/function/pow_int__loop_header_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/pow_int__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/pow_int__merge_7.mcfunction +8 -0
- package/dist/data/readme_demo/function/pow_int__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/pow_int__then_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/quadratic_disc.mcfunction +12 -0
- package/dist/data/readme_demo/function/quadratic_x1.mcfunction +7 -0
- package/dist/data/readme_demo/function/quadratic_x1__merge_1.mcfunction +13 -0
- package/dist/data/readme_demo/function/quadratic_x1__merge_4.mcfunction +15 -0
- package/dist/data/readme_demo/function/quadratic_x1__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/quadratic_x1__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/quadratic_x2.mcfunction +7 -0
- package/dist/data/readme_demo/function/quadratic_x2__merge_1.mcfunction +13 -0
- package/dist/data/readme_demo/function/quadratic_x2__merge_4.mcfunction +15 -0
- package/dist/data/readme_demo/function/quadratic_x2__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/quadratic_x2__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/sign.mcfunction +5 -0
- package/dist/data/readme_demo/function/sign__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/sign__merge_4.mcfunction +2 -0
- package/dist/data/readme_demo/function/sign__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/sign__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/simpson_step.mcfunction +16 -0
- package/dist/data/readme_demo/function/sin_fixed.mcfunction +9 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_1.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_3.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_6.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__merge_9.mcfunction +10 -0
- package/dist/data/readme_demo/function/sin_fixed__then_0.mcfunction +4 -0
- package/dist/data/readme_demo/function/sin_fixed__then_2.mcfunction +6 -0
- package/dist/data/readme_demo/function/sin_fixed__then_5.mcfunction +8 -0
- package/dist/data/readme_demo/function/sin_fixed__then_8.mcfunction +10 -0
- package/dist/data/readme_demo/function/smootherstep.mcfunction +10 -0
- package/dist/data/readme_demo/function/smootherstep__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/smootherstep__merge_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/smootherstep__merge_6.mcfunction +27 -0
- package/dist/data/readme_demo/function/smootherstep__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/smootherstep__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/smootherstep__then_5.mcfunction +2 -0
- package/dist/data/readme_demo/function/smoothstep.mcfunction +10 -0
- package/dist/data/readme_demo/function/smoothstep__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/smoothstep__merge_4.mcfunction +4 -0
- package/dist/data/readme_demo/function/smoothstep__merge_6.mcfunction +15 -0
- package/dist/data/readme_demo/function/smoothstep__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/smoothstep__then_3.mcfunction +2 -0
- package/dist/data/readme_demo/function/smoothstep__then_5.mcfunction +2 -0
- package/dist/data/readme_demo/function/solve2x2_x.mcfunction +17 -0
- package/dist/data/readme_demo/function/solve2x2_x__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/solve2x2_x__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/solve2x2_y.mcfunction +17 -0
- package/dist/data/readme_demo/function/solve2x2_y__merge_1.mcfunction +12 -0
- package/dist/data/readme_demo/function/solve2x2_y__then_0.mcfunction +2 -0
- package/dist/data/readme_demo/function/sqrt_fixed.mcfunction +8 -0
- package/dist/data/readme_demo/function/sqrt_fx.mcfunction +8 -0
- package/dist/data/readme_demo/function/start.mcfunction +2 -0
- package/dist/data/readme_demo/function/stop.mcfunction +1 -0
- package/dist/data/readme_demo/function/trapezoid_step.mcfunction +11 -0
- package/dist/data/stdextra/function/__load.mcfunction +2 -0
- package/dist/data/stdextra/function/load.mcfunction +1 -0
- package/dist/data/stdextra/function/test_bigint.mcfunction +52 -0
- package/dist/data/stdextra/function/test_bits.mcfunction +33 -0
- package/dist/data/stdextra/function/test_list_sort.mcfunction +55 -0
- package/dist/data/stdextra/function/test_random.mcfunction +17 -0
- package/dist/data/stdextra/function/test_random__merge_1.mcfunction +4 -0
- package/dist/data/stdextra/function/test_random__merge_11.mcfunction +1 -0
- package/dist/data/stdextra/function/test_random__merge_3.mcfunction +14 -0
- package/dist/data/stdextra/function/test_random__merge_5.mcfunction +8 -0
- package/dist/data/stdextra/function/test_random__merge_7.mcfunction +1 -0
- package/dist/data/stdextra/function/test_random__merge_9.mcfunction +1 -0
- package/dist/data/stdextra/function/test_random__then_0.mcfunction +4 -0
- package/dist/data/stdextra/function/test_random__then_10.mcfunction +2 -0
- package/dist/data/stdextra/function/test_random__then_2.mcfunction +2 -0
- package/dist/data/stdextra/function/test_random__then_4.mcfunction +4 -0
- package/dist/data/stdextra/function/test_random__then_6.mcfunction +2 -0
- package/dist/data/stdextra/function/test_random__then_8.mcfunction +4 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_nums.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_parent.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_queue.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_rev.mcfunction +1 -0
- package/dist/data/test/function/__dyn_idx_test_arrays_visited.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_parent.mcfunction +1 -0
- package/dist/data/test/function/__dyn_wrt_test_arrays_visited.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_body_1.mcfunction +17 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_body_1_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_body_1_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_1__loop_header_0_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__else_8.mcfunction +19 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__loop_body_4.mcfunction +9 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__loop_header_3_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_10.mcfunction +11 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_12.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_14.mcfunction +11 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_16.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_18.mcfunction +11 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_20.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_22.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_24.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_7.mcfunction +6 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_7_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__merge_7_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_11.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_13.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_15.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_17.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_19.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_21.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_23.mcfunction +15 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_6.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_2__then_9.mcfunction +13 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__else_32.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__loop_body_28.mcfunction +6 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__loop_header_27.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__loop_header_27_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__merge_31.mcfunction +6 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__merge_31_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__merge_31_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_3__then_30.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4.mcfunction +2 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_body_34.mcfunction +16 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_body_34_continue.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_body_34_yield.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_header_33.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_4__loop_header_33_exit.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_5.mcfunction +16 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_cont_5__merge_26.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_1.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_2.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_3.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_4.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__call_5.mcfunction +1 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_2.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_3.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_4.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__check_5.mcfunction +4 -0
- package/dist/data/test/function/_coro_pathfind_bfs_coro_tick__done.mcfunction +1 -0
- package/dist/data/test/function/_hsl_chroma_x.mcfunction +1 -2
- package/dist/data/test/function/aabb_contains.mcfunction +1 -2
- package/dist/data/test/function/aabb_contains__merge_1.mcfunction +1 -2
- package/dist/data/test/function/aabb_contains__merge_10.mcfunction +1 -2
- package/dist/data/test/function/aabb_contains__merge_13.mcfunction +1 -2
- package/dist/data/test/function/aabb_contains__merge_4.mcfunction +1 -2
- package/dist/data/test/function/aabb_contains__merge_7.mcfunction +1 -2
- package/dist/data/test/function/acos_approx.mcfunction +7 -0
- package/dist/data/test/function/add_to_team.mcfunction +5 -0
- package/dist/data/test/function/angle_diff.mcfunction +1 -2
- package/dist/data/test/function/angle_normalize__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/angle_normalize__loop_header_3.mcfunction +1 -2
- package/dist/data/test/function/angry_at.mcfunction +1 -0
- package/dist/data/test/function/apply_damage.mcfunction +12 -0
- package/dist/data/test/function/apply_damage__else_2.mcfunction +2 -0
- package/dist/data/test/function/apply_damage__merge_1.mcfunction +1 -0
- package/dist/data/test/function/apply_damage__then_0.mcfunction +2 -0
- package/dist/data/test/function/arr_test.mcfunction +4 -0
- package/dist/data/test/function/asin_approx.mcfunction +5 -0
- package/dist/data/test/function/asin_approx__merge_1.mcfunction +3 -0
- package/dist/data/test/function/asin_approx__merge_10.mcfunction +5 -0
- package/dist/data/test/function/asin_approx__merge_4.mcfunction +12 -0
- package/dist/data/test/function/asin_approx__merge_7.mcfunction +14 -0
- package/dist/data/test/function/asin_approx__then_0.mcfunction +2 -0
- package/dist/data/test/function/asin_approx__then_3.mcfunction +2 -0
- package/dist/data/test/function/asin_approx__then_6.mcfunction +2 -0
- package/dist/data/test/function/asin_approx__then_9.mcfunction +2 -0
- package/dist/data/test/function/barrier_wall.mcfunction +1 -0
- package/dist/data/test/function/bernoulli.mcfunction +1 -2
- package/dist/data/test/function/bernoulli__merge_1.mcfunction +1 -2
- package/dist/data/test/function/bigint_chunk.mcfunction +2 -0
- package/dist/data/test/function/bigint_div_small.mcfunction +6 -0
- package/dist/data/test/function/bigint_div_small__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_div_small__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_div_small__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bigint_mod_small.mcfunction +6 -0
- package/dist/data/test/function/bigint_mod_small__loop_body_1.mcfunction +12 -0
- package/dist/data/test/function/bigint_mod_small__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/bigint_mod_small__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/bit_and__loop_body_1.mcfunction +1 -2
- package/dist/data/test/function/bit_and__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_and__then_3.mcfunction +1 -2
- package/dist/data/test/function/bit_clear__loop_exit_2.mcfunction +1 -2
- package/dist/data/test/function/bit_clear__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_get__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_not__loop_body_1.mcfunction +1 -2
- package/dist/data/test/function/bit_not__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_or__loop_body_1.mcfunction +1 -2
- package/dist/data/test/function/bit_or__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_or__merge_4.mcfunction +1 -2
- package/dist/data/test/function/bit_or__then_5.mcfunction +1 -2
- package/dist/data/test/function/bit_set__loop_exit_2.mcfunction +1 -2
- package/dist/data/test/function/bit_set__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_shl__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_shr__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_toggle__loop_exit_2.mcfunction +1 -2
- package/dist/data/test/function/bit_toggle__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/bit_xor__loop_body_1.mcfunction +1 -2
- package/dist/data/test/function/bit_xor__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/buff_all.mcfunction +22 -0
- package/dist/data/test/function/cbrt_newton.mcfunction +5 -0
- package/dist/data/test/function/cbrt_newton__else_7.mcfunction +2 -0
- package/dist/data/test/function/cbrt_newton__merge_1.mcfunction +11 -0
- package/dist/data/test/function/cbrt_newton__merge_4.mcfunction +1 -0
- package/dist/data/test/function/cbrt_newton__merge_6.mcfunction +1 -0
- package/dist/data/test/function/cbrt_newton__then_0.mcfunction +2 -0
- package/dist/data/test/function/cbrt_newton__then_3.mcfunction +17 -0
- package/dist/data/test/function/cbrt_newton__then_5.mcfunction +11 -0
- package/dist/data/test/function/check_holding_item.mcfunction +1 -0
- package/dist/data/test/function/check_look_down.mcfunction +1 -0
- package/dist/data/test/function/check_look_down__foreach_t0.mcfunction +2 -0
- package/dist/data/test/function/check_look_straight.mcfunction +1 -0
- package/dist/data/test/function/check_look_straight__foreach_t0.mcfunction +2 -0
- package/dist/data/test/function/check_look_up.mcfunction +1 -0
- package/dist/data/test/function/check_look_up__foreach_t0.mcfunction +2 -0
- package/dist/data/test/function/cleanup_teams.mcfunction +8 -0
- package/dist/data/test/function/clear_area.mcfunction +1 -0
- package/dist/data/test/function/clear_effect.mcfunction +1 -0
- package/dist/data/test/function/clear_effects.mcfunction +1 -0
- package/dist/data/test/function/clear_inventory.mcfunction +1 -0
- package/dist/data/test/function/cooldown_ready.mcfunction +7 -0
- package/dist/data/test/function/cooldown_ready__merge_1.mcfunction +4 -0
- package/dist/data/test/function/cooldown_ready__merge_4.mcfunction +2 -0
- package/dist/data/test/function/cooldown_ready__then_0.mcfunction +2 -0
- package/dist/data/test/function/cooldown_ready__then_3.mcfunction +2 -0
- package/dist/data/test/function/cooldown_start.mcfunction +3 -0
- package/dist/data/test/function/cooldown_tick.mcfunction +7 -0
- package/dist/data/test/function/cooldown_tick__else_5.mcfunction +2 -0
- package/dist/data/test/function/cooldown_tick__merge_1.mcfunction +4 -0
- package/dist/data/test/function/cooldown_tick__merge_4.mcfunction +1 -0
- package/dist/data/test/function/cooldown_tick__merge_7.mcfunction +1 -0
- package/dist/data/test/function/cooldown_tick__then_0.mcfunction +1 -0
- package/dist/data/test/function/cooldown_tick__then_3.mcfunction +7 -0
- package/dist/data/test/function/cooldown_tick__then_6.mcfunction +2 -0
- package/dist/data/test/function/cos_hp.mcfunction +4 -2
- package/dist/data/test/function/create_blue_team.mcfunction +10 -0
- package/dist/data/test/function/create_green_team.mcfunction +10 -0
- package/dist/data/test/function/create_health_bar.mcfunction +24 -0
- package/dist/data/test/function/create_progress_bar.mcfunction +24 -0
- package/dist/data/test/function/create_red_team.mcfunction +10 -0
- package/dist/data/test/function/create_team.mcfunction +8 -0
- package/dist/data/test/function/create_timer_bar.mcfunction +30 -0
- package/dist/data/test/function/create_yellow_team.mcfunction +10 -0
- package/dist/data/test/function/cubic_disc_fx.mcfunction +26 -0
- package/dist/data/test/function/cubic_newton.mcfunction +8 -0
- package/dist/data/test/function/cubic_newton__loop_body_1.mcfunction +55 -0
- package/dist/data/test/function/cubic_newton__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/cubic_newton__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__merge_10.mcfunction +1 -0
- package/dist/data/test/function/cubic_newton__merge_4.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__merge_6.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__merge_8.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__then_3.mcfunction +2 -0
- package/dist/data/test/function/cubic_newton__then_5.mcfunction +13 -0
- package/dist/data/test/function/cubic_newton__then_7.mcfunction +4 -0
- package/dist/data/test/function/cubic_newton__then_9.mcfunction +2 -0
- package/dist/data/test/function/curve_length_2d.mcfunction +6 -0
- package/dist/data/test/function/curve_length_2d__loop_body_1.mcfunction +32 -0
- package/dist/data/test/function/curve_length_2d__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/curve_length_2d__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/cylinder_contains.mcfunction +1 -2
- package/dist/data/test/function/damage.mcfunction +9 -0
- package/dist/data/test/function/damage__else_2.mcfunction +2 -0
- package/dist/data/test/function/damage__merge_1.mcfunction +1 -0
- package/dist/data/test/function/damage__then_0.mcfunction +2 -0
- package/dist/data/test/function/deriv_central.mcfunction +7 -0
- package/dist/data/test/function/deriv_central__merge_1.mcfunction +10 -0
- package/dist/data/test/function/deriv_central__then_0.mcfunction +2 -0
- package/dist/data/test/function/deriv_forward.mcfunction +7 -0
- package/dist/data/test/function/deriv_forward__merge_1.mcfunction +8 -0
- package/dist/data/test/function/deriv_forward__then_0.mcfunction +2 -0
- package/dist/data/test/function/disable_fire_spread.mcfunction +1 -0
- package/dist/data/test/function/disable_keep_inventory.mcfunction +1 -0
- package/dist/data/test/function/disable_mob_griefing.mcfunction +1 -0
- package/dist/data/test/function/div3_hp.mcfunction +23 -0
- package/dist/data/test/function/div_hp.mcfunction +13 -0
- package/dist/data/test/function/draw_circle.mcfunction +8 -0
- package/dist/data/test/function/draw_circle__loop_body_1.mcfunction +34 -0
- package/dist/data/test/function/draw_circle__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/draw_circle__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/draw_helix.mcfunction +10 -0
- package/dist/data/test/function/draw_helix__loop_body_1.mcfunction +42 -0
- package/dist/data/test/function/draw_helix__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/draw_helix__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/draw_line_2d.mcfunction +9 -0
- package/dist/data/test/function/draw_line_2d__loop_body_1.mcfunction +34 -0
- package/dist/data/test/function/draw_line_2d__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/draw_line_2d__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/ease_in_expo.mcfunction +1 -2
- package/dist/data/test/function/ease_in_out_back.mcfunction +1 -2
- package/dist/data/test/function/ease_in_out_bounce.mcfunction +1 -2
- package/dist/data/test/function/ease_in_out_cubic.mcfunction +1 -2
- package/dist/data/test/function/ease_in_out_quad.mcfunction +1 -2
- package/dist/data/test/function/ease_in_out_sine.mcfunction +1 -2
- package/dist/data/test/function/ease_out_bounce.mcfunction +1 -2
- package/dist/data/test/function/ease_out_bounce__merge_1.mcfunction +1 -2
- package/dist/data/test/function/ease_out_bounce__merge_4.mcfunction +1 -2
- package/dist/data/test/function/ease_out_expo.mcfunction +1 -2
- package/dist/data/test/function/enable_keep_inventory.mcfunction +1 -0
- package/dist/data/test/function/end_sparkles_at.mcfunction +1 -0
- package/dist/data/test/function/enemy_health.mcfunction +2 -0
- package/dist/data/test/function/example_right_click.mcfunction +1 -0
- package/dist/data/test/function/example_right_click__foreach_t0.mcfunction +5 -0
- package/dist/data/test/function/example_right_click__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/example_right_click__foreach_t0__then_0.mcfunction +3 -0
- package/dist/data/test/function/exp_dist_approx.mcfunction +1 -2
- package/dist/data/test/function/exp_dist_approx__merge_1.mcfunction +1 -2
- package/dist/data/test/function/exp_dist_approx__merge_3.mcfunction +1 -2
- package/dist/data/test/function/explosion_effect.mcfunction +1 -0
- package/dist/data/test/function/fbm_1d__loop_exit_2.mcfunction +1 -2
- package/dist/data/test/function/fbm_1d__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/fbm_2d__loop_exit_2.mcfunction +1 -2
- package/dist/data/test/function/fbm_2d__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/flames.mcfunction +1 -0
- package/dist/data/test/function/gather_all.mcfunction +8 -0
- package/dist/data/test/function/give_kit_archer.mcfunction +6 -0
- package/dist/data/test/function/give_kit_mage.mcfunction +5 -0
- package/dist/data/test/function/give_kit_warrior.mcfunction +6 -0
- package/dist/data/test/function/glass_box.mcfunction +2 -0
- package/dist/data/test/function/glow.mcfunction +1 -0
- package/dist/data/test/function/goto_arena.mcfunction +7 -0
- package/dist/data/test/function/goto_lobby.mcfunction +7 -0
- package/dist/data/test/function/happy_at.mcfunction +1 -0
- package/dist/data/test/function/hash_1d_pos.mcfunction +1 -2
- package/dist/data/test/function/hash_2d_pos.mcfunction +1 -2
- package/dist/data/test/function/heal.mcfunction +5 -0
- package/dist/data/test/function/heap_new.mcfunction +7 -0
- package/dist/data/test/function/heap_new__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/heap_new__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/heap_new__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/heap_peek.mcfunction +2 -0
- package/dist/data/test/function/heap_pop.mcfunction +4 -0
- package/dist/data/test/function/heap_pop__else_13.mcfunction +2 -0
- package/dist/data/test/function/heap_pop__loop_body_1.mcfunction +14 -0
- package/dist/data/test/function/heap_pop__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/heap_pop__merge_10.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__merge_12.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__merge_4.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__merge_6.mcfunction +1 -0
- package/dist/data/test/function/heap_pop__merge_8.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__then_11.mcfunction +2 -0
- package/dist/data/test/function/heap_pop__then_3.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__then_5.mcfunction +2 -0
- package/dist/data/test/function/heap_pop__then_7.mcfunction +3 -0
- package/dist/data/test/function/heap_pop__then_9.mcfunction +2 -0
- package/dist/data/test/function/heap_push.mcfunction +6 -0
- package/dist/data/test/function/heap_push__else_5.mcfunction +2 -0
- package/dist/data/test/function/heap_push__else_8.mcfunction +2 -0
- package/dist/data/test/function/heap_push__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/heap_push__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/heap_push__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/heap_push__merge_4.mcfunction +1 -0
- package/dist/data/test/function/heap_push__merge_7.mcfunction +1 -0
- package/dist/data/test/function/heap_push__then_3.mcfunction +7 -0
- package/dist/data/test/function/heap_push__then_6.mcfunction +2 -0
- package/dist/data/test/function/heap_size.mcfunction +2 -0
- package/dist/data/test/function/hearts_at.mcfunction +1 -0
- package/dist/data/test/function/hide_bar.mcfunction +4 -0
- package/dist/data/test/function/hsl_to_b.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_b__merge_1.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_b__merge_12.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_b__merge_3.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_b__merge_6.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_b__merge_9.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_g.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_g__merge_1.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_g__merge_12.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_g__merge_3.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_g__merge_6.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_g__merge_9.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_r.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_r__merge_1.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_r__merge_12.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_r__merge_3.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_r__merge_6.mcfunction +1 -2
- package/dist/data/test/function/hsl_to_r__merge_9.mcfunction +1 -2
- package/dist/data/test/function/init_div.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__else_11.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort__else_8.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort__loop_body_1.mcfunction +6 -0
- package/dist/data/test/function/insertion_sort__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort__merge_10.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort__merge_7.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort__then_6.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort__then_9.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__else_11.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort_desc__else_8.mcfunction +2 -0
- package/dist/data/test/function/insertion_sort_desc__loop_body_1.mcfunction +6 -0
- package/dist/data/test/function/insertion_sort_desc__loop_body_4.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort_desc__loop_exit_5.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort_desc__loop_header_3.mcfunction +4 -0
- package/dist/data/test/function/insertion_sort_desc__merge_10.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort_desc__merge_7.mcfunction +1 -0
- package/dist/data/test/function/insertion_sort_desc__then_6.mcfunction +3 -0
- package/dist/data/test/function/insertion_sort_desc__then_9.mcfunction +4 -0
- package/dist/data/test/function/integrate_simpson.mcfunction +7 -0
- package/dist/data/test/function/integrate_simpson__loop_body_6.mcfunction +7 -0
- package/dist/data/test/function/integrate_simpson__loop_exit_7.mcfunction +6 -0
- package/dist/data/test/function/integrate_simpson__loop_header_5.mcfunction +5 -0
- package/dist/data/test/function/integrate_simpson__merge_1.mcfunction +8 -0
- package/dist/data/test/function/integrate_simpson__merge_11.mcfunction +4 -0
- package/dist/data/test/function/integrate_simpson__merge_4.mcfunction +5 -0
- package/dist/data/test/function/integrate_simpson__merge_9.mcfunction +7 -0
- package/dist/data/test/function/integrate_simpson__then_0.mcfunction +6 -0
- package/dist/data/test/function/integrate_simpson__then_10.mcfunction +6 -0
- package/dist/data/test/function/integrate_simpson__then_3.mcfunction +4 -0
- package/dist/data/test/function/integrate_simpson__then_8.mcfunction +6 -0
- package/dist/data/test/function/integrate_trapezoid.mcfunction +7 -0
- package/dist/data/test/function/integrate_trapezoid__loop_body_4.mcfunction +7 -0
- package/dist/data/test/function/integrate_trapezoid__loop_exit_5.mcfunction +6 -0
- package/dist/data/test/function/integrate_trapezoid__loop_header_3.mcfunction +5 -0
- package/dist/data/test/function/integrate_trapezoid__merge_1.mcfunction +11 -0
- package/dist/data/test/function/integrate_trapezoid__then_0.mcfunction +2 -0
- package/dist/data/test/function/interactions_init.mcfunction +9 -0
- package/dist/data/test/function/invisible.mcfunction +1 -0
- package/dist/data/test/function/is_op.mcfunction +2 -0
- package/dist/data/test/function/is_op__exec_t1.mcfunction +1 -0
- package/dist/data/test/function/is_sneaking.mcfunction +5 -0
- package/dist/data/test/function/is_sneaking__merge_1.mcfunction +2 -0
- package/dist/data/test/function/is_sneaking__then_0.mcfunction +2 -0
- package/dist/data/test/function/jump.mcfunction +1 -0
- package/dist/data/test/function/launch_up.mcfunction +6 -0
- package/dist/data/test/function/list_max3.mcfunction +1 -2
- package/dist/data/test/function/list_max3__merge_1.mcfunction +1 -2
- package/dist/data/test/function/list_max5.mcfunction +1 -2
- package/dist/data/test/function/list_max5__merge_1.mcfunction +1 -2
- package/dist/data/test/function/list_max5__merge_3.mcfunction +1 -2
- package/dist/data/test/function/list_max5__merge_5.mcfunction +1 -2
- package/dist/data/test/function/list_min3.mcfunction +1 -2
- package/dist/data/test/function/list_min3__merge_1.mcfunction +1 -2
- package/dist/data/test/function/list_min5.mcfunction +1 -2
- package/dist/data/test/function/list_min5__merge_1.mcfunction +1 -2
- package/dist/data/test/function/list_min5__merge_3.mcfunction +1 -2
- package/dist/data/test/function/list_min5__merge_5.mcfunction +1 -2
- package/dist/data/test/function/list_sort_asc__loop_body_4.mcfunction +1 -2
- package/dist/data/test/function/list_sort_asc__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/list_sort_asc__loop_header_3.mcfunction +1 -2
- package/dist/data/test/function/list_sort_desc__loop_body_4.mcfunction +1 -2
- package/dist/data/test/function/list_sort_desc__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/list_sort_desc__loop_header_3.mcfunction +1 -2
- package/dist/data/test/function/max_heap_pop.mcfunction +4 -0
- package/dist/data/test/function/max_heap_pop__else_13.mcfunction +2 -0
- package/dist/data/test/function/max_heap_pop__loop_body_1.mcfunction +14 -0
- package/dist/data/test/function/max_heap_pop__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/max_heap_pop__merge_10.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__merge_12.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__merge_4.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__merge_6.mcfunction +1 -0
- package/dist/data/test/function/max_heap_pop__merge_8.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__then_11.mcfunction +2 -0
- package/dist/data/test/function/max_heap_pop__then_3.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__then_5.mcfunction +2 -0
- package/dist/data/test/function/max_heap_pop__then_7.mcfunction +3 -0
- package/dist/data/test/function/max_heap_pop__then_9.mcfunction +2 -0
- package/dist/data/test/function/max_heap_push.mcfunction +6 -0
- package/dist/data/test/function/max_heap_push__else_5.mcfunction +2 -0
- package/dist/data/test/function/max_heap_push__else_8.mcfunction +2 -0
- package/dist/data/test/function/max_heap_push__loop_body_1.mcfunction +4 -0
- package/dist/data/test/function/max_heap_push__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/max_heap_push__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/max_heap_push__merge_4.mcfunction +1 -0
- package/dist/data/test/function/max_heap_push__merge_7.mcfunction +1 -0
- package/dist/data/test/function/max_heap_push__then_3.mcfunction +7 -0
- package/dist/data/test/function/max_heap_push__then_6.mcfunction +2 -0
- package/dist/data/test/function/newton_step.mcfunction +7 -0
- package/dist/data/test/function/newton_step__merge_1.mcfunction +8 -0
- package/dist/data/test/function/newton_step__then_0.mcfunction +1 -0
- package/dist/data/test/function/night_vision.mcfunction +1 -0
- package/dist/data/test/function/norm3_hp.mcfunction +43 -0
- package/dist/data/test/function/normal_approx12.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_1.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_11.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_13.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_15.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_17.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_19.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_21.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_3.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_5.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_7.mcfunction +1 -2
- package/dist/data/test/function/normal_approx12__merge_9.mcfunction +1 -2
- package/dist/data/test/function/on_double_sneak.mcfunction +1 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0.mcfunction +9 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__merge_3.mcfunction +2 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__then_0.mcfunction +6 -0
- package/dist/data/test/function/on_double_sneak__foreach_t0__then_2.mcfunction +2 -0
- package/dist/data/test/function/on_right_click.mcfunction +1 -0
- package/dist/data/test/function/on_right_click__foreach_t1.mcfunction +5 -0
- package/dist/data/test/function/on_right_click__foreach_t1__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_right_click__foreach_t1__then_0.mcfunction +3 -0
- package/dist/data/test/function/on_sneak_click.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0.mcfunction +7 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__else_4.mcfunction +3 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__merge_3.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__then_0.mcfunction +4 -0
- package/dist/data/test/function/on_sneak_click__foreach_t0__then_2.mcfunction +3 -0
- package/dist/data/test/function/on_sneak_start.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0.mcfunction +5 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0__else_2.mcfunction +2 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0__merge_1.mcfunction +1 -0
- package/dist/data/test/function/on_sneak_start__foreach_t0__then_0.mcfunction +2 -0
- package/dist/data/test/function/particle_at_fx.mcfunction +1 -0
- package/dist/data/test/function/particle_dot.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__else_33.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__else_8.mcfunction +19 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_1.mcfunction +10 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_29.mcfunction +6 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_35.mcfunction +9 -0
- package/dist/data/test/function/pathfind_bfs__loop_body_4.mcfunction +9 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_2.mcfunction +24 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_30.mcfunction +6 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_36.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__loop_exit_5.mcfunction +6 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_28.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_3.mcfunction +3 -0
- package/dist/data/test/function/pathfind_bfs__loop_header_34.mcfunction +4 -0
- package/dist/data/test/function/pathfind_bfs__merge_10.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__merge_12.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_14.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__merge_16.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_18.mcfunction +11 -0
- package/dist/data/test/function/pathfind_bfs__merge_20.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_22.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_24.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_26.mcfunction +5 -0
- package/dist/data/test/function/pathfind_bfs__merge_32.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__merge_7.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__then_11.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_13.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs__then_15.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_17.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs__then_19.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_21.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs__then_23.mcfunction +15 -0
- package/dist/data/test/function/pathfind_bfs__then_25.mcfunction +1 -0
- package/dist/data/test/function/pathfind_bfs__then_31.mcfunction +2 -0
- package/dist/data/test/function/pathfind_bfs__then_6.mcfunction +3 -0
- package/dist/data/test/function/pathfind_bfs__then_9.mcfunction +13 -0
- package/dist/data/test/function/pathfind_bfs_coro.mcfunction +1 -0
- package/dist/data/test/function/pcg_output.mcfunction +1 -2
- package/dist/data/test/function/pf_heuristic.mcfunction +14 -0
- package/dist/data/test/function/pf_heuristic__merge_1.mcfunction +4 -0
- package/dist/data/test/function/pf_heuristic__merge_3.mcfunction +6 -0
- package/dist/data/test/function/pf_heuristic__then_0.mcfunction +4 -0
- package/dist/data/test/function/pf_heuristic__then_2.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked.mcfunction +7 -0
- package/dist/data/test/function/pf_is_blocked__merge_1.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__merge_10.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__merge_4.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__merge_7.mcfunction +4 -0
- package/dist/data/test/function/pf_is_blocked__then_0.mcfunction +2 -0
- package/dist/data/test/function/pf_is_blocked__then_3.mcfunction +2 -0
- package/dist/data/test/function/pf_is_blocked__then_6.mcfunction +2 -0
- package/dist/data/test/function/pf_is_blocked__then_9.mcfunction +2 -0
- package/dist/data/test/function/pf_new_map.mcfunction +4 -0
- package/dist/data/test/function/pf_new_map__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/pf_new_map__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/pf_new_map__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/pf_noop.mcfunction +1 -0
- package/dist/data/test/function/pf_pack.mcfunction +8 -0
- package/dist/data/test/function/pf_set_blocked.mcfunction +5 -0
- package/dist/data/test/function/pf_set_open.mcfunction +5 -0
- package/dist/data/test/function/pf_unpack_x.mcfunction +5 -0
- package/dist/data/test/function/pf_unpack_z.mcfunction +5 -0
- package/dist/data/test/function/popcount__loop_body_1.mcfunction +1 -2
- package/dist/data/test/function/popcount__loop_header_0.mcfunction +1 -2
- package/dist/data/test/function/portal_effect.mcfunction +1 -0
- package/dist/data/test/function/random_bool.mcfunction +1 -2
- package/dist/data/test/function/random_range.mcfunction +1 -2
- package/dist/data/test/function/regen.mcfunction +1 -0
- package/dist/data/test/function/remove_bar.mcfunction +3 -0
- package/dist/data/test/function/remove_from_teams.mcfunction +3 -0
- package/dist/data/test/function/remove_item.mcfunction +1 -0
- package/dist/data/test/function/resistance.mcfunction +1 -0
- package/dist/data/test/function/rgb_to_h.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__merge_1.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__merge_12.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__merge_3.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__merge_5.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__merge_7.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__merge_9.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_h__then_11.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_l.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_l__merge_1.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_l__merge_3.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_l__merge_5.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_s.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_s__merge_1.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_s__merge_3.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_s__merge_5.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_s__merge_7.mcfunction +1 -2
- package/dist/data/test/function/rgb_to_s__merge_9.mcfunction +1 -2
- package/dist/data/test/function/riemann_left.mcfunction +6 -0
- package/dist/data/test/function/riemann_left__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/riemann_left__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/riemann_left__loop_header_0.mcfunction +5 -0
- package/dist/data/test/function/riemann_mid.mcfunction +6 -0
- package/dist/data/test/function/riemann_mid__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/riemann_mid__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/riemann_mid__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/riemann_right.mcfunction +6 -0
- package/dist/data/test/function/riemann_right__loop_body_1.mcfunction +7 -0
- package/dist/data/test/function/riemann_right__loop_exit_2.mcfunction +6 -0
- package/dist/data/test/function/riemann_right__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/running_m2.mcfunction +16 -0
- package/dist/data/test/function/running_mean.mcfunction +7 -0
- package/dist/data/test/function/running_mean__merge_1.mcfunction +13 -0
- package/dist/data/test/function/running_mean__then_0.mcfunction +1 -0
- package/dist/data/test/function/second_deriv.mcfunction +8 -0
- package/dist/data/test/function/second_deriv__merge_1.mcfunction +14 -0
- package/dist/data/test/function/second_deriv__then_0.mcfunction +2 -0
- package/dist/data/test/function/set_day.mcfunction +1 -0
- package/dist/data/test/function/set_easy.mcfunction +1 -0
- package/dist/data/test/function/set_hard.mcfunction +1 -0
- package/dist/data/test/function/set_midnight.mcfunction +1 -0
- package/dist/data/test/function/set_night.mcfunction +1 -0
- package/dist/data/test/function/set_noon.mcfunction +1 -0
- package/dist/data/test/function/set_normal.mcfunction +1 -0
- package/dist/data/test/function/set_peaceful.mcfunction +1 -0
- package/dist/data/test/function/setup_four_teams.mcfunction +4 -0
- package/dist/data/test/function/setup_two_teams.mcfunction +2 -0
- package/dist/data/test/function/show_bar.mcfunction +4 -0
- package/dist/data/test/function/simpson_step.mcfunction +16 -0
- package/dist/data/test/function/sin_hp.mcfunction +4 -2
- package/dist/data/test/function/slow_fall.mcfunction +1 -0
- package/dist/data/test/function/smoke.mcfunction +1 -0
- package/dist/data/test/function/sort2_max.mcfunction +1 -2
- package/dist/data/test/function/sort2_min.mcfunction +1 -2
- package/dist/data/test/function/sort3.mcfunction +1 -2
- package/dist/data/test/function/sort3__merge_1.mcfunction +1 -2
- package/dist/data/test/function/sort3__merge_3.mcfunction +1 -2
- package/dist/data/test/function/sort3__merge_5.mcfunction +1 -2
- package/dist/data/test/function/sort3__merge_7.mcfunction +1 -2
- package/dist/data/test/function/sort4.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_1.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_11.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_14.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_3.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_5.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_7.mcfunction +1 -2
- package/dist/data/test/function/sort4__merge_9.mcfunction +1 -2
- package/dist/data/test/function/sort5.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_1.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_11.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_13.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_15.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_17.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_19.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_22.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_25.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_3.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_5.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_7.mcfunction +1 -2
- package/dist/data/test/function/sort5__merge_9.mcfunction +1 -2
- package/dist/data/test/function/sort_merge.mcfunction +10 -0
- package/dist/data/test/function/sort_merge__else_11.mcfunction +7 -0
- package/dist/data/test/function/sort_merge__else_14.mcfunction +2 -0
- package/dist/data/test/function/sort_merge__else_5.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__else_8.mcfunction +7 -0
- package/dist/data/test/function/sort_merge__loop_body_1.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__loop_header_0.mcfunction +4 -0
- package/dist/data/test/function/sort_merge__merge_10.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__merge_13.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__merge_4.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__merge_7.mcfunction +1 -0
- package/dist/data/test/function/sort_merge__then_12.mcfunction +7 -0
- package/dist/data/test/function/sort_merge__then_3.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__then_6.mcfunction +3 -0
- package/dist/data/test/function/sort_merge__then_9.mcfunction +7 -0
- package/dist/data/test/function/sparkles_at.mcfunction +1 -0
- package/dist/data/test/function/speed.mcfunction +1 -0
- package/dist/data/test/function/sphere_contains.mcfunction +1 -2
- package/dist/data/test/function/spread_players.mcfunction +1 -0
- package/dist/data/test/function/sqrt_fx.mcfunction +5 -8
- package/dist/data/test/function/sqrt_hp.mcfunction +17 -0
- package/dist/data/test/function/sqrt_hp__merge_1.mcfunction +21 -0
- package/dist/data/test/function/sqrt_hp__then_0.mcfunction +2 -0
- package/dist/data/test/function/std_dev_approx.mcfunction +5 -0
- package/dist/data/test/function/std_dev_approx__merge_1.mcfunction +13 -0
- package/dist/data/test/function/std_dev_approx__then_0.mcfunction +2 -0
- package/dist/data/test/function/str_len.mcfunction +2 -0
- package/dist/data/test/function/strength.mcfunction +1 -0
- package/dist/data/test/function/t.mcfunction +3 -0
- package/dist/data/test/function/teleport_to.mcfunction +9 -0
- package/dist/data/test/function/teleport_to_entity.mcfunction +5 -0
- package/dist/data/test/function/test.mcfunction +5 -0
- package/dist/data/test/function/test__loop_body_1.mcfunction +9 -0
- package/dist/data/test/function/test__loop_exit_2.mcfunction +1 -0
- package/dist/data/test/function/test__loop_header_0.mcfunction +3 -0
- package/dist/data/test/function/tile_of.mcfunction +1 -2
- package/dist/data/test/function/timer/done.mcfunction +1 -2
- package/dist/data/test/function/timer/remaining.mcfunction +1 -2
- package/dist/data/test/function/timer/tick.mcfunction +1 -2
- package/dist/data/test/function/timer/tick__then_0.mcfunction +1 -2
- package/dist/data/test/function/totem_at.mcfunction +1 -0
- package/dist/data/test/function/trapezoid_step.mcfunction +11 -0
- package/dist/data/test/function/uniform_frac.mcfunction +1 -2
- package/dist/data/test/function/uniform_int.mcfunction +1 -2
- package/dist/data/test/function/update_bar.mcfunction +5 -0
- package/dist/data/test/function/update_bar_color.mcfunction +6 -0
- package/dist/data/test/function/update_bar_color__else_2.mcfunction +4 -0
- package/dist/data/test/function/update_bar_color__else_5.mcfunction +4 -0
- package/dist/data/test/function/update_bar_color__merge_1.mcfunction +1 -0
- package/dist/data/test/function/update_bar_color__merge_4.mcfunction +1 -0
- package/dist/data/test/function/update_bar_color__then_0.mcfunction +4 -0
- package/dist/data/test/function/update_bar_color__then_3.mcfunction +4 -0
- package/dist/data/test/function/value_noise_1d.mcfunction +1 -2
- package/dist/data/test/function/value_noise_2d.mcfunction +1 -2
- package/dist/data/test/function/value_noise_2d__merge_1.mcfunction +1 -2
- package/dist/data/test/function/variance_from_m2.mcfunction +6 -0
- package/dist/data/test/function/variance_from_m2__merge_1.mcfunction +5 -0
- package/dist/data/test/function/variance_from_m2__then_0.mcfunction +2 -0
- package/dist/data/test/function/weapon_damage.mcfunction +5 -0
- package/dist/data/test/function/weather_clear.mcfunction +1 -0
- package/dist/data/test/function/weather_rain.mcfunction +1 -0
- package/dist/data/test/function/weather_thunder.mcfunction +1 -0
- package/dist/data/test/function/weighted2.mcfunction +1 -2
- package/dist/data/test/function/weighted2__merge_1.mcfunction +1 -2
- package/dist/data/test/function/weighted3.mcfunction +1 -2
- package/dist/data/test/function/weighted3__merge_1.mcfunction +1 -2
- package/dist/data/test/function/weighted3__merge_3.mcfunction +1 -2
- package/dist/data/test_dmul/function/__double_mul_macro.mcfunction +1 -0
- package/dist/data/test_dmul/function/double_mul_fixed.mcfunction +6 -0
- package/dist/data/test_dmul/function/load.mcfunction +1 -0
- package/dist/data/test_double_fn/function/double_test.mcfunction +2 -0
- package/dist/data/test_double_fn/function/load.mcfunction +1 -0
- package/dist/data/test_double_fn2/function/double_test.mcfunction +2 -0
- package/dist/data/test_double_fn2/function/load.mcfunction +1 -0
- package/dist/data/test_double_pass/function/caller_fn.mcfunction +4 -0
- package/dist/data/test_double_pass/function/consume_double.mcfunction +2 -0
- package/dist/data/test_double_pass/function/load.mcfunction +1 -0
- package/dist/data/test_macro/function/load.mcfunction +1 -0
- package/dist/data/test_macro/function/macro_helper.mcfunction +1 -0
- package/dist/data/test_macro3/function/__dmul_macro.mcfunction +1 -0
- package/dist/data/test_macro3/function/double_mul_test.mcfunction +7 -0
- package/dist/data/test_macro3/function/load.mcfunction +1 -0
- package/dist/data/test_ret_double/function/load.mcfunction +1 -0
- package/dist/data/test_ret_double/function/make_double.mcfunction +3 -0
- package/dist/data/test_ret_double/function/use_it.mcfunction +3 -0
- package/dist/pack.mcmeta +1 -1
- package/dist/src/__tests__/array-dynamic.test.js +42 -0
- package/dist/src/__tests__/builtins.test.d.ts +1 -0
- package/dist/src/__tests__/builtins.test.js +55 -0
- package/dist/src/__tests__/compile-all.test.js +1 -0
- package/dist/src/__tests__/diagnostics.test.js +8 -11
- package/dist/src/__tests__/double.test.d.ts +7 -0
- package/dist/src/__tests__/double.test.js +464 -0
- package/dist/src/__tests__/e2e/ecs-stdlib.test.d.ts +7 -0
- package/dist/src/__tests__/e2e/ecs-stdlib.test.js +328 -0
- package/dist/src/__tests__/e2e/events-stdlib.test.d.ts +1 -0
- package/dist/src/__tests__/e2e/events-stdlib.test.js +81 -0
- package/dist/src/__tests__/e2e/fft-stdlib.test.d.ts +13 -0
- package/dist/src/__tests__/e2e/fft-stdlib.test.js +288 -0
- package/dist/src/__tests__/e2e/for-in-array.test.d.ts +4 -0
- package/dist/src/__tests__/e2e/for-in-array.test.js +59 -0
- package/dist/src/__tests__/e2e/macros.test.js +7 -7
- package/dist/src/__tests__/e2e/ode-stdlib.test.d.ts +1 -0
- package/dist/src/__tests__/e2e/ode-stdlib.test.js +91 -0
- package/dist/src/__tests__/e2e/stdlib-e2e.test.js +1616 -0
- package/dist/src/__tests__/emit/compile.test.d.ts +1 -0
- package/dist/src/__tests__/emit/compile.test.js +95 -0
- package/dist/src/__tests__/emit/index.test.d.ts +1 -0
- package/dist/src/__tests__/emit/index.test.js +180 -0
- package/dist/src/__tests__/emit/modules-extra.test.d.ts +1 -0
- package/dist/src/__tests__/emit/modules-extra.test.js +77 -0
- package/dist/src/__tests__/enum.test.js +4 -6
- package/dist/src/__tests__/fixed.test.d.ts +7 -0
- package/dist/src/__tests__/fixed.test.js +148 -0
- package/dist/src/__tests__/float-lint.test.d.ts +7 -0
- package/dist/src/__tests__/float-lint.test.js +96 -0
- package/dist/src/__tests__/float.test.d.ts +7 -0
- package/dist/src/__tests__/float.test.js +148 -0
- package/dist/src/__tests__/for-each.test.d.ts +1 -0
- package/dist/src/__tests__/for-each.test.js +125 -0
- package/dist/src/__tests__/for-range.test.d.ts +1 -0
- package/dist/src/__tests__/for-range.test.js +136 -0
- package/dist/src/__tests__/generics.test.js +4 -4
- package/dist/src/__tests__/impl.test.d.ts +1 -0
- package/dist/src/__tests__/impl.test.js +199 -0
- package/dist/src/__tests__/lsp-logic.test.d.ts +1 -0
- package/dist/src/__tests__/lsp-logic.test.js +145 -0
- package/dist/src/__tests__/match.test.d.ts +10 -0
- package/dist/src/__tests__/match.test.js +197 -0
- package/dist/src/__tests__/mc-integration/item-entity-events.test.d.ts +18 -0
- package/dist/src/__tests__/mc-integration/item-entity-events.test.js +287 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-2.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage-2.test.js +833 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage.test.d.ts +13 -0
- package/dist/src/__tests__/mc-integration/stdlib-coverage.test.js +707 -0
- package/dist/src/__tests__/mc-integration/syntax-coverage.test.d.ts +9 -0
- package/dist/src/__tests__/mc-integration/syntax-coverage.test.js +442 -0
- package/dist/src/__tests__/mc-integration.test.js +835 -5
- package/dist/src/__tests__/optimizer/constant_fold.test.js +105 -0
- package/dist/src/__tests__/optimizer/coroutine.test.js +3 -2
- package/dist/src/__tests__/parser.test.js +5 -5
- package/dist/src/__tests__/runtime.test.js +143 -238
- package/dist/src/__tests__/stdlib/arr-len.test.d.ts +13 -0
- package/dist/src/__tests__/stdlib/arr-len.test.js +195 -0
- package/dist/src/__tests__/stdlib/calculus.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/calculus.test.js +123 -0
- package/dist/src/__tests__/stdlib/dialog.test.d.ts +6 -0
- package/dist/src/__tests__/stdlib/dialog.test.js +142 -0
- package/dist/src/__tests__/stdlib/easing.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/easing.test.js +117 -0
- package/dist/src/__tests__/stdlib/geometry.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/geometry.test.js +163 -0
- package/dist/src/__tests__/stdlib/heap.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/heap.test.js +141 -0
- package/dist/src/__tests__/stdlib/list.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/list.test.js +134 -0
- package/dist/src/__tests__/stdlib/matrix.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/matrix.test.js +148 -0
- package/dist/src/__tests__/stdlib/pathfind.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/pathfind.test.js +167 -0
- package/dist/src/__tests__/stdlib/scheduler.test.d.ts +6 -0
- package/dist/src/__tests__/stdlib/scheduler.test.js +177 -0
- package/dist/src/__tests__/stdlib/sort-v2.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/sort-v2.test.js +131 -0
- package/dist/src/__tests__/stdlib/sort.test.d.ts +4 -0
- package/dist/src/__tests__/stdlib/sort.test.js +128 -0
- package/dist/src/__tests__/stdlib/state.test.d.ts +5 -0
- package/dist/src/__tests__/stdlib/state.test.js +176 -0
- package/dist/src/__tests__/typechecker-strict.test.js +21 -21
- package/dist/src/__tests__/typechecker.test.js +5 -3
- package/dist/src/ast/types.d.ts +28 -2
- package/dist/src/emit/compile.js +30 -3
- package/dist/src/emit/index.d.ts +2 -0
- package/dist/src/emit/index.js +20 -1
- package/dist/src/emit/modules.js +3 -2
- package/dist/src/events/types.d.ts +1 -1
- package/dist/src/events/types.js +5 -2
- package/dist/src/hir/lower.js +88 -2
- package/dist/src/hir/monomorphize.js +11 -5
- package/dist/src/hir/types.d.ts +20 -1
- package/dist/src/lexer/index.d.ts +1 -1
- package/dist/src/lexer/index.js +10 -1
- package/dist/src/lir/lower.js +7 -0
- package/dist/src/lsp/server.js +912 -56
- package/dist/src/mc-test/client.d.ts +13 -1
- package/dist/src/mc-test/client.js +29 -1
- package/dist/src/mir/lower.js +703 -74
- package/dist/src/mir/types.d.ts +5 -0
- package/dist/src/mir/verify.js +2 -0
- package/dist/src/optimizer/constant_fold.js +10 -6
- package/dist/src/optimizer/coroutine.js +90 -33
- package/dist/src/optimizer/interprocedural.js +4 -0
- package/dist/src/parser/index.d.ts +5 -0
- package/dist/src/parser/index.js +171 -39
- package/dist/src/runtime/index.js +24 -0
- package/dist/src/typechecker/index.d.ts +8 -1
- package/dist/src/typechecker/index.js +73 -14
- package/docs/LANGUAGE_REFERENCE.md +302 -67
- package/docs/stdlib/README.md +54 -0
- package/docs/stdlib/advanced.md +276 -0
- package/docs/stdlib/bigint.md +285 -0
- package/docs/stdlib/bits.md +159 -0
- package/docs/stdlib/bossbar.md +101 -0
- package/docs/stdlib/calculus.md +141 -0
- package/docs/stdlib/color.md +125 -0
- package/docs/stdlib/combat.md +41 -0
- package/docs/stdlib/cooldown.md +48 -0
- package/docs/stdlib/easing.md +157 -0
- package/docs/stdlib/effects.md +101 -0
- package/docs/stdlib/expr.md +38 -0
- package/docs/stdlib/geometry.md +130 -0
- package/docs/stdlib/interactions.md +111 -0
- package/docs/stdlib/inventory.md +53 -0
- package/docs/stdlib/list.md +189 -0
- package/docs/stdlib/math.md +334 -0
- package/docs/stdlib/math_hp.md +185 -0
- package/docs/stdlib/matrix.md +123 -0
- package/docs/stdlib/mobs.md +131 -0
- package/docs/stdlib/noise.md +103 -0
- package/docs/stdlib/parabola.md +119 -0
- package/docs/stdlib/particles.md +123 -0
- package/docs/stdlib/physics.md +148 -0
- package/docs/stdlib/player.md +43 -0
- package/docs/stdlib/quaternion.md +159 -0
- package/docs/stdlib/random.md +86 -0
- package/docs/stdlib/sets.md +68 -0
- package/docs/stdlib/signal.md +141 -0
- package/docs/stdlib/spawn.md +65 -0
- package/docs/stdlib/strings.md +17 -0
- package/docs/stdlib/tags.md +117 -0
- package/docs/stdlib/teams.md +87 -0
- package/docs/stdlib/timer.md +126 -0
- package/docs/stdlib/vec.md +193 -0
- package/docs/stdlib/world.md +151 -0
- package/editors/vscode/build.mjs +31 -12
- package/editors/vscode/out/extension.js +3670 -200
- package/editors/vscode/out/lsp-server.js +14854 -0
- package/editors/vscode/package-lock.json +3 -3
- package/editors/vscode/package.json +1 -1
- package/editors/vscode/snippets/redscript.json +109 -30
- package/editors/vscode/src/extension.ts +15 -13
- package/examples/readme-demo.mcrs +4 -4
- package/jest.config.js +5 -2
- package/package.json +1 -1
- package/scripts/postbuild.js +20 -0
- package/src/__tests__/array-dynamic.test.ts +42 -0
- package/src/__tests__/builtins.test.ts +66 -0
- package/src/__tests__/compile-all.test.ts +3 -2
- package/src/__tests__/diagnostics.test.ts +8 -10
- package/src/__tests__/double.test.ts +478 -0
- package/src/__tests__/e2e/ecs-stdlib.test.ts +371 -0
- package/src/__tests__/e2e/events-stdlib.test.ts +50 -0
- package/src/__tests__/e2e/fft-stdlib.test.ts +313 -0
- package/src/__tests__/e2e/macros.test.ts +7 -7
- package/src/__tests__/e2e/ode-stdlib.test.ts +68 -0
- package/src/__tests__/e2e/stdlib-e2e.test.ts +1952 -0
- package/src/__tests__/emit/compile.test.ts +102 -0
- package/src/__tests__/emit/index.test.ts +189 -0
- package/src/__tests__/emit/modules-extra.test.ts +80 -0
- package/src/__tests__/enum.test.ts +4 -6
- package/src/__tests__/fixed.test.ts +159 -0
- package/src/__tests__/fixtures/coroutine-mc-test.mcrs +58 -0
- package/src/__tests__/fixtures/for-range.mcrs +15 -0
- package/src/__tests__/fixtures/heap-sort-mc-test.mcrs +87 -0
- package/src/__tests__/fixtures/impl-test.mcrs +13 -44
- package/src/__tests__/fixtures/stdlib-extra-test.mcrs +226 -0
- package/src/__tests__/fixtures/stdlib-math-integration.mcrs +28 -0
- package/src/__tests__/fixtures/stdlib-math-test.mcrs +53 -0
- package/src/__tests__/float-lint.test.ts +102 -0
- package/src/__tests__/float.test.ts +158 -0
- package/src/__tests__/for-each.test.ts +135 -0
- package/src/__tests__/for-range.test.ts +149 -0
- package/src/__tests__/generics.test.ts +4 -4
- package/src/__tests__/impl.test.ts +207 -0
- package/src/__tests__/lsp-logic.test.ts +162 -0
- package/src/__tests__/match.test.ts +212 -0
- package/src/__tests__/mc-integration/item-entity-events.test.ts +298 -0
- package/src/__tests__/mc-integration/stdlib-coverage-2.test.ts +817 -0
- package/src/__tests__/mc-integration/stdlib-coverage.test.ts +699 -0
- package/src/__tests__/mc-integration/syntax-coverage.test.ts +464 -0
- package/src/__tests__/mc-integration.test.ts +889 -5
- package/src/__tests__/optimizer/constant_fold.test.ts +115 -0
- package/src/__tests__/optimizer/coroutine.test.ts +3 -2
- package/src/__tests__/parser.test.ts +5 -5
- package/src/__tests__/runtime.test.ts +194 -0
- package/src/__tests__/stdlib/arr-len.test.ts +231 -0
- package/src/__tests__/stdlib/calculus.test.ts +99 -0
- package/src/__tests__/stdlib/dialog.test.ts +132 -0
- package/src/__tests__/stdlib/easing.test.ts +97 -0
- package/src/__tests__/stdlib/geometry.test.ts +171 -0
- package/src/__tests__/stdlib/heap.test.ts +121 -0
- package/src/__tests__/stdlib/list.test.ts +117 -0
- package/src/__tests__/stdlib/matrix.test.ts +140 -0
- package/src/__tests__/stdlib/pathfind.test.ts +151 -0
- package/src/__tests__/stdlib/scheduler.test.ts +171 -0
- package/src/__tests__/stdlib/sort-v2.test.ts +111 -0
- package/src/__tests__/stdlib/sort.test.ts +106 -0
- package/src/__tests__/stdlib/state.test.ts +164 -0
- package/src/__tests__/typechecker-strict.test.ts +21 -21
- package/src/__tests__/typechecker.test.ts +5 -3
- package/src/ast/types.ts +16 -3
- package/src/emit/compile.ts +32 -3
- package/src/emit/index.ts +24 -1
- package/src/emit/modules.ts +2 -1
- package/src/events/types.ts +5 -2
- package/src/examples/capture_the_flag.mcrs +2 -2
- package/src/examples/hunger_games.mcrs +4 -4
- package/src/examples/parkour_race.mcrs +8 -8
- package/src/examples/tutorial_01_hello.mcrs +63 -0
- package/src/examples/tutorial_02_variables.mcrs +157 -0
- package/src/examples/tutorial_03_functions_structs.mcrs +162 -0
- package/src/examples/tutorial_04_selectors.mcrs +139 -0
- package/src/examples/tutorial_05_decorators.mcrs +131 -0
- package/src/examples/tutorial_06_math_particles.mcrs +123 -0
- package/src/examples/tutorial_07_random.mcrs +142 -0
- package/src/examples/tutorial_08_coroutine.mcrs +163 -0
- package/src/examples/tutorial_09_precision.mcrs +154 -0
- package/src/examples/tutorial_10_kill_race.mcrs +289 -0
- package/src/examples/zombie_survival.mcrs +7 -7
- package/src/hir/lower.ts +101 -4
- package/src/hir/monomorphize.ts +11 -6
- package/src/hir/types.ts +14 -1
- package/src/lexer/index.ts +11 -2
- package/src/lir/lower.ts +8 -0
- package/src/lsp/server.ts +894 -54
- package/src/mc-test/client.ts +32 -1
- package/src/mir/lower.ts +703 -74
- package/src/mir/types.ts +1 -0
- package/src/mir/verify.ts +2 -0
- package/src/optimizer/constant_fold.ts +11 -6
- package/src/optimizer/coroutine.ts +89 -29
- package/src/optimizer/interprocedural.ts +4 -0
- package/src/parser/index.ts +175 -41
- package/src/runtime/index.ts +26 -0
- package/src/stdlib/advanced.mcrs +47 -0
- package/src/stdlib/bigint.mcrs +251 -0
- package/src/stdlib/calculus.mcrs +150 -0
- package/src/stdlib/color.mcrs +102 -82
- package/src/stdlib/combat.mcrs +18 -12
- package/src/stdlib/dialog.mcrs +55 -0
- package/src/stdlib/ecs.mcrs +238 -0
- package/src/stdlib/events.mcrs +29 -0
- package/src/stdlib/expr.mcrs +117 -0
- package/src/stdlib/fft.mcrs +177 -0
- package/src/stdlib/geometry.mcrs +89 -0
- package/src/stdlib/graph.mcrs +274 -0
- package/src/stdlib/heap.mcrs +175 -0
- package/src/stdlib/linalg.mcrs +260 -0
- package/src/stdlib/list.mcrs +99 -0
- package/src/stdlib/math.mcrs +121 -5
- package/src/stdlib/math_hp.mcrs +452 -0
- package/src/stdlib/matrix.mcrs +113 -0
- package/src/stdlib/ode.mcrs +168 -0
- package/src/stdlib/parabola.mcrs +160 -0
- package/src/stdlib/particles.mcrs +69 -0
- package/src/stdlib/pathfind.mcrs +321 -0
- package/src/stdlib/quaternion.mcrs +192 -0
- package/src/stdlib/random.mcrs +46 -1
- package/src/stdlib/scheduler.mcrs +271 -0
- package/src/stdlib/signal.mcrs +223 -0
- package/src/stdlib/sort.mcrs +194 -0
- package/src/stdlib/state.mcrs +65 -0
- package/src/stdlib/world.mcrs +24 -0
- package/src/typechecker/index.ts +88 -15
- package/test_trig.ts +43 -0
package/ROADMAP.md
ADDED
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
# RedScript Roadmap
|
|
2
|
+
|
|
3
|
+
Last updated: 2026-03-19
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Current State (v2.6.0)
|
|
8
|
+
|
|
9
|
+
### Compiler
|
|
10
|
+
- v2 pipeline: HIR → MIR → LIR → mcfunction
|
|
11
|
+
- Type system: int / fixed (×10000) / double (NBT IEEE 754) / float (deprecated)
|
|
12
|
+
- `double` type: NBT storage `rs:d`, explicit `as` cast, binary ops auto-lower to stdlib intrinsics
|
|
13
|
+
- Module system, generics, enum, Option<T>
|
|
14
|
+
- @coroutine (back-edge yield, batch/onDone), @schedule, @on_trigger, @tick
|
|
15
|
+
- Optional semicolons
|
|
16
|
+
- `for i in 0..n` range syntax sugar ✅
|
|
17
|
+
- Incremental compilation, source maps
|
|
18
|
+
- DCE, peephole optimizer, int32 overflow-safe constant folding
|
|
19
|
+
- Compiler intrinsics: `double + double` → `double_add`, etc.
|
|
20
|
+
- `__NS__` / `__OBJ__` placeholders in raw()
|
|
21
|
+
- `nbt_read` MIR instruction (fixes as-fixed temp rename bug)
|
|
22
|
+
- `impl TypeName {}` struct methods with field-by-field param expansion ✅
|
|
23
|
+
- `let h: int[] = heap_new()` — int[] var from function call monomorphized ✅
|
|
24
|
+
|
|
25
|
+
### stdlib (35 modules, complete)
|
|
26
|
+
| Module | Contents |
|
|
27
|
+
|--------|----------|
|
|
28
|
+
| `math` | abs/sign/min/max/clamp/lerp/sqrt/sin/cos/atan2/ln/exp/cbrt/bezier + SA-tuned |
|
|
29
|
+
| `math_hp` | double_add/sub/mul/div, ln_hp, double_sqrt, pow_real, pow_fast |
|
|
30
|
+
| `list` | sum/avg/min/max/contains/index_of/shuffle/dedup_count |
|
|
31
|
+
| `random` | LCG/PCG, distributions: normal/binomial/hypergeometric/gamma/poisson/geometric |
|
|
32
|
+
| `signal` | DFT (n≤8), distributions |
|
|
33
|
+
| `geometry` | in_cylinder/cone/sector_2d/sphere/aabb |
|
|
34
|
+
| `bits` | bit_and/or/xor/shl/shr/popcount |
|
|
35
|
+
| `bigint` | 96-bit + arbitrary-length array API |
|
|
36
|
+
| `matrix` | 2D/3D rotation, scale, quaternion |
|
|
37
|
+
| `vec` | dot/cross/length/normalize/atan2_fixed |
|
|
38
|
+
| `quaternion` | quat_mul/slerp/euler/axis-angle |
|
|
39
|
+
| `color` | RGB↔HSL, pack/unpack, lerp, rgb_to_hex |
|
|
40
|
+
| `noise` | value noise 1D/2D, fractal Brownian motion |
|
|
41
|
+
| `easing` | quad/cubic/quartic/sine/expo/back/bounce/smoothstep |
|
|
42
|
+
| `parabola` | ballistic trajectory, launch angle |
|
|
43
|
+
| `advanced` | bezier_n, Mandelbrot/Julia, modular exponentiation |
|
|
44
|
+
| `calculus` | trapezoid/Simpson integration, Welford statistics |
|
|
45
|
+
| `expr` | RPN expression evaluator |
|
|
46
|
+
| `world` | sun_altitude, sun_azimuth |
|
|
47
|
+
| `heap` | MinHeap / MaxHeap (priority queue) ✅ |
|
|
48
|
+
| `sort` | heapsort + mergesort over int[] ✅ |
|
|
49
|
+
| `pathfind` | A* (coroutine-based, 20 nodes/tick) ✅ |
|
|
50
|
+
| `physics/particles/combat/effects/player/mobs/...` | 13 more game mechanic modules |
|
|
51
|
+
|
|
52
|
+
### Tests
|
|
53
|
+
- Unit/e2e: **1679** passing
|
|
54
|
+
- MC integration: **88** passing
|
|
55
|
+
|
|
56
|
+
### Tooling
|
|
57
|
+
- SA + Nelder-Mead tuner (`redscript tune --adapter <name>`)
|
|
58
|
+
- VSCode extension v1.3.14 — full LSP: hover (builtins/fn/struct/var/selector/decorator), goto-def, completion (imported modules, @decorators, @selectors, locals), signature help, references, rename
|
|
59
|
+
- VitePress docs site with stdlib reference + zh tutorials 01-10
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Today's Sprint (2026-03-19)
|
|
64
|
+
|
|
65
|
+
Priority order (dependencies first):
|
|
66
|
+
|
|
67
|
+
### ① Parser: add `span.endLine` to fn declarations
|
|
68
|
+
- **Status**: ✅ done (commit `eded998`)
|
|
69
|
+
- **Why**: LSP currently uses "next fn start - 1" as implicit endLine. This works but is fragile.
|
|
70
|
+
Proper fix: parser emits `endLine` when it sees the closing `}`.
|
|
71
|
+
- **Impact**: hover/F12/completion scope all improve
|
|
72
|
+
|
|
73
|
+
### ② Compiler: `string + var` type error
|
|
74
|
+
- **Status**: ✅ done (commit `8ce5955`)
|
|
75
|
+
- **Why**: `"text" + 5` silently compiles to broken `tellraw @a {"text":"~"}`.
|
|
76
|
+
Should be a compile error directing user to f-strings.
|
|
77
|
+
- **Change**: in HIR binary op lowering, if either operand is string type, throw DiagnosticError.
|
|
78
|
+
|
|
79
|
+
### ③ f-string in tell/subtitle/actionbar/title
|
|
80
|
+
- **Status**: ✅ done (commit `8ce5955`)
|
|
81
|
+
- **Why**: f-string emit for builtins doesn't interpolate scoreboard values into JSON text component.
|
|
82
|
+
Need to emit `{"score":{"name":"$var","objective":"..."}}` or `{"text":"","extra":[...]}` form.
|
|
83
|
+
- **Impact**: `tell(@a, f"Score: {score}")` actually works
|
|
84
|
+
|
|
85
|
+
### ④ LSP: Inlay hints
|
|
86
|
+
- **Status**: ✅ done (commit `80fe229`)
|
|
87
|
+
- **Why**: `let x = some_fn()` — type shown next to variable name
|
|
88
|
+
- **Needs**: type inference info from TypeChecker or from collectLocals result
|
|
89
|
+
|
|
90
|
+
### ⑤ stdlib: mat3_mul / mat4_mul
|
|
91
|
+
- **Status**: ✅ done (commit `c44e581`)
|
|
92
|
+
- **Where**: `src/stdlib/matrix.mcrs`
|
|
93
|
+
- **Notes**: pure fixed-point arithmetic, no new compiler features needed
|
|
94
|
+
|
|
95
|
+
### ⑥ stdlib: bigint ÷ bigint
|
|
96
|
+
- **Status**: ✅ done (commit `c44e581`)
|
|
97
|
+
- **Where**: `src/stdlib/bigint.mcrs`
|
|
98
|
+
- **Notes**: algorithm: long division on int[] representation
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Roadmap
|
|
103
|
+
|
|
104
|
+
### v2.6 — Language Polish (in progress)
|
|
105
|
+
|
|
106
|
+
#### Compiler
|
|
107
|
+
- [x] **`for i in 0..n` syntax sugar** — implemented
|
|
108
|
+
- [x] **Array literal type inference** — `let a = [1, 2, 3]` → `int[]` without annotation (already worked)
|
|
109
|
+
- [x] **Struct methods** — `impl Vec3 { fn dot(self, other) }` with field-by-field expansion
|
|
110
|
+
- [x] **`string + var` type error** — errors with clear f-string hint ✅
|
|
111
|
+
- [x] **f-string tell/subtitle/actionbar** — proper JSON text component emit ✅
|
|
112
|
+
- [x] **Inlay hints** — shows inferred type next to unannotated `let` ✅
|
|
113
|
+
- [x] **Parser: fn endLine in span** — accurate scope for LSP ✅
|
|
114
|
+
- [x] **`match` expression** — pattern-match on int/enum; compiles to scoreboard if-chains ✅
|
|
115
|
+
- [x] **`for item in array` (`for_each`) iteration** — HIR desugaring to while + dynamic index ✅
|
|
116
|
+
- [x] **`arr.len()` dynamic support** — `nbt_list_len` MIR instruction; literal arrays fold to constant, params use `data get storage` at runtime ✅
|
|
117
|
+
- [ ] **exp_fx / sin_fixed SA Tuner adapters** — further error reduction
|
|
118
|
+
|
|
119
|
+
#### stdlib
|
|
120
|
+
- [x] **bigint ÷ bigint** — full arbitrary-precision long division ✅
|
|
121
|
+
- [x] **mat3_mul / mat4_mul** — 3×3 and 4×4 matrix multiply (fixed ×10000) ✅
|
|
122
|
+
- [x] **`dialog.mcrs`** — NPC dialog trees with choice branching ✅
|
|
123
|
+
- [x] **`scheduler.mcrs`** — tick-budget-aware task scheduler ✅
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
### v3.0 — Compiler-Native stdlib Advantage
|
|
128
|
+
> These use features unique to RedScript (coroutine, struct, type system) that raw mcfunction cannot replicate.
|
|
129
|
+
|
|
130
|
+
#### P1 — Data Structures (leverages struct + int[] backend)
|
|
131
|
+
- [x] **`heap.mcrs`** — MinHeap / MaxHeap — done
|
|
132
|
+
- [x] **`sort.mcrs`** — heapsort + mergesort — done
|
|
133
|
+
- [x] **`pathfind.mcrs`** — A* pathfinding — done
|
|
134
|
+
- [x] **`graph.mcrs`** — adjacency list + BFS/DFS — done
|
|
135
|
+
|
|
136
|
+
#### P2 — Coroutine-Native Algorithms
|
|
137
|
+
- [x] **`fft.mcrs`** — Fast Fourier Transform (O(n log n)) via @coroutine — done
|
|
138
|
+
- [x] **`sort.mcrs` v2** — merge sort via @coroutine for large n
|
|
139
|
+
|
|
140
|
+
#### P3 — Numerical Computing (double precision)
|
|
141
|
+
- [x] **`ode.mcrs`** — Runge-Kutta 4 ODE solver — done
|
|
142
|
+
- [x] **`linalg.mcrs`** — Linear algebra over double — done
|
|
143
|
+
|
|
144
|
+
#### P4 — ECS Framework
|
|
145
|
+
- [x] **`ecs.mcrs`** — Entity Component System — done
|
|
146
|
+
- Fill the gap that Bedrock's component system has but Java datapacks lack
|
|
147
|
+
- `register_component(entity, Health { 100, 100 })` — attach struct-as-component to entity via NBT + tag
|
|
148
|
+
- `get_component(entity, Health)` — read component fields back via scoreboard/storage
|
|
149
|
+
- `@tick fn health_system()` + `foreach(e: entity[tag=has_health])` — system iteration
|
|
150
|
+
- Advantage: kaer has nothing like this; raw mcfunction requires 100+ lines of manual NBT management per component type
|
|
151
|
+
- Implementation: tags for component presence, NBT storage for data, struct field expansion for reads/writes
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
### v3.1 — Documentation & Tooling
|
|
156
|
+
|
|
157
|
+
#### Language Reference (redscript-docs)
|
|
158
|
+
Current state: `en/reference/syntax.md`, `decorators.md`, `builtins.md`, `cli.md` exist but are incomplete.
|
|
159
|
+
|
|
160
|
+
- [x] **Language Spec completeness audit** — check syntax.md covers: f-string, for..in, range, impl blocks, Option<T>, generics, enums, all decorator args
|
|
161
|
+
- [ ] **Type system doc** — int/fixed/double/float distinction, explicit cast rules, when to use which
|
|
162
|
+
- [ ] **Error messages guide** — common compiler errors + how to fix (StringConcat, FloatArithmetic, etc.)
|
|
163
|
+
- [x] **stdlib API completeness** — many stdlib/*.md files are stubs; fill in function signatures, params, return values, examples
|
|
164
|
+
|
|
165
|
+
#### stdlib Docs (Codex-assisted batch generation)
|
|
166
|
+
Missing or incomplete stdlib docs:
|
|
167
|
+
- [x] `heap.md`, `sort.md`, `pathfind.md` — new modules, no docs yet
|
|
168
|
+
- [x] `matrix.md` — needs mat3_mul/mat4_mul entries
|
|
169
|
+
- [x] `bigint.md` — needs bigint_div entry
|
|
170
|
+
- [x] `graph.md`, `ecs.md` — will need docs when implemented
|
|
171
|
+
- [x] Chinese translations of all reference docs (en/ → zh/ sync)
|
|
172
|
+
|
|
173
|
+
#### Changelog
|
|
174
|
+
- [x] **v2.6.0 changelog** — document LSP improvements, f-string emit, string+var error, inlay hints, parser endLine, mat/bigint additions
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
### Long-term 🌱
|
|
179
|
+
|
|
180
|
+
- [ ] **Generic containers** — needs compiler generics instantiation
|
|
181
|
+
- [ ] **Cross-file incremental tests** — only rerun affected modules
|
|
182
|
+
- ~~**REPL / playground**~~ — removed, not worth the effort
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## Architecture Notes
|
|
187
|
+
|
|
188
|
+
- **double parameter passing**: callee sees `rs:d __dp0`, `__dp1` (NBT copy, not scoreboard)
|
|
189
|
+
- **double_mul_fixed macro**: `rs:math_hp __dmul_args.scale` (dot notation, not space)
|
|
190
|
+
- **marker entity UUID**: `b54f1a4f-d7ac-4002-915e-3c2a3bf6f8a4` (double_add/sub entity trick)
|
|
191
|
+
- **`__NS__` / `__OBJ__`**: replaced at compile time in raw() strings
|
|
192
|
+
- **mulfix(a,b) = a×b/1000** (correction divisor for ×10000 fixed multiply)
|
|
193
|
+
- **Coroutine yield mechanism**: loop back-edges, NOT a `yield` keyword
|
|
194
|
+
- **@coroutine constraint**: cannot contain macro calls (continuations called via `function`, not macro)
|
|
195
|
+
- **f-string tell emit**: must generate `{"text":"","extra":[{"text":"prefix"},{"score":...},...]}` JSON
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp0
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg__vec2d_len_sq_fx_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg__vec2d_len_sq_fx_xx_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg__vec2d_len_sq_fx_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg__vec2d_len_sq_fx_yy_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg__vec2d_len_sq_fx_xx_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg__vec2d_len_sq_fx_yy_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg__vec2d_len_sq_fx_dres_5 set from storage rs:d __dp0
|
|
15
|
+
execute store result storage rs:d linalg__vec2d_len_sq_fx_sq_4 double 0.0001 run scoreboard players get $t7 __linalg
|
|
16
|
+
execute store result score $_vec2d_len_sq_fx_t9 __linalg run data get storage rs:d linalg__vec2d_len_sq_fx_sq_4 10000.0
|
|
17
|
+
scoreboard players operation $ret __linalg = $_vec2d_len_sq_fx_t9 __linalg
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp0
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg__vec3d_len_sq_fx_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg__vec3d_len_sq_fx_xx_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg__vec3d_len_sq_fx_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg__vec3d_len_sq_fx_yy_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp2
|
|
13
|
+
function math_hp:double_mul
|
|
14
|
+
data modify storage rs:d linalg__vec3d_len_sq_fx_dres_5 set from storage rs:d __dp0
|
|
15
|
+
execute store result storage rs:d linalg__vec3d_len_sq_fx_zz_4 double 0.0001 run scoreboard players get $t7 __linalg
|
|
16
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg__vec3d_len_sq_fx_xx_0
|
|
17
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg__vec3d_len_sq_fx_yy_2
|
|
18
|
+
function math_hp:double_add
|
|
19
|
+
data modify storage rs:d linalg__vec3d_len_sq_fx_dres_7 set from storage rs:d __dp0
|
|
20
|
+
execute store result storage rs:d linalg__vec3d_len_sq_fx_s_6 double 0.0001 run scoreboard players get $t10 __linalg
|
|
21
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg__vec3d_len_sq_fx_s_6
|
|
22
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg__vec3d_len_sq_fx_zz_4
|
|
23
|
+
function math_hp:double_add
|
|
24
|
+
data modify storage rs:d linalg__vec3d_len_sq_fx_dres_9 set from storage rs:d __dp0
|
|
25
|
+
execute store result storage rs:d linalg__vec3d_len_sq_fx_sq_8 double 0.0001 run scoreboard players get $t13 __linalg
|
|
26
|
+
execute store result score $_vec3d_len_sq_fx_t15 __linalg run data get storage rs:d linalg__vec3d_len_sq_fx_sq_8 10000.0
|
|
27
|
+
scoreboard players operation $ret __linalg = $_vec3d_len_sq_fx_t15 __linalg
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
scoreboard objectives add __linalg dummy
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_det_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_det_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp2
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_det_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_det_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_det_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_det_t1_2
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_mat2d_det_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_det_t6 __linalg run data get storage rs:d linalg_mat2d_det_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_det_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_mul_r0c0_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_mul_r0c0_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp6
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_mul_r0c0_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_mul_r0c0_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_mul_r0c0_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_mul_r0c0_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_mat2d_mul_r0c0_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_mul_r0c0_t6 __linalg run data get storage rs:d linalg_mat2d_mul_r0c0_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_mul_r0c0_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_mul_r0c1_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_mul_r0c1_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp7
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_mul_r0c1_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_mul_r0c1_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_mul_r0c1_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_mul_r0c1_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_mat2d_mul_r0c1_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_mul_r0c1_t6 __linalg run data get storage rs:d linalg_mat2d_mul_r0c1_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_mul_r0c1_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_mul_r1c0_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_mul_r1c0_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp3
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp6
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_mul_r1c0_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_mul_r1c0_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_mul_r1c0_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_mul_r1c0_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_mat2d_mul_r1c0_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_mul_r1c0_t6 __linalg run data get storage rs:d linalg_mat2d_mul_r1c0_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_mul_r1c0_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_mul_r1c1_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_mul_r1c1_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp3
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp7
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_mul_r1c1_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_mul_r1c1_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_mul_r1c1_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_mul_r1c1_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_mat2d_mul_r1c1_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_mul_r1c1_t6 __linalg run data get storage rs:d linalg_mat2d_mul_r1c1_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_mul_r1c1_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_vecmul_x_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_vecmul_x_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_vecmul_x_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_vecmul_x_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_vecmul_x_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_vecmul_x_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_mat2d_vecmul_x_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_vecmul_x_t6 __linalg run data get storage rs:d linalg_mat2d_vecmul_x_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_vecmul_x_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_mat2d_vecmul_y_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_mat2d_vecmul_y_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp3
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_mat2d_vecmul_y_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_mat2d_vecmul_y_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_mat2d_vecmul_y_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_mat2d_vecmul_y_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_mat2d_vecmul_y_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $mat2d_vecmul_y_t6 __linalg run data get storage rs:d linalg_mat2d_vecmul_y_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $mat2d_vecmul_y_t6 __linalg
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp4
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_solve2d_x_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_solve2d_x_num_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_solve2d_x_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_solve2d_x_sub_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_solve2d_x_num_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_solve2d_x_sub_2
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_solve2d_x_dres_5 set from storage rs:d __dp0
|
|
15
|
+
execute store result storage rs:d linalg_solve2d_x_numer_4 double 0.0001 run scoreboard players get $t7 __linalg
|
|
16
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
17
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
18
|
+
data modify storage rs:d __dp2 set from storage rs:d __dp2
|
|
19
|
+
data modify storage rs:d __dp3 set from storage rs:d __dp3
|
|
20
|
+
function linalg:mat2d_det
|
|
21
|
+
execute store result storage rs:d linalg_solve2d_x_det_6 double 0.0001 run scoreboard players get $t10 __linalg
|
|
22
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_solve2d_x_numer_4
|
|
23
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_solve2d_x_det_6
|
|
24
|
+
function math_hp:double_div
|
|
25
|
+
data modify storage rs:d linalg_solve2d_x_dres_7 set from storage rs:d __dp0
|
|
26
|
+
execute store result score $solve2d_x_t12 __linalg run data get storage rs:d linalg_solve2d_x_dres_7 10000.0
|
|
27
|
+
scoreboard players operation $ret __linalg = $solve2d_x_t12 __linalg
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_solve2d_y_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_solve2d_y_num_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp4
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp2
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_solve2d_y_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_solve2d_y_sub_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_solve2d_y_num_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_solve2d_y_sub_2
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_solve2d_y_dres_5 set from storage rs:d __dp0
|
|
15
|
+
execute store result storage rs:d linalg_solve2d_y_numer_4 double 0.0001 run scoreboard players get $t7 __linalg
|
|
16
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
17
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
18
|
+
data modify storage rs:d __dp2 set from storage rs:d __dp2
|
|
19
|
+
data modify storage rs:d __dp3 set from storage rs:d __dp3
|
|
20
|
+
function linalg:mat2d_det
|
|
21
|
+
execute store result storage rs:d linalg_solve2d_y_det_6 double 0.0001 run scoreboard players get $t10 __linalg
|
|
22
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_solve2d_y_numer_4
|
|
23
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_solve2d_y_det_6
|
|
24
|
+
function math_hp:double_div
|
|
25
|
+
data modify storage rs:d linalg_solve2d_y_dres_7 set from storage rs:d __dp0
|
|
26
|
+
execute store result score $solve2d_y_t12 __linalg run data get storage rs:d linalg_solve2d_y_dres_7 10000.0
|
|
27
|
+
scoreboard players operation $ret __linalg = $solve2d_y_t12 __linalg
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp2
|
|
3
|
+
function math_hp:double_sub
|
|
4
|
+
data modify storage rs:d linalg_vec2d_dist_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec2d_dist_dx_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
8
|
+
function math_hp:double_sub
|
|
9
|
+
data modify storage rs:d linalg_vec2d_dist_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec2d_dist_dy_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec2d_dist_dx_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec2d_dist_dy_2
|
|
13
|
+
function linalg:vec2d_length
|
|
14
|
+
scoreboard players operation $vec2d_dist_t6 __linalg = $ret __linalg
|
|
15
|
+
scoreboard players operation $ret __linalg = $vec2d_dist_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp2
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_vec2d_dot_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec2d_dot_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_vec2d_dot_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec2d_dot_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec2d_dot_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec2d_dot_t1_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_vec2d_dot_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $vec2d_dot_t6 __linalg run data get storage rs:d linalg_vec2d_dot_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $vec2d_dot_t6 __linalg
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp0
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_vec2d_length_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec2d_length_xx_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_vec2d_length_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec2d_length_yy_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec2d_length_xx_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec2d_length_yy_2
|
|
13
|
+
function math_hp:double_add
|
|
14
|
+
data modify storage rs:d linalg_vec2d_length_dres_5 set from storage rs:d __dp0
|
|
15
|
+
execute store result storage rs:d linalg_vec2d_length_s_4 double 0.0001 run scoreboard players get $t7 __linalg
|
|
16
|
+
execute store result score $vec2d_length_t9 __linalg run data get storage rs:d linalg_vec2d_length_s_4 10000.0
|
|
17
|
+
scoreboard players operation $p0 __linalg = $vec2d_length_t9 __linalg
|
|
18
|
+
function linalg:double_sqrt
|
|
19
|
+
execute store result storage rs:d linalg_vec2d_length_cast_6 double 0.0001 run scoreboard players get $t11 __linalg
|
|
20
|
+
execute store result score $vec2d_length_t12 __linalg run data get storage rs:d linalg_vec2d_length_cast_6 10000.0
|
|
21
|
+
scoreboard players operation $ret __linalg = $vec2d_length_t12 __linalg
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
3
|
+
function linalg:_vec2d_len_sq_fx
|
|
4
|
+
scoreboard players operation $vec2d_normalize_x_t0 __linalg = $ret __linalg
|
|
5
|
+
scoreboard players set $__const_0 __linalg 0
|
|
6
|
+
execute store success score $vec2d_normalize_x_t2 __linalg if score $vec2d_normalize_x_t0 __linalg = $__const_0 __linalg
|
|
7
|
+
execute if score $vec2d_normalize_x_t2 __linalg matches 1 run return run function linalg:vec2d_normalize_x__then_0
|
|
8
|
+
function linalg:vec2d_normalize_x__merge_1
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
3
|
+
function linalg:vec2d_length
|
|
4
|
+
execute store result storage rs:d linalg_vec2d_normalize_x_len_1 double 0.0001 run scoreboard players get $t5 __linalg
|
|
5
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
6
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec2d_normalize_x_len_1
|
|
7
|
+
function math_hp:double_div
|
|
8
|
+
data modify storage rs:d linalg_vec2d_normalize_x_dres_2 set from storage rs:d __dp0
|
|
9
|
+
execute store result score $vec2d_normalize_x_t7 __linalg run data get storage rs:d linalg_vec2d_normalize_x_dres_2 10000.0
|
|
10
|
+
scoreboard players operation $ret __linalg = $vec2d_normalize_x_t7 __linalg
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
3
|
+
function linalg:_vec2d_len_sq_fx
|
|
4
|
+
scoreboard players operation $vec2d_normalize_y_t0 __linalg = $ret __linalg
|
|
5
|
+
scoreboard players set $__const_0 __linalg 0
|
|
6
|
+
execute store success score $vec2d_normalize_y_t2 __linalg if score $vec2d_normalize_y_t0 __linalg = $__const_0 __linalg
|
|
7
|
+
execute if score $vec2d_normalize_y_t2 __linalg matches 1 run return run function linalg:vec2d_normalize_y__then_0
|
|
8
|
+
function linalg:vec2d_normalize_y__merge_1
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp1
|
|
3
|
+
function linalg:vec2d_length
|
|
4
|
+
execute store result storage rs:d linalg_vec2d_normalize_y_len_1 double 0.0001 run scoreboard players get $t5 __linalg
|
|
5
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
6
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec2d_normalize_y_len_1
|
|
7
|
+
function math_hp:double_div
|
|
8
|
+
data modify storage rs:d linalg_vec2d_normalize_y_dres_2 set from storage rs:d __dp0
|
|
9
|
+
execute store result score $vec2d_normalize_y_t7 __linalg run data get storage rs:d linalg_vec2d_normalize_y_dres_2 10000.0
|
|
10
|
+
scoreboard players operation $ret __linalg = $vec2d_normalize_y_t7 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_vec3d_cross_x_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec3d_cross_x_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_vec3d_cross_x_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec3d_cross_x_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec3d_cross_x_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec3d_cross_x_t1_2
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_vec3d_cross_x_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $vec3d_cross_x_t6 __linalg run data get storage rs:d linalg_vec3d_cross_x_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $vec3d_cross_x_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_vec3d_cross_y_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec3d_cross_y_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_vec3d_cross_y_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec3d_cross_y_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec3d_cross_y_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec3d_cross_y_t1_2
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_vec3d_cross_y_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $vec3d_cross_y_t6 __linalg run data get storage rs:d linalg_vec3d_cross_y_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $vec3d_cross_y_t6 __linalg
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
3
|
+
function math_hp:double_mul
|
|
4
|
+
data modify storage rs:d linalg_vec3d_cross_z_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec3d_cross_z_t0_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
8
|
+
function math_hp:double_mul
|
|
9
|
+
data modify storage rs:d linalg_vec3d_cross_z_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec3d_cross_z_t1_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec3d_cross_z_t0_0
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec3d_cross_z_t1_2
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_vec3d_cross_z_dres_4 set from storage rs:d __dp0
|
|
15
|
+
execute store result score $vec3d_cross_z_t6 __linalg run data get storage rs:d linalg_vec3d_cross_z_dres_4 10000.0
|
|
16
|
+
scoreboard players operation $ret __linalg = $vec3d_cross_z_t6 __linalg
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp0
|
|
2
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp3
|
|
3
|
+
function math_hp:double_sub
|
|
4
|
+
data modify storage rs:d linalg_vec3d_dist_dres_1 set from storage rs:d __dp0
|
|
5
|
+
execute store result storage rs:d linalg_vec3d_dist_dx_0 double 0.0001 run scoreboard players get $t1 __linalg
|
|
6
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp1
|
|
7
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp4
|
|
8
|
+
function math_hp:double_sub
|
|
9
|
+
data modify storage rs:d linalg_vec3d_dist_dres_3 set from storage rs:d __dp0
|
|
10
|
+
execute store result storage rs:d linalg_vec3d_dist_dy_2 double 0.0001 run scoreboard players get $t4 __linalg
|
|
11
|
+
data modify storage rs:d __dp0 set from storage rs:d __dp2
|
|
12
|
+
data modify storage rs:d __dp1 set from storage rs:d __dp5
|
|
13
|
+
function math_hp:double_sub
|
|
14
|
+
data modify storage rs:d linalg_vec3d_dist_dres_5 set from storage rs:d __dp0
|
|
15
|
+
execute store result storage rs:d linalg_vec3d_dist_dz_4 double 0.0001 run scoreboard players get $t7 __linalg
|
|
16
|
+
data modify storage rs:d __dp0 set from storage rs:d linalg_vec3d_dist_dx_0
|
|
17
|
+
data modify storage rs:d __dp1 set from storage rs:d linalg_vec3d_dist_dy_2
|
|
18
|
+
data modify storage rs:d __dp2 set from storage rs:d linalg_vec3d_dist_dz_4
|
|
19
|
+
function linalg:vec3d_length
|
|
20
|
+
scoreboard players operation $vec3d_dist_t9 __linalg = $ret __linalg
|
|
21
|
+
scoreboard players operation $ret __linalg = $vec3d_dist_t9 __linalg
|