src/scene: add an initial titlescreen scene to test assets

This commit is contained in:
Kazhnuz 2019-01-28 13:46:57 +01:00
parent 7df5f0bdf6
commit cc0f5973ce
6 changed files with 58 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

View file

@ -32,7 +32,7 @@ function love.load()
core = Core()
game = Game()
scenes.test()
scenes.title()
end
function love.update(dt)

View file

@ -1,3 +1,4 @@
return {
test = require "scenes.test_scene"
test = require "scenes.test_scene",
title = require "scenes.titlescreen",
}

View file

@ -0,0 +1,55 @@
-- scenes/test :: a basic test scene
--[[
Copyright © 2019 Kazhnuz
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
]]
local Scene = require "core.modules.scenes"
local TitleScreen = Scene:extend()
local gui = require "game.modules.gui"
function TitleScreen:new()
TitleScreen.super.new(self)
self.borders = gui.newBorder(424, 30, 8)
self.assets:addImage("background", "assets/backgrounds/titlescreen.png")
self.assets:addImage("sonic", "assets/artworks/titlescreen_sonic.png")
self.assets:addImage("logo", "assets/artworks/logo.png")
self:register()
end
function TitleScreen:update(dt)
end
function TitleScreen:draw()
utils.graphics.resetColor()
self.assets:drawImage("background", 0, 0)
love.graphics.draw(self.borders, 0, 25, 0, 1, -1)
love.graphics.draw(self.borders, 424, 215, 0, -1, 1)
self.assets:drawImage("sonic", 90, 128, 0, 1, 1, 92, 106)
self.assets:drawImage("logo", 290, 60, 0, 1, 1, 150, 71)
end
return TitleScreen