473,386 Members | 1,763 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

How to determine end of std::cin

Good day,

I'm experimenting with unbuffered input at the moment. To get input I
basically use cin.get(). My problem are control sequences preceeded by an
ESC character (i.e. up, down, f-keys et cetera). They basically look like
this: <ESC><EXCODE><CODE>, where EXCODE is a number describing the type of
key pressed and CODE is the actual key. I want to be able to decide whether
ESC or such a control key was pressed. Now if I do it like this:

char code = 0, excode = 0;
code = cin.get()
if (code == 27) {
excode = cin.get();
code = cin.get();
}

, then I will have proper codes for all control keys. If ESC is pressed,
though, the user will actually have to press three times - because
cin.get() seems to wait for actual input to appear in stdin.
Now I tried stuff like

char code = 0, excode = 0;
code = cin.get()
if (code == 27 && !cin.eof()) {
excode = cin.get();
code = cin.get();
}

, but that won't work, even if there is only the ESC character in stdin.

Is there another way to determine, whether the last character was read
from stdin? Am I doing anything wrong?

Thanks alot.
Mar 2 '07 #1
8 3447
On 2 Mar, 11:26, Johannes Meng <j...@jmeng.dewrote:

First, I'm no expert on standard keryboard input in C++.

However AFAIK std::cin is quite primitive and only accepts ASCII
characters. The characters you want are extended ASCII AFAIK and a
quick test on win32 seems to suggest that standard input simply
ignores them.

Unfortunately the proper way forward I think, is to start
investigating a GUI toolkit. These firstly use a different paradigm
from the "input as file" paradigm of standard C++. This is the event
based program paradigm, in which your application sits idling and the
system fires events at it to which it responds. Typical events are
mouse move and keyboard events , and you then write functions to
describe what your application should do in response.

The simplest way to try some event based programming I would guess is
to use another language such as Java. C++ has ( nor probably will ever
have) much interest in standardisng a GUI.

regards
Andy Little

Mar 2 '07 #2
kwikius wrote:
On 2 Mar, 11:26, Johannes Meng <j...@jmeng.dewrote:

First, I'm no expert on standard keryboard input in C++.

However AFAIK std::cin is quite primitive and only accepts ASCII
characters. The characters you want are extended ASCII AFAIK and a
quick test on win32 seems to suggest that standard input simply
ignores them.
Well, I don't know about win32, but here on linux, when, say, "arrow up" is
pressed, cin actually contains 27 91 65. Try the following:

#include <iostream>
using namespace std;

int main(int argc, char **argv)
{
string test;
cin >test;

for (int i = 0; i < test.length(); i++) {
cout << (int)test[i] << " ";
}

cout << endl;

return 0;
}

If you start the programm, then press "arrow up" and then "enter", it should
output "27 91 65".

That means that the codes are there - I just need a way to determine whether
there's still something left in cin after reading a 27 (code for esc).

--
Johannes Meng
Mar 2 '07 #3
kwikius wrote:
The simplest way to try some event based programming I would guess is
to use another language such as Java. C++ has ( nor probably will ever
have) much interest in standardisng a GUI.
I just noticed I might not have been clear about what I want: I do _not_
want to program a gui. It's all about the command line ;)

--
Johannes Meng
Mar 2 '07 #4
* Johannes Meng:
>kwikius wrote:
The simplest way to try some event based programming I would guess is
to use another language such as Java. C++ has ( nor probably will ever
have) much interest in standardisng a GUI.

I just noticed I might not have been clear about what I want: I do _not_
want to program a gui. It's all about the command line ;)
*Dragging up memories from the eighties*

You probably need to do input at a lower, system-specific level because
you need a timeout.

You should check whether there's some library that translates escape
sequences to something more digestible, not sure if 'curses' does that.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Mar 2 '07 #5
On 2 Mar, 16:29, Johannes Meng <j...@jmeng.dewrote:
<...>
#include <iostream>
using namespace std;

int main(int argc, char **argv)
{
string test;
cin >test;

for (int i = 0; i < test.length(); i++) {
cout << (int)test[i] << " ";
}

cout << endl;

return 0;

}

If you start the programm, then press "arrow up" and then "enter", it should
output "27 91 65".
Aha . Works when I compile using gcc (in Windows) but in VC7.1 hangs
when I press arrow up) until I press an ascii character.

Not sure whether there is a right and wrong or if its implementaion
defined. I suspect implementation defined though.

The one common characteristic is that you have to press return to
flush the buffer and signal end of input AFAIK, before you can make
anything happen.

And to avoid that ( I think) you need to be able to monitor system
events ( e.g in a loop looking for e.g any new key pressed etc) which
isnt provided for in a standardised form in C++

Again though I'm no expert on this...

regards
Andy Little.


Mar 2 '07 #6
kwikius wrote:
Aha . Works when I compile using gcc (in Windows) but in VC7.1 hangs
when I press arrow up) until I press an ascii character.

Not sure whether there is a right and wrong or if its implementaion
defined. I suspect implementation defined though.

The one common characteristic is that you have to press return to
flush the buffer and signal end of input AFAIK, before you can make
anything happen.

And to avoid that ( I think) you need to be able to monitor system
events ( e.g in a loop looking for e.g any new key pressed etc) which
isnt provided for in a standardised form in C++

Again though I'm no expert on this...
Thanks for testing! Well, I use unbuffered input, thus there's no need to
press enter. That works using some stuff from termios.h, which is most
probably linux/unix(?) specific, though.

--
Johannes Meng
Mar 2 '07 #7
Alf P. Steinbach wrote:
*Dragging up memories from the eighties*
Hehe. That's about where I'm going ;P
>
You probably need to do input at a lower, system-specific level because
you need a timeout.

You should check whether there's some library that translates escape
sequences to something more digestible, not sure if 'curses' does that.
The thing is this: I'm currently coding an input prompt with bash-like
editing capabilities, history and so on. It's almost functional and really,
really small and I'd rather it didn't have any external dependencies. I'll
try looking for a suitable library anyways.

Thank you!

--
Johannes Meng
Mar 2 '07 #8
On 2 Mar, 17:05, Johannes Meng <j...@jmeng.dewrote:
kwikius wrote:
Aha . Works when I compile using gcc (in Windows) but in VC7.1 hangs
when I press arrow up) until I press an ascii character.
Not sure whether there is a right and wrong or if its implementaion
defined. I suspect implementation defined though.
The one common characteristic is that you have to press return to
flush the buffer and signal end of input AFAIK, before you can make
anything happen.
And to avoid that ( I think) you need to be able to monitor system
events ( e.g in a loop looking for e.g any new key pressed etc) which
isnt provided for in a standardised form in C++
Again though I'm no expert on this...

Thanks for testing! Well, I use unbuffered input, thus there's no need to
press enter. That works using some stuff from termios.h, which is most
probably linux/unix(?) specific, though.
Yes look like a Unix header to me:

http://www.opengroup.org/onlinepubs/...termios.h.html

regards
Andy Little
Mar 2 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: William Payne | last post by:
Hello, when I was writing a user-driven test program for a data structure I wrote, I encountered an annoying problem. The test program is laid out as a menu with several numbered options. The user...
5
by: Chris Mantoulidis | last post by:
Let's say I have this: std::string s1; std::cin >> s1; This will read s1 from cin until it finds a space (or a newline, whichever comes first). Okay this works. But when I want to continue...
3
by: yw | last post by:
Hi, When I use std::cin and std::cout to input some data, how can I ingore the cin by using the Enter key? For example: string sname; cout<<"Please input your name:"<<endl; cin>>sname; If...
3
by: puzzlecracker | last post by:
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); I have seen it in faq - what does it do, exactly?
3
by: moleskyca1 | last post by:
In C++ FAQ (15.5), I see this code: int i = 0; while (std::cin >x) { // RIGHT! (reliable) ++i; // Work with x ... } but I don't know how can while loop end? ostream &operator >>(...) return...
8
by: junw2000 | last post by:
Below is simple code: #include <iostream> int main(){ int i; while(1){ while(!(std::cin >i)){ std::cout<<"Invalid input i: "<<i<<'\n';
3
by: Ralf Goertz | last post by:
Hi, consider the following program #include <iostream> #include <fstream> using namespace std; int main(int argc, char *argv){
12
by: pekka | last post by:
I'm trying to measure user input time with my Timer class object. It isn't as easy as I expected. When using std::cin between timer start and stop, I get zero elapsed time. For some unknown reason,...
3
by: Alex Snast | last post by:
hello guys I need to modify the std::cin delim char from the default ' ' and '\n' characters to ',' i know that i can edit the delim in the getline command however i'd like to know if there's...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.