LOVE2D (V11+) Library that I pretty much created for my own use. Feel free to take and adapt as needed for your own projects.
Thank you,
System Logoff
SLog Audio is a wrapper around LOVE2D's audio functions, with automatic import functionality.
audio = require 'path.to.audio'
-- Creates Audio.sfx, Audio.vfx, Audio.mus
audio:setUp()
-- Imports music from folders, sets music to loop.
Directories under an audio folder, the name of which is defined in the configuration.
Currently Love2D 11.2 has an issue with streaming music, this will be corrected in 11.3. While that is pending, music is set as static.
-- Folder where your audio is kept.
local path_to_audio_folder = "audio"
-- List files on startup in the console
local list_files = true
-- What folders of audio need to loop
local groups_to_loop = {"env", "music"}
-- Default local audio volume
local default_volume = 0.5
-- Default global audio volume
local default_global_volume = 1
-- Volume for all sounds
audio.global = {} -- audio.global.[audio_folders]
audio.global.all = default_global_volume
-- This table stores the volume of audio so we can update the global settings.
audio.volume = {}
-- DJ, controls the music that is playing.
audio.dj = {}
-- Current audio tracks.
audio.dj.tracks = {}
audio.dj.forced = nil
Sets the volume of a single audio file.
Sets the volume of a group of audio files, groups are defined by the folders.
Sets the volume of a type of audio files.
Sets the global volume.
#####Note:
Final volume is defined as audio.volume[type][k] * audio.global[type] * audio.global.all
Plays a sound.
Force plays a sound by stopping the current sound and playing it again.
Stops all of a type of sound from playing.
Plays a track, if no number is defined, plays it in slot 1.
Plays a track starting from the same position in the song as the defined track number. Allows swaps sort of like Banjo Kazooie, where the audio swaps depending on what's nearby.
Pauses a track.
Restarts a track from the begining.
Stops all playing tracks, clears the track list.
Forces only this track to play until audio.dj:force(nil) is sent.
SLog Floppy is a wrapper around Smallfolk for a fast way to manage save files.
Floppy = require 'path.to.floppy'
Note: You will have to define Smallfolk's imported name in floppy.lua
floppy.filetype = ".txt"
-- Defines what save files end with.
floppy.ram = "ram"
-- Default table to save to file
Filename is what the file is named, memory is what Lua Table to dump to the file.
Delete a save file.
Filename is what the file is named, memory is what Lua Table to dump the file into.
Loads the save into the default table.
A quick image to palette table command.
Palette = require 'path.to.palette'
palette.fileLocation = "library/slog/palette.png"
-- Point to your palette file.
palette.squareSize = 32
-- Size of your palette squares.
love.graphics.setColor(Palette[#])
-- Where # is a number in your palette.
A Pixel Perfect Screen Scaler for Love2D.
Pixels = require 'path.to.pixels'
Pixels:load()
-- Set the default screen scale, if not assigned it will do the max window size that fits within the current screen.
At the start of love:draw() insert: Pixels:drawGameArea()
then at the end, after all your draw code, put Pixels:endDrawGameArea()
Note: Make sure conf.lua has the proper 1x size width and height for your project.
local allowUserResize = false
-- Alow users to resize the window with window controls.
local cursorTable = {{"path/to/cursor1.png",0,0},}
-- Format {Path, -X, -Y offsets} -- Table holding the string to each cursor. Note: Make it blank if you don't plan on using a cursor.
pixels.currentCursor = 0
-- Cursor to start with. 0 = No cursor.
pixels.showSystemCursor = true
-- Show the system cursor.
pixels.drawBG = true
-- Draw a blackBG behind everything.
Resize the screen to a new scale.
Change to fullscreen or normal view.
Toggle system cursor on or off.
Force system cursor on or off.
Force system cursor on or off.
Variables that give you the X/Y position of the mouse according to the pixel scale of the screen. Use this to check for mouse position.
Take a screenshot of the current screen.
Clear all pictures
Clear a single picture
Check to see if the screenshot/bank exists, reccomended before trying to draw.
A fancy system for printing text.
Textbox = require 'path.to.textbox'
Note: You will have to define the path to the default sound.
Note: Image/Font/Palette tags require you to define what table they are held in.
Note: Audio tags require SLog Audio.
In love:draw()
include: Textbox:draw(x, y)
Send text with: Textbox:send("Text Here", "Clear")
Note: Clear clears the previous text from the box.
Prints a new line.
Resets all formatting
Sets color to the hex value.
Sets color from palette table. Requires a palette table.
Revert back to default color.
Change font to fontname.
Have the text shake in a sinwave pattern.
End Shake.
Have the text fall like raindrops down the screen.
End Drop.
Draw +1/+1 offset drop shadow behind text.
End Shadow
Change the text speed
Revert back to default speed.
Save the current position of the text printing x/y position.
Load the current position of the text printing x/y position.
Set the X or Y position of the printing cursor.
Set the padding between characters.
Make the rest of the text on the line bounce like a string.
End text_bounce and textpad.
Play an audio sound per text character.
Stop playing audio per text character
Pause for # - 60 * dt
Print an image to the text-box, move cursor to after image. Assumes images are in a table defined in settings.
Play a sound effect.
Play a voice over.
Play music.
Stop a sound effect.
Stop a voice over.
Pause Music
Resume Music
Switch to another music track at the same point as the last song.