summaryrefslogtreecommitdiff
path: root/examples/window/main.lua
blob: ed0227b90e875d5be45d3c0dd3d263efd27bb0a1 (plain)
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
local textColor = RL.BLACK
local textPos = { 192, 200 }
local text = "Congrats! You created your first window!"
local texture = nil

function RL.init()
	RL.SetWindowTitle( "First window" )
	RL.SetWindowState( RL.FLAG_VSYNC_HINT )

	local path = RL.GetBasePath().."../resources/images/cat.png"
	print( "path", path )

	texture = RL.LoadTexture( path )
	print( "texture", texture )
end

function RL.process( delta )
	if RL.IsKeyPressed( RL.KEY_ENTER ) then
		local textSize = RL.MeasureText( 0, text, 20, 2 )
		local winSize = RL.GetScreenSize()

		textColor = RL.BLUE
		textPos = { winSize[1] / 2 - textSize[1] / 2, winSize[2] / 2 - textSize[2] / 2 }
	end

	if RL.IsKeyPressed( RL.KEY_SPACE ) then
		textColor = RL.BLACK
		textPos = { 192, 200 }
	end
end

function RL.draw()
	RL.ClearBackground( RL.RAYWHITE )
	RL.DrawTexture( texture, { 20, 20 }, RL.WHITE )
    RL.DrawText( RL.defaultFont, text, textPos, 20, 2, textColor )
end