Doom 3 source code has just been released!
https://github.com/TTimo/doom3.gpl
Search found 7 matches
- Tue Nov 22, 2011 6:16 pm
- Forum: Programming Discussion
- Topic: Id Releasing Doom 3 Source Code
- Replies: 12
- Views: 3375
- 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.
- 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/
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/
- 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.
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.
- 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...
- 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"...
- 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.