A conio.h para GNU/Linux
Publicado por Felipe Ruiz Peixoto em 15/08/2012
[ Hits: 13.900 ]
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
[RESOLVIDO] Links e botões que não funcionam no navegador
"RPG Maker" escrito em Python e Pygame
Wolfenstein Enemy Territory no Ubuntu 12 com som e Omnibots
Super usuário (root) no Android 4.1.2 (Samsung Young) sem uso de computador para limpar o sistema
Usando o VOL a seu favor: encontrando facilmente o que precisa
Bloqueando redes da China/Coréia
Alguns novos recursos do Ubuntu 13.04
Nenhum coment�rio foi encontrado.
O que é o THP na configuração de RAM do Linux e quando desabilitá-lo
Comparação entre os escalonadores BFQ e MQ-Deadline (acesso a disco) no Arch e Debian
Conciliando o uso da ZRAM e SWAP em disco na sua máquina
Servidor de Backup com Ubuntu Server 24.04 LTS, RAID e Duplicati (Dell PowerEdge T420)
Deixando o Plasma6 mais fluido no Linux
Como unir duas coleções de ROMs preservando as versões traduzidas (sem duplicatas)
Isso acontece com vcs também? (7)
Problema com audio apos upgrade (10)
Instalação automatizada do Debian 12 em UEFI (2)