Skip to content

Files

Latest commit

 

History

History
104 lines (104 loc) · 2.28 KB

text.md

File metadata and controls

104 lines (104 loc) · 2.28 KB

Texts


typedef struct text_s {
    sfFont *font;
    char *string;
    sfText *text;
    sfVector2f position;
    sfColor color;
    void (*animate)(struct text_s *, scene *d);
} text;

Property

Font

sfFont of CSFML assigned to this text.

sfFont *font;

String

The string display in game.

char *string;

Text

sfText of CSFML displayed in window.

sfText *text;

Position

The Position of text in the scene.

sfVector2f position;

Color

sfColor assigned to this text.

sfColor color;

Method

Screen

Call in move_manager for animate this text.

void (*animate)(struct text_s *, scene *d);

Functions

void text_manager(scene *d);

Display all text of the scene. here


void move_manager(scene *d);

Launch animate pointer function for start animation of text. here


text *create_text(char *s, char *string, sfColor color, sfVector2f v);

Create text. here


void modify_string(scene *d, char *before, char *after);

Modify the string of this text. here

Example

For this example I use the fps.c for create an example text.

void animate_fps(text *t, scene *d)
{
    char *points = my_int_to_str(d->hub->fps);
    char points_s[255];
    points_s[0] = '\0';
    my_strcat(points_s, "FPS: ");
    my_strcat(points_s, points);
    modify_string(d, t->string, points_s);
}

In this function I prepare the new string of my text, and I use the function modify_string for change the string in the scene.

void display_fps(scene *d)
{
    char *points = my_int_to_str(d->hub->fps);
    char points_s[255];
    points_s[0] = '\0';
    my_strcat(points_s, "FPS: ");
    my_strcat(points_s, points);
    sfVector2f pos = {0, d->hub->mode.height - 110};
    text *t =
        create_text("./assets/josefin_sans/josefin_sans_light.ttf", points_s,
            sfWhite, pos);
    t->animate = animate_fps;
    sfText_setCharacterSize(t->text, 108);
    put_in_list(&d->texts, t);
}

In this function I create text with property fps of the screen structure.