epervier-old/birb/modules/assets/init.lua

298 lines
7 KiB
Lua
Raw Normal View History

2021-12-04 13:18:54 +01:00
-- modules/assets :: a simple assets manager, aim to put every assets in a simple
-- serie of table in order to find them easily.
--[[
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 Assets = Object:extend()
local cwd = (...):gsub('%.init$', '') .. ".types."
local Texture = require(cwd .. "texture")
2019-03-16 13:04:26 +01:00
local Sprite = require(cwd .. "sprites")
local Font = require(cwd .. "fonts")
local ImageFont = require(cwd .. "imagefonts")
local Tileset = require(cwd .. "tileset")
local Autotile = require(cwd .. "autotile")
local Background = require(cwd .. "background")
2021-12-04 13:18:54 +01:00
local SFX = require(cwd .. "sfx")
2020-11-13 17:43:28 +01:00
-- INIT FUNCTIONS
-- Initilizing and configuring option
2021-12-04 13:18:54 +01:00
function Assets:new()
self:clear()
2021-12-04 13:18:54 +01:00
self.isActive = true
2020-11-13 19:11:09 +01:00
end
2021-12-04 13:18:54 +01:00
function Assets:clear()
-- TODO: destroy individually each texture/image when assets are cleared
self:clearSprites()
self:clearSFX()
self:clearFonts()
self:resetMusic()
self:clearBackgrounds()
self:clearFonts()
self:clearTileset()
2021-12-04 13:18:54 +01:00
self:clearImages()
end
2021-12-04 13:18:54 +01:00
function Assets:update(dt)
if (self.isActive) then
self:animationsUpdate(dt)
end
end
2021-12-04 13:18:54 +01:00
-- IMPORT FUNCTIONS
-- Easilly import assets
2021-12-04 13:18:54 +01:00
function Assets:batchImport(datafile)
local datas = require(datafile)
for asset_type, assets in pairs(datas) do
if (asset_type == "autotiles") then
self:importAutotiles(assets)
elseif (asset_type == "backgrounds") then
self:importBackgrounds(assets)
elseif (asset_type == "fonts") then
self:importFonts(assets)
elseif (asset_type == "imagefonts") then
self:importImageFonts(assets)
elseif (asset_type == "images") then
self:importTextures(assets)
elseif (asset_type == "sprites") then
self:importSprites(assets)
elseif (asset_type == "textures") then
self:importTextures(assets)
elseif (asset_type == "tilesets") then
self:importTilesets(assets)
elseif (asset_type == "sfx") then
self:importSFX(assets)
else
core.debug:warning("assets/importer", "unkown asset type " .. asset_type)
end
end
end
2021-12-04 13:18:54 +01:00
function Assets:importAutotiles(assets)
for i, asset in ipairs(assets) do
self:addAutotile(asset[1], asset[2])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importBackgrounds(assets)
for i, asset in ipairs(assets) do
self:addBackground(asset[1], asset[2])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importFonts(assets)
for i, asset in ipairs(assets) do
self:addFont(asset[1], asset[2], asset[3])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importImageFonts(assets)
for i, asset in ipairs(assets) do
self:addImageFont(asset[1], asset[2], asset[3])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importSprites(assets)
for i, asset in ipairs(assets) do
self:addSprite(asset[1], asset[2])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importTextures(assets)
for i, asset in ipairs(assets) do
self:addImage(asset[1], asset[2])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importTilesets(assets)
for i, asset in ipairs(assets) do
self:addTileset(asset[1], asset[2])
end
end
2021-12-04 13:18:54 +01:00
function Assets:importSFX(assets)
for i, asset in ipairs(assets) do
self:addSFX(asset[1], asset[2])
end
end
2021-12-04 13:18:54 +01:00
-- SFX & MUSICS
-- Handle sound effects and musics
2021-12-04 13:18:54 +01:00
function Assets:addSFX(name, filepath)
self:newSFX(name, filepath)
end
2021-12-04 13:18:54 +01:00
function Assets:newSFX(name, filepath)
self.sfx[name] = SFX( filepath )
end
2021-12-04 13:18:54 +01:00
function Assets:clearSFX()
love.audio.stop( )
self.sfx = {}
end
2021-12-04 13:18:54 +01:00
function Assets:playSFX(filename)
if not (self.sfx[filename] == nil) then
self.sfx[filename]:play()
end
end
2021-12-04 13:18:54 +01:00
-- MUSIC FUNCTIONS
-- All thse functions are deprecated, prefer core.music
2021-12-04 13:18:54 +01:00
function Assets:setMusic(filename, loop)
core.debug:warning("assets", "Assets:setMusic is deprecated")
core.music:skip()
core.music:addMusic(filename, (loop ~= false))
core.music:playMusic()
end
2021-12-04 13:18:54 +01:00
function Assets:silence()
core.debug:warning("assets", "Assets:silence is deprecated")
core.music:silence()
end
2021-12-04 13:18:54 +01:00
function Assets:resetMusic()
core.debug:warning("assets", "Assets:resetMusic is deprecated")
core.music:purge()
end
2021-12-04 13:18:54 +01:00
function Assets:playMusic()
core.debug:warning("assets", "Assets:playMusic is deprecated")
core.music:playMusic()
end
2021-12-04 13:18:54 +01:00
-- IMAGES FUNCTIONS
-- Create directly texture items
function Assets:addImage(name, filename)
self.images[name] = Texture(filename)
end
2021-12-04 13:18:54 +01:00
function Assets:drawImage(name, x, y, r, sx, sy, ox, oy, kx, ky)
self.images[name]:draw(x, y, r, sx, sy, ox, oy, kx, ky)
end
2021-12-04 13:18:54 +01:00
function Assets:clearImages()
self.images = {}
end
2021-12-04 13:18:54 +01:00
-- BACKGROUNDS FUNCTIONS
-- Automatic tiling texture
2021-12-04 13:18:54 +01:00
function Assets:addBackground(name, filepath)
-- TODO: rework entirely background to work at any size
self.backgrounds[name] = Background(filepath)
end
2021-12-04 13:18:54 +01:00
function Assets:clearBackgrounds()
self.backgrounds = {}
end
2021-12-04 13:18:54 +01:00
-- SPRITES FUNCTIONS
-- Animated tileset
2020-11-13 19:11:09 +01:00
function Assets:addSprite(name, filepath)
2021-12-04 13:18:54 +01:00
self.sprites[name] = Sprite(filepath)
end
2021-12-04 13:18:54 +01:00
function Assets:animationsUpdate(dt)
for i,v in pairs(self.sprites) do
v:update(dt)
end
end
2021-12-04 13:18:54 +01:00
function Assets:clearSprites()
self.sprites = {}
end
2021-12-04 13:18:54 +01:00
-- FONTS FUNCTIONS
-- Handles fonts and imagesfonts
function Assets:addFont(key, filename, size)
local font = Font(filename, size)
self.fonts[key] = font
end
2021-12-04 13:18:54 +01:00
function Assets:addImageFont(key, filename, extraspacing)
local font = ImageFont(filename, extraspacing)
self.fonts[key] = font
end
2021-12-04 13:18:54 +01:00
function Assets:getFont(filename)
return self.fonts[filename]
end
2021-12-04 13:18:54 +01:00
function Assets:clearFonts()
self.fonts = {}
end
2021-12-04 13:18:54 +01:00
-- TILESET FUNCTIONS
-- Automatically create quads for a texture
2021-12-04 13:18:54 +01:00
function Assets:addTileset(name, filepath)
self.tileset[name] = Tileset(filepath)
2020-11-13 19:11:09 +01:00
end
function Assets:clearTileset()
2021-12-04 13:18:54 +01:00
self.tileset = {}
end
2021-12-04 13:18:54 +01:00
-- AUTOTILE FUNCTIONS
-- Automatically draw tiles
function Assets:addAutotile(name, tilesize)
self.autotile[name] = Autotile(name, tilesize)
end
2021-12-04 13:18:54 +01:00
function Assets:clearAutotile()
self.autotile = {}
2020-11-13 19:11:09 +01:00
end
2021-12-04 13:18:54 +01:00
-- ACTIVITY FUNCTIONS
-- Handle activity
function Assets:setActivity(activity)
self.isActive = activity
end
2021-12-04 13:18:54 +01:00
function Assets:switchActivity()
self.isActive = (self.isActive == false)
end
2021-12-04 13:18:54 +01:00
function Assets:getActivity()
return self.isActive
end
return Assets