Git Product home page Git Product logo

Comments (1)

MysteryBlokHed avatar MysteryBlokHed commented on May 29, 2024

One problem that could happen is the if block modifying the variable that was tested, eg. if the test was tvar example matches 10 and the if statement changes it to a different value. This would cause both the if and else blocks' code to be run.

A potential solution could be either to create a variable per statement to store the result of the test, or to have one objective with multiple "players" that store the result of each if statement.

Something like this:

# only run for the first if statement created
scoreboard objectives add if_results_abcd

# for each if statement
execute if score example matches ..9 run scoreboard players set --databind-abcd if_results_abcd 1
execute unless score example matches ..9 run scoreboard players set --databind-abcd if_results_abcd 0

Could prevent both blocks from being run.
Using one objective might cause issues related to properly detecting when an if statement is run, since the compiler would need a place to create the if statement objective. One solution could be to create an mcfunction tagged with load that only contains the line to create the objective.

I'll open a PR to do this when I get a chance.

from databind.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.