Rocket-Bytes/Source/Main.lua

36 lines
693 B
Lua
Raw Normal View History

2022-04-17 19:27:36 +00:00
import "CoreLibs/graphics"
import "CoreLibs/sprites"
import "Player"
2022-04-19 21:32:18 +00:00
import "Map"
2022-04-22 18:48:45 +00:00
import "Menu"
local mode = "menu"
2022-04-19 21:32:18 +00:00
local gfx <const> = playdate.graphics
2022-04-19 21:32:18 +00:00
local disp <const> = playdate.display
2022-04-17 19:27:36 +00:00
local font <const> = gfx.font.new("gfx/font")
2022-04-22 18:48:45 +00:00
2022-04-17 19:27:36 +00:00
gfx.setFont(font)
gfx.setBackgroundColor(gfx.kColorBlack)
2022-04-19 21:32:18 +00:00
local song1 <const> = playdate.sound.sampleplayer.new("sfx/song1")
2022-04-17 19:27:36 +00:00
song1:play(0, 1)
2022-04-22 18:48:45 +00:00
gfx.setColor(gfx.kColorWhite)
--addMap("levels/level1.json")
2022-04-17 19:27:36 +00:00
2022-04-22 18:48:45 +00:00
--addPlayer(50,50)
2022-04-17 19:27:36 +00:00
function playdate.update()
2022-04-22 18:48:45 +00:00
if mode == "menu" then
updateMenu()
2022-04-17 19:27:36 +00:00
2022-04-22 18:48:45 +00:00
elseif mode == "game" then
updatePlayer()
2022-04-17 19:27:36 +00:00
2022-04-22 18:48:45 +00:00
gfx.clear(gfx.kColorBlack)
gfx.sprite.update()
drawTiles()
end
2022-04-17 19:27:36 +00:00
end