简体   繁体   中英

How can I print a string to the console at specific coordinates in C++?

I'm trying to print characters in the console at specified coordinates. Up to now I have been using the very ugly printf("\\033[%d;%dH%s\\n", 2, 2, "str"); But I just had to ask whether C++ had any other way of doing this. The problem is not even that it's ugly, the problem comes up when I try to make myself a prettier function like so:

void printToCoordinates(int x, int y, string text)
{
    printf("\033[%d;%dH%s\n", x, x, text);
}

It doesn't work, even if I typecast to (char*) . Another problem is that I have to print out the \\n for the page to be refreshed... I just don't enjoy using printf in general.

Similarily to using cout instead of printf , I believe there should be a more recent way of doing this (ideally a way that allows me to easily write strings where I want on the screen, and ideally a way that doesn't required these weird symbols: \\033[%d;%dH )

So, do any of you have what I'm looking for?

诅咒是您想要的。

I remember using gotoxy(x,y) in Turbo C++ (conio.h) - don't know if it'll work for you though. It moves the cursor to the coordinates specified by x and y .

EDIT: If you're using Windows, here's a gotoxy clone:

#include <windows.h>

void gotoxy(int x, int y)
{
  COORD coord;
  coord.X = x;
  coord.Y = y;
  SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}

A few improvements to your function:

void printToCoordinates(int x, int y, const char *format, ...)
{
    va_list args;
    va_start(args, format);
    printf("\033[%d;%dH", x, y);
    vprintf(format, args);
    va_end(args);
    fflush(stdout);
}

This version:

  • allows you to use any arbitrary format string and variable argument lists
  • automatically flushes stdout without printing a newline
  • uses x and y in the format string (your use of x and x may have been a typo)

However, because varargs is essentially a C feature and doesn't really understand C++ objects, you'd have to call it like this:

printToCoordinates(10, 10, "%s", text.c_str());

A better option really is to use curses (for Unix-like platforms) or Win32 console functions (for Windows) as mentioned in other answers.

What you are doing is using some very terminal specific magic characters in an otherwise pure C++ application. While this works, you will probably have a far easier time using a library which abstracts you from having to deal with terminal specific implementation details and provides functions that do what you need.

Investigate whether curses or ncurses libraries are available for your system.

First:

void printToCoordinates(int x, int y, string text)
{
    printf("\033[%d;%dH%s\n", x, x, text);
}

You don't want to copy the string argument, you want to pass it by ( const ) reference. Also, the (only) right way to get a char* from a std::string is to call its c_str() member function:

void printToCoordinates(int x, int y, const std::string& text)
{
    printf("\033[%d;%dH%s\n", x, x, text.c_str());
}

As to your question: C++ has no way to do what you want, but it allows you to use platform-specific ways to do it. You would have to tell us your platform in order to get meaningful answers.

void screenpos(int x,int y,char textyowanawrite[20])
{
//printf for right shift
// \n for downward shift
//loops through the rows and shifts down 
for(int row=0;row<=y;row++)
{
printf("\n");
for (int i = 0; i < x; i++)
{
printf("%s "," " );
}
}
printf("%s ",textyowanawrite );
} 

//this should work to certain extinct only problem is u cant go from somewhere like 4,4 to 2,2 thats the problem

I have a little different method. Not sure whether this is better than ncurses package, so i leave that for the upvoters to decide.

You can use Graphics package in C++ to output a text to a specific coordinate on your working screen. The syntax is outtextxy(x, y, text) ; Where x & y are coordinates.

One example is:

int main(void) {

    int gdriver = DETECT, gmode;

    int x = 200, y = 200;

  

    initgraph(&gdriver, &gmode, "c:\\tc\\bgi");

  

    outtextxy(x, y, "Hello World");

    closegraph();

 }

This little program will print Hello World in the coordinate (200,200).

For reference to what graphics package can do visit this link

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM