Sprintf problem

You must understand the Game Editor concepts, before post here.

Sprintf problem

Postby jimmynewguy » Sat Oct 09, 2010 4:26 pm

I stumbled into this problem, might be my lack of using strings before. I have this code:
Code: Select all
//animname is declared as: char * animname = "0"; GE crashes if the = "0" isn't there fyi
sprintf(animname, "a%s", getAnimName(animindex));
sprintf(debug.text, "%s", animname);
ChangeAnimation("Event Actor", animname, FORWARD);

With the animations being 1,2,3,4 (up, left, down, right) with attacking animations a1,a2,a3,a4. So I want it to change to the attacking animation according to which animation the player is in. I know I could use ifs or switches but I want to try shorter codes to get things going "simpler" if you catch my drift. Anyways, the debug shows that the animname is always just a instead of a1 or a anything else. If I set the dubug text to sprintf(debug.text, "a%s", getAnimName(animindex)); it shows up right strangely enough.

Thanks in advance! :)
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Sprintf problem

Postby Bee-Ant » Sat Oct 09, 2010 4:37 pm

If you use pointer, don't forget to allocate the memory first...
Code: Select all
char *animname;
animname=malloc(32);

But I suggest you to use array, it's way safer I think...
Code: Select all
char animname[32];
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: Sprintf problem

Postby jimmynewguy » Sat Oct 09, 2010 4:50 pm

see? knew it was me not knowing something :P

Thanks Bee
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Sprintf problem

Postby Bee-Ant » Sat Oct 09, 2010 4:57 pm

NP :)

But I wonder...do you really named your animation in numbers 1, 2, 3, and 4 ???
I wonder if you can use number as first letter in GE...
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score


Return to Advanced Topics

Who is online

Users browsing this forum: No registered users and 1 guest

cron