blob: 93432a0f33cd0d5e0494850d2f484935db0b3256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Settings = {}
function Settings.load()
if Controller then
if not love.filesystem.exists("settings") then
local def = love.filesystem.newFile("settings.default")
local new = love.filesystem.newFile("settings")
new:open("w") def:open("r")
new:write(def:read())
new:close() def:close()
end
local getSettings = love.filesystem.load("settings")
for _,set in pairs(getSettings()) do
local isJoystick = set[7]
local joystick
if isJoystick then
joystick = love.joystick.getJoysticks()[1]
-- Add first free joystick from joysticks list
end
if not isJoystick or joystick then
Controller.registerSet(set[1], set[2], set[3], set[4], set[5], set[6], joystick)
end
end
end
end
|