2021-11-25 10:46:15 +01:00
|
|
|
-- view2D.lua : A basic 2D view for menus.
|
|
|
|
-- Must be used as a subobject of a Menu
|
2019-02-03 19:40:28 +01:00
|
|
|
|
|
|
|
--[[
|
|
|
|
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.
|
|
|
|
]]
|
2021-11-25 10:46:15 +01:00
|
|
|
local View1D = require "birb.modules.gui.menus.views.view1D"
|
|
|
|
local View2D = View1D:extend()
|
2019-02-03 19:40:28 +01:00
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
function View2D:new(colNumber, lineNumber)
|
|
|
|
self.colNumber = colNumber
|
|
|
|
self.lineNumber = lineNumber
|
|
|
|
View2D.super.new(self, (colNumber * lineNumber))
|
|
|
|
end
|
2019-02-03 19:40:28 +01:00
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
function View2D:updateFirstSlot(widgetID)
|
|
|
|
local _, line = self:getCoord(widgetID)
|
|
|
|
local _, beginline = self:getCoord(self.firstSlot)
|
2019-02-03 19:40:28 +01:00
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
beginline = math.min(line, math.max(0, beginline, line - (self.lineNumber - 1)))
|
|
|
|
self.view.firstSlot = (beginline * self.view.colNumber) + 1
|
2019-02-03 19:40:28 +01:00
|
|
|
end
|
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
-- INFO FUNCTIONS
|
|
|
|
-- Get informations
|
2019-02-03 19:40:28 +01:00
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
function View2D:getCoord(x)
|
|
|
|
-- On simplifie les calcul en prenant 0 comme départ
|
|
|
|
local x = x - 1
|
2019-12-28 10:05:38 +01:00
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
local line, col
|
|
|
|
line = math.floor(x / self.view.colNumber)
|
|
|
|
col = x - (line * self.view.colNumber)
|
2019-12-28 10:05:38 +01:00
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
return col, line
|
2019-12-28 10:05:38 +01:00
|
|
|
end
|
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
function View2D:getFromCoord(col, line)
|
|
|
|
local _, beginline = self.view:getCoord(self.view.firstSlot)
|
|
|
|
local line = beginline + line
|
|
|
|
return (line * self.view.colNumber) + col + 1
|
2019-12-28 10:05:38 +01:00
|
|
|
end
|
|
|
|
|
2021-11-25 10:46:15 +01:00
|
|
|
return View2D
|