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

Thread: Is there a C IDE with integrated OpenGL?

  1. #1
    Join Date
    Apr 2007
    Beans
    97
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Is there a C IDE with integrated OpenGL?

    I'm interested in learning C so I can possible eventually contribute to the Linux community and application base (I'm 15). Is there an IDE that has the standard library and OpenGL easy to use within it, and compiles for Linux using GCC and possibly Windows ("Compiles for" means "binaries that run on")? Your start guide only gives one suggestion and I assume it's not the most accessible. Thanks.
    Last edited by Game_boy; July 2nd, 2007 at 07:09 PM.

  2. #2
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Is there a C IDE with integrated OpenGL?

    Quote Originally Posted by Game_boy View Post
    I'm interested in learning C so I can possible eventually contribute to the Linux community and application base (I'm 15). Is there a simple, graphical IDE that has the standard library and OpenGL easy to use within it, and compiles for Linux and preferably Windows? Your start guide only gives one suggestion and I assume it's not the most accessible. Thanks.
    Your question is slightly confusing. You say you are interested in learning C, what other programming languages do you know?

    All IDE's are graphical, and none are simple. There is a sticky in this forum about IDE's.

    An IDE is not a compiler.


    To get the programming tools:
    Code:
    sudo aptitude install build-essential
    "...and compiles for Linux and preferably Windows?", what does this mean?

  3. #3
    Join Date
    Jan 2007
    Location
    Valencia, Spain
    Beans
    19
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: Is there a C IDE with integrated OpenGL?

    Hi, I don't know any IDE integrating OpenGL but I've compiled my own programs writng in C++ with OpenGL with Eclipse, Qt3 and Anjuta ides.
    I can't explain about this because my english is very poor and the explanation is very long and very technical.
    I've made a videotutorial about this using easyeclipse but this is in spanish, sorry and the quality is very poor.The link is

    Link Video

    Greetings

  4. #4
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Is there a C IDE with integrated OpenGL?

    Quote Originally Posted by crislosi View Post
    Hi, I don't know any IDE integrating OpenGL but I've compiled my own programs writng in C++ with OpenGL with Eclipse, Qt3 and Anjuta ides.
    I can't explain about this because my english is very poor and the explanation is very long and very technical.
    I've made a videotutorial about this using easyeclipse but this is in spanish, sorry and the quality is very poor.The link is

    Link Video

    Greetings
    Your english is better than my Spanish.

  5. #5
    Join Date
    Apr 2007
    Beans
    97
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Is there a C IDE with integrated OpenGL?

    Let me restate.

    I want an C IDE where I can use OpenGL functions just as easily as C ones. I want it not simple, but powerful enough so I don't need to edit config files or use a terminal. I want it to automatically use GCC to complie to Linux too.

    So what you're basically saying is that C is completely inaccessible to anyone who hasn't already learnt it. Well, thanks anyway.

  6. #6
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Is there a C IDE with integrated OpenGL?

    Quote Originally Posted by Game_boy View Post
    Let me restate.

    I want an C IDE where I can use OpenGL functions just as easily as C ones. I want it not simple, but powerful enough so I don't need to edit config files or use a terminal. I want it to automatically use GCC to complie to Linux too.
    Sorry, I don't use IDE's. Compiling with the terminal is not difficult, and if your program is command line, it is easier, and faster.


    Quote Originally Posted by Game_boy View Post
    So what you're basically saying is that C is completely inaccessible to anyone who hasn't already learnt it. Well, thanks anyway.
    No, you can learn C. But starting out with C and OpenGL is a lofty goal. Check out my sig for learning how to program.

    If you are just starting out, which it seems like, you should consider learning Python. It is easy to learn, it is powerful, it is easy to make GUI's with it, and it is completely portable between Windows and Linux. (You also don't need to compile)

    Check out my wiki and good luck!

  7. #7
    Join Date
    Apr 2007
    Beans
    97
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Is there a C IDE with integrated OpenGL?

    Actually I do use a sort of interpreted (but slow and DirectX dependent) language that has built-in everything - debug, forced OOP, fast and automated compilation to executable, huge standard library.

    The problem is it's not free software, it's 100 times slower than C and again, it only runs on Windows.

    But I do have a grasp of what programming is about from it, so "Learning to Program" is not an issue with me.

    Is there no such thing as an IDE which natively does OpenGL? Say I wanted to make Pong with it - what would be the fastest and/or easiest way?

  8. #8
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Is there a C IDE with integrated OpenGL?

    Quote Originally Posted by Game_boy View Post
    Actually I do use a sort of interpreted (but slow and DirectX dependent) language that has built-in everything - debug, forced OOP, fast and automated compilation to executable, huge standard library.

    Is there no such thing as an IDE which natively does OpenGL? Say I wanted to make Pong with it - what would be the fastest and/or easiest way?
    What is Pong?

  9. #9
    Join Date
    Apr 2007
    Beans
    97
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: Is there a C IDE with integrated OpenGL?

    It's the most basic (but graphical) 2D game I could think of. Two bats, one ball. First to 10 points wins. Repeat.

  10. #10
    Join Date
    Apr 2007
    Beans
    14,781

    Re: Is there a C IDE with integrated OpenGL?

    Just found Pong on Wikipedia, if you have no experience with GUI programming, that will be difficult. You would want to use C/C++, but you would probably want to build up experience with GUI programming with a simpler language like Python and one of its GUI modules.

    I am not into GUI programming, so I can't make any recommendations.

    What is this language you know?

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
  •