'// GDK_GL_2 Base Code - By John Onyon a.k.a Unseen Machine \\
'/////////////////////////////////////////////////////////////////////////////////
REM $INCLUDE:
'GDK_GL\GDK_GL.bi' '// Include a reference to the GDK_GL.bi library '/////////////////////////////////////////////////////////////////////////////////
DIM SHARED Mouse
(1) AS MouseState
, Kb
(1) AS KeyBoardState
'// For Input capture DIM SHARED CamVec
AS VECTOR_GL
, RadHelp#
, Init_GL
, Allow_GL
AS _BYTE '// For Camera, Movement and GL initialisation
'// Initial Setup \\
_FPS 30 ' // Set maximum frames per second
'// Define a variable to assist in first person camera movement caluclations
RadHelp#
= (4 * ATN(1)) / 180
'// Now everything is set up we can allow SUB _GL, first we initialise it. \\
Init_GL = True
Allow_GL = True
'// Main program loop
_LIMIT 30 '// Limit the loop to a maximum of 30 loops per second \\
'// Get the state off input devices \\
GDK_Mouse_GetState Mouse(0) '// Get the mouse state
GDK_Keyboard_GetState Kb(0) '// Get keyboard state
'// Do game logic here \\
'// Copy the mousestate/keyboardstate for comparisons next loop \\
Mouse(1) = Mouse(0)
Kb(1) = Kb(0)
'// End of main program loop
_glClearColor 0, 0, 0, 1 '// Set background (clear) color to black _glEnable _GL_DEPTH_TEST
'// Enables depth buffer for hidden surface removal
'// Setup a perspective view
_gluPerspective 80, 800 / 600, 1, 400 '// Field of view, Aspect ratio, near depth, far depth
IF Init_GL
= True
THEN '// If GL is in initialisation mode (Loading stuff such as model and textures)
'// Load everything here
'// Change the GL mode setting
Init_GL = False
'// Clear the depth buffer and reset the view matrix (effectively CLS)
GDK_GL_CLS
'// Set enviroment to camera coordinates/Rotation
GDK_GL_VECTOR_APPLY_RT CamVec
'// library inclusions