Skip to content
Snippets Groups Projects
Commit 0e6f5311 authored by deuce's avatar deuce
Browse files

Support mode bits in putmsg()

parent 9f1536a9
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,8 @@
* Allows a graphic to be stored in memory and portions of it redrawn on command
*/
load("sbbsdefs.js");
function Graphic(w,h,attr,ch)
{
if(ch==undefined)
......@@ -147,7 +149,7 @@ function Graphic_scroll(lines)
/* Returns the number of times scrolled unless returnonscroll is true */
/* If returnonscroll is true, returns the text AFTER the scroll */
function Graphic_putmsg(xpos, ypos, txt, attr, scroll, returnonscroll)
function Graphic_putmsg(xpos, ypos, txt, attr, scroll, returnonscroll, mode)
{
var curattr=attr;
var ch;
......@@ -156,6 +158,8 @@ function Graphic_putmsg(xpos, ypos, txt, attr, scroll, returnonscroll)
var p=0;
var scrolls=0;
if(mode==undefined)
mode=P_NONE;
if(curattr==undefined)
curattr=this.attribute;
/* Expand @-codes */
......@@ -164,15 +168,17 @@ function Graphic_putmsg(xpos, ypos, txt, attr, scroll, returnonscroll)
return('');
return(0);
}
txt=txt.toString().replace(/@(.*?)@/g,
function (str, code, offset, s) {
console.line_counter=0;
var ret=bbs.atcode(code);
if(ret==null)
return("@"+code+"@");
return(ret);
}
);
if(!(mode & P_NOATCODES)) {
txt=txt.toString().replace(/@(.*?)@/g,
function (str, code, offset, s) {
console.line_counter=0;
var ret=bbs.atcode(code);
if(ret==null)
return("@"+code+"@");
return(ret);
}
);
}
if(returnonscroll == undefined)
returnonscroll=false;
if(returnonscroll)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment