148 lines
4.4 KiB
Lua
148 lines
4.4 KiB
Lua
-- hlistbox : add an horizontal list of widgets.
|
|
|
|
--[[
|
|
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 cwd = (...):gsub('%.hlistbox$', '') .. "."
|
|
|
|
local Menu = require(cwd .. "parent")
|
|
local HListBox = Menu:extend()
|
|
|
|
local menuutils = require(cwd .. "widgets.utils")
|
|
|
|
-- INIT FUNCTIONS
|
|
-- Initialize and configure functions.
|
|
|
|
function HListBox:new(menusystem, name, x, y, w, h, slotNumber)
|
|
self.view = {}
|
|
self.view.slotNumber = slotNumber
|
|
self.view.firstSlot = 1
|
|
HListBox.super.new(self, menusystem, name, x, y, w, h)
|
|
self.w = slotNumber * self.widget.w -- On fait en sorte que la hauteur
|
|
-- soit un multiple du nombre de slot et de leur hauteur
|
|
end
|
|
|
|
-- UPDATE FUNCTIONS
|
|
-- Update the menu every step.
|
|
|
|
function HListBox:updateWidgetSize()
|
|
self.widget.h = self.h
|
|
self.widget.w = math.floor( self.w / self.view.slotNumber )
|
|
end
|
|
|
|
function HListBox:update(dt)
|
|
self:updateView()
|
|
end
|
|
|
|
function HListBox:updateView()
|
|
if self.widget.selected < self.view.firstSlot then
|
|
self.view.firstSlot = self.widget.selected
|
|
end
|
|
if self.widget.selected > self.view.firstSlot + self.view.slotNumber - 1 then
|
|
self.view.firstSlot = self.widget.selected - self.view.slotNumber + 1
|
|
end
|
|
|
|
if self.view.firstSlot < 1 then
|
|
self.view.firstSlot = 1
|
|
end
|
|
end
|
|
|
|
-- KEYBOARD FUNCTIONS
|
|
-- Handle key check.
|
|
|
|
function HListBox:keyreleased(key, code)
|
|
|
|
if key == 'left' then
|
|
self:moveCursor(self.widget.selected - 1)
|
|
end
|
|
|
|
if key == 'right' then
|
|
self:moveCursor(self.widget.selected + 1)
|
|
end
|
|
|
|
if key == "A" then
|
|
if (self.widget.selected >= 1 and self.widget.selected <= #self.widget.list) then
|
|
self.widget.list[self.widget.selected]:action("key")
|
|
end
|
|
end
|
|
|
|
if key == "B" then
|
|
if (self.widget.cancel >= 1 and self.widget.cancel <= #self.widget.list) then
|
|
self.widget.list[self.widget.cancel]:action("key")
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
-- MOUSE FUNCTIONS
|
|
-- Click and stuff like that.
|
|
|
|
function HListBox:mousemoved(x, y)
|
|
local widget_selected = self.view.firstSlot + math.floor(x / self.widget.w)
|
|
|
|
if widget_selected >= 1 and widget_selected <= #self.widget.list then
|
|
self.widget.selected = widget_selected
|
|
self:getFocus()
|
|
end
|
|
end
|
|
|
|
function HListBox:mousepressed(x, y, button, isTouch)
|
|
local widget_selected = self.view.firstSlot + math.floor(x / self.widget.w)
|
|
|
|
if widget_selected >= 1 and widget_selected <= #self.widget.list then
|
|
self.widget.selected = widget_selected
|
|
self:getFocus()
|
|
if #self.widget.list > 0 then
|
|
self.widget.list[self.widget.selected]:action("pointer")
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
-- DRAW FUNCTIONS
|
|
-- Draw the menu and its content
|
|
|
|
function HListBox:draw()
|
|
self:updateView()
|
|
local widgetx = self.x
|
|
for i,v in ipairs(self.widget.list) do
|
|
if (i >= self.view.firstSlot) and (i < self.view.firstSlot + self.view.slotNumber) then
|
|
v:draw(widgetx, self.y, self.widget.w, self.h)
|
|
if self.widget.selected == i and self:haveFocus() == true then
|
|
v:drawSelected(widgetx, self.y, self.widget.w, self.h)
|
|
else
|
|
v:draw(widgetx, self.y, self.widget.w, self.h)
|
|
end
|
|
widgetx = widgetx + self.widget.w
|
|
end
|
|
end
|
|
end
|
|
|
|
function HListBox:drawCursor()
|
|
self:updateView()
|
|
if (self.widget.selected >= 1 and self.widget.selected <= #self.widget.list) then
|
|
local w, h = self:getWidgetSize()
|
|
local x = (self.widget.selected - self.view.firstSlot) * w
|
|
menuutils.drawCursor(self.x + x,self.y, w, h)
|
|
end
|
|
end
|
|
|
|
return HListBox
|