From WikiChip
Difference between revisions of "mirc/commands/bset"
< mirc‎ | commands

(Parameters)
(Add'l syntax and examples)
Line 1: Line 1:
 
{{mirc title|/bset Command}}
 
{{mirc title|/bset Command}}
The '''/bset command''' lets you assign specific ASCII values (or text) at a specific position. If the variable does not exists, a new binary variable will be created and zero-pad until <pos>. If <pos> exceeds the length of the variable, the variable will extend (by zero-padding the gap) to accommodate the new values.
+
The '''/bset''' command lets you assign specific ASCII values (or text) at a specific position. If the variable does not exist, a new binary variable will be created and zero-pad until <pos>. If <pos> exceeds the length of the variable, the variable will extend (by zero-padding the gap) to accommodate the new values.
  
 
'''Note:''' Important fact to remember about binary variables is that they are not limited to the local scope of the alias but instead they remain set until processing is complete. Thus it's possible to use the same binary variable within multiple aliases if they call each other during the same script execution.
 
'''Note:''' Important fact to remember about binary variables is that they are not limited to the local scope of the alias but instead they remain set until processing is complete. Thus it's possible to use the same binary variable within multiple aliases if they call each other during the same script execution.
Line 11: Line 11:
 
* '''-t''' - Indicates a string is to be written instead of literal ASCII values
 
* '''-t''' - Indicates a string is to be written instead of literal ASCII values
 
* '''-c''' - Fills the binary variable with the string/ASCII values and truncates anything after it
 
* '''-c''' - Fills the binary variable with the string/ASCII values and truncates anything after it
* '''-a''' - Don't apply UTF-8 encoding to characters in the range 0-255, as long as the line contains no characters > 255.
+
* '''-a''' - Don't apply UTF-8 encoding to characters in the range 0-255, as long as the string parameter contains no characters > 255.
  
 
== Parameters ==
 
== Parameters ==
 
* '''<&bvar>''' - The binary variable name to use/create
 
* '''<&bvar>''' - The binary variable name to use/create
* '''<pos>''' - The position to set the new ASCII values or the string, use -1 to append.
+
* '''<pos>''' - The position to set the new ASCII values or the string, use -1 to append. The first byte of the string is pos 1. If <pos> is greater than the existing length of the binary variable, the string is zero-padded to fill undefined bytes between <pos> and the prior end of string.
* '''<asciivalue>''' - ASCII value to write
+
* '''<asciivalue>''' - ASCII 0-255 value to write. If values are in range 256 - 2^31-1, writes $and(value,255). If value >= 2^31, writes 255.
 
* '''[asciivalue ... asciivalue]''' - Succeeding ASCII values to be written
 
* '''[asciivalue ... asciivalue]''' - Succeeding ASCII values to be written
* '''<string>''' - The string to be written
+
* '''<string>''' - The string to be written. The number of values is limited only by the 4150 character line length for the entire command including 'bset'
  
 
== Example ==
 
== Example ==
Line 51: Line 51:
 
   ; put 'd' as the 5th byte in &var
 
   ; put 'd' as the 5th byte in &var
 
   bset &var 5 100
 
   bset &var 5 100
 +
  ; same as
 +
  ; bset &var 5 $asc(d)
  
 
   ; will print: 0 0 0 0 100
 
   ; will print: 0 0 0 0 100
 
   echo -a $bvar(&var, 1-)
 
   echo -a $bvar(&var, 1-)
  
   ; zero-pad bytes 6-9
+
   ; zero-pad bytes 6-8
   bset &var 9 0
+
   bset &var 9 33
 
    
 
    
   ; will print: 0 0 0 0 100 0 0 0 0
+
   ; will print: 0 0 0 0 100 0 0 0 33
 
   echo -a $bvar(&var, 1-)
 
   echo -a $bvar(&var, 1-)
 
}</syntaxhighlight>
 
}</syntaxhighlight>
 +
 +
<syntaxhighlight lang="mIRC">create variable with UTF-8 encoding:
 +
//bset -t  &var 1 $chr(233) | echo -a $bvar(&var,1-)
 +
returns: 195 169
 +
//bset -ta &var 1 $chr(233) | echo -a $bvar(&var,1-)
 +
returns: 233
 +
-a works only when no characters are codepoint 256+
 +
//bset -ta &var 1 $chr(233) $+ $chr(10004) | echo -a $bvar(&var,1-)
 +
returns: 195 169 226 156 148
 +
//bset &var 1 10004 | echo -a $bvar(&var,1-)
 +
returns $and(10004,255) = '20' instead of the 3 encoded bytes of $chr(10004)
 +
</syntaxhighlight>
 +
 +
Binary variables are not limited to 4150 length. It's more efficient to lengthen with /bcopy but bset can set long variables by repeatedly appending bytes. Max length of binary string can depend on your system resources. Fill a 7mb binary variable with all $chr(0)'s:
 +
<syntaxhighlight lang="mIRC">
 +
/fill_with_zeroes 7654321
 +
 +
alias fill_with_zeroes {
 +
  if ($1 !isnum 1-) return | bset &var 1 0
 +
  while ($1 > $bvar(&var,0)) {
 +
    bset &var -1 $str(0 $chr(32),$iif($calc($1 - $bvar(&var,0)) > 999,$v2,$v1))
 +
    echo -a current length: $bvar(&var,0)
 +
  }
 +
  echo -a variable length is $bvar(&var,0)
 +
}
 +
</syntaxhighlight>
 +
  
 
== Compatibility ==
 
== Compatibility ==
Line 66: Line 95:
  
 
== See also ==
 
== See also ==
* [[List of commands - mIRC|List of commands]]
+
{{collist
* [[List of identifiers - mIRC|List of identifiers]]
+
|count = 2
 +
|
 
* {{mIRC|$bvar}}
 
* {{mIRC|$bvar}}
* {{mIRC|$bfind}}
+
* {{mIRC|/bcopy}}
 
* {{mIRC|/bread}}
 
* {{mIRC|/bread}}
* {{mIRC|/bcopy}}
 
 
* {{mIRC|/bwrite}}
 
* {{mIRC|/bwrite}}
 
* {{mIRC|/breplace}}
 
* {{mIRC|/breplace}}
 +
* {{mIRC|$bfind}}
 
* {{mIRC|/bunset}}
 
* {{mIRC|/bunset}}
 
* {{mIRC|/btrunc}}
 
* {{mIRC|/btrunc}}
 +
* [[List of commands - mIRC|List of commands]]
 +
* [[List of identifiers - mIRC|List of identifiers]]
 +
}}
 +
 
{{mIRC command list}}
 
{{mIRC command list}}
 
 
[[Category:mIRC commands|bset command - mIRC]]
 
[[Category:mIRC commands|bset command - mIRC]]

Revision as of 13:56, 10 January 2018

The /bset command lets you assign specific ASCII values (or text) at a specific position. If the variable does not exist, a new binary variable will be created and zero-pad until <pos>. If <pos> exceeds the length of the variable, the variable will extend (by zero-padding the gap) to accommodate the new values.

Note: Important fact to remember about binary variables is that they are not limited to the local scope of the alias but instead they remain set until processing is complete. Thus it's possible to use the same binary variable within multiple aliases if they call each other during the same script execution.

Synopsis

/bset -c <&bvar> <pos> <asciivalue> [asciivalue ... asciivalue]
/bset -tac <&bvar> <pos> <string>

Switches

  • -t - Indicates a string is to be written instead of literal ASCII values
  • -c - Fills the binary variable with the string/ASCII values and truncates anything after it
  • -a - Don't apply UTF-8 encoding to characters in the range 0-255, as long as the string parameter contains no characters > 255.

Parameters

  • <&bvar> - The binary variable name to use/create
  • <pos> - The position to set the new ASCII values or the string, use -1 to append. The first byte of the string is pos 1. If <pos> is greater than the existing length of the binary variable, the string is zero-padded to fill undefined bytes between <pos> and the prior end of string.
  • <asciivalue> - ASCII 0-255 value to write. If values are in range 256 - 2^31-1, writes $and(value,255). If value >= 2^31, writes 255.
  • [asciivalue ... asciivalue] - Succeeding ASCII values to be written
  • <string> - The string to be written. The number of values is limited only by the 4150 character line length for the entire command including 'bset'

Example

Alias Example {
  ;Create a binary variable set it to "This is fun!"
  bset -t &Example 1 This is fun!
 
  ;Print out the content of the variable
  echo -a $bvar(&Example, 1-).text
}

Binary variables have the advantage that they can be accessed from anywhere during the script execution.

Alias Example {
  ;Create a binary variable
  bset -t &Example 1 Hello There Bob.
  bb
}
Alias bb {
  ; Override that last part and truncate it 
  bset -tc &Example 7 Stranger!
  cc
}
Alias cc {
  ; print the value
  echo -a $bvar(&Example, 1-).text
}

This example shows how the variable gets zero-padded if <pos> is outside the size of the variable:

Alias Example {
  ; put 'd' as the 5th byte in &var
  bset &var 5 100
  ; same as
  ; bset &var 5 $asc(d)
 
  ; will print: 0 0 0 0 100
  echo -a $bvar(&var, 1-)
 
  ; zero-pad bytes 6-8
  bset &var 9 33
  
  ; will print: 0 0 0 0 100 0 0 0 33
  echo -a $bvar(&var, 1-)
}
create variable with UTF-8 encoding:
//bset -t  &var 1 $chr(233) | echo -a $bvar(&var,1-)
returns: 195 169
//bset -ta &var 1 $chr(233) | echo -a $bvar(&var,1-)
returns: 233
-a works only when no characters are codepoint 256+
//bset -ta &var 1 $chr(233) $+ $chr(10004) | echo -a $bvar(&var,1-)
returns: 195 169 226 156 148
//bset &var 1 10004 | echo -a $bvar(&var,1-)
returns $and(10004,255) = '20' instead of the 3 encoded bytes of $chr(10004)

Binary variables are not limited to 4150 length. It's more efficient to lengthen with /bcopy but bset can set long variables by repeatedly appending bytes. Max length of binary string can depend on your system resources. Fill a 7mb binary variable with all $chr(0)'s:

/fill_with_zeroes 7654321
 
alias fill_with_zeroes {
  if ($1 !isnum 1-) return | bset &var 1 0
  while ($1 > $bvar(&var,0)) {
    bset &var -1 $str(0 $chr(32),$iif($calc($1 - $bvar(&var,0)) > 999,$v2,$v1))
    echo -a current length: $bvar(&var,0)
  }
  echo -a variable length is $bvar(&var,0)
}


Compatibility

Added: mIRC v5.3
Added on: 13 Dec 1997
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See also


v · d · e mIRC commands list

A /abook, /action, /add, /ajinvite, /alias, /aline, /ame, /amsg, /anick, /aop, /auser, /auto, /autojoin, /avoice, /away

B /background, /ban, /bcopy, /beep, /bindip, /bread, /break, /breplace, /bset, /btrunc, /bunset, /bwrite

C /channel, /clear, /clearall, /clearial, /cline, /clipboard, /close, /closechats, /closedccs, /closefserves, /closemsg, /cnick, /color, /colour, /comclose, /comlist, /commands, /comopen, /comreg, /continue, /copy, /creq, /ctcp, /ctcpreply, /ctcps

D /dcc, /dccserver, /dde, /ddeserver, /debug, /dec, /describe, /dialog, /did, /didtok, /disable, /disconnect, /dlevel, /dline, /dll, Template:mIRC/donotdisturb, /dns, /dqwindow, /drawcopy, /drawdot, /drawfill, /drawline, /drawpic, /drawrect, /drawreplace, /drawrot, /drawsave, /drawscroll, /drawsize /drawtext

E /ebeeps, /echo, /editbox, /else, /elseif, /emailaddr, /enable, /events, /exit

F /fclose, /filter, /findtext, /finger, /firewall, /flash, /flist, /flood, /flush, /flushini, /fnord, /font, /fopen, /fseek, /fsend, /fserve, /fullname, /fupdate, /fwrite

G /ghide, /gload, /gmove, /gopts, /goto, /gplay, /gpoint, /gqreq, /groups, /gshow, /gsize, /gstop, /gtalk, /gunload, /guser

H /hadd, /halt, /haltdef, /hdec, /hdel, /help, /hfree, /hinc, /hload, /hmake, /hotlink, /hop, /hsave

I /ial, /ialclear, /ialmark, /identd, /if, /ignore, /iline, /inc, /iuser

J /join

L /leave, /linesep, /links, /list, /load, /loadbuf, /localinfo, /log, /logview

M /maxdepth, /mdi, /me, /menubar, /mkdir, /mnick, /mode, /msg

N /noop, /notice, /notify

O /onotice, /omsg

P /pareline, /part, /partall, /pdcc, /perform, /play, /playctrl, /pop, /protect, /proxy, /pvoice

Q /qme, /qmsg, /query, /queryrn, /quit, /quote

R /raw, /registration, /reload, /remini, /remote, /remove, /rename, /renwin, /reseterror, /resetidle, /return, /returnex, /rlevel, /rline, /rmdir, /run, /ruser

S /save, /savebuf, /saveini, /say, /scid, /scon, /server, /set, /setlayer, /showmirc, /signal, /sline, /sockaccept, /sockclose, /socklist, /socklisten, /sockmark, /sockopen, /sockpause, /sockread, /sockrename, /sockudp, /sockwrite, /sound, /speak, /splay, /sreq, /strip, /switchbar

T /timer, /timestamp, /tip, /tips, /titlebar, /tnick, /tokenize, /toolbar, /topic /tray, /treebar

U /ulist, /unload, /unset, /unsetall, /updatenl, /url, /username, /uwho

V /var, /vcadd, /vcmd, /vcrem, /vol

W

X /xyzzy