|
Game Development Showcase
Track this GDS Entry |
Asteroid ES v.0.80.01 |
|
Developer | Battagline |
Genre | Arcade |
Platform | Windows |
Downloads | 16284 |
About:
Asteroid ES is an Asteroid Clone I made using the Epoch Star Engine to test the flexability and stability of the Epoch Star Engine.
Upgraded with weapon powerups, enemy ship flyby attacks, and joystick controls.
|
|
Please offer only constructive criticism. The intent of the GD Showcase is to help the developer create the best game they possibly can. Show them you support their efforts when posting.
| Battagline
|
Posted - 6/19/2005 9:44:57 AM | I created Asteroid ES to test the flexability and stability of the game engine I wrote for Epoch Star. My goal with to pull together a feature rich Asteroids game on a Saturday afternoon. Unfortunately (or fortunately), creating this game exposed several bugs in my Engine, so I ran out of time and the game turned out to be a somewhat vanilla Asteroids clone. I will be going back later as time permits to add more of the features that I had initially envisioned.
| |
| mumpo
|
Posted - 6/28/2005 1:12:49 PM | Cool asteroids clone! It looks great. Suggestions:
1. Up the turning speed. It is a bit sluggish for asteroids.
2. Impose some sort of minimum distance asteroids must be from the ship when they spawn; I was killed pretty much instantly when an asteroid spawned either on top of my ship or right in front of it (I had no time to see which). Alternately, you could impose a minimum radius from the center of the screen which the asteroids must not spawn in, which would make it an important strategy to get inside that area before destroying the last asteroids.
3. The flame coming out the back of the ship looks weird. It should only be visible when you are firing the main engine, meaning when the forward arrow is down. When that is happening, the flame particles should spawn with a velocity equal to the ship's velocity plus a vector pointing the opposite direction as the ship (not as the ship's velocity) scaled to be a constant magnitude. That way, the ship will look like it has an engine instead of a hull breach and a fire. When the back arrow is down, the flame particles should get the ship's velocity plus a vector pointing the same direction as the ship scaled to be a constant magnitude (probably the same as for the main engine). The code looks like this:
kParticle.kVeloctiy = kShip.kVelocity+CVector(0.0, -ENGINE_PARTICLE_SPEED).GetRotated(kShip.fHeading);
kParticle.kVeloctiy = kShip.kVelocity+CVector(0.0, ENGINE_PARTICLE_SPEED).GetRotated(kShip.fHeading);
Let me know if you have questions about that.
I liked the asteroid-asteroid collisions. Keep at it!
| |
| Battagline
|
Posted - 6/28/2005 2:25:33 PM | With the newest version, I fixed the problem with Asteroids appearing too close. I also added some cool new features like Joystick controls, Power Ups, and Enemy ships that randomly fly through the system and attack you.
One of the power ups is increased turning rate, but I may pump the default turning rate up anyway since it is kinda sluggish.
As for the exhaust, I don't want to have it only running when the ship is accelerating. Right now, it's the easiest way to determine exactly what direction you are going, and it makes it easier to slow down, so I don't think I'll be taking your advice on that suggestion.
Thanks for the feedback
| |
| mumpo
|
Posted - 7/5/2005 1:59:05 AM | I tried the new version. I like the changes, although I'm sad that you didn't take my suggestion on the exhaust .
Bugs:
1. One time, no asteroids spawned at all after I destroyed everything on-screen except me. I didn't have enough time to figure out how to reproduce the probelm, though.
2. Another thing I noticed, and I don't know if this was on purpose or not, was that when I got a power-up, it seemed to boost the other ships as well.
Suggestions:
1. Move the origin of the rocket plume on the big ships to the back of the ship, instead of putting it at the cockpit or whatever. Or is that supposed to be muzzle flash?
2. Randomize the order of the power-ups. This makes each game a little different, which is always nice, and it gives people who can't get that far a chance to see more different power-ups. If you think some power-ups are too powerful to give out early on, you might group them into groups of three or five and randomize within those groups.
Keep up the good work.
| |
| Battagline
|
Posted - 7/6/2005 12:23:10 PM | Thanks for the suggestions and bug info.
Quote:Original post by mumpo
Bugs:
1. One time, no asteroids spawned at all after I destroyed everything on-screen except me. I didn't have enough time to figure out how to reproduce the probelm, though.
|
I haven't seen that one yet. I'll keep a look out for it.
Quote:
2. Another thing I noticed, and I don't know if this was on purpose or not, was that when I got a power-up, it seemed to boost the other ships as well.
|
That's how I designed it. I thought it would be cool to add a new level of difficulty when you got a power up. Maybe it was just annoying, I'm not sure.
Quote:
Suggestions:
1. Move the origin of the rocket plume on the big ships to the back of the ship, instead of putting it at the cockpit or whatever. Or is that supposed to be muzzle flash?
|
That's meant to be a muzzel flash. Maybe it looks a little weird, I'll examine it a bit closer.
Quote:
2. Randomize the order of the power-ups. This makes each game a little different, which is always nice, and it gives people who can't get that far a chance to see more different power-ups. If you think some power-ups are too powerful to give out early on, you might group them into groups of three or five and randomize within those groups.
|
Unfortunately I can't really do that. The power ups get progressively better and are all weapon related, so randomizing them doesn't make a lot of sense.
The order goes something like this
1. Faster fireing rate
2. Longer weapon range
3. Even faster fireing rate
4. Even longer fireing range
5. Multi directional attack.
I suppose I could randomize it a bit, I'll have to look into what that would take, but the Multi-Directional attack makes the weapon super powerful so that has to happen last. I'll think about it.
Thanks again
| |
All times are ET (US)
|
|
|
|
|