2011-11-30 06:43:24 +00:00
|
|
|
/*
|
2011-12-01 08:29:45 +00:00
|
|
|
* Copyright (c) 2011 Kevin Lange. All rights reserved.
|
|
|
|
*
|
2011-12-05 17:25:53 +00:00
|
|
|
* Developed by: Kevin Lange
|
|
|
|
* http://github.com/klange/nyancat
|
|
|
|
* http://miku.acm.uiuc.edu
|
|
|
|
*
|
|
|
|
* 40-column support by: Peter Hazenberg
|
|
|
|
* http://github.com/Peetz0r/nyancat
|
|
|
|
* http://peter.haas-en-berg.nl
|
2011-12-01 08:29:45 +00:00
|
|
|
*
|
2012-02-23 02:53:39 +00:00
|
|
|
* Build tools unifed by: Aaron Peschel
|
|
|
|
* https://github.com/apeschel
|
|
|
|
*
|
|
|
|
* For a complete listing of contributers, please see the git commit history.
|
|
|
|
*
|
2011-12-04 01:49:30 +00:00
|
|
|
* This is a simple telnet server / standalone application which renders the
|
|
|
|
* classic Nyan Cat (or "poptart cat") to your terminal.
|
|
|
|
*
|
|
|
|
* It makes use of various ANSI escape sequences to render color, or in the case
|
|
|
|
* of a VT220, simply dumps text to the screen.
|
|
|
|
*
|
|
|
|
* For more information, please see:
|
|
|
|
*
|
|
|
|
* http://miku.acm.uiuc.edu
|
|
|
|
*
|
2011-12-01 08:29:45 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal with the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimers.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimers in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the names of the Association for Computing Machinery, Kevin
|
|
|
|
* Lange, nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this Software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* WITH THE SOFTWARE.
|
2011-11-30 06:43:24 +00:00
|
|
|
*/
|
|
|
|
|
2012-03-19 13:06:12 +00:00
|
|
|
#include <ctype.h>
|
2011-11-30 06:43:24 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2011-12-02 06:52:30 +00:00
|
|
|
#include <signal.h>
|
2011-12-04 07:12:11 +00:00
|
|
|
#include <time.h>
|
2011-12-04 09:43:33 +00:00
|
|
|
#include <setjmp.h>
|
2011-12-05 06:10:56 +00:00
|
|
|
#include <sys/ioctl.h>
|
2012-03-23 22:55:13 +00:00
|
|
|
#include <getopt.h>
|
2011-12-04 10:03:30 +00:00
|
|
|
|
2012-03-19 13:05:01 +00:00
|
|
|
#ifndef TIOCGWINSZ
|
|
|
|
#include <termios.h>
|
|
|
|
#ifdef ECHO
|
|
|
|
#undef ECHO
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* telnet.h contains some #defines for the various
|
|
|
|
* commands, escape characters, and modes for telnet.
|
|
|
|
* (it surprises some people that telnet is, really,
|
|
|
|
* a protocol, and not just raw text transmission)
|
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
#include "telnet.h"
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* The animation frames are stored separately in
|
|
|
|
* this header so they don't clutter the core source
|
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
#include "animation.h"
|
2011-12-04 01:49:30 +00:00
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* Color palette to use for final output
|
|
|
|
* Specifically, this should be either control sequences
|
|
|
|
* or raw characters (ie, for vt220 mode)
|
|
|
|
*/
|
2011-11-30 06:43:24 +00:00
|
|
|
char * colors[256] = {NULL};
|
2011-12-04 10:03:30 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/*
|
|
|
|
* For most modes, we ouput spaces, but for some
|
2011-12-04 10:03:30 +00:00
|
|
|
* we will use block characters (or even nothing)
|
2011-12-04 01:49:30 +00:00
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
char * output = " ";
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* Are we currently in telnet mode?
|
|
|
|
*/
|
2011-12-04 01:57:59 +00:00
|
|
|
int telnet = 0;
|
|
|
|
|
2012-03-26 00:32:39 +00:00
|
|
|
/*
|
|
|
|
* Whether or not to show the counter
|
|
|
|
*/
|
|
|
|
int show_counter = 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Number of frames to show before quitting
|
|
|
|
* or 0 to repeat forever (default)
|
|
|
|
*/
|
|
|
|
int frame_count = 0;
|
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* Environment to use for setjmp/longjmp
|
|
|
|
* when breaking out of options handler
|
|
|
|
*/
|
|
|
|
jmp_buf environment;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I refuse to include libm to keep this low
|
|
|
|
* on external dependencies.
|
2011-12-04 10:05:52 +00:00
|
|
|
*
|
|
|
|
* Count the number of digits in a number for
|
|
|
|
* use with string output.
|
|
|
|
*/
|
2011-12-04 10:03:30 +00:00
|
|
|
int digits(int val) {
|
2011-12-04 07:12:11 +00:00
|
|
|
int d = 1, c;
|
|
|
|
if (val >= 0) for (c = 10; c <= val; c *= 10) d++;
|
|
|
|
else for (c = -10 ; c >= val; c *= 10) d++;
|
2011-12-04 10:03:30 +00:00
|
|
|
return (c < 0) ? ++d : d;
|
2011-12-04 07:12:11 +00:00
|
|
|
}
|
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/*
|
|
|
|
* These values crop the animation, as we have a full 64x64 stored,
|
2011-12-04 10:05:52 +00:00
|
|
|
* but we only want to display 40x24 (double width).
|
2011-12-04 01:49:30 +00:00
|
|
|
*/
|
2012-03-26 00:32:39 +00:00
|
|
|
int min_row = 20;
|
|
|
|
int max_row = 43;
|
|
|
|
int min_col = 10;
|
|
|
|
int max_col = 50;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print escape sequences to return cursor to visible mode
|
|
|
|
* and exit the application.
|
|
|
|
*/
|
|
|
|
void finish() {
|
|
|
|
printf("\033[?25h\033[0m\033[H\033[2J");
|
|
|
|
exit(0);
|
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/*
|
|
|
|
* In the standalone mode, we want to handle an interrupt signal
|
2011-12-06 09:54:48 +00:00
|
|
|
* (^C) so that we can restore the cursor and clear the terminal.
|
2011-12-04 01:49:30 +00:00
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
void SIGINT_handler(int sig){
|
2012-03-26 00:32:39 +00:00
|
|
|
finish();
|
2011-12-04 01:00:34 +00:00
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 09:43:33 +00:00
|
|
|
/*
|
|
|
|
* Handle the alarm which breaks us off of options
|
|
|
|
* handling if we didn't receive a terminal
|
|
|
|
*/
|
|
|
|
void SIGALRM_handler(int sig) {
|
|
|
|
alarm(0);
|
|
|
|
longjmp(environment, 1);
|
|
|
|
/* Unreachable */
|
|
|
|
}
|
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* Telnet requires us to send a specific sequence
|
|
|
|
* for a line break (\r\000\n), so let's make it happy.
|
|
|
|
*/
|
2011-12-04 01:57:59 +00:00
|
|
|
void newline(int n) {
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < n; ++i) {
|
2011-12-04 10:03:30 +00:00
|
|
|
/* We will send `n` linefeeds to the client */
|
|
|
|
if (telnet) {
|
|
|
|
/* Send the telnet newline sequence */
|
|
|
|
putc('\r', stdout);
|
|
|
|
putc(0, stdout);
|
|
|
|
putc('\n', stdout);
|
|
|
|
} else {
|
|
|
|
/* Send a regular line feed */
|
|
|
|
putc('\n', stdout);
|
|
|
|
}
|
2011-12-04 01:57:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/*
|
|
|
|
* These are the options we want to use as
|
|
|
|
* a telnet server. These are set in set_options()
|
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
unsigned char telnet_options[256] = { 0 };
|
|
|
|
unsigned char telnet_willack[256] = { 0 };
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/*
|
|
|
|
* These are the values we have set or
|
|
|
|
* agreed to during our handshake.
|
|
|
|
* These are set in send_command(...)
|
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
unsigned char telnet_do_set[256] = { 0 };
|
|
|
|
unsigned char telnet_will_set[256]= { 0 };
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/*
|
|
|
|
* Set the default options for the telnet server.
|
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
void set_options() {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* We will not echo input */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_options[ECHO] = WONT;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* We will set graphics modes */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_options[SGA] = WILL;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* We will not set new environments */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_options[NEW_ENVIRON] = WONT;
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/* The client should echo its own input */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_willack[ECHO] = DO;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* The client can set a graphics mode */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_willack[SGA] = DO;
|
2011-12-05 16:54:26 +00:00
|
|
|
/* The client should not change, but it should tell us its window size */
|
|
|
|
telnet_willack[NAWS] = DO;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* The client should tell us its terminal type (very important) */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_willack[TTYPE] = DO;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* No linemode */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_willack[LINEMODE] = DONT;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* And the client can set a new environment */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_willack[NEW_ENVIRON] = DO;
|
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 10:03:30 +00:00
|
|
|
/*
|
|
|
|
* Send a command (cmd) to the telnet client
|
|
|
|
* Also does special handling for DO/DONT/WILL/WONT
|
|
|
|
*/
|
2011-12-04 01:00:34 +00:00
|
|
|
void send_command(int cmd, int opt) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Send a command to the telnet client */
|
2011-12-04 01:00:34 +00:00
|
|
|
if (cmd == DO || cmd == DONT) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* DO commands say what the client should do. */
|
2011-12-04 01:00:34 +00:00
|
|
|
if (((cmd == DO) && (telnet_do_set[opt] != DO)) ||
|
|
|
|
((cmd == DONT) && (telnet_do_set[opt] != DONT))) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* And we only send them if there is a disagreement */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_do_set[opt] = cmd;
|
|
|
|
printf("%c%c%c", IAC, cmd, opt);
|
|
|
|
}
|
|
|
|
} else if (cmd == WILL || cmd == WONT) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Similarly, WILL commands say what the server will do. */
|
2011-12-04 01:00:34 +00:00
|
|
|
if (((cmd == WILL) && (telnet_will_set[opt] != WILL)) ||
|
|
|
|
((cmd == WONT) && (telnet_will_set[opt] != WONT))) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* And we only send them during disagreements */
|
2011-12-04 01:00:34 +00:00
|
|
|
telnet_will_set[opt] = cmd;
|
|
|
|
printf("%c%c%c", IAC, cmd, opt);
|
|
|
|
}
|
|
|
|
} else {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Other commands are sent raw */
|
2011-12-04 01:00:34 +00:00
|
|
|
printf("%c%c", IAC, cmd);
|
|
|
|
}
|
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2012-03-23 23:08:37 +00:00
|
|
|
/*
|
|
|
|
* Print the usage / help text describing options
|
|
|
|
*/
|
2012-03-23 22:55:13 +00:00
|
|
|
void usage(char * argv[]) {
|
|
|
|
printf(
|
|
|
|
"Terminal Nyancat\n"
|
|
|
|
"\n"
|
2012-03-26 00:32:39 +00:00
|
|
|
"usage: %s [-hitn] [-f \033[3mframes\033[0m]\n"
|
2012-03-23 22:55:13 +00:00
|
|
|
"\n"
|
2012-03-26 00:32:39 +00:00
|
|
|
" -i --intro \033[3mShow the introduction / about informaiton at startup.\033[0m\n"
|
|
|
|
" -t --telnet \033[3mTelnet mode.\033[0m\n"
|
|
|
|
" -n --no-counter \033[3mDo not display the timer\033[0m\n"
|
|
|
|
" -f --frames \033[3mDisplay the requested number of frames, then quit\033[0m\n"
|
|
|
|
" -r --min-rows \033[3mCrop the animation from the top\033[0m\n"
|
|
|
|
" -R --max-rows \033[3mCrop the animation from the bottom\033[0m\n"
|
|
|
|
" -c --min-cols \033[3mCrop the animation from the left\033[0m\n"
|
|
|
|
" -C --max-cols \033[3mCrop the animation from the right\033[0m\n"
|
|
|
|
" -W --width \033[3mCrop the animation to the given width\033[0m\n"
|
|
|
|
" -H --height \033[3mCrop the animation to the given height\033[0m\n"
|
|
|
|
" -h --help \033[3mShow this help message.\033[0m\n",
|
2012-03-23 22:55:13 +00:00
|
|
|
argv[0]);
|
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:00:34 +00:00
|
|
|
int main(int argc, char ** argv) {
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/* The default terminal is ANSI */
|
2011-12-04 10:05:52 +00:00
|
|
|
char term[1024] = {'a','n','s','i', 0};
|
2011-12-05 06:10:56 +00:00
|
|
|
int terminal_width = 80;
|
2011-12-04 01:00:34 +00:00
|
|
|
int k, ttype;
|
|
|
|
uint32_t option = 0, done = 0, sb_mode = 0, do_echo = 0;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Various pieces for the telnet communication */
|
2011-12-04 01:00:34 +00:00
|
|
|
char sb[1024] = {0};
|
|
|
|
char sb_len = 0;
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2012-03-23 23:08:37 +00:00
|
|
|
/* Whether or not to show the MOTD intro */
|
2012-03-23 22:55:13 +00:00
|
|
|
char show_intro = 0;
|
|
|
|
|
|
|
|
/* Long option names */
|
|
|
|
static struct option long_opts[] = {
|
2012-03-26 00:32:39 +00:00
|
|
|
{"help", no_argument, 0, 'h'},
|
|
|
|
{"telnet", no_argument, 0, 't'},
|
|
|
|
{"intro", no_argument, 0, 'i'},
|
|
|
|
{"no-counter", no_argument, 0, 'n'},
|
|
|
|
{"frames", required_argument, 0, 'f'},
|
|
|
|
{"min-rows", required_argument, 0, 'r'},
|
|
|
|
{"max-rows", required_argument, 0, 'R'},
|
|
|
|
{"min-cols", required_argument, 0, 'c'},
|
|
|
|
{"max-cols", required_argument, 0, 'C'},
|
|
|
|
{"width", required_argument, 0, 'W'},
|
|
|
|
{"height", required_argument, 0, 'H'},
|
2012-03-23 22:55:13 +00:00
|
|
|
{0,0,0,0}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Process arguments */
|
|
|
|
int index, c;
|
2012-03-26 00:32:39 +00:00
|
|
|
while ((c = getopt_long(argc, argv, "hitnf:r:R:c:C:W:H:", long_opts, &index)) != -1) {
|
2012-03-23 22:55:13 +00:00
|
|
|
if (!c) {
|
|
|
|
if (long_opts[index].flag == 0) {
|
|
|
|
c = long_opts[index].val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (c) {
|
|
|
|
case 'i': /* Show introduction */
|
|
|
|
show_intro = 1;
|
|
|
|
break;
|
|
|
|
case 't': /* Expect telnet bits */
|
|
|
|
telnet = 1;
|
|
|
|
break;
|
|
|
|
case 'h': /* Show help and exit */
|
|
|
|
usage(argv);
|
|
|
|
exit(0);
|
|
|
|
break;
|
2012-03-26 00:32:39 +00:00
|
|
|
case 'n':
|
|
|
|
show_counter = 0;
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
frame_count = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
min_row = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
max_row = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
min_col = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
max_col = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'W':
|
|
|
|
min_col = (FRAME_WIDTH - atoi(optarg)) / 2;
|
|
|
|
max_col = (FRAME_WIDTH + atoi(optarg)) / 2;
|
|
|
|
break;
|
|
|
|
case 'H':
|
|
|
|
min_row = (FRAME_HEIGHT - atoi(optarg)) / 2;
|
|
|
|
max_row = (FRAME_HEIGHT + atoi(optarg)) / 2;
|
|
|
|
break;
|
2012-03-23 22:55:13 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2012-03-23 22:55:13 +00:00
|
|
|
if (telnet) {
|
|
|
|
/* Telnet mode */
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2012-03-23 22:55:13 +00:00
|
|
|
/* Intro is implied by telnet mode, so override whatever was asked for. */
|
|
|
|
show_intro = 1;
|
|
|
|
|
|
|
|
/* Set the default options */
|
|
|
|
set_options();
|
|
|
|
|
|
|
|
/* Let the client know what we're using */
|
|
|
|
for (option = 0; option < 256; option++) {
|
|
|
|
if (telnet_options[option]) {
|
|
|
|
send_command(telnet_options[option], option);
|
|
|
|
fflush(stdout);
|
2011-12-04 01:00:34 +00:00
|
|
|
}
|
2012-03-23 22:55:13 +00:00
|
|
|
}
|
|
|
|
for (option = 0; option < 256; option++) {
|
|
|
|
if (telnet_willack[option]) {
|
|
|
|
send_command(telnet_willack[option], option);
|
|
|
|
fflush(stdout);
|
2011-12-04 01:00:34 +00:00
|
|
|
}
|
2012-03-23 22:55:13 +00:00
|
|
|
}
|
2011-12-01 17:54:28 +00:00
|
|
|
|
2012-03-23 22:55:13 +00:00
|
|
|
/* Set the alarm handler to execute the longjmp */
|
|
|
|
signal(SIGALRM, SIGALRM_handler);
|
|
|
|
|
|
|
|
/* Negotiate options */
|
|
|
|
if (!setjmp(environment)) {
|
|
|
|
/* We will stop handling options after one second */
|
|
|
|
alarm(1);
|
|
|
|
|
|
|
|
/* Let's do this */
|
|
|
|
while (!feof(stdin) && done < 2) {
|
|
|
|
/* Get either IAC (start command) or a regular character (break, unless in SB mode) */
|
|
|
|
unsigned char i = getchar();
|
|
|
|
unsigned char opt = 0;
|
|
|
|
if (i == IAC) {
|
|
|
|
/* If IAC, get the command */
|
|
|
|
i = getchar();
|
|
|
|
switch (i) {
|
|
|
|
case SE:
|
|
|
|
/* End of extended option mode */
|
|
|
|
sb_mode = 0;
|
|
|
|
if (sb[0] == TTYPE) {
|
|
|
|
/* This was a response to the TTYPE command, meaning
|
|
|
|
* that this should be a terminal type */
|
|
|
|
alarm(0);
|
|
|
|
strcpy(term, &sb[2]);
|
|
|
|
done++;
|
|
|
|
}
|
|
|
|
else if (sb[0] == NAWS) {
|
|
|
|
/* This was a response to the NAWS command, meaning
|
|
|
|
* that this should be a window size */
|
|
|
|
alarm(0);
|
|
|
|
terminal_width = sb[2];
|
|
|
|
done++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NOP:
|
|
|
|
/* No Op */
|
|
|
|
send_command(NOP, 0);
|
|
|
|
fflush(stdout);
|
|
|
|
break;
|
|
|
|
case WILL:
|
|
|
|
case WONT:
|
|
|
|
/* Will / Won't Negotiation */
|
|
|
|
opt = getchar();
|
|
|
|
if (!telnet_willack[opt]) {
|
|
|
|
/* We default to WONT */
|
|
|
|
telnet_willack[opt] = WONT;
|
|
|
|
}
|
|
|
|
send_command(telnet_willack[opt], opt);
|
|
|
|
fflush(stdout);
|
|
|
|
if ((i == WILL) && (opt == TTYPE)) {
|
|
|
|
/* WILL TTYPE? Great, let's do that now! */
|
|
|
|
printf("%c%c%c%c%c%c", IAC, SB, TTYPE, SEND, IAC, SE);
|
2011-12-04 09:43:33 +00:00
|
|
|
fflush(stdout);
|
2012-03-23 22:55:13 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DO:
|
|
|
|
case DONT:
|
|
|
|
/* Do / Don't Negotation */
|
|
|
|
opt = getchar();
|
|
|
|
if (!telnet_options[opt]) {
|
|
|
|
/* We default to DONT */
|
|
|
|
telnet_options[opt] = DONT;
|
|
|
|
}
|
|
|
|
send_command(telnet_options[opt], opt);
|
|
|
|
if (opt == ECHO) {
|
|
|
|
/* We don't really need this, as we don't accept input, but,
|
|
|
|
* in case we do in the future, set our echo mode */
|
|
|
|
do_echo = (i == DO);
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
break;
|
|
|
|
case SB:
|
|
|
|
/* Begin Extended Option Mode */
|
|
|
|
sb_mode = 1;
|
|
|
|
sb_len = 0;
|
|
|
|
memset(sb, 0, 1024);
|
|
|
|
break;
|
|
|
|
case IAC:
|
|
|
|
/* IAC IAC? That's probably not right. */
|
|
|
|
done = 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (sb_mode) {
|
|
|
|
/* Extended Option Mode -> Accept character */
|
|
|
|
if (sb_len < 1023) {
|
|
|
|
/* Append this character to the SB string,
|
|
|
|
* but only if it doesn't put us over
|
|
|
|
* our limit; honestly, we shouldn't hit
|
|
|
|
* the limit, as we're only collecting characters
|
|
|
|
* for a terminal type or window size, but better safe than
|
|
|
|
* sorry (and vulernable).
|
|
|
|
*/
|
|
|
|
sb[sb_len] = i;
|
|
|
|
sb_len++;
|
2011-12-04 01:49:30 +00:00
|
|
|
}
|
2011-12-04 01:00:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2011-12-04 10:03:30 +00:00
|
|
|
/* We are running standalone, retrieve the
|
|
|
|
* terminal type from the environment. */
|
2011-12-04 01:00:34 +00:00
|
|
|
char * nterm = getenv("TERM");
|
2012-03-23 23:08:37 +00:00
|
|
|
if (nterm) {
|
2012-02-21 11:04:05 +00:00
|
|
|
strcpy(term, nterm);
|
2012-03-23 23:08:37 +00:00
|
|
|
}
|
2012-03-23 22:55:13 +00:00
|
|
|
|
2011-12-05 18:37:50 +00:00
|
|
|
/* Also get the number of columns */
|
2011-12-05 06:10:56 +00:00
|
|
|
struct winsize w;
|
|
|
|
ioctl(0, TIOCGWINSZ, &w);
|
|
|
|
terminal_width = w.ws_col;
|
2011-12-04 01:00:34 +00:00
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Convert the entire terminal string to lower case */
|
2011-12-04 01:00:34 +00:00
|
|
|
for (k = 0; k < strlen(term); ++k) {
|
|
|
|
term[k] = tolower(term[k]);
|
|
|
|
}
|
2012-03-23 22:55:13 +00:00
|
|
|
|
2011-12-05 18:37:50 +00:00
|
|
|
/* We don't want terminals wider than 80 columns */
|
2012-03-23 23:08:37 +00:00
|
|
|
if(terminal_width > 80) {
|
|
|
|
terminal_width = 80;
|
|
|
|
}
|
2011-12-04 01:00:34 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Do our terminal detection */
|
2011-12-04 01:00:34 +00:00
|
|
|
if (strstr(term, "xterm")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 1; /* 256-color, spaces */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else if (strstr(term, "linux")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 3; /* Spaces and blink attribute */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else if (strstr(term, "vtnt")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 5; /* Extended ASCII fallback == Windows */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else if (strstr(term, "cygwin")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 5; /* Extended ASCII fallback == Windows */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else if (strstr(term, "vt220")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 6; /* No color support */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else if (strstr(term, "fallback")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 4; /* Unicode fallback */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else if (strstr(term, "rxvt")) {
|
2011-12-04 01:49:30 +00:00
|
|
|
ttype = 3; /* Accepts LINUX mode */
|
2011-12-05 06:10:56 +00:00
|
|
|
} else if (strstr(term, "vt100") && terminal_width == 40) {
|
|
|
|
ttype = 7; /* No color support, only 40 columns */
|
2011-12-04 01:00:34 +00:00
|
|
|
} else {
|
2011-12-04 23:01:18 +00:00
|
|
|
ttype = 2; /* Everything else */
|
2011-12-04 01:00:34 +00:00
|
|
|
}
|
2011-12-02 06:30:26 +00:00
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
int always_escape = 0; /* Used for text mode */
|
|
|
|
/* Accept ^C -> restore cursor */
|
2011-12-02 06:30:26 +00:00
|
|
|
signal(SIGINT, SIGINT_handler);
|
2011-12-04 01:00:34 +00:00
|
|
|
switch (ttype) {
|
|
|
|
case 1:
|
|
|
|
colors[','] = "\033[48;5;17m"; /* Blue background */
|
|
|
|
colors['.'] = "\033[48;5;15m"; /* White stars */
|
|
|
|
colors['\''] = "\033[48;5;0m"; /* Black border */
|
|
|
|
colors['@'] = "\033[48;5;230m"; /* Tan poptart */
|
|
|
|
colors['$'] = "\033[48;5;175m"; /* Pink poptart */
|
|
|
|
colors['-'] = "\033[48;5;162m"; /* Red poptart */
|
|
|
|
colors['>'] = "\033[48;5;9m"; /* Red rainbow */
|
|
|
|
colors['&'] = "\033[48;5;202m"; /* Orange rainbow */
|
|
|
|
colors['+'] = "\033[48;5;11m"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "\033[48;5;10m"; /* Green rainbow */
|
|
|
|
colors['='] = "\033[48;5;33m"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "\033[48;5;19m"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = "\033[48;5;8m"; /* Gray cat face */
|
|
|
|
colors['%'] = "\033[48;5;175m"; /* Pink cheeks */
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
colors[','] = "\033[104m"; /* Blue background */
|
|
|
|
colors['.'] = "\033[107m"; /* White stars */
|
|
|
|
colors['\''] = "\033[40m"; /* Black border */
|
|
|
|
colors['@'] = "\033[47m"; /* Tan poptart */
|
|
|
|
colors['$'] = "\033[105m"; /* Pink poptart */
|
|
|
|
colors['-'] = "\033[101m"; /* Red poptart */
|
|
|
|
colors['>'] = "\033[101m"; /* Red rainbow */
|
|
|
|
colors['&'] = "\033[43m"; /* Orange rainbow */
|
|
|
|
colors['+'] = "\033[103m"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "\033[102m"; /* Green rainbow */
|
|
|
|
colors['='] = "\033[104m"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "\033[44m"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = "\033[100m"; /* Gray cat face */
|
|
|
|
colors['%'] = "\033[105m"; /* Pink cheeks */
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
colors[','] = "\033[25;44m"; /* Blue background */
|
|
|
|
colors['.'] = "\033[5;47m"; /* White stars */
|
|
|
|
colors['\''] = "\033[25;40m"; /* Black border */
|
|
|
|
colors['@'] = "\033[5;47m"; /* Tan poptart */
|
|
|
|
colors['$'] = "\033[5;45m"; /* Pink poptart */
|
|
|
|
colors['-'] = "\033[5;41m"; /* Red poptart */
|
|
|
|
colors['>'] = "\033[5;41m"; /* Red rainbow */
|
|
|
|
colors['&'] = "\033[25;43m"; /* Orange rainbow */
|
|
|
|
colors['+'] = "\033[5;43m"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "\033[5;42m"; /* Green rainbow */
|
|
|
|
colors['='] = "\033[25;44m"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "\033[5;44m"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = "\033[5;40m"; /* Gray cat face */
|
|
|
|
colors['%'] = "\033[5;45m"; /* Pink cheeks */
|
|
|
|
break;
|
|
|
|
case 4:
|
2011-12-04 01:49:30 +00:00
|
|
|
colors[','] = "\033[0;34;44m"; /* Blue background */
|
|
|
|
colors['.'] = "\033[1;37;47m"; /* White stars */
|
|
|
|
colors['\''] = "\033[0;30;40m"; /* Black border */
|
|
|
|
colors['@'] = "\033[1;37;47m"; /* Tan poptart */
|
|
|
|
colors['$'] = "\033[1;35;45m"; /* Pink poptart */
|
|
|
|
colors['-'] = "\033[1;31;41m"; /* Red poptart */
|
|
|
|
colors['>'] = "\033[1;31;41m"; /* Red rainbow */
|
|
|
|
colors['&'] = "\033[0;33;43m"; /* Orange rainbow */
|
|
|
|
colors['+'] = "\033[1;33;43m"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "\033[1;32;42m"; /* Green rainbow */
|
|
|
|
colors['='] = "\033[1;34;44m"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "\033[0;34;44m"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = "\033[1;30;40m"; /* Gray cat face */
|
|
|
|
colors['%'] = "\033[1;35;45m"; /* Pink cheeks */
|
2011-12-04 01:00:34 +00:00
|
|
|
output = "██";
|
|
|
|
break;
|
|
|
|
case 5:
|
2011-12-04 01:49:30 +00:00
|
|
|
colors[','] = "\033[0;34;44m"; /* Blue background */
|
|
|
|
colors['.'] = "\033[1;37;47m"; /* White stars */
|
|
|
|
colors['\''] = "\033[0;30;40m"; /* Black border */
|
|
|
|
colors['@'] = "\033[1;37;47m"; /* Tan poptart */
|
|
|
|
colors['$'] = "\033[1;35;45m"; /* Pink poptart */
|
|
|
|
colors['-'] = "\033[1;31;41m"; /* Red poptart */
|
|
|
|
colors['>'] = "\033[1;31;41m"; /* Red rainbow */
|
|
|
|
colors['&'] = "\033[0;33;43m"; /* Orange rainbow */
|
|
|
|
colors['+'] = "\033[1;33;43m"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "\033[1;32;42m"; /* Green rainbow */
|
|
|
|
colors['='] = "\033[1;34;44m"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "\033[0;34;44m"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = "\033[1;30;40m"; /* Gray cat face */
|
|
|
|
colors['%'] = "\033[1;35;45m"; /* Pink cheeks */
|
2011-12-04 01:00:34 +00:00
|
|
|
output = "\333\333";
|
|
|
|
break;
|
|
|
|
case 6:
|
2011-12-04 01:49:30 +00:00
|
|
|
colors[','] = "::"; /* Blue background */
|
|
|
|
colors['.'] = "@@"; /* White stars */
|
|
|
|
colors['\''] = " "; /* Black border */
|
|
|
|
colors['@'] = "##"; /* Tan poptart */
|
|
|
|
colors['$'] = "??"; /* Pink poptart */
|
|
|
|
colors['-'] = "<>"; /* Red poptart */
|
|
|
|
colors['>'] = "##"; /* Red rainbow */
|
|
|
|
colors['&'] = "=="; /* Orange rainbow */
|
|
|
|
colors['+'] = "--"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "++"; /* Green rainbow */
|
|
|
|
colors['='] = "~~"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "$$"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = ";;"; /* Gray cat face */
|
|
|
|
colors['%'] = "()"; /* Pink cheeks */
|
2011-12-04 01:00:34 +00:00
|
|
|
always_escape = 1;
|
|
|
|
break;
|
2011-12-05 06:10:56 +00:00
|
|
|
case 7:
|
|
|
|
colors[','] = "."; /* Blue background */
|
|
|
|
colors['.'] = "@"; /* White stars */
|
|
|
|
colors['\''] = " "; /* Black border */
|
|
|
|
colors['@'] = "#"; /* Tan poptart */
|
|
|
|
colors['$'] = "?"; /* Pink poptart */
|
|
|
|
colors['-'] = "O"; /* Red poptart */
|
|
|
|
colors['>'] = "#"; /* Red rainbow */
|
|
|
|
colors['&'] = "="; /* Orange rainbow */
|
|
|
|
colors['+'] = "-"; /* Yellow Rainbow */
|
|
|
|
colors['#'] = "+"; /* Green rainbow */
|
|
|
|
colors['='] = "~"; /* Light blue rainbow */
|
|
|
|
colors[';'] = "$"; /* Dark blue rainbow */
|
|
|
|
colors['*'] = ";"; /* Gray cat face */
|
|
|
|
colors['%'] = "o"; /* Pink cheeks */
|
|
|
|
always_escape = 1;
|
|
|
|
terminal_width = 40;
|
|
|
|
break;
|
2011-12-04 01:00:34 +00:00
|
|
|
default:
|
|
|
|
break;
|
2011-11-30 07:13:20 +00:00
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2011-12-04 08:27:06 +00:00
|
|
|
/* Attempt to set terminal title */
|
|
|
|
printf("\033kNyanyanyanyanyanyanya...\033\134");
|
|
|
|
printf("\033]1;Nyanyanyanyanyanyanya...\007");
|
|
|
|
printf("\033]2;Nyanyanyanyanyanyanya...\007");
|
|
|
|
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Clear the screen */
|
2011-11-30 23:24:56 +00:00
|
|
|
printf("\033[H\033[2J\033[?25l");
|
2011-11-30 06:43:24 +00:00
|
|
|
|
2012-03-23 22:55:13 +00:00
|
|
|
if (show_intro) {
|
|
|
|
/* Display the MOTD */
|
|
|
|
int countdown_clock = 5;
|
|
|
|
for (k = 0; k < countdown_clock; ++k) {
|
|
|
|
newline(3);
|
|
|
|
printf(" \033[1mNyancat Telnet Server\033[0m");
|
|
|
|
newline(2);
|
|
|
|
printf(" written and run by \033[1;32mKevin Lange\033[1;34m @kevinlange\033[0m");
|
|
|
|
newline(2);
|
|
|
|
printf(" If things don't look right, try:");
|
|
|
|
newline(1);
|
|
|
|
printf(" TERM=fallback telnet ...");
|
|
|
|
newline(2);
|
|
|
|
printf(" Or on Windows:");
|
|
|
|
newline(1);
|
|
|
|
printf(" telnet -t vtnt ...");
|
|
|
|
newline(2);
|
|
|
|
printf(" Problems? I am also a webserver:");
|
|
|
|
newline(1);
|
|
|
|
printf(" \033[1;34mhttp://miku.acm.uiuc.edu\033[0m");
|
|
|
|
newline(2);
|
|
|
|
printf(" This is a telnet server, remember your escape keys!");
|
|
|
|
newline(1);
|
|
|
|
printf(" \033[1;31m^]quit\033[0m to exit");
|
|
|
|
newline(2);
|
|
|
|
printf(" Starting in %d... \n", countdown_clock-k);
|
2011-12-02 01:15:38 +00:00
|
|
|
|
2012-03-23 22:55:13 +00:00
|
|
|
fflush(stdout);
|
|
|
|
usleep(400000);
|
|
|
|
printf("\033[H"); /* Reset cursor */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear the screen again */
|
|
|
|
printf("\033[H\033[2J\033[?25l");
|
|
|
|
}
|
2011-12-02 01:15:38 +00:00
|
|
|
|
2011-12-04 07:12:11 +00:00
|
|
|
/* Store the start time */
|
|
|
|
time_t start, current;
|
|
|
|
time(&start);
|
|
|
|
|
2012-03-26 00:32:39 +00:00
|
|
|
int playing = 1; /* Animation should continue [left here for modifications] */
|
|
|
|
size_t i = 0; /* Current frame # */
|
|
|
|
unsigned int f = 0; /* Total frames passed */
|
|
|
|
char last = 0; /* Last color index rendered */
|
|
|
|
size_t y, x; /* x/y coordinates of what we're drawing */
|
2011-11-30 06:43:24 +00:00
|
|
|
while (playing) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Render the frame */
|
2012-03-26 00:32:39 +00:00
|
|
|
for (y = min_row; y < max_row; ++y) {
|
|
|
|
for (x = min_col; x < max_col; ++x) {
|
2011-12-02 01:15:38 +00:00
|
|
|
if (always_escape) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Text mode (or "Always Send Color Escapse") */
|
2011-12-02 01:15:38 +00:00
|
|
|
printf("%s", colors[frames[i][y][x]]);
|
2011-11-30 06:43:24 +00:00
|
|
|
} else {
|
2011-12-02 01:15:38 +00:00
|
|
|
if (frames[i][y][x] != last && colors[frames[i][y][x]]) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Normal Mode, send escape (because the color changed) */
|
2011-12-02 01:15:38 +00:00
|
|
|
last = frames[i][y][x];
|
|
|
|
printf("%s%s", colors[frames[i][y][x]], output);
|
|
|
|
} else {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Same color, just send the output characters */
|
2011-12-04 01:00:34 +00:00
|
|
|
printf("%s", output);
|
2011-12-02 01:15:38 +00:00
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-04 01:49:30 +00:00
|
|
|
/* End of row, send newline */
|
2011-12-04 07:12:11 +00:00
|
|
|
newline(1);
|
|
|
|
}
|
2012-03-26 00:32:39 +00:00
|
|
|
if (show_counter) {
|
|
|
|
/* Get the current time for the "You have nyaned..." string */
|
|
|
|
time(¤t);
|
|
|
|
double diff = difftime(current, start);
|
|
|
|
/* Now count the length of the time difference so we can center */
|
|
|
|
int nLen = digits((int)diff);
|
|
|
|
int anim_width = terminal_width == 80 ? (max_col - min_col) * 2 : (max_col - min_col);
|
|
|
|
/*
|
|
|
|
* 29 = the length of the rest of the string;
|
|
|
|
* XXX: Replace this was actually checking the written bytes from a
|
|
|
|
* call to sprintf or something
|
|
|
|
*/
|
|
|
|
int width = (anim_width - 29 - nLen) / 2;
|
|
|
|
/* Spit out some spaces so that we're actually centered */
|
|
|
|
while (width > 0) {
|
|
|
|
printf(" ");
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
/* You have nyaned for [n] seconds!
|
|
|
|
* The \033[J ensures that the rest of the line has the dark blue
|
|
|
|
* background, and the \033[1;37m ensures that our text is bright white.
|
|
|
|
* The \033[0m prevents the Apple ][ from flipping everything, but
|
|
|
|
* makes the whole nyancat less bright on the vt220
|
|
|
|
*/
|
|
|
|
printf("\033[1;37mYou have nyaned for %0.0f seconds!\033[J\033[0m", diff);
|
2011-11-30 06:43:24 +00:00
|
|
|
}
|
2011-12-04 10:03:30 +00:00
|
|
|
/* Reset the last color so that the escape sequences rewrite */
|
2011-12-04 07:19:16 +00:00
|
|
|
last = 0;
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Update frame crount */
|
2012-03-26 00:32:39 +00:00
|
|
|
++f;
|
|
|
|
if (frame_count != 0 && f == frame_count) {
|
|
|
|
finish();
|
|
|
|
} else {
|
|
|
|
printf("f_c = %d,%d\n", f, frame_count);
|
|
|
|
}
|
2011-11-30 06:43:24 +00:00
|
|
|
++i;
|
|
|
|
if (!frames[i]) {
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Loop animation */
|
2011-11-30 06:43:24 +00:00
|
|
|
i = 0;
|
|
|
|
}
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Reset cursor */
|
2011-11-30 06:43:24 +00:00
|
|
|
printf("\033[H");
|
2011-12-04 01:49:30 +00:00
|
|
|
/* Wait */
|
2011-11-30 06:43:24 +00:00
|
|
|
usleep(90000);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|