Search found 6110 matches

by Falco Girgis
Mon Aug 26, 2013 3:47 pm
Forum: Game Development
Topic: C++ or C#?
Replies: 8
Views: 5805

Re: C++ or C#?

C++.
by Falco Girgis
Thu Aug 22, 2013 5:15 pm
Forum: General/Off-Topic
Topic: Where did it all begin for you?
Replies: 45
Views: 28878

Re: Where did it all begin for you?

Cheers for the epic walls of text. :cheers:
by Falco Girgis
Thu Aug 22, 2013 10:24 am
Forum: General/Off-Topic
Topic: Where did it all begin for you?
Replies: 45
Views: 28878

Re: Where did it all begin for you?

Damn, someone necro-ed this bitch! Well, first my biological father used to force me to code QBasic at around the age of 6. I wrote a few extremely simple programs, but I was not able to grasp very much of programming. My dad used to get pissy and basically make me feel like shit about it, so I comp...
by Falco Girgis
Mon Aug 19, 2013 11:10 pm
Forum: General Gaming
Topic: Your favourite console?
Replies: 30
Views: 29601

Re: Your favourite console?

Mine is Gamecube, but since that isn't there I'd pick SNES because of all the sick games on it. Gamecube controllers are my all time fav controllers, I have a GC to USB controller adapter and play games like Silent Hill 2 and Alone in the Dark 4 with it. I find lots of controllers fit awkwardly in ...
by Falco Girgis
Wed Aug 07, 2013 2:39 pm
Forum: Programming Discussion
Topic: Mac GCC and ifstream command line fix? [SOLVED]
Replies: 7
Views: 3852

Re: Mac GCC and ifstream command line fix?

Why the fuck... I wonder if there's some OSX-specific flags you can pass to GCC on OSX to make it disable retardism...
by Falco Girgis
Wed Aug 07, 2013 9:38 am
Forum: Programming Discussion
Topic: Mac GCC and ifstream command line fix? [SOLVED]
Replies: 7
Views: 3852

Re: Mac GCC and ifstream command line fix?

Interesting.

Try this at the command-line to display the working directory of your processes:

Code: Select all

lsof -d cwd
by Falco Girgis
Tue Aug 06, 2013 4:42 pm
Forum: Programming Discussion
Topic: Mac GCC and ifstream command line fix? [SOLVED]
Replies: 7
Views: 3852

Re: Mac GCC and ifstream command line fix?

-D_GLIBCXX_DEBUG=0 -D_GLIBCXX_DEBUG_PEDANTIC=0 Although I highly, highly doubt that is your actual problem. I have used GCC from the command-line many times before, and that is what IDE's like QtCreator are doing behind the scenes. Are you positive that your file is actually in your application's w...
by Falco Girgis
Mon Jul 29, 2013 10:32 am
Forum: General/Off-Topic
Topic: Falco, new ES forum avatar for you
Replies: 5
Views: 8373

Re: Falco, new ES forum avatar for you

We kicked off OVER half the team for sitting around with their thumbs up their assholes spectating while we carried the burden of the project. Please list all of the contributions everyone kicked from the team has made to the project in the last three years. Clearly you have a good point too... Espe...
by Falco Girgis
Tue Jul 23, 2013 2:39 pm
Forum: Programming Discussion
Topic: References vs. Copy of an Object[SOLVED]
Replies: 4
Views: 6729

Re: References vs. Copy of an Object

Return a constant reference, unless, as MarauderIIC said, there is an error case. Then return a constant pointer so that you can return NULL. There is really no point in returning objects like that by value in C/++. You can still keep keep data encapsulated and require modification via a separate se...
by Falco Girgis
Sat Jul 20, 2013 1:26 pm
Forum: General/Off-Topic
Topic: Falco, new ES forum avatar for you
Replies: 5
Views: 8373

Re: Falco, new ES forum avatar for you

LMFAO!!!!

Just reposted this on Facebook after almost pissing my pants. :mrgreen:
by Falco Girgis
Thu Jul 18, 2013 5:33 pm
Forum: Programming Discussion
Topic: C++ default operator= implementation
Replies: 12
Views: 10732

Re: C++ default operator= implementation

MarauderIIC wrote:I thought it looked like one, derp. I brainfarted and combined his non-pointer syntax with your stuff about placement new. embarrassing
lol you're fine. For a minute I thought that was legit too. :lol:
by Falco Girgis
Thu Jul 18, 2013 2:27 pm
Forum: Programming Discussion
Topic: C++ default operator= implementation
Replies: 12
Views: 10732

Re: C++ default operator= implementation

^ that will not invoke the destructor. Your extra scope there will remove the pointer from the stack, not destroy what it's pointing to. That's a memory leak.
by Falco Girgis
Thu Jul 18, 2013 7:53 am
Forum: Art, Music, and Design
Topic: Looking For 2D Pixel Artist -- Side Scroller Styled Shooter
Replies: 13
Views: 24834

Re: Looking For 2D Pixel Artist -- Side Scroller Styled Shoo

We definitely do have a few REALLY good pixelers/artists around these parts... but they're mostly working on their own projects (or ES), I think. :mrgreen:
by Falco Girgis
Mon Jul 15, 2013 4:53 pm
Forum: Programming Discussion
Topic: C++ default operator= implementation
Replies: 12
Views: 10732

Re: C++ default operator= implementation

Just a few things, gentlemen... Let's say you do this: class foo { public: std::string bar; int baz; }; foo f; f is instantiated on the stack and then constructed using the implementation-provided default constructor, I'm just being anal, but if you're actually declaring that at global scope, f is b...
by Falco Girgis
Mon Jul 15, 2013 4:15 pm
Forum: General Gaming
Topic: Post every time you beat a game.
Replies: 629
Views: 886853

Re: Post every time you beat a game.

Just beat Final Fantasy IX... I have never dreaded beating a game so much in my life. Over the last few weeks, I have absolutely fallen in love with this game. I seriously didn't want to see it end... I have played every FF (minus 13, but that's because it's fucking terrible), and this is by far my ...