Created
May 21, 2017 05:15
-
-
Save arcanoix/6137cedd9d161a4add668dbbc6eda170 to your computer and use it in GitHub Desktop.
Testing Terminal
This file contains 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
<div id="container"><p id="terminal"></p></div> |
This file contains 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
var commands = [{ | |
name: "clear", | |
function: clearConsole | |
}]; | |
var cursor = $('#cursor'); | |
var terminal = $('#terminal'); | |
var text = ["FunctionGraphics v2.01 (c) 2017 Aperture Service, Inc.\nWARN: This site is under construction\n$> ", ""]; | |
var commandHistrory = []; | |
var lineY = 1; | |
var index = 0; | |
var historyIndex = 0; | |
setInterval(function () { | |
cursor.toggleClass('invisible'); | |
}, 500); | |
function clearConsole() { | |
text = []; | |
lineY = 0; | |
} | |
function printConsole(txt) { | |
cursor.remove(); | |
terminal.html(text); | |
terminal.append('<span id="cursor"></span>'); | |
cursor = $('#cursor'); | |
} | |
function processCommand(rawData) { | |
var args = rawData.split(" "); | |
var command = args[0]; | |
commandHistrory[historyIndex] += rawData; | |
args.shift(); | |
var unknownComand = true; | |
for (var i = 0; i < commands.length; i++) { | |
if (command === commands[i].name) { | |
commands[i].function(args); | |
unknownComand = false; | |
break; | |
} | |
} | |
if (unknownComand == true) { | |
lineY++; | |
text[lineY] = "\nsystem: command not found"; | |
} | |
historyIndex++; | |
} | |
function nextLine() { | |
processCommand(text[lineY]); | |
if (lineY != 0) { | |
lineY++; | |
text[lineY] = "\n"; | |
} | |
else | |
text[lineY] = ""; | |
text[lineY] += "$> "; | |
lineY++; | |
text[lineY] = ""; | |
printConsole(text); | |
} | |
function erase(n) { | |
text[lineY] = text[lineY].slice(0, -n); | |
index--; | |
printConsole(text); | |
} | |
$(document).ready(function () { | |
printConsole(text) | |
}) | |
$('html').on('keydown', function (e) { | |
e = e || window.event; | |
var keyCode = typeof e.which === "number" ? e.which : e.keyCode; | |
// Backspace? Erase! | |
if (keyCode === 8 && e.target.tagName !== "INPUT" && e.target.tagName !== "TEXTAREA") { | |
e.preventDefault(); | |
if (index != 0) | |
erase(1); | |
} | |
}); | |
$(document).keypress(function (e) { | |
// Make sure we get the right event | |
e = e || window.event; | |
var keyCode = typeof e.which === "number" ? e.which : e.keyCode; | |
// Which key was pressed? | |
switch (keyCode) { | |
// ENTER | |
case 13: | |
{ | |
nextLine(); | |
break; | |
} | |
default: | |
{ | |
var data = String.fromCharCode(keyCode); | |
if (data != undefined) { | |
var length = text[lineY].length; | |
text[lineY] += data; | |
index = index + (text[lineY].length - length); | |
printConsole(text); | |
} | |
break; | |
} | |
} | |
}); |
This file contains 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
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> |
This file contains 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
* | |
{ | |
box-sizing: border-box; | |
} | |
body | |
{ | |
font-family: courier new, monospace; | |
color: #0f8; | |
margin: 30px; | |
font-size: 13px; | |
height: 100vh; | |
background-color: #1d1f20; | |
} | |
#terminal | |
{ | |
white-space: pre-wrap; | |
line-height: 1.4; | |
} | |
#cursor | |
{ | |
display: inline-block; | |
height: 1.35em; | |
width: 0.7em; | |
vertical-align: middle; | |
background-color: #fff; | |
} | |
.invisible | |
{ | |
opacity: 0; | |
} | |
a { | |
color: inherit; | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment