Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.
Moderator: Coders of Rage
epicasian
Chaos Rift Junior
Posts: 232 Joined: Mon Feb 22, 2010 10:32 pm
Current Project: Gigazilla Engine
Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
Programming Language of Choice: C/++
Location: WoFo, KY
Post
by epicasian » Mon Oct 11, 2010 8:13 pm
My question is, how can you use (if you even can) void pointers in a game engine to abstract the custom data type being passed into a function?
I saw a function like this:
Code: Select all
void printIntX(void* argX)
{
int a;
a = *(int *) argX;
cout << a;
}
Is there a way that you can do this, without creating functions like:
Code: Select all
void useInputComponent(void* argInput)
{
InputComponent a;
a = *(InputComponent *) argInput;
//blah
}
void useRenderComponent(void* argRender)
{
RenderComponent a;
a = *(RenderComponent *) argRender;
//blah blah
}
Thanks in advance, and sorry if I didn't explain myself very well.
avansc
Respected Programmer
Posts: 1708 Joined: Sun Nov 02, 2008 6:29 pm
Post
by avansc » Mon Oct 11, 2010 8:26 pm
look at boost::any
but yeah, Abstraction in C is possible, but its usually a case where you have to create the casts your self. Usually a well designed project will do fine with this approach.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
epicasian
Chaos Rift Junior
Posts: 232 Joined: Mon Feb 22, 2010 10:32 pm
Current Project: Gigazilla Engine
Favorite Gaming Platforms: Dreamcast, SNES, PS2, PC
Programming Language of Choice: C/++
Location: WoFo, KY
Post
by epicasian » Mon Oct 11, 2010 8:55 pm
Sweet, thanks for the fast response. I have another question though.
Does this code:
make a = a dereferenced integer cast of argX? I'm asking this because I do't want to copy-paste the code sample and have no idea what it means.
Thanks again.
avansc
Respected Programmer
Posts: 1708 Joined: Sun Nov 02, 2008 6:29 pm
Post
by avansc » Mon Oct 11, 2010 9:46 pm
the (int*)arg takes the void pointer and casts it to a int pointer, the * on the front dereferences that pointer.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
dandymcgee
ES Beta Backer
Posts: 4709 Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:
Post
by dandymcgee » Tue Oct 12, 2010 9:19 am
epicasian wrote:
Is there a way that you can do this, without creating functions like:
Code: Select all
void useInputComponent(void* argInput)
{
InputComponent a;
a = *(InputComponent *) argInput;
//blah
}
void useRenderComponent(void* argRender)
{
RenderComponent a;
a = *(RenderComponent *) argRender;
//blah blah
}
If using C++, this is precisely what templates were designed for.
Falco Girgis wrote: It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!