Emmanuel Delahaye C is a sharp tool | rufo a écrit :
je pensais aussi à kbhit() mais c'est pas portable S'il est sous Linux, c'est mort...
|
J'ai bien précisé "DOS/Windows" Mais on sait simuler kbhit() et getch() sous Linux... KBHIT.H
Code :
- #ifndef H_KBHIT
- #define H_KBHIT
- void init_keyboard(void);
- void close_keyboard(void);
- int kbhit(void);
- int readch(void);
- #endif
| KBHIT.C Code :
- #include "kbhit.h"
- #include <termios.h>
- #include <unistd.h> // for read()
- static struct termios initial_settings, new_settings;
- static int peek_character = -1;
- void init_keyboard()
- {
- tcgetattr(0,&initial_settings);
- new_settings = initial_settings;
- new_settings.c_lflag &= ~ICANON;
- new_settings.c_lflag &= ~ECHO;
- new_settings.c_lflag &= ~ISIG;
- new_settings.c_cc[VMIN] = 1;
- new_settings.c_cc[VTIME] = 0;
- tcsetattr(0, TCSANOW, &new_settings);
- }
- void close_keyboard()
- {
- tcsetattr(0, TCSANOW, &initial_settings);
- }
- int kbhit()
- {
- unsigned char ch;
- int nread;
- if (peek_character != -1) return 1;
- new_settings.c_cc[VMIN]=0;
- tcsetattr(0, TCSANOW, &new_settings);
- nread = read(0,&ch,1);
- new_settings.c_cc[VMIN]=1;
- tcsetattr(0, TCSANOW, &new_settings);
- if(nread == 1)
- {
- peek_character = ch;
- return 1;
- }
- return 0;
- }
- int readch()
- {
- char ch;
- if(peek_character != -1)
- {
- ch = peek_character;
- peek_character = -1;
- return ch;
- }
- read(0,&ch,1);
- return ch;
- }
|
Message édité par Emmanuel Delahaye le 09-01-2007 à 12:37:01 ---------------
Des infos sur la programmation et le langage C: http://www.bien-programmer.fr Pas de Wi-Fi à la maison : http://www.cpl-france.org/
|