From f87c63f02e856527fc170c5373a5496b09f6024c Mon Sep 17 00:00:00 2001 From: minjaesong Date: Sat, 19 Jun 2021 15:48:59 +0900 Subject: [PATCH] wp: text justification wip --- assets/JS_INIT.js | 19 ++++++ assets/bios/wp.js | 166 ++++++++++++++++++++++++++++++++++++++++++---- assets/wpfont.kra | 4 +- assets/wpfont.png | Bin 5901 -> 5941 bytes 4 files changed, 173 insertions(+), 16 deletions(-) diff --git a/assets/JS_INIT.js b/assets/JS_INIT.js index 40212cc..5bfac7b 100644 --- a/assets/JS_INIT.js +++ b/assets/JS_INIT.js @@ -334,6 +334,25 @@ Array.prototype.tail = function() { Array.prototype.init = function() { return this.slice(0, this.length - 1) } +Array.prototype.shuffle = function() { + let counter = this.length; + + // While there are elements in the array + while (counter > 0) { + // Pick a random index + let index = Math.floor(Math.random() * counter); + + // Decrease counter by 1 + counter--; + + // And swap the last element with it + let temp = this[counter]; + this[counter] = this[index]; + this[index] = temp; + } + + return this; +} /////////////////////////////////////////////////////////////////////////////////////////////////// // NOTE TO PROGRAMMERS: this JS_INIT script does not, and must not be invoked with strict mode // diff --git a/assets/bios/wp.js b/assets/bios/wp.js index 1518759..48c2ed5 100644 --- a/assets/bios/wp.js +++ b/assets/bios/wp.js @@ -15,12 +15,17 @@ const NO_LINELAST_PUNCT = [34,39,40,60,91,123] const TYPESET_DEBUG_PRINT = true -// bits: -// 0: set to justify; unset to ragged -// 1: set to hyphenate -const TYPESET_STRATEGY_RAGGEDRIGHT = 1024 + 0b00000000 // not implemented yet! -const TYPESET_STRATEGY_LESSRAGGED = 1024 + 0b00000010 -const TYPESET_STRATEGY_JUSTIFIED = 1024 + 0b00000011 // not implemented yet! +const SYM_SPC = String.fromCharCode(250) +const SYM_TWOSPC = String.fromCharCode(251,252) +const SYM_FF = String.fromCharCode(253) +const SYM_LF = String.fromCharCode(254) + + +const TYPESET_STRATEGY_DONOTHING = 0 // not implemented yet! +const TYPESET_STRATEGY_RAGGEDRIGHT = 1 // not implemented yet! +const TYPESET_STRATEGY_LESSRAGGED = 2 +const TYPESET_STRATEGY_JUSTIFIED = 3 // not implemented yet! +const typesetStrats = [undefined, undefined, typesetLessRagged, typesetJustified] let PAGE_HEIGHT = 60 let PAGE_WIDTH = 80 @@ -38,7 +43,7 @@ let paragraphs = [ 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance.The first line of Lorem Ipsum,"Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.', 'The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.' ]*/ -let typeset = {lineIndices: [], lineValidated: [], strategy: TYPESET_STRATEGY_LESSRAGGED} // index 0 == 2nd line +let typeset = {lineIndices: [], lineValidated: [], strategy: TYPESET_STRATEGY_JUSTIFIED} // index 0 == 2nd line let cursorRow = 0 let cursorCol = 0 let page = 0 @@ -134,7 +139,7 @@ function typesetLessRagged(lineStart, lineEnd) { //serial.println(`i:${i} char:'${String.fromCharCode(cM2,cM1,32,c,32,c1,c2)}' Ln ${vr} Col ${vc}`) if (c == 10) { - printbuf[vr] += String.fromCharCode(254) + printbuf[vr] += SYM_LF ln(i+1) printbuf[vr] = '' } @@ -176,7 +181,143 @@ function typesetLessRagged(lineStart, lineEnd) { vc += 1 } - if (vr > paintHeight || c === undefined) break; + if (vr > paintHeight || c === undefined) break + } + + return [printbuf, lineIndices] +} + +function typesetJustified(lineStart, lineEnd) { + function wordobj(t,v) { return {type:t, value:v} } + function wordTypeOf(c, c1) { + if (c == " ") return "sp" + else if ((c1 == " " || c1 == "\n") && (NO_LINEHEAD_PUNCT.includes(c.charCodeAt(0)) || NO_LINELAST_PUNCT.includes(c.charCodeAt(0)))) return "pn" + else return "tx" + } + + let printbuf = [] + let lineIndices = [] + + let text = (typeset.lineIndices[lineStart] !== undefined) + ? paragraphs.join('\n').slice(typeset.lineIndices[lineStart], typeset.lineIndices[lineEnd] || 9999999) + : paragraphs.join('\n') + + let textCursor = 0 + while (true) { + + let status = wordTypeOf(text.charAt(textCursor), text.charAt(textCursor+1)) // state of the state machine + let words = [wordobj(status, "")] // {type: "tx/sp/pn", value: ""} + let linelen = 0 + + while (linelen <= paintWidth || status == "tx") { + + let c = text.charAt(textCursor + linelen) + let c1 = text.charAt(textCursor + linelen + 1) + + let newStatus = wordTypeOf(c, c1) + + if (status != newStatus) { + status = newStatus + words.push(wordobj(status, "")) + } + + if ("tx" == status) { + words.last().value += c; linelen += 1 + } + else if ("sp" == status) { + words.last().value += SYM_SPC; linelen += 1 + } + else if ("pn" == status) { + words.last().value += c; linelen += 1 + } + } + + + let justLen = words.map(o => o.value).join('').length + + + words.forEach(o => serial.println(`${o.type}\t${o.value}`)) + serial.println(`linelength: ${justLen}`) + + + // try simple join + if (justLen == paintWidth || justLen == paintWidth + 1 && "sp" == words.last().type) { + serial.println("cond 1") + printbuf.push(words.map(o => o.value).join('')) + lineIndices.push(textCursor) + } + // try fitting a line by removing a word then adding spaces + else if (justLen > paintWidth) { + serial.println("cond 2") + // nuke non-text words + while ("tx" != words.last().type) { + justLen -= words.pop().value.length + } + // also nuke the last word + let lastWord = words.pop().value + justLen -= lastWord.length // new linelength -= length of the last word + // nuke spaces before the last word + let extraSpaces = '' + while ("sp" == words.last().type) { + let extraSpcLen = words.pop().value.length + extraSpaces += SYM_SPC.repeat(extraSpcLen) + justLen -= extraSpcLen + } + + let pns = []; words.forEach((o,i)=>{ if ("pn" == o.type && i < words.length) { pns.push(i) } }) + let spcToFill = paintWidth - justLen + // make decision to contract or expand + // expand + if (!(lastWord.length >= 4 && pns.length >= 3)) { + // expand puncts + if (pns.length > 0) { + pns.shuffle() + for (let j = 0; j < spcToFill; j++) { + serial.println(`pn #${j}`) + + words[pns[j] + 1].value = SYM_TWOSPC + + words.push(wordobj("sp", extraSpaces)) + justLen += words.last().value.length + } + } + + spcToFill = paintWidth - justLen + serial.println(`spcToFill after expanding puncts: ${spcToFill}`) + + // still got spaces to expand? + if (spcToFill > 0) { + TODO() + } + } + // contract + else if (lastWord.length >= 4 && pns.length >= 3) { + TODO() + } + + //words.forEach((o,i) => serial.println(`${i} ${o.type} '${o.value}'`)) + + printbuf.push(words.map(o => o.value).join('')) + lineIndices.push(textCursor) + + serial.println(`newlinelength: ${justLen}`) + } + // do + else { + serial.println("cond 3") + printbuf.push(words.map(o => o.value).join('')) + lineIndices.push(textCursor) + } + + + + + textCursor += justLen + + if (printbuf.length > 2) break + if (printbuf.length > paintHeight || textCursor >= text.length) break + + } return [printbuf, lineIndices] @@ -187,13 +328,11 @@ function typesetAndPrint(from, toExclusive) { let lineEnd = toExclusive || lineStart + paintHeight let lineValidated = [] - let [printbuf, lineIndices] = typesetLessRagged(lineStart, lineEnd) + let [printbuf, lineIndices] = typesetStrats[typeset.strategy](lineStart, lineEnd) for (let y = 0; y < paintHeight; y++) { - //con.move(3+y, 1+caretLeft) - //print(printbuf[y] || '') let str = printbuf[y] || '' - for (let x = 0; x < paintWidth; x++) { + for (let x = 0; x < paintWidth + 3; x++) { sys.poke( -1307649 - ((y+2) * windowWidth + caretLeft) - x, str.charCodeAt(x) || 0 @@ -269,4 +408,3 @@ function drawMain() { drawMain() typesetAndPrint() -typesetAndPrint(5) \ No newline at end of file diff --git a/assets/wpfont.kra b/assets/wpfont.kra index bdc9318..d452f5a 100644 --- a/assets/wpfont.kra +++ b/assets/wpfont.kra @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b2cb02950a8a919853c9202a17e13723ad47065755229345031da9082a07ecd -size 96435 +oid sha256:e95d7543eadcc4db6ab5dfbc68a066dd9bb92f4c5c21520433a7590cacb9f452 +size 115330 diff --git a/assets/wpfont.png b/assets/wpfont.png index 579f133ab3db4f2bf35122efeb50fb137bc8a8dc..e99288afad0ba987e865c3c884fcc301ed0f1576 100644 GIT binary patch literal 5941 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 JFlvuN{s;I37?%J5 delta 5630 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