1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
#!/usr/bin/perl -w
# This code was created by Jeff Molofee '99
# (ported to SDL by Sam Lantinga '2000)
# (ported to Perl/SDL by Wayne Keenan '2000)
#
# If you've found this code useful, please let me know.
#
# Visit me at www.demonews.com/hosted/nehe
use strict;
use Getopt::Long;
use SDL::App;
use SDL::OpenGL;
use SDL::Event;
my $arg_screen_width =640;
my $arg_screen_height=512;
my $arg_fullscreen=0;
my $delay=30;
GetOptions(
"width:i" => \$arg_screen_width,
"height:i" => \$arg_screen_height,
"fullscreen!" => \$arg_fullscreen,
"delay:i" => \$delay,
) or die <<USAGE;
Usage $0 -w 800 -h 600 -d 10 --fullscreen
USAGE
#/* rotation angle for the triangle. */
my $rtri = 0.0;
#/* rotation angle for the quadrilateral. */
my $rquad = 0.0;
main();
exit;
sub main
{
my $done=0;
my $app = new SDL::App ( -title => "Jeff Molofee's GL Code Tutorial ... NeHe '99",
-icon => "icon.png",
-width => $arg_screen_width,
-height =>$arg_screen_height,
-gl => 1,
);
$app->fullscreen() if $arg_fullscreen;
SDL::ShowCursor(0);
my $event = new SDL::Event;
$event->set(SDL_SYSWMEVENT,SDL_IGNORE);#
InitGL($arg_screen_width, $arg_screen_height);
while ( ! $done ) {
DrawGLScene();
$app->sync();
$app->delay($delay);
$event->pump;
$event->poll;
if ( $event->type == SDL_QUIT ) {
$done = 1;
}
if ( $event->type == SDL_KEYDOWN ) {
if ( $event->key_sym == SDLK_ESCAPE ) {
$done = 1;
}
}
}
}
#########################################################################
#Pretty much in original form, but 'Perlised'
sub InitGL
{
my ($Width, $Height)=@_;
glViewport(0, 0, $Width, $Height);
glClearColor(0.0, 0.0, 0.0, 0.0); # This Will Clear The Background Color To Black
glClearDepth(1.0); # Enables Clearing Of The Depth Buffer
glDepthFunc(GL_LESS); # The Type Of Depth Test To Do
glEnable(GL_DEPTH_TEST); # Enables Depth Testing
glShadeModel(GL_SMOOTH); # Enables Smooth Color Shading
glMatrixMode(GL_PROJECTION);
glLoadIdentity(); # Reset The Projection Matrix
gluPerspective(45.0, $Width/$Height, 0.1, 100.0); # Calculate The Aspect Ratio Of The Window
glMatrixMode(GL_MODELVIEW);
}
# The main drawing function.
sub DrawGLScene
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); # Clear The Screen And The Depth Buffer
glLoadIdentity(); # Reset The View
glTranslate(-1.5,0.0,-6.0); # Move Left 1.5 Units And Into The Screen 6.0
glRotate($rtri,0.0,1.0,0.0); # Rotate The Triangle On The Y axis
# draw a triangle (in smooth coloring mode)
glBegin(GL_POLYGON); # start drawing a polygon
glColor(1.0,0.0,0.0); # Set The Color To Red
glVertex( 0.0, 1.0, 0.0); # Top
glColor(0.0,1.0,0.0); # Set The Color To Green
glVertex( 1.0,-1.0, 0.0); # Bottom Right
glColor(0.0,0.0,1.0); # Set The Color To Blue
glVertex(-1.0,-1.0, 0.0); # Bottom Left
glEnd(); # we're done with the polygon (smooth color interpolation)
glLoadIdentity(); # make sure we're no longer rotated.
glTranslate(1.5,0.0,-6.0); # Move Right 3 Units, and back into the screen 6.0
glRotate($rquad,1.0,0.0,0.0); # Rotate The Quad On The X axis
# draw a square (quadrilateral)
glColor(0.5,0.5,1.0); # set color to a blue shade.
glBegin(GL_QUADS); # start drawing a polygon (4 sided)
glVertex(-1.0, 1.0, 0.0); # Top Left
glVertex( 1.0, 1.0, 0.0); # Top Right
glVertex( 1.0,-1.0, 0.0); # Bottom Right
glVertex(-1.0,-1.0, 0.0); # Bottom Left
glEnd(); # done with the polygon
$rtri+=15.0; # Increase The Rotation Variable For The Triangle
$rquad-=15.0; # Decrease The Rotation Variable For The Quad
}
|