Last active
December 19, 2017 12:08
-
-
Save jwulf/4f7e86eaea236fe4aa75ad49089c17bd to your computer and use it in GitHub Desktop.
Save this as a spell in Magikcraft - play.magikcraft.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const magik = magikcraft.io; | |
| /* | |
| Fonts are bitmaps. | |
| Each number is the decimal equivalent of the binary | |
| bitmap of the line, for example: 00011000 = 24 | |
| Here is a bitmapped 'A': | |
| 00011000 = 24 | |
| 00111100 = 60 | |
| 00100100 = 36 | |
| 01100110 = 102 | |
| 01111110 = 126 | |
| 01111110 = 126 | |
| 01100110 = 102 | |
| 01100110 = 102 | |
| */ | |
| const fontData = { | |
| BLOCKS_PER_CHAR_LINE: 8, | |
| a: [24 ,60, 36, 102, 126, 126, 102, 102], | |
| b: [192, 192, 192, 192, 255, 194, 194, 252], | |
| c: [255, 192, 192, 192, 192, 192, 192, 255], | |
| d: [254, 195, 195, 195, 195, 195, 195, 254], | |
| e: [252, 128, 128, 252, 128, 128, 128, 252], | |
| f: [0, 62, 32, 62, 32, 32, 32, 32], | |
| g: [255, 255, 192, 192, 199, 195, 255, 255], | |
| h: [102, 102, 102, 126, 102, 102, 102, 102], | |
| i: [255, 126, 24, 24, 24, 24, 126, 255] | |
| } | |
| /* | |
| Write the specified letters in space with blocks | |
| Then wipe them out. | |
| */ | |
| function write(word = 'abc') { | |
| const BLOCK_TYPE = magik.type('Material').STONE | |
| const PERSIST_SECONDS = 10 | |
| const BLOCKS_BETWEEN_LETTERS = 2 | |
| const BITS = fontData.BLOCKS_PER_CHAR_LINE | |
| const SPACING = BLOCKS_BETWEEN_LETTERS + BITS | |
| const blocks = [] | |
| const decimal2binary = num => num.toString(2) | |
| const addLeadingZeros = line => line.padStart(BITS, "0") | |
| const binaryLine = line => Array.from(addLeadingZeros(decimal2binary(line))) | |
| const binaryMap = fontCharData => fontCharData.map(line => binaryLine(line)) | |
| const getBlock = (x, y, z) => magik.getSender().getWorld().getBlockAt(x, y, z) | |
| const storeBlock = (x, y, z) => blocks.push({x, y, z, blockType: getBlock(x, y, z).getType()}) | |
| const transformBlock = ({x, y, z, blockType}) => getBlock(x, y, z).setType(blockType) | |
| const storeAndTransformBlock = ({x, y, z, blockType}) => storeBlock(x, y, z) && transformBlock({x, y, z, blockType}) | |
| const here = magik.hic() | |
| const x = here.getX() + 1 // horizontal | |
| const y = here.getY() + 1 // vertical | |
| const z = here.getZ() // the other horizontal | |
| const letters = Array.from(word) // Convert to Array to get forEach | |
| letters.forEach((char, letternum) => | |
| binaryMap(fontData[char]).forEach((line, linenum) => | |
| line.forEach((block, blocknum) => | |
| (block == "1" && | |
| storeAndTransformBlock({ | |
| x: x + blocknum + (letternum * SPACING), | |
| y: y + line.length - linenum, | |
| z, | |
| blockType: BLOCK_TYPE}))))) | |
| // Make word disappear | |
| magik.setTimeout(() => | |
| blocks.forEach(block => transformBlock(block)), | |
| PERSIST_SECONDS * 1000) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment