Search found 24 matches

by DaveB
Mon Dec 07, 2009 1:21 pm
Forum: Game Development
Topic: Ellipsis Engine
Replies: 17
Views: 3115

Re: Ellipsis Engine

Ok so Wednesday to Saturday I have off work, so I will be able to work more on the engine for those of you following my progress. Maybe in a few weeks or when I have more to show off I can make a youtube video showing off the engine.
by DaveB
Fri Dec 04, 2009 12:10 pm
Forum: Game Development
Topic: Ellipsis Engine
Replies: 17
Views: 3115

Re: Ellipsis Engine

Yeah no problem, it actually helps me out to include the source, so there for I guess it helps everyone else out hehe, and yeah this engine might be used in future team projects so I am trying my hardest to keep it clean as I can
by DaveB
Thu Dec 03, 2009 6:26 pm
Forum: Game Development
Topic: Ellipsis Engine
Replies: 17
Views: 3115

Re: Ellipsis Engine

Yeah lol I wasn't sure if the structure of the engine was going in the right direction or not so its refreshing to hear that at least one person thinks I amm doing something right lol :D
by DaveB
Thu Dec 03, 2009 6:00 pm
Forum: General/Off-Topic
Topic: SSD powah
Replies: 15
Views: 2161

Re: SSD powah

dude thats because you dont download the awsome HD PR0N
by DaveB
Thu Dec 03, 2009 5:48 pm
Forum: Game Development
Topic: Ellipsis Engine
Replies: 17
Views: 3115

Re: Ellipsis Engine

Cool thanks for the support :D, yeah Ive checked out SFML before, but I am just more comfortable with SDL.
by DaveB
Wed Dec 02, 2009 6:08 pm
Forum: Game Development
Topic: Ellipsis Engine
Replies: 17
Views: 3115

Re: Ellipsis Engine

Yep, yea lol forgot to put that.
by DaveB
Wed Dec 02, 2009 5:50 pm
Forum: Game Development
Topic: Ellipsis Engine
Replies: 17
Views: 3115

Ellipsis Engine

Ok so a few weeks ago, I had the Idea of making a 2D game engine using SDL and finally I started working on it. Ellipsis Engine Ellipsis Engine, is first and foremost a 2d game engine being programmed in C++ that uses SDL for the main systems such as rendering(which I plan to move to OpenGL later on...
by DaveB
Sun Nov 29, 2009 2:25 am
Forum: Programming Discussion
Topic: C++ Key Press?
Replies: 2
Views: 351

Re: C++ Key Press?

you can use a combination of _kbhit() (to check if a key was hit) and _getch() (to get the value of the key that was hit).
if you are using an API such as SDL, there is an event called SDL_KEYDOWN you can check when polling for events
by DaveB
Sat Nov 21, 2009 2:02 pm
Forum: Programming Discussion
Topic: Issues with SDL and VC++ 2008
Replies: 4
Views: 720

Re: Issues with SDL and VC++ 2008

Well if you added the Include directory to your VC++ directories then it should be

Code: Select all

#include <SDL.h> and not
 #include "SDL.h"