A Flash Developer Resource Site

Page 1 of 2 12 LastLast
Results 1 to 20 of 26

Thread: programming in c++

  1. #1
    Member
    Join Date
    Oct 2004
    Location
    Nanaimo, British Columbia
    Posts
    63

    programming in c++

    I'm interested in making games in c++. Does know what program I would use?

  2. #2
    Senior Member sand858's Avatar
    Join Date
    Aug 2001
    Posts
    327
    I recommend Microsoft's Visual Studio software and if you can afford it, get the Visual Assist plugin from Whole Tomato. Together they form the most intuitive programming IDE I've ever used.
    gamedozer games
    Free multiplayer and singleplayer games

  3. #3
    Say hello to Bob Kakihara's Avatar
    Join Date
    Jul 2004
    Location
    kent, England
    Posts
    1,067
    get hold of devs bloodshed software, its good to start with.
    If our body is a clock ticking away and if while we experience all that this world has to offer time has still continued to pass, are we living or just experiencing a slow death?

  4. #4
    Noob in disguise blakfeld's Avatar
    Join Date
    Jun 2002
    Posts
    258
    the bloodshed softwares great, but do what I did, I got the whole Microsofts .net dev suite for 80 bucks, cuz I found the academic version Also, if your starting off in C++ and looking for a quick start, especially if you want to get going quickly and maybe even produce something like you could in flash, I recomend starting off for a bit in Java (I know Im glad I did) in which case I recommend the excellent and free IDE JCreator, which you can get from download.com, altho you need to get the JDK from sun.com (which is a pain to navigate)
    Your a toaster and thats all youll ever be!

  5. #5
    skylogic.ca MD004's Avatar
    Join Date
    Oct 2003
    Location
    Canada
    Posts
    366
    Originally posted by blakfeld
    altho you need to get the JDK from sun.com (which is a pain to navigate)
    Is this it: JDK 5.0 Update 1 - The J2SE Development Kit (JDK) supports creating J2SE applications - from this page?

  6. #6
    Noob in disguise blakfeld's Avatar
    Join Date
    Jun 2002
    Posts
    258
    yup

    I forgot to mention, if you want java, make DAMN sure you get 5.0, as it has javax.swing (a gaphical class) which is a godsend in its own special way

    and heres JCreator
    http://www.download.com/JCreator/300...ml?tag=lst-0-1
    Your a toaster and thats all youll ever be!

  7. #7
    Senior Member random10122's Avatar
    Join Date
    Mar 2002
    Location
    Sheffield, UK
    Posts
    1,747
    I recommend checking out the 'Allegro' libraries if you use a program like bloodshed, especially if programming 2D games...

    fracture2 - the sequel
    fracture - retro shooter
    blog - games, design and the rest

    "2D is a format, not a limitation" -Luis Barriga

  8. #8
    Senior Member dogtown08's Avatar
    Join Date
    Jul 2004
    Location
    In a later dimension
    Posts
    201
    Go and buy a mac. You get their development software 100% free.

  9. #9
    Noob in disguise blakfeld's Avatar
    Join Date
    Jun 2002
    Posts
    258
    true, but the mac is a running compatablity issue.
    Your a toaster and thats all youll ever be!

  10. #10
    n00b LeechmasterB's Avatar
    Join Date
    May 2004
    Location
    Switzerland
    Posts
    1,067
    Originally posted by blakfeld
    I recomend starting off for a bit in Java (I know Im glad I did) in which case I recommend the excellent and free IDE JCreator...
    Haha good old jcreator . I totally agree about starting out on java first, to get used to oop and real programming.
    I do stuff that does stuff...

    J-Force

  11. #11
    Senior Member
    Join Date
    Jul 2003
    Posts
    138
    You might also want to get hold of the C programmer's bible:

    http://www.amazon.com/exec/obidos/AS...&link_code=as1

    This will teach you to use all of the powerful features that C and C++ have, that Java doesn't, such as pointers. You'll probably want to get a C++ specific book too.

  12. #12
    Senior Member webgeek's Avatar
    Join Date
    Sep 2000
    Posts
    1,356
    If you are going to do Java, I recomend Netbeans 4.0 or the latest version of Eclipse. These are the two editors that the majority of real-world java developers use. On top of that, they will grow with you from the basics all the way to expert. JCreator is pretty nice, but not nearly as capable an IDE as the others (which are also free).

    As for java, just go here:
    http://java.sun.com/j2se/1.5.0/download.jsp
    The bundle at the top contains both the JDK and Netbeans.

    As for C++, I side with Sand on this one. Visual Studio is unbeatable. It's also the professional tool of choice for C++.

    The Visual Studio.NET version would work fine too (and is the one I own). The academic version has everything you need and then some. It also comes with a great deal of lesson samples you can play with. Once you have Visual Studio installed and running, you need to install the DirectX SDK from microsoft. You can get it here:
    http://www.microsoft.com/downloads/d...displaylang=en

    If you are going to do 3D stuff with DirectX, you will want to snag the Extras bundle too as it contains some exporters and utilities that are useful.

    Have fun!

  13. #13
    skylogic.ca MD004's Avatar
    Join Date
    Oct 2003
    Location
    Canada
    Posts
    366
    Originally posted by webgeek
    If you are going to do Java, I recomend Netbeans 4.0 or the latest version of Eclipse. ...Visual Studio is unbeatable. It's also the professional tool of choice for C++....Once you have Visual Studio installed and running, you need to install the DirectX SDK from microsoft...If you are going to do 3D stuff with DirectX, you will want to snag the Extras bundle too.
    Thanks for all the info...not that i was the one who originally asked but oh well, im interested too.....

  14. #14
    Gross Pecululatarian Ed Mack's Avatar
    Join Date
    Dec 2001
    Location
    UK
    Posts
    2,954
    You should check out openGL too, it's a very nicely written API.

  15. #15
    Senior Member lapo73's Avatar
    Join Date
    Jun 2003
    Location
    italy
    Posts
    395
    ...and in case you're interested in creating games for multiple platforms you should also check the SDL library >> http://www.libsdl.org/index.php

    good luck

    Lapo
    www.gotoandplay.it
    Flash game developers community
    www.smartfoxserver.com
    Multiplayer Flash Server

  16. #16
    Senior Member
    Join Date
    Jul 2003
    Posts
    138
    Originally posted by webgeek
    If you are going to do Java, I recomend Netbeans 4.0 or the latest version of Eclipse.
    I prefer JCreator - most Java IDEs, including the ones you mention, are written in Java. They're just too slow for me.

    Give me native code every time (which is an odd attitude for a Java programmer, I know).

  17. #17
    Senior Member lapo73's Avatar
    Join Date
    Jun 2003
    Location
    italy
    Posts
    395
    Originally posted by ant512
    I prefer JCreator - most Java IDEs, including the ones you mention, are written in Java. They're just too slow for me.

    Give me native code every time (which is an odd attitude for a Java programmer, I know).
    Have you ever tried Eclipse? It's written in Java but it's very hard to tell... the GUI is as responsive as all the other native applications!

    Lapo
    www.gotoandplay.it
    Flash game developers community
    www.smartfoxserver.com
    Multiplayer Flash Server

  18. #18
    Senior Member webgeek's Avatar
    Join Date
    Sep 2000
    Posts
    1,356
    I'm with Lapo, the newest version of both Netbeans and Eclipse don't feel any slower then Visual Studio. If you are running a little older machine or don't have enough ram, you might feel some slowdown though. Even if they were much slower, the functionality (particularly Netbeans 4's superior ANT-based projects) makes them an obvious choice for me.

  19. #19
    Member
    Join Date
    Oct 2004
    Location
    Nanaimo, British Columbia
    Posts
    63
    thx for all of the help. I have got JCreator right now and will start with that. Does anyone know any good Java tutorials to get me started with?

  20. #20
    Senior Member
    Join Date
    Jul 2003
    Posts
    138
    Originally posted by webgeek
    I'm with Lapo, the newest version of both Netbeans and Eclipse don't feel any slower then Visual Studio.
    Visual Studio being, of course, the slowest IDE I've ever used. It's like trying to program in treacle.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center