/** * @namespace * Contains text tokenization and breaking routines */ ROT.Text = { RE_COLORS: /%([bc]){([^}]*)}/g, /* token types */ TYPE_TEXT: 0, TYPE_NEWLINE: 1, TYPE_FG: 2, TYPE_BG: 3, /** * Measure size of a resulting text block */ measure: function(str, maxWidth) { var result = {width:0, height:1}; var tokens = this.tokenize(str, maxWidth); var lineWidth = 0; for (var i=0;i maxWidth) { /* line too long, find a suitable breaking spot */ /* is it possible to break within this token? */ var index = -1; while (1) { var nextIndex = token.value.indexOf(" ", index+1); if (nextIndex == -1) { break; } if (lineLength + nextIndex > maxWidth) { break; } index = nextIndex; } if (index != -1) { /* break at space within this one */ token.value = this._breakInsideToken(tokens, i, index, true); } else if (lastTokenWithSpace != -1) { /* is there a previous token where a break can occur? */ var token = tokens[lastTokenWithSpace]; var breakIndex = token.value.lastIndexOf(" "); token.value = this._breakInsideToken(tokens, lastTokenWithSpace, breakIndex, true); i = lastTokenWithSpace; } else { /* force break in this token */ token.value = this._breakInsideToken(tokens, i, maxWidth-lineLength, false); } } else { /* line not long, continue */ lineLength += token.value.length; if (token.value.indexOf(" ") != -1) { lastTokenWithSpace = i; } } i++; /* advance to next token */ } tokens.push({type: ROT.Text.TYPE_NEWLINE}); /* insert fake newline to fix the last text line */ /* remove trailing space from text tokens before newlines */ var lastTextToken = null; for (var i=0;i