Tagged Questions
The getch tag has no wiki summary.
7
votes
4answers
3k views
How to get a single character without pressing enter?
How can I get a single keyboard character from the terminal with Ruby without pressing enter?
I tried Curses::getch, but that didn't really work for me.
5
votes
3answers
3k views
equivalent to getch(), mac/linux crash
Hey guys. So I am using getch() and my app crashes instantly. Including when doing:
int main()
{
getch();
}
I can't find the link but supposedly the problem is, it needs to turn off buffering or ...
4
votes
5answers
247 views
Help with getch() function
I want to use the getch function to get a character... So the user can enter only Y OR N Character.. but the while loop is not working... I need help! Thanks
#include <stdio.h>
main(){
char ...
3
votes
0answers
86 views
how to raise event getche() from process.Popen() - does not monitor stdin
I am launching a binary in windows using:
process = subprocess.Popen(cmd, stderr = subprocess.PIPE, stdin = subprocess.PIPE, stdout = ch.input)
ch.input comes from:
ch = InputStreamChunker('\n')
...
3
votes
3answers
276 views
C exit from infinite loop on keypress
How can I exit from an infinite loop, when a key is pressed?
Currently I'm using getch, but it will start blocking my loop as soon, as there is no more input to read.
3
votes
2answers
901 views
C++ getch() in perl?
In c++, there is a functio, getch(),
which returns the
variable of the key you pressed - like enter would be
13. How could I do this in perl?
2
votes
1answer
116 views
ncurses app in C - reading standard input
I'm writing a simplified version of Linux standard less command for OS academic classes, and I'm allowed to use ncurses to make it easier. "Simplified" means that the user should be able to scroll the ...
2
votes
2answers
321 views
Why getch() returns before press any key?
int main(int argc, char *argv[], char *env[])
{
printf("Press any key to exit.\n");
getch();
return 0;
}
According to the man page,
getch should wait until any key is pressed
...
2
votes
1answer
96 views
Is it possible to use getch() to obtain inputs of varying length?
I've taken up the adventure of creating a relatively small command-line RPG to flex my newfound Python muscles, but I've already run into a conundrum. I'm using this implementation of getch():
def ...
2
votes
3answers
363 views
Strcat throws segmentation fault on simple getch-like password input
I am using Linux and there is a custom function of which returns an ASCII int of current key sort of like getch(). When trying to get used to it and how to store the password I came into an issue, my ...
2
votes
4answers
77 views
How do I use pointers in combination with getc?
I have a function getNum(), which gets a number from file and returns it. When I go back into getNum() I have lost the pointer and it starts at the begging of the file again. I'm wondering How do I ...
2
votes
3answers
341 views
a simple getch() and strcmp problem
I have this simple problem that gets an input from the user using a function then checks if the input is 'equal' to the "password". However, strcmp would never return my desired value, and the culprit ...
2
votes
1answer
2k views
Reading a single character (getch style) in Python is not working in Unix
Any time I use the recipe at http://code.activestate.com/recipes/134892/ I can't seem to get it working. It always throws the following error:
Traceback (most recent call last):
...
...
1
vote
4answers
78 views
Scala Console Get Keypress
I'm writing a roguelike in Scala. I need to be able to see when the user presses an arrow key for example. All of the solutions I have found require the player to press enter. Is there any way to ...
1
vote
3answers
90 views
getch() of ncurses doesn't work
I need to create a mainloop for my program and wrote the following function:
void menu(){
int ch;
cbreak();
noecho();
initscr();
refresh();
while (ch != KEY_F(9)){
ch = getch();
cout ...
1
vote
0answers
222 views
Can curses be avoided to get an “any key” getch prompt echoed to a raw_input() call?
I have a command line mini-app written in Python 2.7 that has a "press any key" style prompt, but that responds differently depending on what kind of key the user types.
If they type a character, ...
1
vote
3answers
2k views
How to implement getch() function of C in Linux?
In turbo c++, we can use getch() function available in conio.h.
But in linux, gcc compiler doesn't provide conio.h header file, then how to get functionality of getch() function?
1
vote
1answer
505 views
Something like getch(), textcolor() and gotoxy() in Ruby
I want to use these functions from the conio.c library (Borland) in Ruby, specially getch().
getch() gets a key from the keyboard without press enter.
textcolor() changes the color of the text in ...
1
vote
2answers
3k views
Problem with kbhit()[and getch()] for Linux
while(ch != 'q')
{
printf("looping\n");
sleep(1);
if(kbhit())
{
ch = readch();
printf("you hit %c\n",ch);
}
}
This code gives me a blocking getch() like functionality. I am ...
1
vote
3answers
6k views
Non-blocking getch(), ncurses
I'm having some problems getting ncurses' getch() to block. Default operation seems to be non-blocking (or have I missed some initialization)? I would like it to work like getch() in Windows. I have ...
1
vote
2answers
3k views
Problem with an expect script
I'm trying to create a script to update a password in a
non-interactive way. It's working on my laptop but fails on my server.
Both are running the same configuration, using Etch.
This is the script:
...
0
votes
1answer
65 views
Check for extra characters in Linux terminal buffer
I try to implement getch() function in Python, which should also return list of chars for special keys like F1-F12 and arrow keys. These special keys generate several chars in a sequence. Therefore ...
0
votes
0answers
86 views
[IPC using java.lang.process]How to send keystrokes to getch() in C program executed by java.lang.process
I am trying to learn IPC using java.lang.process, I created a C program
#include <stdio.h>
int main()
{
/*char *options=malloc(sizeof(char[10]));*/
char options;
int t=0;
...
0
votes
0answers
117 views
When to use getwch() instead of getch() in Windows?
When must you use getwch() instead of getch() in Windows? Why?
I haven't been able to find any such situation through my experiments, but I want to know if I'm missing something.
0
votes
2answers
527 views
how to clear the key buffer while using kbhit() and getch()
heu so I'm using the above stated windows functions which luckily are for windows 2000 and up, but in making a game on the console I've run into a problem: as soon as a key is pressed the console gets ...
0
votes
3answers
660 views
Equivalent function to C's “_getch()” in Java?
I was messing around with C/C++ and recently found the _getch() function. I also recently got an invite to Google Wave (amazing, btw), and I wanted to emulate the ability to send messages before you ...