A conio.h para GNU/Linux
Publicado por Felipe Ruiz Peixoto em 15/08/2012
[ Hits: 13.471 ]
Blog: https://www.ubuntu.com/
// This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, // MA 02110-1301, USA. // // // Authors: // Jefferson dos Santos Felix // Felipe Ruiz Peixoto // // With this file, you can make programs using the conio.h // 100% compatible with Windows and Gnu/Linux systems. // This header needs the NCURSES library to work (libncurses-dev). #ifndef __CONIO_H #define __CONIO_H #ifndef __CURSES_H #include <curses.h> #endif #ifndef __NCURSES_H #include <ncurses.h> #endif #undef printf #define printf printw #undef scanf #define scanf scanw #undef getch #define BLACK 0 #define RED 1 #define GREEN 2 #define BROWN 3 #define BLUE 4 #define MAGENTA 5 #define CYAN 6 #define LIGHTGRAY 7 #define DARKGRAY 8 #define LIGHTRED 9 #define LIGHTGREEN 10 #define YELLOW 11 #define LIGHTBLUE 12 #define LIGHTMAGENTA 13 #define LIGHTCYAN 14 #define WHITE 15 // Commands supported by this file, used for initialize. void initconio(); int endconio(void); int clrscr(void); int clreol(void); int textcolor(int color); int textbackground(int color); int getche(void); int getch(void); int wherex(void); int wherey(void); int gotoxy(int x, int y); int newline(void); short cur_pair, cur_bold; int initialized = 0; void initconio() { short f, b, p; initscr(); start_color(); cbreak(); noecho(); p = 1; for(f = 0; f < 8; f++) for(b = 0; b < 8; b++, p++) init_pair(p, f, b); cur_pair = 57; cur_bold = 0; color_set(cur_pair, NULL); attroff(A_BOLD); initialized = 1; } int endconio(void) { if(initialized == 0) initconio(); echo(); endwin(); initialized == 0; return 0; } int clrscr(void) { if(initialized == 0) initconio(); bkgdset(COLOR_PAIR(cur_pair)); if(cur_bold == 0) attroff(A_BOLD); else attron(A_BOLD); clear(); endconio(); return 0; } int clreol(void) { if(initialized == 0) initconio(); int cur_x, x, y, maxx; color_set(cur_pair, NULL); getmaxyx(stdscr, y, maxx); cur_x = wherex(); gotoxy(1, wherey()); for(x = 1; x <= maxx; x++) printw(" "); gotoxy(cur_x, wherey() - 1); endconio(); return 0; } int textcolor(int color) { if(initialized == 0) initconio(); short x, y, f, b, p = 1; pair_content(cur_pair, &f, &b); for(x = 0; x < 8; x++) for(y = 0; y < 8; y++, p++) if((x == (color%8))&&(y == b)) cur_pair = p; color_set(cur_pair, NULL); if(color >= 8) cur_bold = 1; if(cur_bold == 0) attroff(A_BOLD); else attron(A_BOLD); endconio(); return 0; } int textbackground(int color) { if(initialized == 0) initconio(); short x, y, f, b, p = 1; pair_content(cur_pair, &f, &b); for(x = 0; x < 8; x++) for(y = 0; y < 8; y++, p++) if((x == f)&&(y == (color%8))) cur_pair = p; color_set(cur_pair, NULL); endconio(); return 0; } int getche(void) { if(initialized == 0) initconio(); int c; echo(); c = wgetch(stdscr); endconio(); return c; } int getch(void) { if(initialized == 0) initconio(); int c; noecho(); c = wgetch(stdscr); endconio(); return c; } int wherex(void) { if(initialized == 0) initconio(); int x, y; getyx(stdscr, y, x); endconio(); return x + 1; } int wherey(void) { if(initialized == 0) initconio(); int x, y; getyx(stdscr, y, x); endconio(); return y + 1; } int gotoxy(int x, int y) { if(initialized == 0) initconio(); move(y - 1, x - 1); endconio(); return 0; } int newline(void) { if(initialized == 0) initconio(); gotoxy(1, wherey() + 1); endconio(); return 0; } #endif // How to use: // Copy this file to the folder of your source codes, or to the // library directories of your system. // // See in your source code the line: #include <conio.h>, and change it // to: #include "conio.h", if this file is in the directory of your // source codes. // // Before start using the functions of the conio.h, be sure you was // initialized it, because some commands need it to work. To initialize // you can use the commands listed in the line 57-68 of this file. // If you start your program with printf() or scanw() for example, // will make a segmentation fault. // // If your program is making errors, try to use the initconio(); function // on the begin of the program, and endconio(); function to end it, when // using this file. // // If it stills making errors, go to the support pages below: // http://www.vivaolinux.com.br/script/Conio.h-para-Linux-%28Nova-versao%29
DeVeDe - usando e evitando erros
OMNI-bot para Enemy Territory - Scripts para facilitar o uso
Scripts facilitadores para live streaming
Gnuconio, a conio para Windows e GNU/Linux (v0.1)
Instalando o Grads no Fedora Core 6
Acesso remoto no Insigne 5.0 por SSH
Desinstalar o KDE do seu Linux (apt)
Nenhum comentário foi encontrado.
Enviar mensagem ao usuário trabalhando com as opções do php.ini
Meu Fork do Plugin de Integração do CVS para o KDevelop
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Criando uma VPC na AWS via CLI
Multifuncional HP imprime mas não digitaliza
Dica básica para escrever um Artigo.
Como Exibir Imagens Aleatórias no Neofetch para Personalizar seu Terminal
Aumentar prioridade de processos (2)
Como usar o Git apenas em um servidor interno, usando apenas o git? (1)