include "gl.inc"
window 640,480,1
setframes 60
FontLoad "glfonts/font15.bmp"
float rtri
float rquad
while key(27)=0
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT) // Clear Screen And Depth Buffer
glLoadIdentity() // Reset The Current Modelview Matrix
glTranslatef(-1.5f,0.0f,-6.0f) // Move Left 1.5 Units And Into The Screen 6.0
glRotatef(rtri,0.0f,1.0f,0.0f) // Rotate The Triangle On The Y axis ( NEW )
glBegin(GL_TRIANGLES) // Start Drawing A Triangle
glColor3f ( 1.0f, 0.0f, 0.0f) // Red
glVertex3f( 0.0f, 1.0f, 0.0f) // Top Of Triangle (Front)
glColor3f ( 0.0f, 1.0f, 0.0f) // Green
glVertex3f(-1.0f,-1.0f, 1.0f) // Left Of Triangle (Front)
glColor3f ( 0.0f, 0.0f, 1.0f) // Blue
glVertex3f( 1.0f,-1.0f, 1.0f) // Right Of Triangle (Front)
glColor3f ( 1.0f, 0.0f, 0.0f) // Red
glVertex3f( 0.0f, 1.0f, 0.0f) // Top Of Triangle (Right)
glColor3f ( 0.0f, 0.0f, 1.0f) // Blue
glVertex3f( 1.0f,-1.0f, 1.0f) // Left Of Triangle (Right)
glColor3f ( 0.0f, 1.0f, 0.0f) // Green
glVertex3f( 1.0f,-1.0f,-1.0f) // Right Of Triangle (Right)
glColor3f ( 1.0f, 0.0f, 0.0f) // Red
glVertex3f( 0.0f, 1.0f, 0.0f) // Top Of Triangle (Back)
glColor3f ( 0.0f, 1.0f, 0.0f) // Green
glVertex3f( 1.0f,-1.0f,-1.0f) // Left Of Triangle (Back)
glColor3f ( 0.0f, 0.0f, 1.0f) // Blue
glVertex3f(-1.0f,-1.0f,-1.0f) // Right Of Triangle (Back)
glColor3f ( 1.0f, 0.0f, 0.0f) // Red
glVertex3f( 0.0f, 1.0f, 0.0f) // Top Of Triangle (Left)
glColor3f ( 0.0f, 0.0f, 1.0f) // Blue
glVertex3f(-1.0f,-1.0f,-1.0f) // Left Of Triangle (Left)
glColor3f ( 0.0f, 1.0f, 0.0f) // Green
glVertex3f(-1.0f,-1.0f, 1.0f) // Right Of Triangle (Left)
glEnd() // Done Drawing The Pyramid
glLoadIdentity() // Reset The Current Modelview Matrix
glTranslatef(1.5,0.0,-7.0) // Move Right 1.5 Units And Into The Screen 7.0
glRotatef(rquad,1.0,1.0,1.0) // Rotate The Quad On The X axis ( NEW )
glBegin(GL_QUADS) // Draw A Quad
glColor3f ( 0.0f, 1.0f, 0.0f) // Set The Color To Green
glVertex3f( 1.0f, 1.0f,-1.0f) // Top Right Of The Quad (Top)
glVertex3f(-1.0f, 1.0f,-1.0f) // Top Left Of The Quad (Top)
glVertex3f(-1.0f, 1.0f, 1.0f) // Bottom Left Of The Quad (Top)
glVertex3f( 1.0f, 1.0f, 1.0f) // Bottom Right Of The Quad (Top)
glColor3f ( 1.0f, 0.5f, 0.0f) // Set The Color To Orange
glVertex3f( 1.0f,-1.0f, 1.0f) // Top Right Of The Quad (Bottom)
glVertex3f(-1.0f,-1.0f, 1.0f) // Top Left Of The Quad (Bottom)
glVertex3f(-1.0f,-1.0f,-1.0f) // Bottom Left Of The Quad (Bottom)
glVertex3f( 1.0f,-1.0f,-1.0f) // Bottom Right Of The Quad (Bottom)
glColor3f ( 1.0f, 0.0f, 0.0f) // Set The Color To Red
glVertex3f( 1.0f, 1.0f, 1.0f) // Top Right Of The Quad (Front)
glVertex3f(-1.0f, 1.0f, 1.0f) // Top Left Of The Quad (Front)
glVertex3f(-1.0f,-1.0f, 1.0f) // Bottom Left Of The Quad (Front)
glVertex3f( 1.0f,-1.0f, 1.0f) // Bottom Right Of The Quad (Front)
glColor3f ( 1.0f, 1.0f, 0.0f) // Set The Color To Yellow
glVertex3f( 1.0f,-1.0f,-1.0f) // Top Right Of The Quad (Back)
glVertex3f(-1.0f,-1.0f,-1.0f) // Top Left Of The Quad (Back)
glVertex3f(-1.0f, 1.0f,-1.0f) // Bottom Left Of The Quad (Back)
glVertex3f( 1.0f, 1.0f,-1.0f) // Bottom Right Of The Quad (Back)
glColor3f ( 0.0f, 0.0f, 1.0f) // Set The Color To Blue
glVertex3f(-1.0f, 1.0f, 1.0f) // Top Right Of The Quad (Left)
glVertex3f(-1.0f, 1.0f,-1.0f) // Top Left Of The Quad (Left)
glVertex3f(-1.0f,-1.0f,-1.0f) // Bottom Left Of The Quad (Left)
glVertex3f(-1.0f,-1.0f, 1.0f) // Bottom Right Of The Quad (Left)
glColor3f ( 1.0f, 0.0f, 1.0f) // Set The Color To Violet
glVertex3f( 1.0f, 1.0f,-1.0f) // Top Right Of The Quad (Right)
glVertex3f( 1.0f, 1.0f, 1.0f) // Top Left Of The Quad (Right)
glVertex3f( 1.0f,-1.0f, 1.0f) // Bottom Left Of The Quad (Right)
glVertex3f( 1.0f,-1.0f,-1.0f) // Bottom Right Of The Quad (Right)
glEnd() // Done Drawing The Quad
Text 1,-0.128,0.36,0.032,0.064,"LESSON 5"
rtri +=1.2
rquad-=0.8
SwapBuffer()
Wait 10
wend
winEnd
Would it make sense to use the option of fullscreen mode?
include "gl.inc"
window 1024,768,0
fnt = FontLoad "glfonts/font21.bmp"
tex = TgaLoad "tga/titus.tga"
float rx,ry,rz
float Mt_Diffuse [3] = {0.8, 0.8, 0.8, 1.0}
float Mt_Ambient [3] = {0.3, 0.3, 0.3, 1.0}
float Mt_Specular[3] = {1.0, 1.0, 1.0, 1.0}
float Mt_Shiness [0] = {50.0}
float Lt_Position[3] = {0.0, 0.0, 10.0, 1.0}
float Lt_Diffuse [3] = {0.5, 0.5, 0.5, 0.5 }
float Lt_Ambient [3] = {0.2, 0.2, 0.2, 1.0 }
float Lt_Specular[3] = {1.0, 1.0, 1.0, 1.0 }
glMaterialfv GL_FRONT, GL_SPECULAR , &Mt_Specular
glMaterialfv GL_FRONT, GL_SHININESS, &Mt_Shiness
glMaterialfv GL_FRONT, GL_DIFFUSE , &Mt_Diffuse
glMaterialfv GL_FRONT, GL_AMBIENT , &Mt_Ambient
glLightfv GL_LIGHT1,GL_DIFFUSE , &Lt_Diffuse
glLightfv GL_LIGHT1,GL_AMBIENT , &Lt_Ambient
glLightfv GL_LIGHT1,GL_SPECULAR, &Lt_Specular
glLightfv GL_LIGHT1,GL_POSITION, &Lt_Position
while Key(27)=0
Cls 0, 0, 0
glLoadIdentity
glTranslatef 0.0, 0.0, -6.0
glRotatef rx,1.0, 0.0, 0.0
glRotatef ry,0.0, 1.0, 0.0
glRotatef rz,0.0, 0.0, 1.0
glEnable GL_LIGHT1
glEnable GL_LIGHTING
glEnable GL_TEXTURE_2D
glBindTexture GL_TEXTURE_2D, tex
glBegin GL_QUADS
glColor3f 1.0, 1.0, 0.0
glNormal3f 0.0, 1.0, 0.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0,-1.0
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0, 1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0, 1.0, 1.0
glColor3f 1.0, 0.0, 1.0
glNormal3f 0.0,-1.0, 0.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0,-1.0, 1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0,-1.0, 1.0
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0,-1.0,-1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0,-1.0,-1.0
glColor3f 0.0, 0.0, 1.0
glNormal3f 0.0, 0.0, 1.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0, 1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0, 1.0
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0,-1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0,-1.0, 1.0
glColor3f 0.0, 1.0, 1.0
glNormal3f 0.0, 0.0,-1.0
glTexCoord2f 0.0, 0.0 : glVertex3f 1.0,-1.0,-1.0
glTexCoord2f 1.0, 0.0 : glVertex3f -1.0,-1.0,-1.0
glTexCoord2f 1.0, 1.0 : glVertex3f -1.0, 1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f 1.0, 1.0,-1.0
glColor3f 0.0, 1.0, 0.0
glNormal3f -1.0, 0.0, 0.0
glTexCoord2f 1.0, 1.0 : glVertex3f -1.0, 1.0, 1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0,-1.0
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0,-1.0,-1.0
glTexCoord2f 1.0, 0.0 : glVertex3f -1.0,-1.0, 1.0
glColor3f 1.0, 0.0, 0.0
glNormal3f 1.0, 0.0, 0.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f 1.0, 1.0, 1.0
glTexCoord2f 0.0, 0.0 : glVertex3f 1.0,-1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0,-1.0,-1.0
glEnd
glDisable GL_LIGHTING
Text fnt,-0.160,0.350,0.032,0.032,"LIGHT CUBE"
rx +=0.6
ry +=0.5
rz +=0.4
SwapBuffer
wend
WinEnd
BTW: this program only works in fullscreen mode
include "gl.inc"
window 800,600,1
setframes 60
FontLoad "glfonts/font16.bmp"
FontLoad "glfonts/font25.bmp"
t1=BmpLoad "bmp/titan.bmp"
t2=BmpLoad "bmp/apple.bmp"
t3=BmpLoad "bmp/bat.bmp"
float xrot,yrot
Sub Quad2D(float x, y, z)
glPushMatrix
glTranslatef x, y, z
glBegin(gl_Quads)
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0,-1.0, 0.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0,-1.0, 0.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0, 0.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0, 0.0
glEnd
glPopMatrix
End Sub
Sub Quad3D(float x, y, z, an, rx, ry, rz)
glPushMatrix
glTranslatef x, y, z
glRotatef an, rx, ry, rz
glBegin(GL_QUADS)
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0,-1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0,-1.0, 1.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0, 1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f -1.0,-1.0,-1.0
glTexCoord2f 1.0, 1.0 : glVertex3f -1.0, 1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f 1.0, 1.0,-1.0
glTexCoord2f 0.0, 0.0 : glVertex3f 1.0,-1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0,-1.0
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0, 1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0, 1.0, 1.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0,-1.0
glTexCoord2f 1.0, 1.0 : glVertex3f -1.0,-1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f 1.0,-1.0,-1.0
glTexCoord2f 0.0, 0.0 : glVertex3f 1.0,-1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f -1.0,-1.0, 1.0
glTexCoord2f 1.0, 0.0 : glVertex3f 1.0,-1.0,-1.0
glTexCoord2f 1.0, 1.0 : glVertex3f 1.0, 1.0,-1.0
glTexCoord2f 0.0, 1.0 : glVertex3f 1.0, 1.0, 1.0
glTexCoord2f 0.0, 0.0 : glVertex3f 1.0,-1.0, 1.0
glTexCoord2f 0.0, 0.0 : glVertex3f -1.0,-1.0,-1.0
glTexCoord2f 1.0, 0.0 : glVertex3f -1.0,-1.0, 1.0
glTexCoord2f 1.0, 1.0 : glVertex3f -1.0, 1.0, 1.0
glTexCoord2f 0.0, 1.0 : glVertex3f -1.0, 1.0,-1.0
glEnd
glPopMatrix
End Sub
while Key(27)=0
Cls 0.0, 0.0, 0.0
glLoadIdentity
glTranslatef 0.0, 0.0, -10.0
glBegin(gl_Quads)
glColor3f 1.0, 0.0, 1.0
glVertex3f -1.0,-1.0, 0.0
glColor3f 1.0, 1.0, 1.0
glVertex3f 1.0,-1.0, 0.0
glVertex3f 1.0, 1.0, 0.0
glColor3f 1.0, 1.0, 1.0
glVertex3f -1.0, 1.0, 0.0
glEnd
glEnable GL_TEXTURE_2D
glBindTexture GL_TEXTURE_2D, t2
Quad2D -3, 0, -1
glBindTexture GL_TEXTURE_2D, t3
Quad2D 3, 0, -1
glBindTexture GL_TEXTURE_2D, t1
Quad3D(-6, 4,-6, xrot,1,0,1)
Quad3D( 6,-4,-6, yrot,0,1,0)
glColor3ub 255,128,0
Text 1, -0.064,0.340, 0.032,0.064, "HELLO "
glColor3ub 255,255,0
Text 1, -0.064,0.288, 0.032,0.064, " EAT "
glColor3ub 255,255,255
Text 1, -0.064, 0.240,0.032,0.064, "APPLES"
Text 2, -0.384,-0.400,0.064,0.064, "opengl demo "
xrot +=1.0
yrot +=1.0
SwapBuffer
wend
winEnd
this might be interesting. I tried several dimensions with my notebook and had these results with the above mentioned light cube demo:
include "ogl.inc"
window 720,720,1
enable GL_POINT_SMOOTH
single x=300, y=200, e=0.05, dx, dy, tx, ty
sys i, j
while key(27)=0
cls 0,0,0
for j=0 to scrH() step 40
for i=0 to scrW() step 40
color 255, 255, 255, 128
circle i, j, 40, 1
next
next
tx = xMouse()-10
dx = tx-x
if abs(dx) >1
x = x+dx*e
end if
ty = yMouse()-10
dy = ty-y
if abs(dy) >1
y = y+dy*e
end if
color 255,194,183,200
circle x, y, 40, 2
color 255,224,203,200
circle x, y, 30, 2
color 255,244,255,200
fillcircle x, y, 20
color 255,44,23,128
fillcircle scrW()/2, scrH()/2,75
color 23,44,255,128
fillcircle scrW()/2, scrH()/2-150,75
color 23,255,44,128
fillcircle scrW()/2, scrH()/2+150,75
setcaption "frames: " + getframes
redraw
wait 10
wend
winEnd
GLuint base // Base Display List For The Font Set
sub BuildFont() // Build Our Bitmap Font
sys font // Windows Font ID
sys oldfont // Used For Good House Keeping
base = glGenLists(255) // Storage For Characters
font = CreateFont( -24, // Height Of Font
0, // Width Of Font
0, // Angle Of Escapement
0, // Orientation Angle
FW_BOLD, // Font Weight
FALSE, // Italic
FALSE, // Underline
FALSE, // Strikeout
ANSI_CHARSET, // Character Set Identifier
OUT_TT_PRECIS, // Output Precision
CLIP_DEFAULT_PRECIS, // Clipping Precision
ANTIALIASED_QUALITY, // Output Quality
FF_DONTCARE|DEFAULT_PITCH, // Family And Pitch
"Courier New") // Font Name
oldfont = SelectObject(wglGetCurrentDC(), font) // Selects The Font We Want
wglUseFontBitmapsA(wglGetCurrentDC(), 32, 255-32, base) // Builds Characters Starting At Character 32
SelectObject(wglGetCurrentDC(), oldfont) // Selects The Font We Want
DeleteObject(font) // Delete The Font
end sub
sub KillFont() // Delete The Font List
glDeleteLists(base, 255) // Delete All Characters
end sub
sub glPrint(char *text) // Custom GL "Print" Routine
if len(text) = 0 then return // If There's No Text
glPushAttrib(GL_LIST_BIT) // Pushes The Display List Bits
glListBase(base - 32) // Sets The Base Character to 32
glCallLists(len(text), GL_UNSIGNED_BYTE, text) // Draws The Display List Text
glPopAttrib() // Pops The Display List Bits
end sub
% Title "ConsoleG Demo"
% Animated
'% ScaleUp
% PlaceCentral
% AnchorCentral
include "$\inc\ConsoleG.inc"
BeginScript
sub main
========
pushstate
scale 2,3
color 1,.5,0,1
printl "Hello"
scale 2, 1.25
if key(VK_F4) then rotatez -30
printl "World!"
popstate
end sub 'main
EndScript
% Title "ConsoleG Demo"
% Animated
'% ScaleUp
% PlaceCentral
% AnchorCentral
include "$\inc\ConsoleG.inc"
'Keys: Esc, arrow-keys, n,m, F4
BeginScript
sub main
========
static int z, y, x
pushstate
scale 2, 3
color 1,.5,0,1
print "Hello "
scale 2, 1.25
if key(VK_UP) then x-=2
if key(VK_DOWN) then x+=2
if key(VK_RIGHT) then y-=2
if key(VK_LEFT) then y+=2
if key(77) then z-=2 'm,M
if key(78) then z+=2 'n,N
if key(VK_F4) then x=0 : y=0 : z=0
rotatex x
rotatey y
rotatez z
print "World!"
popstate
end sub 'main
EndScript
macro MoveThisWithKeys(mv,an,k)
===============================
if key[VK_CONTROL]
if key[37] then a.y-=an : k=2 ' left
if key[39] then a.y+=an : k=2 ' right
if key[38] then a.x-=an : k=2 ' up
if key[40] then a.x+=an : k=2 ' down
if key[33] then a.z+=an : k=2 ' PgUp
if key[34] then a.z-=an : k=2 ' PgDn
if key[36]
a.x=0. : a.y=0. : a.z=0. : k=3 'HOME'
end if
static float m
m=1.0+m*.01
if key[0xbd] then s.x/=m : s.y/=m : s.z/=m : k=1 ' -
if key[0xbb] then s.x*=m : s.y*=m : s.z*=m : k=1 ' =
else
scope
static float m
if key[VK_SHIFT] then m=mv*3 else m=mv
if key[37] then p.x-=m : k=1 ' left
if key[39] then p.x+=m : k=1 ' right
if key[38] then p.y+=m : k=1 ' up
if key[40] then p.y-=m : k=1 ' down
if key[33] then p.z-=m : k=1 ' PgUp
if key[34] then p.z+=m : k=1 ' PgDn
'
end if
end scope
end macro
$ FileName "ConsoleGDemo.exe"
'include "$/inc/RTL32.inc"
% Title "ConsoleG Demo - F1 for Help"
% Animated
'% ScaleUp
% PlaceCentral
% AnchorCentral
% width 640
% height 480
include "$\inc\ConsoleG.inc"
'Keys: Esc, arrow-keys, n,m, F4, +,-
' F12 toggles fullscreen and windowed mode
'screen dimensions
int swidth = GetSystemMetrics (SM_CXSCREEN)
int sheight = GetSystemMetrics (SM_CYSCREEN)
bool fullscreen=FALSE
BeginScript
sub main
========
static float x,y,z
static float xspeed, yspeed, zspeed
static float m
static int wleft, wtop, wwidth, wheight
RECT wrc
'F1 HELP
'
if key[0x70]
pushstate
move 5,14
color 1,.8,.5
scale 1.5,1.0
printl "Active Keys:"
scale 1/1.5,1.0
printl
printl "ALT-F4, ESC - Exit"
printl "F12 - Toggle Fullscreen"
printl "Arrow Keys, N, M: "
printl "Start moving and"
printl " increase or decrease speed"
printl "+ increase move with faster speed"
printl "- decrease move with faster speed"
printl "F4 - Stop and reset values"
printl "F1 - This help"
printl
popstate
end if
'
lastkey=0
lastchar=0
pushstate
scale 2, 3
color 1,.5,0,1
print "Hello "
scale 2, 1.25
if key(VK_UP) then key(VK_UP)=FALSE : xspeed-=0.01
if key(VK_DOWN) then key(VK_DOWN)=FALSE : xspeed+=0.01
if key(VK_RIGHT) then key(VK_RIGHT)=FALSE : yspeed-=0.01
if key(VK_LEFT) then key(VK_LEFT)=FALSE : yspeed+=0.01
if key(77) then key(77)=FALSE : zspeed-=0.01 'm,M
if key(78) then key(78)=FALSE : zspeed+=0.01 'n,N
if key(VK_F4) then x = y = z = xspeed = yspeed = zspeed = 0.0
if key(VK_ADD) or key(187) then '+
key(VK_ADD) = FALSE : key(187)=FALSE
m=1.0+m*.1
xspeed*=m : yspeed*=m : zspeed*=m
end if
if key(VK_SUBTRACT) or key(189) then '-
key(VK_SUBTRACT)=FALSE: key(189)=FALSE
xspeed/=m : yspeed/=m : zspeed/=m
end if
if key(VK_F12) then
key(VK_F12) = FALSE
fullscreen = not fullscreen
if fullscreen then
GetWindowRect(hwndMain,@wrc)
wleft=wrc.left : wtop=wrc.top : wwidth=wrc.right-wrc.left : wheight=wrc.bottom-wrc.top
SetWindowLong(hWndMain, GWL_STYLE, WS_POPUP)
MoveWindow(hWndMain,0,0,swidth,sheight,1)
ShowWindow(hWndMain, SW_RESTORE)
else
SetWindowLong(hWndMain, GWL_STYLE, WS_OVERLAPPEDWINDOW)
MoveWindow(hWndMain,wleft,wtop,wwidth,wheight,1)
ShowWindow(hWndMain, SW_RESTORE)
end if
end if
rotatex x : x+=xspeed : if x>=360 then x-=360 : if x<=0 then x+=360
rotatey y : y+=yspeed : if y>=360 then y-=360 : if y<=0 then y+=360
rotatez z : z+=zspeed : if z>=360 then z-=360 : if z<=0 then z+=360
print "World!"
popstate
end sub 'main
EndScript
pushstate
color 1,.5,0,1
UserMovement m1,100 'identity in steps of 100
scale 2, 3
print "Hello "
popstate
move 5
pushstate
color 1,1,0,1
UserMovement m2,200
scale 4
print "World"
popstate
sub BuildFont (sys hWnd,hDC,hRC, string name, sys weight, base)
===============================================================
indexbase 0
LOGFONT glFont
sys glFontHandle
'
glFont.lfHeight = 1 'Height Of Font
glFont.lfWeight = weight 'Font Weight FW_BOLD etc
glFont.lfCharSet = ANSI_CHARSET 'Character Set Identifier
glFont.lfOutPrecision = OUT_TT_PRECIS 'Output Precision
glFont.lfClipPrecision = CLIP_DEFAULT_PRECIS 'Clipping Precision
glFont.lfQuality = ANTIALIASED_QUALITY 'Output Quality
glFont.lfPitchAndFamily = FF_DONTCARE or DEFAULT_PITCH 'Family And Pitch
glFont.lfFaceName = name ' "Arial" "Lucida Console" "Consolas" ' "Courier New" 'Font Name
'
glFontHandle = CreateFontIndirect(@glFont)
glFontHandle = SelectObject(hDC, glFontHandle)
wglUseFontOutlinesA (hDC, 0, 256, base, 0.0, .25, WGL_FONT_POLYGONS, @gmf[base-1024])
DeleteObject(glFontHandle)
end sub