Page 2 of 2 FirstFirst 12
Results 21 to 40 of 40

Thread: I want to make a game.

  1. #21

    Tribuni Angusticlavii
    MottZilla's Avatar

    Join Date
    Feb 2006
    Location
    USA
    Posts
    4,032
    Quote Originally Posted by everett1911 View Post
    What's the difference between allegro and sdl, otherwise?
    It's hard to really explain. All I can say is I prefer allegro. One difference I seem to recall is Allegro behaves more like linear executed code and SDL behaves more like Windows programming where you have Events and have to return at the end. In other words, Allegro is less of a hassle.

    And I disgree, jump right into trying to write games, but not one big game. Try writing parts of games. For example the very first game to try to make is Pong. It has very simple rules but you will be handling input, graphics, collision, and can add sound and music. You can get the hang of those important basics. I think you learn by doing. Just remember don't try to tackle a huge project right away. Use smaller ones to learn concepts you'll need for bigger games.
    Last edited by MottZilla; 05-11-2012 at 12:30 PM.

  2. #22
    Foot Soldier
    everett1911's Avatar

    Join Date
    Jul 2008
    Location
    City X, Canada
    Posts
    176
    Quote Originally Posted by MottZilla View Post
    It's hard to really explain. All I can say is I prefer allegro. One difference I seem to recall is Allegro behaves more like linear executed code and SDL behaves more like Windows programming where you have Events and have to return at the end. In other words, Allegro is less of a hassle.

    And I disgree, jump right into trying to write games, but not one big game. Try writing parts of games. For example the very first game to try to make is Pong. It has very simple rules but you will be handling input, graphics, collision, and can add sound and music. You can get the hang of those important basics. I think you learn by doing. Just remember don't try to tackle a huge project right away. Use smaller ones to learn concepts you'll need for bigger games.
    That's kinda why I wanna make a basic shoot em up, but now that you mention it, a pong clone would be great practice



  3. #23
    Foot Soldier
    Garlo's Avatar

    Join Date
    Dec 2004
    Location
    Monterrey, Mexico
    Posts
    304
    Try http://www.stencyl.com/

    I have been playing with it for a while, haven't finished anything yet, but it's easy, there are plenty of tutorials (even on youtube) and generates flash files and iOS files. 2D stuff.

    Also try http://unity3d.com/ more complex, 3D stuff, works on web browser (with plugin), PC, Mac, iOS and Android. There are more tutorials and support for Unity, but since it's mostly for 3D games, it's more complex to start with.

  4. #24

    Tribuni Angusticlavii
    MottZilla's Avatar

    Join Date
    Feb 2006
    Location
    USA
    Posts
    4,032
    If you make a pong clone in Allegro as I described, following that up with a shoot em up (1942, Raiden, whatever) I think you'll succeed. Pong has or can have most of the elements of a shoot em up. Sprites, Collision, Input, Sound and Music. With a shoot em up, you'll probably want to have a scrolling background and you'll have more objects to keep track of besides two paddles and a ball. But if you can do pong, I'm sure you can do a shoot em up.

    I never did one but I had thought of it. Instead I did a platformer.
    Last edited by MottZilla; 05-11-2012 at 03:19 PM.

  5. #25
    Foot Soldier
    everett1911's Avatar

    Join Date
    Jul 2008
    Location
    City X, Canada
    Posts
    176
    what would be a good open source c++ editor/compiler for windows?



  6. #26
    Does it have to be open source? Microsoft gives away their basic version of Visual Studio for free. If it has to be open source, try Dev-C++.
    Last edited by Dreamcast; 05-11-2012 at 11:41 PM.

  7. #27
    Foot Soldier
    everett1911's Avatar

    Join Date
    Jul 2008
    Location
    City X, Canada
    Posts
    176
    I want something feature-complete, and I don't have much money.



  8. #28
    Combat Soldier
    brendand's Avatar

    Join Date
    Jul 2011
    Location
    Sydney
    Posts
    868
    don't know if this will be any help at all but > http://sketchup.google.com/

  9. #29
    XNA isn't a bad place to get started. There are a good amount of examples out there.
    It's free, It's C#, and with a Creators Club membership you can run stuff on the Xbox 360

    For something a bit simpler, you might check out pygame (http://www.pygame.org/news.html). Its a python based framework for writing games. Python might be a bit easier to grasp than C++ or C# if you have never written code before. Its a dynamic language that might be easier to learn than BASIC for a newcomer.

    Good luck!

  10. #30
    KEEPIN' I.T. REAL!! ASSEMbler Extreme
    Lives in the server
    Shadowlayer's Avatar

    Join Date
    Jan 2006
    Location
    God knows where...
    Posts
    6,260
    One word: Unity

    If you really are a n00b like you say going for C++ is going to melt your brains, and probably slightly toast your ass too depending on which IDE you use
    Last edited by Shadowlayer; 05-13-2012 at 12:05 PM.


  11. #31
    Conscript
    Zetrox2k's Avatar

    Join Date
    May 2012
    Location
    Melbourne, Australia
    Posts
    91
    Personally, I am in a similar situation. I'm a 3D modeler/animator, and beyond that not much else, with the exception of sprite art, texture art, sound editing etc... I'm venturing into programming myself, practically from scratch. I've attempted many ways to get into it, but for me personally, i learn under pressure and deadlines. as such i am enlisting myself in a 20 week programming course at the Academy of Interactive Entertainment, after hours, as i still need to maintain a career, after which I will take on a more advanced course which should then become a sufficient grounding.

    If you are looking at this as a career aspiration, for indie development or whatever, this course is setting me back about AU$700 (the basic 20 week course, not the advanced), which I don't technically have to spare, but i realize that I need to put myself in this position if I'm dead serious about it. The advantageous a course brings is structure; it is structured so as to be incrementally more difficult in the lead up to something bigger. Being new to programming, it is extremely difficult to structure your own learning when you dont even know what you need to learn.

  12. #32
    Maybe 20 years ago, jumping into programming might have been a daunting task, but it's considerably easier today, especially with the internet. Simply put, you should be able to teach yourself a new skill using the internet as your primary teach in today's world. There are libraries of free information out there at your disposal. The hardest part is commitment and time.

    For anybody who is a complete beginner at programming, I suggest this:

    http://www.khanacademy.org/

    It's no substitute for actual experience, but it's a great tool for picking up the basic concepts quickly.

  13. #33
    Conscript
    Zetrox2k's Avatar

    Join Date
    May 2012
    Location
    Melbourne, Australia
    Posts
    91
    Thumbs up on the link Perfect K. Not necessarily for the programming side, but has some really interesting stuff on there.

  14. #34
    Member of The Cult Of Kefka Staff

    ASSEMbler Soldier
    karsten's Avatar

    Join Date
    Mar 2004
    Location
    Italy
    Posts
    3,866
    Blog Entries
    3
    Quote Originally Posted by Garlo View Post
    Try http://www.stencyl.com/

    I have been playing with it for a while, haven't finished anything yet, but it's easy, there are plenty of tutorials (even on youtube) and generates flash files and iOS files. 2D stuff.
    this stencyl seems interesting! thanks!
    I'll create a monument to non-existance! Kefka, FFVI

    "there is no dark side of the Moon really... as a matter of fact it's all dark" (words hidden in pink floyd's "Eclipse" song )

  15. #35
    It depends on how determined you are to learn how to code, but what about using Game Maker? A close friend of mine had a similar vision, and ended up making his own pixel art but using game maker to put it together in to a shmup. Only for personal use, of course, hence the borrowed music.

    Here's a video of me testing the game, might want to skip 50 seconds or so. Just a thought, anyway


  16. #36
    Combat Soldier
    pool7's Avatar

    Join Date
    Mar 2008
    Location
    Argentina
    Posts
    798
    If you still go with C/C++ and want to use a free/open source IDE, I'd say you go for Code::Blocks.
    As for a free compiler, the ones I know of are:
    MinGW
    DJGPP
    Borland C++ Compiler 5.5 (this one is quite old, but should still do the trick)

    I'm sure there are others (both IDEs and Compilers); hopefully other members will give their thoughts and input.

    Good luck!

  17. #37
    Quote Originally Posted by Zetrox2k View Post
    Thumbs up on the link Perfect K. Not necessarily for the programming side, but has some really interesting stuff on there.
    I use the site all the time to strengthen my math skills. I found that site when it was in its infancy around the same time I was taking DiffEq in college. It was a life saver.

  18. #38
    Hello all,
    If you are interested in the topic connected with Game Designing, you can download the teaser of new Game Coder Magazine in which there are few articles about the topic I've mentioned.
    http://en.sdjournal....5_teaser_05.pdf

  19. #39
    New member lolzvid's Avatar

    Join Date
    Jan 2012
    Location
    Brazil
    Posts
    27
    GameMaker is for making simple 2D games without hard-coding.
    Even 3D games if you buy the full program.

  20. #40
    KEEPIN' I.T. REAL!! ASSEMbler Extreme
    Lives in the server
    Shadowlayer's Avatar

    Join Date
    Jan 2006
    Location
    God knows where...
    Posts
    6,260
    Dude seriously go with Unity, its as easy as this gets and allows you to create some pretty impressive games

    Escape Plan for the Vita? Dead Trigger? all made with Unity
    Last edited by Shadowlayer; 12-15-2012 at 01:37 AM.


Page 2 of 2 FirstFirst 12

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
  •