2019-02-10 11:56:45 +01:00
|
|
|
local cwd = (...):gsub('%.grid$', '') .. "."
|
2019-02-10 12:00:02 +01:00
|
|
|
local Menu = require(cwd .. "parent")
|
2019-02-10 11:56:45 +01:00
|
|
|
|
2019-02-12 19:27:02 +01:00
|
|
|
local GridBox = Menu:extend()
|
2019-02-10 11:56:45 +01:00
|
|
|
|
2019-02-13 18:25:41 +01:00
|
|
|
function GridBox:new(menusystem, name, x, y, w, h, colNumber, lineNumber)
|
2019-02-13 18:50:06 +01:00
|
|
|
self.view = {}
|
2019-02-13 19:07:44 +01:00
|
|
|
self.view.slotNumber = colNumber * lineNumber
|
|
|
|
self.view.colNumber = colNumber
|
|
|
|
self.view.lineNumber = lineNumber
|
2019-02-11 20:04:24 +01:00
|
|
|
GridBox.super.new(self, menusystem, name, x, y, w, h)
|
2019-02-10 11:56:45 +01:00
|
|
|
self.begin = 1
|
2019-02-13 18:25:41 +01:00
|
|
|
self.h = lineNumber * self.widget.h -- On fait en sorte que la hauteur
|
2019-02-13 19:07:44 +01:00
|
|
|
self.w = colNumber * self.widget.w -- et la largeur
|
2019-02-10 11:56:45 +01:00
|
|
|
-- soit un multiple du nombre de slot et de leur dimensions
|
|
|
|
self.cursor = {}
|
|
|
|
self.cursor.x = 0
|
|
|
|
self.cursor.y = 0
|
|
|
|
|
|
|
|
-- La gridbox possède la particularité de pouvoir fusioner des slots, on fait
|
|
|
|
-- donc une liste de slots disponibles, qui serviront par la suite.
|
2019-02-13 18:25:41 +01:00
|
|
|
self.slots = {}
|
|
|
|
for i= 1, self.view.slotNumber do
|
|
|
|
self.slots[i] = {}
|
|
|
|
self.slots[i].height = 1
|
|
|
|
self.slots[i].width = 1
|
|
|
|
self.slots[i].isChild = 0
|
|
|
|
self.slots[i].widgetID = i
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-11 19:56:36 +01:00
|
|
|
function GridBox:updateWidgetSize()
|
2019-02-13 19:07:44 +01:00
|
|
|
self.widget.h = math.floor( self.h / self.view.lineNumber )
|
2019-02-13 18:25:41 +01:00
|
|
|
self.widget.w = math.floor( self.w / self.view.colNumber )
|
2019-02-10 21:05:31 +01:00
|
|
|
end
|
|
|
|
|
2019-02-13 18:35:13 +01:00
|
|
|
function GridBox:getWidgetSize(id)
|
|
|
|
local slot = self:getWidgetSlot(id)
|
2019-02-13 19:07:44 +01:00
|
|
|
return self.widget.w * self.slots[slot].width, self.widget.h * self.slots[slot].height
|
2019-02-13 18:35:13 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:getWidgetSlot(widgetID)
|
|
|
|
local slot = 0
|
|
|
|
for i,v in ipairs(self.slots) do
|
|
|
|
if (self.slots[i].widgetID == widgetID) then
|
|
|
|
slot = i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return slot
|
|
|
|
end
|
|
|
|
|
2019-02-10 11:56:45 +01:00
|
|
|
function GridBox:update(dt)
|
|
|
|
self.begin = 1
|
|
|
|
local slotID = self:getSlotbyCoord(self.cursor.x, self.cursor.y)
|
2019-02-13 18:25:41 +01:00
|
|
|
if self.slots[slotID].isChild > 0 then
|
|
|
|
slotID = self.slots[slotID].isChild
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
2019-02-13 18:25:41 +01:00
|
|
|
self.widget.selected = self.slots[slotID].widgetID
|
2019-02-10 11:56:45 +01:00
|
|
|
self.cursor.x, self.cursor.y = self:getCoord(slotID)
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:regenSlots()
|
|
|
|
local widgetID = 1
|
2019-02-13 18:25:41 +01:00
|
|
|
for i,v in ipairs(self.slots) do
|
2019-02-13 17:10:57 +01:00
|
|
|
if v.isChild == 0 and (widgetID <= #self.widget.list) then
|
2019-02-13 18:25:41 +01:00
|
|
|
self.slots[i].widgetID = widgetID
|
2019-02-10 11:56:45 +01:00
|
|
|
widgetID = widgetID + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:addCol(slotID)
|
|
|
|
local col, line = self:getCoord(slotID)
|
2019-02-13 18:25:41 +01:00
|
|
|
if (col + self.slots[slotID].width + 1) <= self.view.colNumber then
|
|
|
|
slotChild = slotID + self.slots[slotID].width
|
|
|
|
for i = 1, self.slots[slotID].height do
|
|
|
|
self.slots[slotChild + ((i-1)* self.view.colNumber)].isChild = slotID
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
2019-02-13 18:25:41 +01:00
|
|
|
self.slots[slotID].width = self.slots[slotID].width + 1
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:addLine(slotID)
|
|
|
|
local col, line = self:getCoord(slotID)
|
2019-02-13 18:25:41 +01:00
|
|
|
if (line + self.slots[slotID].height + 1) <= self.view.colNumber then
|
|
|
|
slotChild = slotID + (self.slots[slotID].height * self.view.colNumber)
|
|
|
|
for i = 1, self.slots[slotID].width do
|
|
|
|
self.slots[slotChild + (i-1)].isChild = slotID
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
2019-02-13 18:25:41 +01:00
|
|
|
self.slots[slotID].height = self.slots[slotID].height + 1
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:getCoord(id_selected)
|
|
|
|
id_selected = id_selected - 1 -- On simplifie les calcul en prenant 0 comme départ
|
|
|
|
local line, col
|
2019-02-13 18:25:41 +01:00
|
|
|
line = math.floor(id_selected / self.view.colNumber)
|
|
|
|
col = id_selected - (line * self.view.colNumber)
|
2019-02-10 11:56:45 +01:00
|
|
|
return col, line
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:getSlotbyCoord(col, line)
|
2019-02-13 18:25:41 +01:00
|
|
|
return (line * self.view.colNumber) + col + 1
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:getSlot(widgetID)
|
|
|
|
local slotID
|
2019-02-13 18:25:41 +01:00
|
|
|
for i,v in ipairs(self.slots) do
|
2019-02-10 11:56:45 +01:00
|
|
|
if v.widgetID == widgetID then
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:moveCursor(newcol, newline)
|
|
|
|
local col, line = self.cursor.x, self.cursor.y
|
|
|
|
local relcol, relline = newcol - col, newline - line
|
|
|
|
self.cursor.x, self.cursor.y = newcol, newline
|
|
|
|
|
|
|
|
while self.cursor.y < 0 do
|
2019-02-13 18:25:41 +01:00
|
|
|
self.cursor.y = self.cursor.y + self.view.colNumber
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
while self.cursor.x < 0 do
|
2019-02-13 18:25:41 +01:00
|
|
|
self.cursor.x = self.cursor.x + self.view.colNumber
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
|
2019-02-13 18:25:41 +01:00
|
|
|
while self.cursor.y >= self.view.colNumber do
|
|
|
|
self.cursor.y = self.cursor.y - self.view.colNumber
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
|
2019-02-13 18:25:41 +01:00
|
|
|
while self.cursor.x >= self.view.colNumber do
|
|
|
|
self.cursor.x = self.cursor.x - self.view.colNumber
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
previousSlot = self:getSlotbyCoord(col, line)
|
|
|
|
newSlot = self:getSlotbyCoord(self.cursor.x, self.cursor.y)
|
|
|
|
|
2019-02-13 18:25:41 +01:00
|
|
|
if (self.slots[newSlot].isChild > 0) or (self.slots[newSlot].widgetID > #self.widget.list) then
|
|
|
|
if (self.slots[newSlot].isChild == previousSlot) or (self.slots[newSlot].widgetID > #self.widget.list) then
|
2019-02-10 11:56:45 +01:00
|
|
|
self:moveCursor(self.cursor.x + relcol, self.cursor.y + relline)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:keyreleased(key, code)
|
2019-02-10 14:28:08 +01:00
|
|
|
slotID = self:getSlot(self.widget.selected)
|
2019-02-10 11:56:45 +01:00
|
|
|
local col, line = self.cursor.x, self.cursor.y
|
|
|
|
if key == 'left' then
|
|
|
|
--self:moveCol(-1)
|
|
|
|
self:moveCursor(col - 1, line)
|
|
|
|
end
|
|
|
|
|
|
|
|
if key == 'right' then
|
|
|
|
--self:moveCol(1)
|
|
|
|
self:moveCursor(col + 1, line)
|
|
|
|
end
|
|
|
|
|
|
|
|
if key == 'up' then
|
|
|
|
self:moveCursor(col, line - 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
if key == 'down' then
|
|
|
|
self:moveCursor(col, line + 1)
|
|
|
|
end
|
|
|
|
|
2019-02-10 14:28:08 +01:00
|
|
|
if key == "A" and self.widget.selected <= #self.widget.list then
|
|
|
|
self.widget.list[self.widget.selected]:action()
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:mousemoved(x, y)
|
2019-02-10 14:28:08 +01:00
|
|
|
local col, line = self:getCoord(self.widget.selected)
|
2019-02-10 11:56:45 +01:00
|
|
|
local begincol, beginline = self:getCoord(self.begin)
|
|
|
|
local newcol, newline
|
|
|
|
local newselect, slotID
|
|
|
|
|
2019-02-10 14:34:04 +01:00
|
|
|
newline = beginline + math.floor(y / self.widget.h)
|
|
|
|
newcol = math.floor(x / self.widget.w)
|
2019-02-10 11:56:45 +01:00
|
|
|
self.cursor.x = newcol
|
|
|
|
self.cursor.y = newline
|
|
|
|
|
2019-02-10 14:28:08 +01:00
|
|
|
if self.widget.selected < 1 then
|
|
|
|
self.widget.selected = 1
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
2019-02-10 14:28:08 +01:00
|
|
|
if self.widget.selected > #self.widget.list then
|
|
|
|
self.widget.selected = #self.widget.list
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:mousepressed(x, y, button, isTouch)
|
2019-02-10 14:28:08 +01:00
|
|
|
local col, line = self:getCoord(self.widget.selected)
|
2019-02-10 11:56:45 +01:00
|
|
|
local begincol, beginline = self:getCoord(self.begin)
|
|
|
|
local newcol, newline
|
|
|
|
local newselect, slotID
|
|
|
|
|
2019-02-10 14:34:04 +01:00
|
|
|
newline = beginline + math.floor(y / self.widget.h)
|
|
|
|
newcol = math.floor(x / self.widget.w)
|
2019-02-13 18:25:41 +01:00
|
|
|
newselect = (newline * self.view.colNumber) + newcol + 1
|
2019-02-10 11:56:45 +01:00
|
|
|
|
2019-02-13 18:25:41 +01:00
|
|
|
if self.slots[newselect].isChild > 0 then
|
|
|
|
slotID = self.slots[newselect].isChild
|
2019-02-10 11:56:45 +01:00
|
|
|
else
|
|
|
|
slotID = newselect
|
|
|
|
end
|
|
|
|
|
2019-02-13 18:25:41 +01:00
|
|
|
self.widget.selected = self.slots[slotID].widgetID
|
2019-02-10 11:56:45 +01:00
|
|
|
|
2019-02-10 14:28:08 +01:00
|
|
|
if #self.widget.list > 0 and self.widget.selected > 1 and self.widget.selected <= #self.widget.list then
|
|
|
|
self.widget.list[self.widget.selected]:action()
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function GridBox:draw()
|
|
|
|
local widgety = self.y
|
|
|
|
local widgetx = self.x
|
|
|
|
|
|
|
|
self:regenSlots() -- On reget les slots au cas où :p
|
2019-02-13 18:25:41 +01:00
|
|
|
for i,v in ipairs(self.slots) do
|
2019-02-13 17:10:57 +01:00
|
|
|
if (v.isChild == 0) and (v.widgetID <= #self.widget.list) then
|
2019-02-13 18:51:10 +01:00
|
|
|
--self.widget.list[v.widgetID]:draw(widgetx, widgety, self.widget.w * v.width, self.widget.h * v.height)
|
2019-02-12 18:31:32 +01:00
|
|
|
if self.widget.selected == v.widgetID and self:haveFocus() == true then
|
2019-02-13 18:51:10 +01:00
|
|
|
self.widget.list[v.widgetID]:drawSelected(widgetx, widgety, self.widget.w * v.width, self.widget.h * v.height)
|
2019-02-10 11:56:45 +01:00
|
|
|
else
|
2019-02-13 18:51:10 +01:00
|
|
|
self.widget.list[v.widgetID]:draw(widgetx, widgety, self.widget.w * v.width, self.widget.h * v.height)
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
2019-02-13 17:10:57 +01:00
|
|
|
if (v.isChild > 0) and false then
|
2019-02-10 11:56:45 +01:00
|
|
|
love.graphics.setColor(255,255,255,128)
|
2019-02-10 14:34:04 +01:00
|
|
|
love.graphics.rectangle("fill", widgetx, widgety, self.widget.w, self.widget.h)
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
local col, line = self:getCoord(i)
|
|
|
|
|
|
|
|
if (col == self.cursor.x) and (line == self.cursor.y) and false then
|
|
|
|
love.graphics.setColor(255,255,0,128)
|
2019-02-10 14:34:04 +01:00
|
|
|
love.graphics.rectangle("fill", widgetx, widgety, self.widget.w, self.widget.h)
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
--love.graphics.setColor(0,0,0,10)
|
2019-02-10 14:34:04 +01:00
|
|
|
--love.graphics.rectangle("line", widgetx, widgety, self.widget.w, self.widget.h)
|
|
|
|
widgetx = widgetx + self.widget.w
|
2019-02-10 11:56:45 +01:00
|
|
|
if widgetx == (self.x + self.w) then
|
|
|
|
widgetx = self.x
|
2019-02-10 14:34:04 +01:00
|
|
|
widgety = widgety + self.widget.h
|
2019-02-10 11:56:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return GridBox
|