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 1: Line 1:
{{mirc title|Evaluation Brackets}}
+
{{mIRC Guide}}
Standard mIRC code is executed, as expected, top down and left right. '''Evaluation brackets''' (or '''Eval Brackets''') are a mechanism by which a program can alter the natural behavior of the [[mIRC]] [[interpreter]].
+
Normal code is executed, as you are probably aware, top down and left right. '''Evaluation brackets''' are a mechanism by which a program can alter the natural behavior of the [[mIRC]] [[interpreter]].
  
 
Evaluation brackets allows us to:
 
Evaluation brackets allows us to:
Line 13: Line 13:
 
[[File:Eval1.png]]
 
[[File:Eval1.png]]
  
Typical code is evaluated from left to right, one word at a time.
+
A typical code is evaluated from left to right, one word at a time.
  
 
<source lang="mIRC">alias x echo -a $1 | return $1
 
<source lang="mIRC">alias x echo -a $1 | return $1
Line 158: Line 158:
  
 
=== Multiple evaluations ===
 
=== Multiple evaluations ===
If we follow the simple rule above, we can easily evaluate a specific code segment multiple times. Consider the following example:
+
If we follow the simple rule above, we can easily evaluate a specific code segment multiple files. Consider the following example:
  
 
<source lang="mIRC">alias exe echo -a I was called! | return Hi!
 
<source lang="mIRC">alias exe echo -a I was called! | return Hi!
 
; example:
 
; example:
alias example echo -a [ [ [ $!!exe ] ] ]</source>
+
alias example echo -a [ [ [ [ [ $!!!!exe ] ] ] ] ]</source>
  
 
The above code prints:
 
The above code prints:
Line 168: Line 168:
 
  I was called!
 
  I was called!
 
  Hi!
 
  Hi!
 
'''Note''': The graph below was made as though [ [ [ [ [ $!!exe ] ] ] ] ] with fives 5 '!' on $exe instead of two, but for technical reason 3 or more '!' can't be rendered for now.
 
  
 
[[File:Eval6.png]]
 
[[File:Eval6.png]]
 
  
 
Here is a more interesting example of multiple evaluations:
 
Here is a more interesting example of multiple evaluations:
Line 189: Line 186:
  
 
== Solving the space issue using $+() ==
 
== Solving the space issue using $+() ==
By now we already know that the following code will only evaluated once since it violates the first rule: spaces in the code segment.
+
By know we already know that the following code will only evaluated once since it violates the first rule: spaces in the code segment.
  
 
<source lang="mIRC">//echo -a [ [ a $!me ] ]</source>
 
<source lang="mIRC">//echo -a [ [ a $!me ] ]</source>
Line 205: Line 202:
  
 
== $+ Special behaviors ==
 
== $+ Special behaviors ==
Inside evaluation brackets, the $+ concatenation construct (unlike $+(), $+ itself is not an identifier, it doesn't return a value)  exhibits some special behavior.
+
Inside evaluation brackets, the $+ concatenation bracket exhibit some special behavior.
  
 
=== [ A $+ B ] Format ===
 
=== [ A $+ B ] Format ===
 
The rule about [ A $+ B ] is:
 
The rule about [ A $+ B ] is:
  
  The '''[ token_A $+ token_B ]''' arrangement will cause token_A to evaluate once and then be concatenated to token_B (evaluated zero times). and then the concatenated string is evaluated. I.e.:
+
  The '''[ token_A $+ token_B ]''' arrangement will cause token_A to evaluate once and then be concatenated to token_B (evaluated zero times). I.e.:
 
  [ A $+ B  ]  <=> $($(A, 1) $+ $(B, 0), 2)
 
  [ A $+ B  ]  <=> $($(A, 1) $+ $(B, 0), 2)
  
Line 282: Line 279:
 
The most common form is %var. [ $+ [ $nick ] ] which allow you to retrieve a value from a variable specifically created for $nick.
 
The most common form is %var. [ $+ [ $nick ] ] which allow you to retrieve a value from a variable specifically created for $nick.
  
 +
== Escaping Evaluation Brackets ==
 +
Evaluation brackets can be escaped by using double brackets ([[) without spaces. For example:
  
== Inside identifiers ==
+
<source lang="mIRC">//echo -a [[ [[ example! ]] ]] </source>
By now you know evaluation brackets happen before the code itself evaluates, but what about identifiers?
 
  
=== Spaced out [ ] ===
+
The code above prints:
 +
[ [ example! ] ]
  
If you space out the [ ] inside the identifier, the previous rules apply
+
Note that without a complete pair, a single bracket is not treated as anything special. The following example is also acceptable:
  
//echo -a [ $me ] $+( [ $!me ] )
+
<source lang="mIRC">//echo -a [[ [[ example! ] ]</source>
  
Here both [ ] are resolved at the same time. However after [ ] are resolved, the line becomes:
+
It's a good time to also note that escaped evaluation brackets are not exactly the same as using $chr(91) and $chr(93). The escaped evaluation brackets happen at the same phase of evaluation as the actual evaluation bracket processing. Consider the following example:
  
//echo -a David $+( $me )
+
<source lang="mIRC">//echo -a $mid( [[ [[ example! ]] ]] , 1) =>  $mid( $chr(91) example! $chr(93) , 1)</source>
  
And here $+() will normally evaluate $me, so doing that results in a double evaluatation of the parameter, watch out.
+
The code above prints:
 +
example! => [ example! ]
  
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:
+
== Special behavior inside 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:
  
 
<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 316:
  
 
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 ==
 
Evaluation brackets can be escaped by using double brackets ([[) without spaces. For example:
 
 
<source lang="mIRC">//echo -a [[ [[ example! ]] ]] </source>
 
 
The code above prints:
 
[ [ example! ] ]
 
 
Note that without a complete pair, a single bracket is not treated as anything special. The following example is also acceptable:
 
 
<source lang="mIRC">//echo -a [[ [[ example! ] ]</source>
 
 
It's a good time to also note that escaped evaluation brackets are not exactly the same as using $chr(91) and $chr(93). The escaped evaluation brackets happen at the same phase of evaluation as the actual evaluation bracket processing. Consider the following example:
 
 
<source lang="mIRC">//echo -a $mid( [[ [[ example! ]] ]] , 1) =>  $mid( $chr(91) example! $chr(93) , 1)</source>
 
 
The code above prints:
 
[ [ example! ] ] => [ example! ]
 
  
 
== Additional Odd Behaviors ==
 
== Additional Odd Behaviors ==
Line 387: Line 337:
 
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 360:
 
  :
 
  :
  
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 [[$+ identifier - mIRC|$+]] %var. Evaluation brackets are needed to fix this. This is most likely a bug.
 
 
== Quirks ==
 
 
 
jaytea
 
 
 
  
[[Category:mIRC|evaluation brackets]]
+
[[Category:mIRC]]

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)