Goto or jump functions
-
@Mechanical https://fuzearena.com/forum/topic/1099/a-goto-workaround That may will help you
-
Functions are great! Once you get used to them, you’ll never want to go back.
Also give structs a try. They’re the ones that look like
player.pos player.colour player.shiptype
etc. Comes in handy, makes your stuff more readable too :) -
@toxibunny Exactly nevertheless I made a goto workaround how may will help persons who miss theyre goto and so they can feel a bit better in fuze
-
I've asked myself if I couldn't write a complete function for my Main Screen, Game Screen ect.
If I scripted that on ROMs I just would do this
@Maintext // Stores text data
" This is the Main Screen"
@Gametext // Same
"This is the Game"
@IntroAsk
"Do you want to play?"Start
Msgbox 6,@Maintext /shows text dataMsgbox 5,@IntroAsk / ask yes no question
If LASTRESULT 1 goto @Gamescreen@Game Screen
Msgbox 6,@GametextEnd
-
@Mechanical Yeah sure but you cant jump with this
@ exampleMaybe you should read the chapter about functions
-
@Mechanical said in Goto or jump functions:
I've asked myself if I couldn't write a complete function for my Main Screen, Game Screen ect.
If I scripted that on ROMs I just would do this
@Maintext // Stores text data
" This is the Main Screen"
@Gametext // Same
"This is the Game"
@IntroAsk
"Do you want to play?"Start
Msgbox 6,@Maintext /shows text dataMsgbox 5,@IntroAsk / ask yes no question
If LASTRESULT 1 goto @Gamescreen@Game Screen
Msgbox 6,@GametextEnd
I think you need to work your way through some of the tutorials! This isn't ROM (don't know what that is - well, I know what a ROM is, but I know you're not talking about that)
Things just don't work in the same way here! For starters there isn't really a start to finish flow of things, you need a loop that runs forever
Very loosely (pseudo-code to a certain extent) you would have:
mainText = "This is the Main Screen" gameText = "This is the Game" introAsk = "Do you want to play?" // This is not real code! loop while attract clear() // Ask if they want to play a game update() repeat while play clear() // Play the game update() repeat repeat
-
Okay I can say that I understand it to a certain extend now.
Rn I wrote a function that is my Main Game Engine. This Engine can be extended and improved by altering the function itself and will start after setting the needed Parameters in a main menu.
Here is what I learned the last time I used them:
If I want to Improve the Engine, every Variable that is used in the function itself must be determined in a Library before it is used in the function. Otherwise the compiler tells me that the Variable doesn't exist.
On the other side that means every Variable that's been defined inside of a function will Vanish after the Function is being executed. They only exist to work for the function
-
@Mechanical So variables can be local or global. As you say variables that are declared within a function are local to it and will cease to exist outside of the function. Variables declared outside of a function are global and they will persist even after the function has exited.
-
@pianofire but with the next update there will changes right?
-
@petermeisenstein There will be a change to the way that parameters are passed to functions. Global and local variables will remain the same.
-
@pianofire sooo, practically I need to change Syntax when the new update rolls out? Or does it stay the same on the frontend?
-
@Mechanical There was some confusion about whether parameters were being passed to functions by reference or by value. To clarify the situation the default is now by value and if you want to pass by reference you will need to add "ref" in front of the parameter (from the next patch)
-
@pianofire but it wont be possible for variables declared "new" in your function so a variable who is only declared inside your function
-
@petermeisenstein Sorry I don't understand the question
-
@pianofire So here is an example
function()
my_variable=1
return voidCan i use my_variable outside this function
-
@petermeisenstein So if you declare the variable outside of the function it becomes global and can be used anywhere:
int my_variable = 0 function test() my_variable=1 return void test() print(my_variable) // value will now be 1
-
@pianofire Ok thanks