mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
873 B
40 lines
873 B
12 years ago
|
#!/usr/bin/env node
|
||
|
|
||
|
/**
|
||
|
* A little script to play the ASCII Star Wars, but with a hidden cursor,
|
||
|
* since over `telnet(1)` the cursor remains visible which is annoying.
|
||
|
*/
|
||
|
|
||
|
process.title = 'starwars'
|
||
|
|
||
|
var net = require('net')
|
||
|
, cursor = require('../')(process.stdout)
|
||
|
|
||
|
// enable "raw mode" so that keystrokes aren't visible
|
||
|
process.stdin.resume()
|
||
|
if (process.stdin.setRawMode) {
|
||
|
process.stdin.setRawMode(true)
|
||
|
} else {
|
||
|
require('tty').setRawMode(true)
|
||
|
}
|
||
|
|
||
|
// connect to the ASCII Star Wars server
|
||
|
var socket = net.connect(23, 'towel.blinkenlights.nl')
|
||
|
|
||
|
socket.on('connect', function () {
|
||
|
cursor.hide()
|
||
|
socket.pipe(process.stdout)
|
||
|
})
|
||
|
|
||
|
process.stdin.on('data', function (data) {
|
||
|
if (data.toString() === '\u0003') {
|
||
|
// Ctrl+C; a.k.a SIGINT
|
||
|
socket.destroy()
|
||
|
process.stdin.pause()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
process.on('exit', function () {
|
||
|
cursor.show().write('\n')
|
||
|
})
|