Stompy's Gamedev Journal

Profile
None
Awesome. Awesome to the max.
1,952 comments
686 entries
Advertisement
Stompy9999
April 02, 2005
And then there were errors...
I finished the entire code for Pong Advanced, but now I'm getting this error that I can't get around. It's on this line of code:

*(unsigned long*)0x4000000 = (0x5 | 0x400);

Here is the error:

Quote:parse error before "unsigned"


Any suggestions?
374 views
Stompy9999
April 01, 2005
Arrgh! April Fools, my old nemesis!
Why can't I see my avatar when I post in the forum! And how come this day comes every year and I still get tricked like a moron?!

However, the best april fools joke evar was of course, from IGN (I think?). See, one year, IGN claimed that you could get Luigi in Pokemon if you fed a Snorlax a water s…
381 views
Stompy9999
March 31, 2005
Console dev...
Ever since I started programming (about a year ago), I've always been interested in Console development. This is not suprising, as I mostly play console games and I hardly ever play games on the PC. Starting GBA development has been very fun so far, as I finally get to work with a console. I don't …
254 views
Stompy9999
March 31, 2005
Time for work...
Well, it looks like my first GBA game will be pong, but my second one will be battleship, as was suggested by Noaktree. I've already determined which bitmap mode I will be using, namely, mode 5. I think I will need a built in double buffer. I don't really care about the low resolution, I won't be n…
242 views
Stompy9999
March 30, 2005
GBA time!
I'm pretty confident now in my mad GBA coding skillz (the z is for extremeness), so I now want to make a game. Problem is, I can't think of a game I want to make. Can you guys suggest any games I should make? Here are my guidelines:

- Not Breakout! I already have done that.
- Using just geometric sha…
343 views
Stompy9999
March 29, 2005
GB thoughts...
Let's get one thing out of the way, the Gameboy is an awesome device. I mean, what else can play Tetris that well?

A month ago I picked up the Gameboy Development Kit. It came with a compiler, an IDE, and some graphics programs. This is the origional Gameboy, by the way. Now, if you've ever played a…
312 views
Stompy9999
March 28, 2005
Oh noes, hexidecimal!


int main()
{

unsigned short* VideoBuffer = (unsigned short*)0x6000000;
*(unsigned long*)0x4000000 = (0x3 | 0x400);

VideoBuffer[80 * 240 + 120] = 0xFFFF;

while(1) {}

return 0;
}




Who dosen't love GBA code?
306 views
Stompy9999
March 27, 2005
Yay, menu!
I didn't feel like working on asteroids today, so on request from those at 1dp, I added a menu screen to Stompy. So... Yay for me.[smile]
229 views
Stompy9999
March 26, 2005
Java is cool too...
Well, I picked a copy of GD magazine. I've never read it before, so I didn't really know what to expect. It had some good articles, but I didn't completely understand most of them (yes, I'm a noob, or whatever). Whether I will get a subscription is debatable.

I'm very interested in J2ME development,…
272 views
Stompy9999
March 22, 2005
Halo...
I was playing Halo 2 today when I realized the most perfect and evil strategy to winning.

Start a new custom slayer game and go to coagulation. Make sure you're by yourself when you start the game. Grab both of the sniper rifles and get a banshee. Fly to one of those high ledges with a banshee. Now …
298 views
Stompy9999
March 22, 2005
I can't come up with a title...
Well, I'm almost done with my Asteroids clone. I might finish it tonight, but probably not.

I was look over the dreamcast articles on this site and am thanking about making some dreamcast games in the future. If anyone could suggest any good websites on this subject than that would be greatly apprec…
281 views
Stompy9999
March 21, 2005
Yay! Sprites!
Well, I finished getting the sprites for my asteroids game. Here they are:









Ah, photoshop, what would I do without you?
322 views
Stompy9999
March 20, 2005
I can't make up my mind...
As most of you readers have probably noticed, I seem to change my mind about what project I wish to work on quite often. This is not uncommon for me, but might seem strange to most of you.

I just want to state, for the record, that I will be working on a Asteroids clone for the next few days. Meanin…
326 views
Stompy9999
March 20, 2005
Ummm...
You know, I just had a thought. If I can make a nice tiled bg, and a rotating player object,

Why am I not making Asteroids!
289 views
Stompy9999
March 20, 2005
Race cars are cool...I think.
Here is what I've been working on today:



It's basically a demo where you drive a race car around a track. I plan on adding a computer opponent for the actual game.

I think for the AI, I will use neural networks to control the opponent. This should make for some pretty intelligent competietion.
257 views
Stompy9999
March 18, 2005
I have 15,000 Tetris ideas!
Well, I think I'm going to start working on my Tetris clone today, because I will have lots of free time next week. You wanna know why?

Spring Break!

Oh, and I love spagetti code!


#include
#include
#include
using namespace std;int main(){int guess, number;
srand(time(NULL));number=rand()%10;cout<<…
318 views
Stompy9999
March 16, 2005
Hola!
Well basically, Stompy is done, but it requires alot more polish. Remember when I said I wouldn't do Tetris? Well after reading this I have my inspiration to work on a tetris game. I'm not gonna start my vertical shooter game till after I completely finish Stompy, so these two projects should keep …
308 views
Stompy9999
March 15, 2005
Almost finished!
Well, the core game engine for Stompy is completely done! I'm just putting in the finishing touches, but am too lazy to finish it tonight.

On another note, the reason I mentioned Raptor yesterday was because my next game is going to be a vertical shooting game with planes and stuff. Here are some sp…
304 views
Stompy9999
March 14, 2005
An important PSA


If you haven't played Raptor yet, I have a message for you:

PLAY IT!

That is all.
482 views
Stompy9999
March 14, 2005
fond memories...
I was in my room the other day when I found an old gamedev book of mine. This book came with a gamedev kit I bought a long time ago. In truth, this kit is really what turned me away from gamedev for awhile. It wasn't that it was bad, I mean it did come with a nice C++ compiler and a modeling progra…
382 views
Stompy9999
March 13, 2005
The thing about errors is...
Newest screenshot:


Well, after taking 20 minutes to make the enemy code, and another 10 minutes to fix all of the errors with the enemy code, this is the result. Even worse, a windows error appears everytime I close the program.

So obviously, fun was had by all.

On an unrelated topic, I think I'm goin…
358 views
Stompy9999
March 12, 2005
Halfway there!
Well I finished for the most part. Just no enemies yet. Here is a screenshot:



Although on the outside it doesn't look different, inside the difference is night and day. The game engine is now completely object oriented, which helps me to keep the code organized.

Next step: Things to shoot
365 views
Stompy9999
March 12, 2005
My brain hurts.
So I've been working alot on recoding the Stompy engine today. It's taking alot less time than I thought, but than again I haven't put the enemy code in there yet...

I was sitting there making my player class, when the thought hit me, I want to make a space shooter game. The only thing that has held…
386 views
Stompy9999
March 11, 2005
Namespaces...
Well I tried to encapsulate my object base class and my globals into some classes, and encapsulate that in a namespace. The end result:


// game data namespace

namespace Game_Data
{

// Basic object data

struct SObject
{

bool alive;
int x, y;
int width, height;

};

// Base ob…
470 views
Stompy9999
March 11, 2005
Objects for dummies
Well, I'm going to recode the engine for Stompy this weekend. Here is a screenie of the origional one:



The origional used pure C code and was a mess of procedural code. This time I'm using some OOP to handle all of my game objects. All game objects will be inherited from a single abstract base class…
379 views
Stompy9999
March 10, 2005
Yay! My first entry!
Hey, I got a GDnet+ membership! In this journal I will put news about my current projects.

Currently I'm working with 1d Productions to remake an old game of mine called Stompy.

I'll upload my Breakout clone to the GDS later tonight.
441 views
Advertisement

Popular Blogs

shawnhar
Generalist
101 Entries
9 Followers
15 Entries
10 Followers
johnhattan
Programmer
1,277 Entries
47 Followers
ApochPiQ
Generalist
628 Entries
44 Followers
dgreen02
Generalist
338 Entries
56 Followers
Advertisement