Search found 7 matches

by eaane74
Tue Nov 22, 2011 6:16 pm
Forum: Programming Discussion
Topic: Id Releasing Doom 3 Source Code
Replies: 12
Views: 3375

Re: Id Releasing Doom 3 Source Code

Doom 3 source code has just been released!
https://github.com/TTimo/doom3.gpl
by eaane74
Fri Dec 03, 2010 4:41 pm
Forum: Programming Discussion
Topic: Could someone help a newby solve a problem in SDL
Replies: 12
Views: 1337

Re: Could someone help a newby solve a problem in SDL

It does focus more graphics than the SDL api, which is what makes lazyfoo's tutorials so good.
by eaane74
Fri Dec 03, 2010 2:17 pm
Forum: Programming Discussion
Topic: Could someone help a newby solve a problem in SDL
Replies: 12
Views: 1337

Re: Could someone help a newby solve a problem in SDL

Sweet. I am glad you got it working.

I have nothing against lazyfoo, it is a excellent site to learn SDL and only SDL.
My only problem is the he does it with bad programming habits

Here is another good SDL tutorial site:( where I learned SDL ) http://iki.fi/sol/gp/
by eaane74
Thu Dec 02, 2010 4:40 pm
Forum: Programming Discussion
Topic: Could someone help a newby solve a problem in SDL
Replies: 12
Views: 1337

Re: Could someone help a newby solve a problem in SDL

Are the SDL libs compiled for VS or mingw?
I am sure that makes a difference.

Some things to try:

Call SDL_GetError() and see if it gives you any more info
Or implicitly call SDL_UpdateRects( screen, 0, 0, 0, 0 ) which is what SDL_Flp is doing.
by eaane74
Thu Dec 02, 2010 11:48 am
Forum: Programming Discussion
Topic: Could someone help a newby solve a problem in SDL
Replies: 12
Views: 1337

Re: Could someone help a newby solve a problem in SDL

I really dont see anything wrong with your load_files() function. Have you checked the return value? Your problem could also reside in the load_image() function. It is almost always better to use asset() statements to determine if you are dealling with a NULL pointer. One other thought: Since you cr...
by eaane74
Wed Dec 01, 2010 6:38 pm
Forum: Programming Discussion
Topic: Could someone help a newby solve a problem in SDL
Replies: 12
Views: 1337

Re: Could someone help a newby solve a problem in SDL

Ok well I've been following lazyfoo.net but I just can't do the "event driven programming" tutorial so here's my code, what is it that I am doing wrong? load_files() keeps returning 2 for me? im using Code::Blocks IDE and GCC compiler if that helps //Headers #include "SDL/SDL.h"...
by eaane74
Wed Dec 01, 2010 6:12 pm
Forum: Game Development
Topic: What to do After Learning C++??? suggestions would be help!!
Replies: 8
Views: 1856

Re: What to do After Learning C++??? suggestions would be help!!

I would suggest SDL over allegro, much better documentation and a really good dev community.