A conio.h para GNU/Linux
Publicado por Felipe Ruiz Peixoto em 15/08/2012
[ Hits: 10.279 ]
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
Hardware Project Simulator 0.1 - Simulador de montagem de computadores
Hardware Project Simulator 0.2 com interface gráfica e correções
Web-ICQ no GNU/Linux - Como colocar no site e criar botão para executar
Linux Omni-bot Autosetup 2011, programinha que facilita o uso do Omni-bot
Minha coleção de plugins e EQ Curves do Audacity
Instalando o Beryl junto com o XGL/Compiz
Comente Linux - Site de comentários sobre GNU/Linux
Renomeando seu pen drive no Linux
Furius Mount: Montando ISO, NRG, IMG e outros formatos no Linux
Nenhum comentário foi encontrado.
Instalação do Ambiente .NET (#C) no Slackware 15.0
Kali On The Box - Colocando o Kali para rodar no Raspberry Pi
Como contribuir com a atualização de pacotes no Void Linux
Como Remover CTRL-M (^M) de arquivos
ERROR 144 - Table XXX is marked as crashed and last (automatic?) repair failed [Resolvido]
Colocar dispositivo móvel Samsung em modo Download pela linha de comando
Breeze GTK Theme quebra em toda atualização no Kubuntu 20.04 TLS (3)
Leitor de pdf com seleção de texto, rápido e leve. (2)
[DUVIDA] trocar o systemD por runit (1)