So I made a game that I want all of your opinion on. I’ve worked roughly 2 days on this game, so obviously it could be a lot better than it currently is. It’s kind of like one of those really old space shooter games, except I made it.
Tell me what you think.
Well, the controls are terrible. I can’t move and shoot at the same time, and movement, when it does occur, is slow and juddery and appears bound to my key repeat rate.
The only “bug” I found was that you most likely moved the ship inside keyPressed. This means that the ship will only initially move 1 step, then after a slight pause, it will keep moving. The fix is to have a boolean flag for right and left so that you poll their values in you game loop.
private boolean left, right;
public void keyPressed(KeyEvent key) {
if(key.getKeyCode() == KeyEvent.VK_LEFT)
left = true;
if(key.getKeyCode() == KeyEvent.VK_RIGHT)
right = true;
}
public void keyReleased(KeyEvent key) {
if(key.getKeyCode() == KeyEvent.VK_LEFT)
left = false;
if(key.getKeyCode() == KeyEvent.VK_RIGHT)
right = false;
}
//inside game loop:
if(left)
x -= speed;
if(right)
x += speed;
Yeah I’ve noticed that, I’ve kind of hated the fact that you can only press one button at a time but like I said before, I haven’t really worked on it much. xD I’m actually trying to work on another game at this moment, but I’m not sure what to make. I’ve already made a Blackjack and bomberman, and some other tiny games, but I can’t really think of any good ideas. If someone has an idea, please reply to this.
a topdown online shooter with oversized text and absurd effects? something like unreal tournament but then topdown? :
That should be more then enough challenge me thinks
I’ve been just basically “cloning” games, so to speak, for experience so I can incorporate more techniques inside MY OWN game, so it could be the best that it could possibly be.
For now, I guess you don’t have to tell me completely new ideas, but maybe just games that already exist.
I kind of like that idea Sky.
Possibly a game that is controlled by chance, either by rolling a dice or by playing a slot machine.
I’ve played this one game on the Android market and it’s kind of like a war game and you get new powerups and stuff based on what you get when you play the slot machine. It was kind of interesting.
And any game that involves cards would be really good, because I still have the same cards from when I made that blackjack game. xD
Micromanaging one minion? I won’t prejudge, but I’d call it a tall order to make that fun… Maybe if it were as frantic as a shmup, but then, well, it’s a shmup. Maybe a shmup where you can call on other minions to saturate the defenses. Hmmm…
I think there is a Zombie-theme game by Jagex where you play the side of the Zombies, chasing down humans in a shopping mall. It was fun, but I don’t have a link anymore. Too lazy to search for it.
Holding the following two ideas in one’s head at one time seems to me to be kind of oxymoronic:
wanting do to something original
wanting someone else to tell you what to do
Originality comes from looking into yourself. Then, you have to be willing to reveal this aspect of yourself to the world.
Its going to be so fun! all you have to do is press arrow up, and hope you wont get killed. then you die, get another minion, do the same, you die again. Its never stopping, you see? so endless amounts of fun!
I wonder why nobody has ever made it…
Anyways, Just copy a game, copy it good and then add new elements to it :).