Minor fixes

This commit is contained in:
Deon George 2019-10-09 10:22:38 +11:00
parent 33c3c881ed
commit d31778d7b9
3 changed files with 5 additions and 4 deletions

View File

@ -11,7 +11,7 @@ load('texdefs.js');
load('texfuncs.js'); load('texfuncs.js');
while(bbs.online) { while(bbs.online) {
var mode = null; // Initial mode var mode = false; // Initial mode
var next_page = { frame: 1,index: 'a'}; // Start Frame var next_page = { frame: 1,index: 'a'}; // Start Frame
var action = ACTION_GOTO; // Initial action var action = ACTION_GOTO; // Initial action
var inkey_timeout = 0; // Timeout waiting for input @todo required? check if idle timetout occurs var inkey_timeout = 0; // Timeout waiting for input @todo required? check if idle timetout occurs
@ -61,6 +61,7 @@ while(bbs.online) {
if (frame.index !== 'z') { if (frame.index !== 'z') {
next_page = { frame: fo.frame, index: String.fromCharCode(fo.index.charCodeAt(0)+1) }; next_page = { frame: fo.frame, index: String.fromCharCode(fo.index.charCodeAt(0)+1) };
action = ACTION_GOTO; action = ACTION_GOTO;
} else { } else {
sendBaseline(ERR_ROUTE,false); sendBaseline(ERR_ROUTE,false);
} }

View File

@ -41,7 +41,7 @@ function Frame(frame,index) {
this.render=function() { this.render=function() {
owner = base64_decode(this.owner); owner = base64_decode(this.owner);
return owner+' '.repeat(FRAME_HEADER-console.strlen(owner))+'\1n '+ return '\1n'+owner+' '.repeat(FRAME_HEADER-console.strlen(owner))+'\1n '+
'\1W\1H'+this.page+' '.repeat(FRAME_PAGENUM-this.page.length)+' '+ '\1W\1H'+this.page+' '.repeat(FRAME_PAGENUM-this.page.length)+' '+
'\1G\1H'+' '.repeat(FRAME_COST-this.cost.toString().length)+this.cost+FRAME_COSTUNIT+ '\1G\1H'+' '.repeat(FRAME_COST-this.cost.toString().length)+this.cost+FRAME_COSTUNIT+
(console.screen_columns > 80 ? '\n\r' : '') + (console.screen_columns > 80 ? '\n\r' : '') +

View File

@ -88,7 +88,7 @@ function getFrame(page) {
return null; return null;
} }
log(LOG_ERROR,'Loaded frame: ['+frame.frame+']['+frame.index+'] ('+frame.page+')'); log(LOG_DEBUG,'Loaded frame: ['+frame.frame+']['+frame.index+'] ('+frame.page+')');
return frame; return frame;
} }