Working With Two CODE Levels: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 42: Line 42:
(need to add example later on)
(need to add example later on)


===Trick 4: Very Dirty Coding - More then 2 CODE levels ===
Basically you should not do this as it is NOT supported in MT and thus it ''could'' break your code at any given moment or simply not work in a newer version...
That said, I use it sometimes and have not yet encountered any issue. Still this is at your own risk.
As it turns out it IS possible to have more then 2 nested code levels but in order to do that you have to ''mislead'' the parser. This is done as follows:
<source lang="mtmacro" line>
[if(1), CODE:{
[if(1), CODE:{
[if(1), CODE:{
    you should never see this in the chat
''
};{}]
''
};{}]
''
};{}]
</source>


 
What is boils down to is to add two single quotes '' at the end of EACH code block. This will fool the MT parser and it will accept this nesting. I've tried it upto 9 nestings without a problem (more is probly also no issue). Do keep in mind that this will SERIOUSLY impact the stack, so don't go writing huge code blocks this way. I mainly use it for cases where you only have a few lines of code but are required to go 3 or 4 nestings deep and its just annoying to create a separate macro for one or two lines of code.
 
Note that if in the above example the '' will show up in the chat as well. You can replace them with [h:'']. That will also work.
[[Category:Cookbook]]
[[Category:Cookbook]]
--[[User:Wolph42|Wolph42]] 16:22, 19 March 2011 (UTC)
--[[User:Wolph42|Wolph42]] 16:22, 19 March 2011 (UTC)

Revision as of 12:02, 4 October 2013

Working With Two CODE Levels

One of the biggest limitations of the MT macro script is that the script parser can't handle more that 2 levels of {}. So This will work

 [If(condition), CODE:{
   [if(another_condition), CODE:{
      [code to execute when true]
   };{}]
 };{}]

And this won't:

 [If(condition), CODE:{
   [if(another_condition), CODE:{
     [if(another_condition), CODE:{
       [code to execute when true]
     };{}]
   };{}]
 };{}]
  • Note that this is an example, there are other occasions where one uses {} e.g. {myVar} instead of [r:myVar] this is subject to the same problem. The only exception I've encountered is with json objects: myVar = json.set("{}", "someKey", someVar) this is NOT subject to this problem. however if I believe that if you use '{}' instead of "{}" it won't work (or the other way round).

So what to do when you do need to go deeper?

Basically there are 3 general tricks you can use if you need to go deeper:

Trick 1: Create another UDF

One of the most common 'tricks' is to create a User Defined Function (UDF) and call this in the nested level. Within this UDF you can yet again go 2 CODE levels deep.

Trick 2: Code smarter

Many many examples can be give here, but you can achieve a lot by using roll options e.g.

 [if(condition): if(another_condition, "show this", "else show this"); if(yet_another_condition, "show this"; "else show this")]

You can also work with multiple roll options, but this 'should' not work, but does sometimes work e.g.

 [foreach(item,items), if(item == someVar), CODE:{};{}]

Works while

 [if(listCount(items)>2), foreach(item,items), CODE:{};{}]

Won't work.

A lot can be achieved by restructuring your code in this manner.

Trick 3: Store commands

One final trick I recently learned from Ahzrei is a rather dirty trick but can be used in certain circumstances. In my case I have code that needs to be executed that is already two levels deep and then I ALSO want to execute this for certain selected tokens. In this case you can first store the to-execute-commands in a json object and then exit the two loops. Now you have a json object containing all code that needs to be executed onto certain tokens. for this you can start a new loop that uses json.evaluate per json object per token id.

(need to add example later on)

Trick 4: Very Dirty Coding - More then 2 CODE levels

Basically you should not do this as it is NOT supported in MT and thus it could break your code at any given moment or simply not work in a newer version... That said, I use it sometimes and have not yet encountered any issue. Still this is at your own risk. As it turns out it IS possible to have more then 2 nested code levels but in order to do that you have to mislead the parser. This is done as follows:

[if(1), CODE:{
	[if(1), CODE:{
		[if(1), CODE:{
  			  you should never see this in the chat
		''
		};{}]
	''
	};{}]
''
};{}]

What is boils down to is to add two single quotes at the end of EACH code block. This will fool the MT parser and it will accept this nesting. I've tried it upto 9 nestings without a problem (more is probly also no issue). Do keep in mind that this will SERIOUSLY impact the stack, so don't go writing huge code blocks this way. I mainly use it for cases where you only have a few lines of code but are required to go 3 or 4 nestings deep and its just annoying to create a separate macro for one or two lines of code. Note that if in the above example the will show up in the chat as well. You can replace them with [h:]. That will also work. --Wolph42 16:22, 19 March 2011 (UTC)