gpt4 book ai didi

c - 如何从数组中打印文本(SDL_TTF)?

转载 作者:行者123 更新时间:2023-11-30 20:10:39 25 4
gpt4 key购买 nike

我发布了我认为相关的部分代码。我正在尝试通过 SDL_TTF 为我的菜单绘制一些文本。每次单击按钮时,我都会从服务器获取一串字符。类似于“I1P1I2P1I3P1I4P1I5P1I6P1I7P1I8P1I9P1”的“I1”表示大厅 1,P1 表示 1 个玩家已连接。然而,我只想打印出“I1”,然后有一堆空间,比如200像素,然后打印出“P1”,然后跳到下一行打印“I2”和“P1”。我尝试了文本扭曲,但它忽略它并打印出整行文本。其次,我怎样才能打印“I1”和“P1”之间的空白空间。是否有更简单/有效的方法通过 SDL_TTF 从数组打印文本?

typedef struct
{
Menu menu;

SDL_Texture *label;
SDL_Renderer *rendererMenu;
TTF_Font *font;
char *lobbyResponse;
} MenuState;

void dispayText(char *text, MenuState *menu)
{
SDL_Color color = {255, 255, 255, 255};
SDL_Surface *surface = TTF_RenderText_Blended_Wrapped(menu->font, text, color, 4);
menu->label = SDL_CreateTextureFromSurface(menu->rendererMenu, surface);
menu->menu.labelW = surface->w;
menu->menu.labelH = surface->h;
//pos.x = x;
//pos.y = y;
SDL_FreeSurface(surface);
}



int processEventsMenu(SDL_Window *window, MenuState *menu, TCPsocket *tcpsock)
{
SDL_Event ev;
menu->lobbyResponse = malloc(sizeof(char[1024])); // <- moved it here for clarity

while (SDL_PollEvent(&ev))
{
switch(ev.type)
{
case SDL_MOUSEBUTTONDOWN:
if (ev.button.button == SDL_BUTTON_LEFT)
{
SendLobbyMessage(tcpsock, refreshCommand);
ReceiveLobbyMessage(tcpsock, menu->lobbyResponse);
printf("Created lobby with id: %c\n",menu->lobbyResponse[0]);
dispayText(menu->lobbyResponse, menu);
printf("Lobbys: %c\n", menu->lobbyResponse[0]);
}
}
}
}

最佳答案

puts("Something \t\t Something\n"); // \t allows to put "empty spaces" 

我建议编写一个函数,在打印之前根据需要格式化字符串。考虑使用strtok_r()。另一个解决方案是逐个字符地迭代到字符串中,并在每次遇到 | 时打印 \n 以“跳到下一行”。

似乎对我有用的一个可能的解决方案是:

const char*         s = "I1P1I2P1I3P1I4P1I5P1I6P1I7P1I8P1I9P1";
const unsigned size = strlen(s);
char* result = malloc(sizeof(char) * (strlen(s) + 2 * strlen(s) / 4) + 1);
/* We allocated the memory necessary to put the whole of the string `s`
inside of the string `result`, and a tab and a newline, considering
that for every 4 characters inside of `s`, we will put 1 tab and 1
newline*/

int i = 0;
int j = 0;

while (i < size + 1)
{
result[j] = s[i];
if ((i + 1) % 2 == 0) // Every 2 char that were passed from _s_ to _result_
{
if ((i + 1) % 4 == 0)
result[++j] = '\n'; // Either we add a newline...
else
result[++j] = '\t'; // ... or we add a tab
}
j++;
i++;
}
printf("Original String : %s\n", s);
printf("Formatted String : \n%s\n", result);

输出是:

Original String : I1P1I2P1I3P1I4P1I5P1I6P1I7P1I8P1I9P1
Formatted String :
I1 P1
I2 P1
I3 P1
I4 P1
I5 P1
I6 P1
I7 P1
I8 P1
I9 P1

关于c - 如何从数组中打印文本(SDL_TTF)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43934643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com