Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: What kind of games are best to start with?

  1. #1

    What kind of games are best to start with?

    I'm currently considering creating (or at least start with ) a game, and I've got a few ideas which seems to be fun enough to try making.

    I'm just abit unsure about taking too difficult things on. Maybe a project with others might be a better idea, but I don't know.

    My previous experience in game programming is limited to creating a shoot'em thingy in Turbo Pascal, and Snake also in TP some years ago. Now to get started again, I might need a few advices :?

    My ideas so far are:
    1) Space Strategy - (basically like Master of Orion, just simpler)
    Should basically be 2D with planets, ships and so on to move around turn-based. (also considering to do it as an online game with client/server)

    2) Catapult game, a 2 player game where the goal is to hit the other player's man. To do this you have to tear down quite a bit of his wall first. (If someone remembers the game from an old catridge-box back in the early 80's) (2D, turn-based)

    Those are the ideas I've been thinking about most, other ideas:
    - Catapult-game in 3D with variable types of walls. (I've never done 3d)
    - I'd like to see Super Cars (The Amiga-game) on a PC someday
    - Battleship with IP-connection between players.

    I'm full of ideas but abit slow on the start. Any comments?

    -------
    Eriken (-20 degrees Celsius outside, anyone got a blanket?)

  2. #2

    What kind of games are best to start with?

    How about a 3d version of this, where you have to hit a moving target. You know it makes sense!

    Of course, you might want to have a think about the DGDev team of winners who are planning to write some sort of game. Or something. Various threads about this are peppered throughout the forums - here are a few (you might have to wade through a bit of off-topic stuff, but that's half the fun!):

    one
    two
    three

    There may be others too - it's kinda hard to follow
    "All paid jobs absorb and degrade the mind."
    <br />-- Aristotle

  3. #3

    What kind of games are best to start with?

    Oh right, cow-flinging in 3D, I'll leave that to the pros and farmers who wants to do something with their computer :twisted:

    I have been reading through the DGDev-Project-threads earlier (Oh yes, I've been stalking for a while) I'm not sure that I can help there. Maybe I can join on as the Newbie?

  4. #4

    What kind of games are best to start with?

    A good game to start with is some sort of Space Invaders game, just to get the basics and the feeling... Well most people than advice you to move slowly up the ladder, but I won't ! After that just rush in, write a few really bad unfinished games and end that line of failure with sometime that is viewable for the audience ... If you done that you can take on projects you like!
    Do it by the book, but be the author!
    <br />
    <br />Visit the Lion Productions website at:
    <br />http://lionprod.f2o.org

  5. #5

    Re: What kind of games are best to start with?

    Quote Originally Posted by Eriken
    2) Catapult game, a 2 player game where the goal is to hit the other player's man. To do this you have to tear down quite a bit of his wall first. (If someone remembers the game from an old catridge-box back in the early 80's) (2D, turn-based)
    Hi Eriken,
    As has already been mentioned start with something simple that will allow you get to get to know your API of choice ( DirectX, OpenGL maybe even SDL ) and then build on that knowledge that way you willl build on your successes and will be more likely to complete each project as it gets more complex.

    Just a note on the Catapults game. There is one that makes uses of SDL and runs on Windows and Linux ( using JEDI-SDL for SDL ) and you can get more info about it @
    http://www.global-rd.com/catapults/
    The game supports "classic" style and "real time" game modes.

    Ariel ( the owner of the above version of catapults ) has also released the source code .
    <br /><br />There are a lot of people who are dead while they are still alive. I want to be alive until the day I die.<br />-= Paulo Coelho =-

  6. #6

    What kind of games are best to start with?

    Thanks for the ideas.

    I'll think I'll try something easy just to see if I actually can create anything at all. And if I don't end up changing my mind it'll be the 2D Catapult thing, which isn't exactly like the thing Ariel created. It's more like the cow-flinging thing where the goal is to knock down the opponent's wall and hit his man. Should be easy enough, if I can sort out gravity (Houston, I do have quite a few problems)

    And if that works or gets completed I'll just throw myself at the Space-stuff, or maybe just call NASA and ask if they need an astroid expert. :lol:

    --------
    Eriken

  7. #7

    What kind of games are best to start with?

    Gravity is not the hardest thing to do... Take a look at a basic particle engine for 3D and find out how it works it's basically the same.

    In theory you just have 2 variables, one is the force the catapult gave to the projectile, say 10px (per frame, would be much though), to make it move up. Then there is our normal earth-gravity, say 4 px. Every second (or less) you just substract the earth-gravity from the force the projectile got from the catapult.

    So after 1 second it moves up 10 - 4 = 6 pixels
    after 2 seconds it moves up 6 - 4 = 2 pixels
    after 3 seconds it moves up 2 - 4 = -2 pixels (so it moves down)

    and so on and so on until you hit something or a minimum height is
    reached and the projectile is destroyed

    Of course I would use smaller time frames than seconds!
    Do it by the book, but be the author!
    <br />
    <br />Visit the Lion Productions website at:
    <br />http://lionprod.f2o.org

  8. #8

    What kind of games are best to start with?

    If you want some simple gravity then check out this bouncing ball program. It's simple enough to change it into a catapult - add a horizontal movement. You can then give the object an initial upwards speed and let gravity take care of the arc. The horizontal speed will be the same all the time (just add it each time) unless you want things like wind or air friction. The main challenge after that is the collision code and creating good cow graphics (possibly rotating them mid flight ).

    In case you're interested, note that Alexander Rosendal has a tutorial on a space invaders shooter w/ DelphiX here.
    "All paid jobs absorb and degrade the mind."
    <br />-- Aristotle

  9. #9

    What kind of games are best to start with?

    The main challenge after that is the collision code and creating good cow graphics (possibly rotating them mid flight ).
    Excuse me for being abit chicken, but I'll think I'll go for something either completely round or square (rock or brick).. If I decide to do something advanced like cows (hum, I get a Monty Python-flashback here somewhere) I'll let you know AliCow :twisted:

    And Gravity should be possible to handle yes, thanks for the info.. I haven't started worrying about collision code yet :roll:

  10. #10

    What kind of games are best to start with?

    collision is easy too! Just check for the position + width (and height) and check if the value is higher than the position of another sprite if so then you collided, if not than you didn't, this method is also known as a rectangular collision detection!

    The entire story changes of course when you want pixel perfect collision detection, but this is easy too!
    Do it by the book, but be the author!
    <br />
    <br />Visit the Lion Productions website at:
    <br />http://lionprod.f2o.org

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •