try to fix scope issue
This commit is contained in:
parent
dd955b6166
commit
8b350eb9a2
@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/julia
|
#!/usr/bin/julia
|
||||||
|
|
||||||
include("saveGame.jl")
|
include("saveGame.jl")
|
||||||
|
using Main.saveGame
|
||||||
|
|
||||||
mutable struct Pilot
|
mutable struct Pilot
|
||||||
Name::String
|
Name::String
|
||||||
|
@ -1,4 +1,13 @@
|
|||||||
saveDir = "~/.config/spacetrack"
|
module saveGame
|
||||||
|
|
||||||
|
export savegame,
|
||||||
|
user,
|
||||||
|
saveDir,
|
||||||
|
saveFile
|
||||||
|
|
||||||
|
|
||||||
|
user = ENV["USER"]
|
||||||
|
saveDir = "/home/$user/.config/spacetrack"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -9,9 +18,9 @@ function savegame(
|
|||||||
createSave::Bool
|
createSave::Bool
|
||||||
)
|
)
|
||||||
|
|
||||||
local io = IOBuffer()
|
io = IOBuffer()
|
||||||
|
|
||||||
|
saveFile = ""
|
||||||
|
|
||||||
if createSave == true
|
if createSave == true
|
||||||
mkpath(saveDir)
|
mkpath(saveDir)
|
||||||
@ -21,10 +30,10 @@ function savegame(
|
|||||||
|
|
||||||
if isempty(saveFileName) == true
|
if isempty(saveFileName) == true
|
||||||
|
|
||||||
global saveFile = untitled.conf
|
global saveFile = "untitled.conf"
|
||||||
else
|
else
|
||||||
|
|
||||||
saveFile = saveFileName
|
global saveFile = saveFileName
|
||||||
end
|
end
|
||||||
|
|
||||||
open("$saveDir/$saveFile", "w") do io
|
open("$saveDir/$saveFile", "w") do io
|
||||||
@ -39,5 +48,4 @@ function savegame(
|
|||||||
return saveFile
|
return saveFile
|
||||||
|
|
||||||
end
|
end
|
||||||
|
end
|
||||||
saveFile = saveFile
|
|
@ -1,6 +1,9 @@
|
|||||||
#!/usr/bin/julia
|
#!/usr/bin/julia
|
||||||
|
|
||||||
include("../lib/player.jl")
|
include("../lib/player.jl")
|
||||||
|
include("../lib/saveGame.jl")
|
||||||
|
|
||||||
|
|
||||||
function main_menu()
|
function main_menu()
|
||||||
create_pilot()
|
create_pilot()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user