How can I get the mouse click position in C++ in a Windows console program? (A variable that returns the position of the mouse when clicked)

I want to draw a menu with simple text commands, so when someone clicks, the game will register it and know the position. I know how to do everything I need to do except get the mouse position when clicked.

link|improve this question

67% accept rate
1  
do you mean in a console application, or you really mean the DOS operating system? – Marius Bancila Jun 8 '11 at 21:08
just a console application. Sorry I didn't clarify – someguy Jun 8 '11 at 21:09
Console in which OS? Windows/Linux/MacOS? – Kirill V. Lyadvinsky Jun 8 '11 at 21:11
Windows OS. Just a console app – someguy Jun 8 '11 at 21:11
Just a regular c++ console application in a dos window. I can draw a button and know the coordinates, but I need something to return the "mouse click position" – someguy Jun 8 '11 at 21:12
feedback

2 Answers

up vote 2 down vote accepted

You'll need to use the *ConsoleInput family of methods (peek, read, etc). These operate on the console's input buffer, which includes keyboard and mouse events. The general strategy is:

  1. wait on the console's input buffer handle (ReadConsoleInput)
  2. determine the number of waiting events (lpNumberOfEventsRead)
  3. handle them as you see fit (i.e. MOUSE_EVENT and MOUSE_EVENT_RECORD)

You'll have to indicate that you want to retrieve mouse input using SetConsoleMode first though, as illustrated in this MSDN article.

link|improve this answer
^^ This answer deserves more Upvotes – BlackDivine Nov 28 '11 at 17:49
feedback

GetConsoleScreenBufferInfo retrieves information about the specified console screen buffer in a CONSOLE_SCREEN_BUFFER_INFO structure. The dwCursorPosition member gives you the X and Y positions.

link|improve this answer
Ok. That's what I need. So is it a constant or do I need to include some library – someguy Jun 8 '11 at 21:13
read the specs in the MSDN. all you need to include is Windows.h – Marius Bancila Jun 8 '11 at 21:14
And is "dwCursorPosition" a function where I give it addresses. Or where does it store the x and y positions – someguy Jun 8 '11 at 21:14
And, how do I tell if there has been a click event? – someguy Jun 8 '11 at 21:17
1  
You can get MOUSE_MOVED events which include the dwMousePosition. – sixlettervariables Jun 8 '11 at 21:52
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.