2019-04-09 18:47:52 +02:00
|
|
|
-- assets/fonts :: the imagefonts object, which are basically a bitmap version
|
|
|
|
-- of the font object.
|
|
|
|
|
|
|
|
--[[
|
|
|
|
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.
|
|
|
|
]]
|
|
|
|
|
2019-03-16 14:56:46 +01:00
|
|
|
local cwd = (...):gsub('%.imagefonts$', '') .. "."
|
2019-04-09 18:47:52 +02:00
|
|
|
|
2019-03-16 14:56:46 +01:00
|
|
|
local Font = require(cwd.. "fonts")
|
2019-03-16 12:27:38 +01:00
|
|
|
local ImageFont = Font:extend()
|
|
|
|
|
2019-04-09 18:47:52 +02:00
|
|
|
-- INIT FUNCTIONS
|
|
|
|
-- Initilizing and configuring option
|
|
|
|
|
2019-03-16 12:27:38 +01:00
|
|
|
function ImageFont:new(filename, extraspacing)
|
|
|
|
local data = require(filename)
|
|
|
|
local extraspacing = extraspacing or data.extraspacing or 1
|
|
|
|
self.font = love.graphics.newImageFont(filename .. ".png", data.glyphs, extraspacing)
|
|
|
|
self.filter = ""
|
|
|
|
self:setColor(1, 1, 1, 1)
|
|
|
|
self:setSpacing(false, 0)
|
|
|
|
self.align = "left"
|
|
|
|
end
|
|
|
|
|
|
|
|
return ImageFont
|