summaryrefslogtreecommitdiff
path: root/examples/ray_box_cells
diff options
context:
space:
mode:
authorjussi2024-07-19 22:57:31 +0300
committerjussi2024-07-19 22:57:31 +0300
commit03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f (patch)
tree44c801b37e675aa63a0b13c7548be33e765e5842 /examples/ray_box_cells
parentc7b7975482bb33e7fb352c5759920748b6d3769b (diff)
downloadreilua-enhanced-03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f.tar.gz
reilua-enhanced-03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f.tar.bz2
reilua-enhanced-03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f.zip
GetRayBoxCells.
Diffstat (limited to 'examples/ray_box_cells')
-rw-r--r--examples/ray_box_cells/main.lua116
1 files changed, 116 insertions, 0 deletions
diff --git a/examples/ray_box_cells/main.lua b/examples/ray_box_cells/main.lua
new file mode 100644
index 0000000..9c7e54f
--- /dev/null
+++ b/examples/ray_box_cells/main.lua
@@ -0,0 +1,116 @@
+package.path = package.path..";"..RL.GetBasePath().."../resources/lib/?.lua"
+
+Util = require( "utillib" )
+Vector2 = require( "vector2" )
+Vector3 = require( "vector3" )
+Rectangle = require( "rectangle" )
+BoundinBox = require( "bounding_box" )
+Cam3D = require( "camera3d" )
+
+local monitor = 0
+local camera = {}
+
+local box = BoundinBox:new( { -8, 0, -8 }, { 16, 16, 16 } )
+local cellSize = Vector3:new( 1, 1, 1 )
+local drawCellSize = cellSize:clone()
+local ray = nil
+local rayCol = nil
+local cells = {}
+
+local guiMouseHover = false
+local spinnerEdit = {
+ x = false,
+ y = false,
+ z = false
+}
+
+function RL.init()
+ local mPos = Vector2:newT( RL.GetMonitorPosition( monitor ) )
+ local mSize = Vector2:newT( RL.GetMonitorSize( monitor ) )
+ local winSize = Vector2:new( 1028, 720 )
+
+ RL.SetWindowTitle( "Ray box cells" )
+ RL.SetWindowState( RL.FLAG_WINDOW_RESIZABLE )
+ RL.SetWindowState( RL.FLAG_VSYNC_HINT )
+ RL.SetWindowSize( winSize )
+ RL.SetWindowPosition( { mPos.x + mSize.x / 2 - winSize.x / 2, mPos.y + mSize.y / 2 - winSize.y / 2 } )
+ RL.SetTextLineSpacing( 26 )
+
+ camera = Cam3D:new()
+
+ camera:setPosition( { 0, 8, 16 } )
+ camera:setTarget( { 0, 0, 0 } )
+ camera:setUp( { 0, 1, 0 } )
+ camera.mode = camera.MODES.FREE
+
+ RL.GuiSetStyle( RL.DEFAULT, RL.TEXT_SIZE, 24 )
+end
+
+function RL.update( delta )
+ camera:update( delta )
+
+ if RL.IsKeyPressed( RL.KEY_SPACE ) then
+ if camera.mode == camera.MODES.FREE then
+ camera.mode = camera.MODES.FIRST_PERSON
+ else
+ camera.mode = camera.MODES.FREE
+ end
+ end
+
+ -- Raycast.
+
+ -- if not guiMouseHover then
+ if not guiMouseHover and RL.IsMouseButtonPressed( RL.MOUSE_BUTTON_LEFT ) then
+ ray = RL.GetMouseRay( RL.GetMousePosition(), camera.camera )
+ rayCol = box:getRayCollision( ray )
+
+ cells = RL.GetRayBoxCells( ray, box:maxToPos(), cellSize )
+ drawCellSize:setV( cellSize )
+ end
+end
+
+local function drawSpinner( axis, pos )
+ local result = 0
+ local bounds = Rectangle:temp( pos.x, pos.y, 96, 24 )
+
+ result, cellSize[ axis ] = RL.GuiSpinner( bounds, axis, cellSize[ axis ], 1, box.max[ axis ], spinnerEdit[ axis ] )
+
+ if result == 1 then
+ spinnerEdit[ axis ] = not spinnerEdit[ axis ]
+ end
+
+ if bounds:checkCollisionPoint( RL.GetMousePosition() ) then
+ guiMouseHover = true
+ end
+end
+
+function RL.draw()
+ RL.ClearBackground( RL.LIGHTGRAY )
+
+ camera:beginMode3D()
+ RL.DrawGrid( 16, 1 )
+ RL.DrawCubeWires( box.min + box.max:scale( 0.5 ), box.max, RL.WHITE )
+
+ if ray then
+ RL.DrawRay( ray, RL.BLUE )
+ RL.DrawSphere( ray[1], 0.1, RL.GREEN )
+ end
+
+ if rayCol and rayCol.hit then
+ RL.DrawSphere( rayCol.point, 0.1, RL.RED )
+ end
+
+ if cells then
+ for _, cell in ipairs( cells ) do
+ RL.DrawCubeWires( box.min + Vector3:tempT( cell ) * drawCellSize + drawCellSize:scale( 0.5 ), drawCellSize, RL.RED )
+ RL.DrawCube( box.min + Vector3:tempT( cell ) * drawCellSize + drawCellSize:scale( 0.5 ), drawCellSize, { 150, 200, 150, 150 } )
+ end
+ end
+ camera:endMode3D()
+
+ guiMouseHover = false
+
+ drawSpinner( "x", Vector2:temp( 16, 2 ) )
+ drawSpinner( "y", Vector2:temp( 16, 22 ) )
+ drawSpinner( "z", Vector2:temp( 16, 44 ) )
+end