From WikiChip
Editing mirc/evaluation brackets

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 283: Line 283:
  
  
== Inside identifiers ==
+
== Special behavior inside identifiers ==
By now you know evaluation brackets happen before the code itself evaluates, but what about identifiers?
+
By now you know evaluation brackets happen before the code itself evaluates. It turns out that when an identifier evaluates, it will correctly parse code that is a direct result of the evaluation brackets. Here is some code to demonstrate this behavior:
 
 
=== Spaced out [ ] ===
 
 
 
If you space out the [ ] inside the identifier, the previous rules apply
 
 
 
//echo -a [ $me ] $+( [ $!me ] )
 
 
 
Here both [ ] are resolved at the same time. However after [ ] are resolved, the line becomes:
 
 
 
//echo -a David $+( $me )
 
 
 
And here $+() will normally evaluate $me, so doing that results in a double evaluatation of the parameter, watch out.
 
 
 
More importantly, since the resolution of [ ] happens before the identifier itself is evaluated, it will correctly parse code that is a direct result of the evaluation brackets. Here is some code to demonstrate this behavior:
 
  
 
<source lang="mIRC">//var -s %x = mid(@Example!,2,8, %y = ) | echo -a $ [ $+ [ %x $+ [ %y ] ] ]</source>
 
<source lang="mIRC">//var -s %x = mid(@Example!,2,8, %y = ) | echo -a $ [ $+ [ %x $+ [ %y ] ] ]</source>
Line 315: Line 301:
  
 
The interpreter is able to handle the commas and braces as part of the code.
 
The interpreter is able to handle the commas and braces as part of the code.
 
=== Non spaced out [ ] ===
 
If you don't space out the [ ], they will be interpreted when the identifier evaluate each parameter:
 
 
alias changev1to2 if (2) noop
 
alias changev1to3 echo -a param: $1 | if (3) noop
 
alias custom echo -a $1 $3
 
//if (1) noop $changev1to2 $custom($v1,$changev1to3( [ $v1 ] ),[ $v1 ])
 
 
Here, the first parameter passed to $custom, $v1, will have the value '2', because just before $custom is evaluated, $changev1to2 is evaluated, and that changes $v1.
 
 
The [ $v1 ] for the $changev1to3 alias, is resolved when the line is evaluated for the /noop command, because of the spacing. At this point $v1 is '1', from the original //if that is executed.
 
 
The non spaced [ $v1 ] for the third parameter of $custom, is not resolved for the /noop command, here are the inbetween steps:
 
 
* //if evaluates, the condition is '1' so $v1 is set 1
 
* noop $changev1to2 $custom($v1,$changev1to3( [ $v1 ] ),[ $v1 ]) is the command to be executed for that if
 
* [ ] are processed for the line, the [ $v1 ] for the $changev1to3 alias is resolved, so $v1 is our current value so far: 1
 
* the line is evaluated, $changev1to2 is evaluated and set $v1 to 2
 
* $custom is evaluated, its first parameter $v1, is then 2
 
* the second parameter of $custom evaluates "$changev1to3( 1 )" to $null, but it sets $v1 to 3 ('1' is our previous $v1 code, although it's no problemo here, keep in mind: it's double evaluated!)
 
* the third parameter of $custom evaluates: the [ ] are resolved, $v1 evaluates once (no double evaluation) to 3
 
 
'''Note''': the non spaced [ $v1 ] is not required to get $v1 to be 3, not using [ ] would also correctly make $v1 3 since $changev1to3 was just called, but it illustrates that the [ ] are not resolved at the same stage depending on the spacing.
 
 
'''Note2''': non spaced [ ] inside identifier are equivalent to $eval(), they do not make the identifier reevaluate the code:
 
 
//var %a 1,32 | echo -a $gettok(a b,[ %a ]) is just going to evaluate twice ,1,32 and then pass 1,32 as the second parameter to $gettok
 
 
This makes non spaced [ ] inside bracket pretty useless. Spaced out [ ] are handy for passing dynamic parameters to an identifier (again this double evaluates the argument so be careful):
 
 
$ident( [ %params ] )
 
  
 
== Escaping Evaluation Brackets ==
 
== Escaping Evaluation Brackets ==
Line 365: Line 319:
  
 
The code above prints:  
 
The code above prints:  
  [ [ example! ] ] => [ example! ]
+
  example! => [ example! ]
  
 
== Additional Odd Behaviors ==
 
== Additional Odd Behaviors ==
Line 387: Line 341:
 
The above code prints:  
 
The above code prints:  
 
  $!me$me vs. $me$!me
 
  $!me$me vs. $me$!me
 
Or with the previous example:
 
 
//echo -a [ A $+ ] $me $++ $me $++ $me
 
 
Which evaluates the last two $me correctly.
 
  
 
== Commands with Special Behavior ==
 
== Commands with Special Behavior ==
Line 416: Line 364:
 
  :
 
  :
  
Note that unlike the reset of the commands, '''{{mIRC|/unset}}''' cannot set variables in the format of %var {{mIRC|$+}} %var. Evaluation brackets are needed to fix this. see {{mirc|variables#Special behaviors & quirks|here}}
+
Note that unlike the reset of the commands, '''{{mIRC|/unset}}''' cannot set variables in the format of %var {{mIRC|$+}} %var. Evaluation brackets are needed to fix this. This is most likely a bug.
 
 
== Quirks ==
 
 
 
jaytea
 
 
 
  
 
[[Category:mIRC|evaluation brackets]]
 
[[Category:mIRC|evaluation brackets]]

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)