我正在尝试为有趣的应用程序生成ascii艺术文本。从FIGLET,我得到了ASCII模式。我在printf
语句中使用该模式来打印字母。这是我从FIGLET获得的模式的截图:
以下是我用来打印A:
的代码段printf(" _/_/\n _/ _/\n _/_/_/_/\n _/ _/\n_/ _/\n");
现在,我从用户处获取输入文本,并以ASCII艺术显示。当我使用printf时,我只能垂直生成它:
但我需要做横向ASCII艺术。怎么做?
答案 0 :(得分:2)
是的,这是一个众所周知的问题。我最后一次解决这个问题是为每一行使用一个数组并分别渲染每个字母。
首先,我会用数组表示每个字母。例如你的A就是这样的:
char* letter[8];
letter[0] = " _/_/ ";
letter[1] = " _/ _/";
etc.
(实际上,如果每个字母的索引不同,则使用2D数组。)
实际渲染也将在数组中,类似于:
char * render [8];
然后使用连接来构建每一行。一个简单的嵌套for循环应该可以解决这个问题:
for each line, i to render (i.e the height of the letters)
for each letter, j
concatenate line i of letter j to the to char* i in the array
最后通过数组循环并打印每一行。实际上,您可以跳过渲染数组,只需打印每一行而不返回回车符。我想到了以下内容:
for each line, i to render : // (i.e the height of the letters)
for each letter, j {
output line i of letter j
}
output a carriage return
}
(我的C有点生锈,从那里“伪”代码。但是,我认为我的逻辑是合理的。)
答案 1 :(得分:2)
您可以尝试以下内容:
注意:显然,以下内容缺少内存解除分配,错误检查,代码不完整等等。想法是给你一个提示!
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#define ROW 4
#define COL 8
#define CHAR_INDEX_MAX 26
enum alph_enum {A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z};
typedef struct _alphabets {
char *line[ROW];
}alphabet;
alphabet chars[26];
init_a(enum alph_enum letter)
{
int i;
for (i=0 ; i<ROW ; i++) {
chars[letter].line[i] = (char *) malloc(COL);
if (chars[letter].line[i] == NULL) {
printf("memory allocation failed \n");
return;
}
}
switch (letter) {
/*0123 4567*/
case H:
strcpy(chars[letter].line[0], "| |");
strcpy(chars[letter].line[1], "|_______|");
strcpy(chars[letter].line[2], "| |");
strcpy(chars[letter].line[3], "| |");
break;
case E:
strcpy(chars[letter].line[0], "|-------");
strcpy(chars[letter].line[1], "|_______");
strcpy(chars[letter].line[2], "| ");
strcpy(chars[letter].line[3], "|_______");
break;
case L:
strcpy(chars[letter].line[0], "| ");
strcpy(chars[letter].line[1], "| ");
strcpy(chars[letter].line[2], "| ");
strcpy(chars[letter].line[3], "|_______");
break;
/* for all the other alphabets */
}
return;
}
print_str(char word[])
{
int i, j;
printf("\n");
for (i=0; i<ROW; i++) {
for (j=0 ; j<strlen(word) ; j++) {
printf("%s", chars[word[j] % 'A'].line[i]);
}
printf("\n");
}
printf("\n");
return;
}
int main(void)
{
init_a(H);
init_a(E);
init_a(L);
/* print_str("HELLO"); */
print_str("HELL");
return 0;
/* free the memory for HEL here */
}
输出如下:
> gcc test.c -o print
> print
| ||-------| |
|_______||_______| |
| || | |
| ||_______|_______|_______
>
TODO:
希望这有帮助!
答案 2 :(得分:1)
不是一次打印一个整个字符作为一个字符串,而是将字符分成多个字符串 - 每个字符串构成一个字符。然后打印每个字符的第一行,换行符,然后打印每个字符的第二行等。您需要用空格填充行,以确保它们的宽度都是正确的。
答案 3 :(得分:1)
很高兴看到你喜欢Figlet。您显示的Figlet小部件实际上包含一个生成ASCII输出的命令行工具。 http://www.figlet.org/ 它也可以使用brew http://mxcl.github.com/homebrew/轻松安装。
认为您可以通过popen(..)
或类似方式轻松地从自己的程序中捕获其输出。