diff --git a/sonic-radiance.love/assets/artworks/logo.png b/sonic-radiance.love/assets/artworks/logo.png new file mode 100644 index 0000000..a36d42a Binary files /dev/null and b/sonic-radiance.love/assets/artworks/logo.png differ diff --git a/sonic-radiance.love/assets/artworks/titlescreen_sonic.png b/sonic-radiance.love/assets/artworks/titlescreen_sonic.png new file mode 100644 index 0000000..3fd3477 Binary files /dev/null and b/sonic-radiance.love/assets/artworks/titlescreen_sonic.png differ diff --git a/sonic-radiance.love/assets/backgrounds/titlescreen.png b/sonic-radiance.love/assets/backgrounds/titlescreen.png new file mode 100644 index 0000000..7eae0c9 Binary files /dev/null and b/sonic-radiance.love/assets/backgrounds/titlescreen.png differ diff --git a/sonic-radiance.love/main.lua b/sonic-radiance.love/main.lua index 37d4cde..d32f49e 100644 --- a/sonic-radiance.love/main.lua +++ b/sonic-radiance.love/main.lua @@ -32,7 +32,7 @@ function love.load() core = Core() game = Game() - scenes.test() + scenes.title() end function love.update(dt) diff --git a/sonic-radiance.love/scenes/init.lua b/sonic-radiance.love/scenes/init.lua index 49d7467..0ad2e04 100644 --- a/sonic-radiance.love/scenes/init.lua +++ b/sonic-radiance.love/scenes/init.lua @@ -1,3 +1,4 @@ return { - test = require "scenes.test_scene" + test = require "scenes.test_scene", + title = require "scenes.titlescreen", } diff --git a/sonic-radiance.love/scenes/titlescreen/init.lua b/sonic-radiance.love/scenes/titlescreen/init.lua new file mode 100644 index 0000000..1567ae2 --- /dev/null +++ b/sonic-radiance.love/scenes/titlescreen/init.lua @@ -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