Page 1 of 1

GE preprocessor directives

PostPosted: Fri Aug 03, 2012 3:17 pm
by AliceXIII
a list of preprocessor directives and which ones GE recognizes:

#define //GE can use this one

#error //GE recognizes this one but doesn't work the exact way it should (wouldn't advise the use of this one)

#import //GE doesn't recognize import

#undef //GE can use this one just the opposite of define

#elif // GE can use

#if //GE can use

#include //GE can use

#using //GE doesn't recognize using

#else //GE can use

#ifdef //GE can use

#line //GE doesn't recognize line

#endif //GE can use but it when i tried it recently GE's been ignoring it and telling me that im not ending my #if with a #endif even though i am..

#ifndef //GE can use

#pragma //GE can use but recognizes none of the c/c++ pragma's out there (wouldn't use either)

http://msdn.microsoft.com/en-us/library/3sxhs2ty(v=vs.80).aspx

^^the link can explain all these if you need that, pragma's would have been awesome but im assuming they were allowed for some future implementation?

and the #endif i've used before and it worked but when i just tried it GE is ignoring it completly??

Re: GE preprocessor directives

PostPosted: Fri Aug 03, 2012 7:10 pm
by SuperSonic
Wait a minute, you can #include library files in c++? :o

Re: GE preprocessor directives

PostPosted: Fri Aug 03, 2012 8:56 pm
by AliceXIII
Edit- fixed the link wasn't displaying right..

yes of course you can use #include in c++ it's pretty much used for every program out there :P

Re: GE preprocessor directives

PostPosted: Fri Aug 03, 2012 9:32 pm
by NightOfHorror
hey, I think I remember this when I wanted to learn some c++. Like I remember cout and cin and stuff which i wish it worked in GE. Thanks and +1 for this Alice. :D

Re: GE preprocessor directives

PostPosted: Fri Aug 03, 2012 9:41 pm
by AliceXIII
I just like to discover what is possible in GE which is alot :D

Re: GE preprocessor directives

PostPosted: Sun Aug 05, 2012 8:29 pm
by SuperSonic
I wrote:Wait a minute, you can #include library files in c++? :o
AliceXIII wrote:yes of course you can use #include in c++ it's pretty much used for every program out there :P
Haha, I'm sorry. That was a typo. I meant to say GE xD

Re: GE preprocessor directives

PostPosted: Mon Aug 06, 2012 1:20 pm
by AliceXIII
Wait a minute, you can #include library files in c++?


lol i was going to say..... :shock:

but in GE i think the #include directive is only supported as long as your game is in .ged mode i think exported versions don't work or at least thats what i heard anyone who knows for sure feel free to correct me, but you could also just make a file and include it into your .ged then export and see if it does or not :wink:

Re: GE preprocessor directives

PostPosted: Mon Aug 06, 2012 6:51 pm
by SuperSonic
Cool! I'll try that :P