A conio.h para GNU/Linux
Publicado por Felipe Ruiz Peixoto em 15/08/2012
[ Hits: 14.097 ]
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.23 - Mais fácil ainda!
DeVeDe - usando e evitando erros
OMNI-bot para Enemy Territory - Scripts para facilitar o uso
Rastreando seu computador com Python via e-mail
Scripts facilitadores para live streaming
Instalação do DBDesigner4 no Linux
Conectividade Social - conexão segura
Como habilitar login como root no Debian 8 (Jessie)
Nenhum comentário foi encontrado.
Cirurgia para acelerar o openSUSE em HD externo via USB
Void Server como Domain Control
Modo Simples de Baixar e Usar o bash-completion
Monitorando o Preço do Bitcoin ou sua Cripto Favorita em Tempo Real com um Widget Flutuante
[Resolvido] VirtualBox can't enable the AMD-V extension
Como verificar a saúde dos discos no Linux
Como instalar , particionar, formatar e montar um HD adicional no Linux?
Como automatizar sua instalação do Ubuntu para desenvolvimento de software.
Quais os códigos mais dificeis que vcs sabem fazer? (4)
Não consigo instalar distro antiga no virtualbox nem direto no hd (8)
Fiz uma pergunta no fórum mas não consigo localizar (14)
Upscaling com imagem cortada no monitor secundário ao usar iGPU Multi ... (1)
Servidor Ubuntu 24.04 HD 500 não tenho espaço na \home\adminis... [RES... (8)









