Search found 283 matches

by Live-Dimension
Mon Jan 25, 2010 7:36 pm
Forum: General/Off-Topic
Topic: WWII and Zombies
Replies: 4
Views: 601

WWII and Zombies

Before you read this - I'm quite the objective person. I'm not trying to suggest that "evil" is better then "good". Theses are just observations and ideas on a subject that I'm tired about hearing again and again. My friend was telling me he wants to watch Dead Snow, which in his...
by Live-Dimension
Mon Jan 25, 2010 5:46 pm
Forum: General Gaming
Topic: Post every time you beat a game.
Replies: 629
Views: 855800

Re: Post every time you beat a game.

After getting sick of studying this c++ book (It's taking longer then I had hoped) I decided to jump onto Game Maker to make a quick basic game (my mate and my gf are both learning Game Maker hence why I have it). Anyway 3 hours later I have a nice simple game. A planet of some kind with an orbital ...
by Live-Dimension
Fri Jan 22, 2010 8:26 am
Forum: Programming Discussion
Topic: Clarifying a few things about c++
Replies: 6
Views: 744

Re: Clarifying a few things about c++

I know all sorts of languages and am pretty decent with PHP (Procedural) and C# (OOP). I understand how to program and quite well in a few languages. I've just never done anything at such a low level like c++ - it's taking time for me to get wrapped around specific concepts. I just don't learn well ...
by Live-Dimension
Mon Jan 18, 2010 5:41 pm
Forum: General Gaming
Topic: First-person Tetris
Replies: 8
Views: 1746

Re: First-person Tetris

Yeah it's pretty tough. I've only managed to get 17,620 points so far. You can mess yourself up bad when your trying to rotate close to the stack. Haha, I got 8920 before I made a mistake that cost me the game. Would be easier if side arrows rotated and down always dropped the piece. Hmm, just got ...
by Live-Dimension
Sun Jan 17, 2010 5:47 am
Forum: General Gaming
Topic: First-person Tetris
Replies: 8
Views: 1746

Re: First-person Tetris

I know. And I've done alot of work with 2D/3D rotations. I should be able to do better then I'm doing :P
by Live-Dimension
Sun Jan 17, 2010 5:30 am
Forum: General Gaming
Topic: First-person Tetris
Replies: 8
Views: 1746

First-person Tetris

by Live-Dimension
Thu Jan 14, 2010 4:24 pm
Forum: Programming Discussion
Topic: Clarifying a few things about c++
Replies: 6
Views: 744

Re: Clarifying a few things about c++

I'll just be answering the pointer part. okay so first thing thats wrong. & does not give you the value of the pointer, & is a reference of a var. I was pretty much saying & did the same as a pointer! Opps! this is kinda a broad subject and can only be learnt by doing. pointers can be f...
by Live-Dimension
Thu Jan 14, 2010 9:36 am
Forum: Programming Discussion
Topic: Clarifying a few things about c++
Replies: 6
Views: 744

Clarifying a few things about c++

Hey all. I know I could probably find out all of this if I sat down and read a big book of learning c++, but I've always found that I barely learn from it. This is partly because I know enough from other languages that I tend to skip 90% of it, partly because it completely zaps my motivation to prog...
by Live-Dimension
Thu Jan 14, 2010 8:25 am
Forum: Programming Discussion
Topic: Methodes
Replies: 3
Views: 504

Re: Methodes

Not exactly relevant, work on getting some more skills up and understanding of c#. Then, since your new to programming, i suggest you start with XNA which is c# based if you want to try out game programming - it handles almost all of the hard yards for you and the tutorials are easy to work with. It...
by Live-Dimension
Wed Jan 13, 2010 5:57 pm
Forum: Programming Discussion
Topic: [SOLVED]OpenGL and SDL regular lags
Replies: 10
Views: 831

Re: OpenGL and SDL regular lags

There is any number of things that could create this programming wise. There IS a known de-sync issue on dual-core/quad-core processors in WinXP, but it generally happens quicker, ie, 1-2 seconds max. It affects other programs, especially other games, but not all programs/games have the issue. It ca...
by Live-Dimension
Wed Jan 13, 2010 5:43 pm
Forum: General/Off-Topic
Topic: Staying Focused...
Replies: 22
Views: 1852

Re: Staying Focused...

Generally I only have this issue when I'm lacking sleep/not eating right so I don't have the energy to really do stuff. I assume it's more complex then this but sometimes the issue is that simple. If your too busy you may find your not getting any decent, good sleep.
by Live-Dimension
Wed Jan 13, 2010 4:44 am
Forum: Programming Discussion
Topic: Header File Organization
Replies: 8
Views: 713

Re: Header File Organization

Also, #pragma once doesn't seem to always work correctly, in my experience with MSVS compilers. #ifndef #define #endif always works. Some compilers won't support it as it's not a proper c++ standard. *always* use #ifndef #define #endif if only for portability. It's not that difficult to do, really....
by Live-Dimension
Wed Jan 13, 2010 4:25 am
Forum: Programming Discussion
Topic: Web Development IDE
Replies: 9
Views: 827

Re: Web Development IDE

Having done alot of web-programming myself, I've come to understood that there's nothing better then no IDE, just a good old text-editor and a bunch of firefox addons. The reason is simple, really (my views, not always everyone else's). Most of the IDE's for web development are sadly bloated and ove...