2023-10-27 12:11:48 -04:00
|
|
|
/**
|
|
|
|
* The starting point for running scroll
|
|
|
|
*/
|
2023-11-06 18:49:29 -05:00
|
|
|
import { ctrl_key, importForRuntime, is_control } from './common/mod.ts';
|
|
|
|
|
|
|
|
async function main() {
|
|
|
|
const { inputLoop, init } = await importForRuntime('mod.ts');
|
|
|
|
|
|
|
|
// Set up handlers to enable/disable raw mode for each runtime
|
|
|
|
await init();
|
|
|
|
|
|
|
|
// The main event loop
|
|
|
|
for await (const chunk of inputLoop()) {
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
const char = String(decoder.decode(chunk));
|
|
|
|
|
|
|
|
if (char === ctrl_key('q')) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_control(char)) {
|
|
|
|
console.log(char.codePointAt(0) + '\r');
|
|
|
|
} else {
|
|
|
|
console.log(`${char} ('${char.codePointAt(0)}')\r`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2023-11-01 15:05:31 -04:00
|
|
|
|
2023-10-27 16:02:54 -04:00
|
|
|
/**
|
2023-11-03 12:26:09 -04:00
|
|
|
* Start the event loop
|
2023-10-27 16:02:54 -04:00
|
|
|
*/
|
2023-11-03 12:26:09 -04:00
|
|
|
await main();
|