159 lines
5.6 KiB
Lua
Executable File

require("iuplua")
require("iupluagl")
require("luagl")
require("luaglu")
iup.key_open()
rtri = 0
rquad = 0
cnv = iup.glcanvas{buffer="DOUBLE", rastersize = "640x480"}
timer = iup.timer{time=10}
function timer:action_cb()
rtri = rtri + 0.2 -- Increase The Rotation Variable For The Triangle ( NEW )
rquad = rquad - 0.15 -- Decrease The Rotation Variable For The Quad ( NEW )
iup.Update(cnv)
end
function cnv:resize_cb(width, height)
iup.GLMakeCurrent(self)
gl.Viewport(0, 0, width, height)
gl.MatrixMode('PROJECTION') -- Select The Projection Matrix
gl.LoadIdentity() -- Reset The Projection Matrix
if height == 0 then -- Calculate The Aspect Ratio Of The Window
height = 1
end
glu.Perspective(80, width / height, 1, 5000)
gl.MatrixMode('MODELVIEW') -- Select The Model View Matrix
gl.LoadIdentity() -- Reset The Model View Matrix
end
function cnv:action(x, y)
iup.GLMakeCurrent(self)
gl.Clear('COLOR_BUFFER_BIT,DEPTH_BUFFER_BIT') -- Clear Screen And Depth Buffer
gl.LoadIdentity() -- Reset The Current Modelview Matrix
gl.Translate(-1.5, 0, -6) -- Move Left 1.5 Units And Into The Screen 6.0
gl.Rotate(rtri, 0, 1, 0) -- Rotate The Triangle On The Y axis ( NEW )
gl.Begin('TRIANGLES') -- Drawing The Pyramid
gl.Color ( 1, 0, 0) -- Red
gl.Vertex( 0, 1, 0) -- Top Of Triangle (Front)
gl.Color ( 0, 1, 0) -- Green
gl.Vertex(-1,-1, 1) -- Left Of Triangle (Front)
gl.Color ( 0, 0, 1) -- Blue
gl.Vertex( 1,-1, 1) -- Right Of Triangle (Front)
gl.Color ( 1, 0, 0) -- Red
gl.Vertex( 0, 1, 0) -- Top Of Triangle (Right)
gl.Color ( 0, 0, 1) -- Blue
gl.Vertex( 1,-1, 1) -- Left Of Triangle (Right)
gl.Color ( 0, 1, 0) -- Green
gl.Vertex( 1,-1,-1) -- Right Of Triangle (Right)
gl.Color ( 1, 0, 0) -- Red
gl.Vertex( 0, 1, 0) -- Top Of Triangle (Back)
gl.Color ( 0, 1, 0) -- Green
gl.Vertex( 1,-1,-1) -- Left Of Triangle (Back)
gl.Color ( 0, 0, 1) -- Blue
gl.Vertex(-1,-1,-1) -- Right Of Triangle (Back)
gl.Color ( 1, 0, 0) -- Red
gl.Vertex( 0, 1, 0) -- Top Of Triangle (Left)
gl.Color ( 0, 0, 1) -- Blue
gl.Vertex(-1,-1,-1) -- Left Of Triangle (Left)
gl.Color ( 0, 1, 0) -- Green
gl.Vertex(-1,-1, 1) -- Right Of Triangle (Left)
gl.End() -- Done Drawing The Pyramid
gl.LoadIdentity() -- Reset The Current Modelview Matrix
gl.Translate(1.5, 0, -7) -- Move Right And Into The Screen
gl.Rotate(rquad, 1, 1, 1) -- Rotate The Quad On The X, Y & Z
gl.Begin('QUADS') -- Draw A Cube
gl.Color(0, 1, 0) -- Set The Color To Green
gl.Vertex( 1, 1,-1) -- Top Right Of The Quad (Top)
gl.Vertex(-1, 1,-1) -- Top Left Of The Quad (Top)
gl.Vertex(-1, 1, 1) -- Bottom Left Of The Quad (Top)
gl.Vertex( 1, 1, 1) -- Bottom Right Of The Quad (Top)
gl.Color(1, 0.5, 0) -- Set The Color To Orange
gl.Vertex( 1,-1, 1) -- Top Right Of The Quad (Bottom)
gl.Vertex(-1,-1, 1) -- Top Left Of The Quad (Bottom)
gl.Vertex(-1,-1,-1) -- Bottom Left Of The Quad (Bottom)
gl.Vertex( 1,-1,-1) -- Bottom Right Of The Quad (Bottom)
gl.Color(1, 0, 0) -- Set The Color To Red
gl.Vertex( 1, 1, 1) -- Top Right Of The Quad (Front)
gl.Vertex(-1, 1, 1) -- Top Left Of The Quad (Front)
gl.Vertex(-1,-1, 1) -- Bottom Left Of The Quad (Front)
gl.Vertex( 1,-1, 1) -- Bottom Right Of The Quad (Front)
gl.Color(1, 1, 0) -- Set The Color To Yellow
gl.Vertex( 1,-1,-1) -- Bottom Left Of The Quad (Back)
gl.Vertex(-1,-1,-1) -- Bottom Right Of The Quad (Back)
gl.Vertex(-1, 1,-1) -- Top Right Of The Quad (Back)
gl.Vertex( 1, 1,-1) -- Top Left Of The Quad (Back)
gl.Color(0, 0, 1) -- Set The Color To Blue
gl.Vertex(-1, 1, 1) -- Top Right Of The Quad (Left)
gl.Vertex(-1, 1,-1) -- Top Left Of The Quad (Left)
gl.Vertex(-1,-1,-1) -- Bottom Left Of The Quad (Left)
gl.Vertex(-1,-1, 1) -- Bottom Right Of The Quad (Left)
gl.Color(1, 0, 1) -- Set The Color To Violet
gl.Vertex( 1, 1,-1) -- Top Right Of The Quad (Right)
gl.Vertex( 1, 1, 1) -- Top Left Of The Quad (Right)
gl.Vertex( 1,-1, 1) -- Bottom Left Of The Quad (Right)
gl.Vertex( 1,-1,-1) -- Bottom Right Of The Quad (Right)
gl.End() -- Done Drawing The Cube
iup.GLSwapBuffers(self)
end
function cnv:k_any(c)
if c == iup.K_q or c == iup.K_ESC then
return iup.CLOSE
elseif c == iup.K_F1 then
if fullscreen then
fullscreen = false
dlg.fullscreen = "No"
else
fullscreen = true
dlg.fullscreen = "Yes"
end
end
end
function cnv:map_cb()
iup.GLMakeCurrent(self)
gl.ShadeModel('SMOOTH') -- Enable Smooth Shading
gl.ClearColor(0, 0, 0, 0.5) -- Black Background
gl.ClearDepth(1.0) -- Depth Buffer Setup
gl.Enable('DEPTH_TEST') -- Enables Depth Testing
gl.DepthFunc('LEQUAL') -- The Type Of Depth Testing To Do
gl.Enable('COLOR_MATERIAL')
gl.Hint('PERSPECTIVE_CORRECTION_HINT','NICEST')
end
dlg = iup.dialog{cnv; title="LuaGL Test Application 05"}
dlg:show()
cnv.rastersize = nil -- reset minimum limitation
timer.run = "YES"
if (not iup.MainLoopLevel or iup.MainLoopLevel()==0) then
iup.MainLoop()
end