t3jem
Apr 29 2007, 06:43 PM
Hello, before I came to Trap17 I had a series of GLUT programming tutorials at astahost. Since then I have moved here and wanted to continue the series. As I am told I cannot just repost the tutorials here so I will put them into quotes until I start making new tutorials. I hope everyone will enjoy the tutorials I bring to this community. Ok to get started. Below are some instructions on installing GLUT, the tool we will be using to program in my tutorials. This was actually given to me back when I had a programming site and James deserves full credit for this tutorial. I hope you enjoy it. QUOTE Installing G.L.U.T. to Dev C++ By James Duran (email: vrok137@yahoo.com) For those of you who do not have the $100 visual studio and cannot install glut, this is for you. Practically all the articles I read to install the glut files were designed for people who owned visual studio. So im gonna share with you how not only to install glut, but get a powerful IDE with it (Dev C++). NOTE: If you already have Dev C++, skip to step 6. 1. Go to www.bloodshed.net (although the name sounds gory, the website is not) 2. Now that you are at the Dev C++ site, look for the "whats new" news tab. It should be right in the middle of the home page. 3. Click and follow the Dev C++ Beta link and download the program. (get the latest version, v4.9.9.2) NOTE: If you have a compiler but not an IDE, download the "executable only file". Otherwise download the file that includes Dev C++ plus the Mingw/GCC compiler. 4. Next choose a mirror site to download from. (For dial-up users, try to pick a mirror site that is in the US or else your connection will be really weak. ) 5. Install Dev C++. 6. Open Dev C++ and go to "Tools > Check for Updates/Packages". This should bring you to the update manager. 7. Click below the "Select devpack server" and select "devpacks.org community devpacks". 8. Now click "check for updates" at the bottom of the page. Once its done loading, scroll through the lists of packages until you find a glut package. Once you are ready, check the small box to the left of the name. Download it, and then the computer will install it automatically. Now you have opengl (opengl comes w/dev c++) and glut. Once you download glut, dev c++ even does you a favor by creating a template for glut programs (isnt that cool!). To use the template, click the "multimedia" tab in the "create a project" window. The glut template should be there for you to use.
Reply
hippiman
Apr 29 2007, 09:36 PM
Would GLUT be good for programming games, or would it be too slow or anything... Or does anyone know what the best package for DevC++ would be for making games?
Reply
t3jem
Apr 29 2007, 09:49 PM
GLUT is good for games if you are planning on making a small game by yourself. If you plan on making a large game such as call of duty or something I would definitly suggest looking for another tool. GLUT makes the OpenGL API much easier and quicker to use. I'm teaching GLUT because it is easy to learn for the basics of OpenGL.
Reply
pleatofthepants
Apr 11 2008, 06:17 PM
QUOTE(t3jem @ Apr 29 2007, 04:49 PM)  GLUT is good for games if you are planning on making a small game by yourself. If you plan on making a large game such as call of duty or something I would definitly suggest looking for another tool. GLUT makes the OpenGL API much easier and quicker to use. I'm teaching GLUT because it is easy to learn for the basics of OpenGL. I have installed all of the glut stuff but I can't get any glut functions to work. I keep getting [Linker Error] undefined reference to 'glutSolidCube'
Reply
Recent Queries:--
installation of glut - 45.81 hr back.
-
glut devcpp - 45.75 hr back.
-
install glut in visual studio 2008 - 48.64 hr back.
-
linker glut dev - 58.57 hr back.
-
bloodshed linker error glut - 83.38 hr back.
-
devcpp glut - 95.60 hr back.
-
devcpp opengl draw bitmap tutorial - 135.94 hr back.
Similar Topics
Keywords : installing, glut, dev
- Installing Apache And Php
Need help? (2)
Installing Software Using Adept
(0) I'm hoping this will be the first of a few Linux tutorials I write. I have been asked by a few
people recently about how to get software for Linux. They are used to going down to PC World and
picking up a CD, putting that in the PC and installing. With Linux that is not how new software is
obtained, and this is my attempt to explain how to get new software onto your Linux machine. I use
KDE, so this is based around Adept, but it is fairly similar if you use Synaptic or something else.
OK, open up Adept. There are a variety of ways to do that, but the easiest is to ....
Programming In Glut (lesson 6)
Texture filters and lighting (0) This is the last of the six tutorials I have moved from astahost. I hope you enjoy these and the
rest soon to come. QUOTE This tutorial demonstrates how to use texture filters and will let you
see the differences of each filter. I will also be introducing lighting into this tutorial. We
first have to create our "bitmap.h" header file with the functions we use to load our bitmaps, this
is changed from the last tutorial to fit the needs of this one. The first thing to do is to link
all of our OpenGL libraries and include our needed headers for the functions we w....
Programming In Glut (lesson 5)
Texture mapping and keyboard controls (0) Lesson 5 of 6. These are beginning to be more advanced tutorials. If you are not familiar with my
previous tutorials you may need to go back and read them. QUOTE In this tutorial I am going to
teach you how to texture map your polygons and implement basic keyboard control. There is alot of
new material in this tutorial and I hope I have explained it enough. Before you get started you
will want to name a bmp file "image.bmp" or "image" depending on your computer settings (if one
doesn't work then use the other) and place it in the same folder as your project.....
Programming In Glut (lesson 4)
Creating 3D objects (0) Lesson 4 of 6. I hope you are enjoying them /laugh.gif" style="vertical-align:middle"
emoid=":lol:" border="0" alt="laugh.gif" /> . QUOTE Hello, in this tutorial we will be creating
a 3D pyramid. We are building this tutorial from Lesson 3, but I took out the 2D objects and placed
a 3D pyramid in there instead. The 3rd axis for drawing can be a litle confusing, but after you get
the hand of it you'll do fine. Now when you are setting a 3D vertex just remember that the
camera is on the positive end of the z axis. So things that have a more positive z axis va....
Programming In Glut (lesson 3)
Animating your objects (0) Lesson 3 of 6. QUOTE In this tutorial I am going to talk about how to get animation in your
program. I will be working directly off of Lesson 2 and will now take out the notes left behind
from Lesson 1, but I will leave the notes from Lesson 2. CODE #include<glut.h>//include
our glut library First we are going to initialize a variable called "time" which will record how
much time has passed so we can use it to determine how to animate the objects. Then we have our
init function that initializes some stuff in GLUT CODE float time = 0;//(NEW....
Programming Glut (lesson 2)
Drawing 2D objects (0) This is the second of the six from astahost, again, I hope you enjoy. /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> QUOTE This is the second
lesson in my series of tutorials on how to use GLUT to create graphics. In this tutorial I am going
to be teaching you how to create different types of polygons. I am going to be adding on to last
tutorial's code and will leave the notes in to help you remember what all the function are. I
will also be noting the new functions that we will be using and how to use them. CODE #inc....
Programming In Glut (lesson 1)
Creating a windwo (0) This is the first of six lessons I am transferring from Astahost for programming in GLUT, and after
the six I hope to make more, I hope you enjoy. QUOTE Hello, I'm starting a series on how to
program in OpenGL using the OpenGL Utility Toolkit, a.k.a. GLUT. I chose GLUT because it is quick
and easy to write, and very easy to learn. In this tutorial I am going to teach you how to create a
basic window which we will build off of in later tutorials. Throughout the tutorial I will leave
notes to let you know what each command does, and how you can modify it to fit....
Installing Mediawiki
(6) So you want to have your own Wiki, huh? It is not difficult and it will not require a lot
of effort. What you need: A web server (Preferably Apache, also runs on IIS and lighttpd)
PHP plugin for Apache. MySQL or PostGreSQL(However, MySQL is HIGHLY recommended!). You
can't install version 1.8.2 here on Trap17 as you need PHP version 5.0 or later, and in T17 you
have PHP version 4.4.4! However, you can install it here with version 1.6.8! On a side
note, MediaWiki is the Wiki software used by Wikipedia, Uncyclopedia and others. Let....
Installing Php + Mysql + Apache + Phpmyadmin On Windows Part 2
Continue the last section which is installing phpMyadmin (0) QUOTE phpMyAdmin lets you control you MySQL database from a web browser. Steps: 1. If you
haven't done so already, download the phpMyAdmin Database Manager - You can download the
software from the phpMyAdmin website. Be sure to download the phpMyAdmin-2.6.2-pl1.zip file. Save
the file on your Windows Desktop. ... ... ... Go to for more info. Post Copied. Member
Banned ....
Installing Multiple Os On Your Pc
How to do that (0) Hi everyone, Ok before I start, I want to let you guys know the meanings of some of the
terminologies I will be using in here. Boot loader is a small program which the operating system
places on the selected partition (in most cases, the MBR ). it is a small program that loads the
operating system into the computer’s memory when the system is booted and also starts the
operating system. So, before you can think of configuring your PC to have multiple boot, you should
also know how to play around with 'em boot loaders too. And you should also make sure that y....
Installing Linux On An Ipod
Ipod Linux Simple Tutorial. (43) Installing Linux on an iPod! (Doom, Videos on Nanos, Photos, even 4th Gen or Minis!)
Recently I've been toying around with my friends iPod Nano, and my 5th Gen Video so, I decided
to share the wealth. Pre-Tutorial Glossary iPod Linux - The iPod Linux OS we will install.
Podzilla - Another name for iPod Linux The Apple OS - The orginal menu system on your iPod iPod
Linux is a firmware installation that will run ALONG with Apples OS. So, you may be thinking, whats
so great about this iPod Linux? Heres whats so great. Play videos on Nanos, P....
Installing A Phpbb2 Skin
Popular forum software (5) I tried installing a new phpbb2 forum skin on my website for weeks and didnt get it to work, but
it's very easy... 1. Upload the skin / template to the templates folder of your phpbb2
directory (eg. public_html/forums/templates), make sure you don't upload the zip archieve or a
directory containing the directory where the template is in, the folder you need to upload usually
contains a lot of .tpl files an images directory a .css file (or multiple) and if your template
contains an admin re-skin an "admin" folder. NOTE: If you use PHP-Nuke the directory where....
Ldu802 (neocrome)
Installing LDU802 (3) Ok,.....Were here to Install Neocrome LDU802 1.Download LDU802 From Here: (its a .rar file so make
sure you have WinRAR) 2. Create a MySQL Database in cpanel click on MySQL dataabses then follow
the instructions to create a Database and a user for it. then create it. 3. Write down the
parameters (username, passsword, and the database name) and open the ldu802 filder on your computer.
click on the datas folder then click on config.php and make it open with notepad 4. take your
username, password, and DB name and put them in the fields below 5.upload all the folders....
Installing Ndstats!
The greatest Stats script of all time. (4) An example of this script cna be found at http://www.own.tc/ (click enter) This is by far the
BEST stats script and most sites use it! This is a PHP script and requires you to include files
(Please... don't do iframes!) DOWNLOAD LINK: GO TO www.ZYMIC.com and go to Php scripts>stats
scripts> and the current version of NDSTATS. Downlaod it and unzip it! Go to your WWW directory
and create a folder called "ndstats". Then what you need to do is upload all of your files into
that folder. You all should know how to do that. Then go to the top of the pag....
Tutorial: Installing D-shoutbox For Ipb V1.2
Making your installation even easier (10) Over the course of the summer I have tried hard to install a shoutbox into a new forum I was
developing. I went to the Invisionalize forums and found several mods for shoutboxes, but none of
them seemed to work. I first tried to install the D-Shoutbox, but upon this first try, I was
unsuccessful. Eventually, after much frustration, and trying other mods, which didn't seem to
stack up to Dean's features, I was determined to make it work. For some, editing your files (to
the newbie that is) can be difficult, with everything looking like a foreign language (basi....
Installing And Connecting To A Ventrilo Server
(0) 1: Download The Client From http://www.ventrilo.com/download.php 2: Install The Client 3: Boot
The Client 4: Click the Arrow Pointing to the Right beside the User Name Tab. 5: Click The New
Button 6: Type In Your Desired Username And Hit Ok 7: In The Phonetic Spot, type your username
again 8: Enter A Description If Wanted and click ok 9: Click the arrow pointing to the right
beside the server tab. 10: click the new button. 11: Type in a name for the server. 12: Type in
the server address that you are connecting to in the Hostname or IP slot. 13: Click Ok. ....
Tutorial: Installing a new theme into phpBB
(0) Hi. This is a tutorial of how to install a new theme into your phpBB forum
Step 1
Download
the theme you want to install to any location in your computer
Step 2a
Open your FTP
program. If you don't have one then proceed to step 2b.
Login to your FTP and go to your forums
root folder.
Open the map templates and upload the whole map of the new theme into the map
/templates with all contents.
The result will be this: /templates/new_theme/
Step 2b
Login
to cPanel en go to the file manager
Click on the directory icon next to the directories "publ....
Tutorial On Installing Teamspeak
(0) 1: Download the Teamspeak Client From ftp://ftp.freenet.de/pub/4players/teamspe...nt_rc2_2032.exe
2: Navigate to where you downloaded the Teamspeak setup file and Double Click the Exe to start the
installation. 3: You will be presented with a window asking you to confirm the installation of
Teamspeak. Click "Yes" here. 4: You will then be presented with the setup program. Click "Next"
Here. 5: Now you must read the License Agreement and if it is satisfactory select the "I accept the
agreement" box. Then click "Next". 6: The Default location should be satisfacto....
Looking for installing, glut, dev
|
|
Searching Video's for installing, glut, dev
|
advertisement
|
|