So... I found out about void pointers today...

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

Post Reply
User avatar
epicasian
Chaos Rift Junior
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

So... I found out about void pointers today...

Post by epicasian »

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.
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: So... I found out about void pointers today...

Post by avansc »

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"
User avatar
epicasian
Chaos Rift Junior
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

Re: So... I found out about void pointers today...

Post by epicasian »

Sweet, thanks for the fast response. I have another question though.

Does this code:

Code: Select all

a = *(int *) argX;
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.
User avatar
avansc
Respected Programmer
Respected Programmer
Posts: 1708
Joined: Sun Nov 02, 2008 6:29 pm

Re: So... I found out about void pointers today...

Post by avansc »

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"
User avatar
dandymcgee
ES Beta Backer
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:

Re: So... I found out about void pointers today...

Post by dandymcgee »

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! :twisted:
Post Reply