diff options
author | Indrajith K L | 2022-03-01 18:19:59 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-01 18:19:59 +0530 |
commit | 6227a1c681c0559add922a7e68cd634fcc85df41 (patch) | |
tree | 7a01d52d39fe9483ae4788bb40d46c570325ea1f /core/notifications.lua | |
parent | f5eaa22a1c9598c9f7a55a41614d1ce4769dee4a (diff) | |
download | YEAD-6227a1c681c0559add922a7e68cd634fcc85df41.tar.gz YEAD-6227a1c681c0559add922a7e68cd634fcc85df41.tar.bz2 YEAD-6227a1c681c0559add922a7e68cd634fcc85df41.zip |
* Cosmetic Changes in Menu
* New Fonts Added
* Menu rendering changes
* Removed Hacky text co-ordinate calculations
* Replaced with love.text
* Disappearing Notification messages implemented
Diffstat (limited to 'core/notifications.lua')
-rw-r--r-- | core/notifications.lua | 43 |
1 files changed, 30 insertions, 13 deletions
diff --git a/core/notifications.lua b/core/notifications.lua index 05950f2..ec0a1e1 100644 --- a/core/notifications.lua +++ b/core/notifications.lua @@ -1,31 +1,48 @@ Class = require("libs.hump.class") Timer = require("libs.hump.timer") +require("core.constants") Notifications = Class { init = function(self, zoomFactor) - color = {1, 0, 0, 1} - local windowWidth, windowHeight = love.graphics.getDimensions() + windowWidth, windowHeight = love.graphics.getDimensions() end, - _message={} + messages={} } function Notifications:update(dt) - Timer.update(dt) + for i,obj in pairs(self.messages) do + if obj.timer then + obj.timer:update(dt) + end + end end function Notifications:draw() - if self._message then - love.graphics.setColor(color) - love.graphics.print(self._message, 10, wind) + love.graphics.setFont(constants.defaultFont) + local defaultY = windowHeight - 20 + for i,obj in pairs(self.messages) do + love.graphics.setColor(obj.color) + love.graphics.print(obj.message, 10, defaultY) + defaultY = defaultY - 15 end end function Notifications:send(message) - self._message = message - color = {1, 0, 0, 1} - if Timer then - Timer.clear() - end - Timer.tween(5, color, {0, 0, 0, 0}, 'linear') + local messageItem={ + message=message, + color={1, 0, 0, 1}, + timer=nil + } + table.insert(self.messages, messageItem) + for i,obj in pairs(self.messages) do + if obj.timer==nil then + obj.timer = Timer.new() + obj.timer:tween(5, obj.color, {0, 0, 0, 0}, 'linear', function() + obj.timer:clear() + obj.timer = nil + table.remove(self.messages, 1) + end) + end + end end return Notifications
\ No newline at end of file |