For the best experience on desktop, install the Chrome extension to track your reading on news.ycombinator.com
Hacker Newsnew | past | comments | ask | show | jobs | submit | history | rsa's commentsregister

evernote


awesome idea!


Thanks for the links.


Thanks for the link. I have mastered all the hidden features. :)


Thanks for the link. Awesome paper.


Looks great! What lang/technologies are you using ?


rails and jquery hosted on heroku recurly for payments


try topcoder.com


yeah thats the big boss of programming rush!



Can anyone give a more insight on how these games are build ?


Where to begin? Do you know how to program?

I would guess download Flex and start coding.


Yes I do. I am not a game programmer though.


I think all you need is a game loop (that is the difference to web programming).

while(isGameRunning){

   processInputs();

   processMonsters();

   updateScreen();
}

It really is quite straightforward. Start with something simple like Tetris.


I thought of some more things:

- inputs are usually callback events, so the thing I usually did was accumulate all inputs in the callback events and then processed them in the processInputs() method. Accumulate was something simple like pressedKeys |= pressedKey

- updateScreen() is usually just a call to repaint() or something like that, which makes the Operating System call your applications paint() method. My paint method looks like

paint(Graphics g){

drawBackground(g);

drawCounters(g);

drawMonsters(g);

drawPlayer(g);

}

and so on... Flex does things in a slightly different way, so it really depends on the technology you choose.


Good advise. I'd recommend starting with something like Asteroids, because it's even easier than Tetris (no tricky rotation/bounds logic) and more rewarding.


Thanks for the advise. I'll try that.


I'm guessing deciding on the game's look&feel, designing and integrating the graphics and tuning the difficulty is the hard part.


Definitely. A good rule to follow is that almost everything that turns out to to be hard is something you never thought of before you started the game.

So my advice to anyone who wants to make a game is to just start, there's not really any other way to learn.


That is also why it is so much fun ;-)


Dive into Python is a good book. Its available online.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search:

HN For You