-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsavescreen.lua
302 lines (221 loc) · 8.07 KB
/
savescreen.lua
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
--default callback
local callback=toPaintMode
--we flag when frame index has been changed by suppression or insertion
flagShiftedFrames=function(afterIdx)
for i=1,maxframe
do
frames[i].shifted=true
print('frame '..i..' flagged as shifted')
end
end
drawSaveScreen = function ()
if justSaved>0 then
if frames[justSaved].dirty == true then
love.graphics.clear(0.0,0.0,1.0,1.0)
elseif frames[justSaved].shifted == true then
love.graphics.clear(0.0,1.0,0.0,1.0)
else
love.graphics.clear(1.0,1.0,1.0,1.0)
end
love.graphics.draw(frames[justSaved].pic)
displayHoverMsg()
end
end
--by adding and deleting frames, we might have lowered the max number of frames since last save
cleanMaxFrameReached = function()
for i=(maxframe+1),maxFrameReached
do
print('cleaning obsolete frame '..i)
--TODO actually delete file
name=string.format("%03d",i)
local path=conf.prjfld..name..".png"
love.filesystem.remove(path)
end
end
--when a project is created by dflt,
-- this should be saved
writeTemplateInfo=function()
local tmp="return '".. conf.key .."' "
love.filesystem.write(conf.prjfld.."template.lua",tmp)
end
saveFrameFromTmpForFrame=function(newName,loadedFromName)
loadedFromPathAndName= tmpProjFld..loadedFromName..'.png'
targetPathAndName=conf.prjfld..newName..'.png'
print('copying '.. loadedFromPathAndName.. ' to '..targetPathAndName)
-- local files = love.filesystem.getDirectoryItems(tmpProjFld)
-- for k, file in ipairs(files) do
-- print(k .. ". " .. file) --outputs something like "1. main.lua"
-- end
tmp,err = love.filesystem.newFileData(loadedFromPathAndName)
print('pot error')
print(err)
print(' src file data ')
print(tmp)
love.filesystem.write( targetPathAndName,tmp)
end
saveSoundFromTmpForFrame=function(f,name,spath,cleanLoaded)
if f.sound~=nil then
--cleaning file that it represents on disk AT LAST LOAD/BEFORE SHIFT
--todo debug
print('saving sound for '..name)
--TODO what does clean loaded means ?
if cleanLoaded==true then
--cleaning file that it represents on disk AT LAST LOAD/BEFORE SHIFT
local toclean =conf.prjfld .. f.soundLoadedFrom
print('about to clean '..toclean )
love.filesystem.remove(toclean)
end
--saving tmp file to new location
local tmp = love.filesystem.newFileData(tmpProjFld..f.soundLoadedFrom)
local newname = name..'.wav'
local tgtpath=spath..newname
print('writing sound '..tgtpath)
love.filesystem.write(tgtpath,tmp)
end
end
--WIP in each project folder we save a 640x480 preview pic that has thumbnails of the first project frames
savePreviewPic= function()
--probably I should look at how resource is released love.graphics.newCanvas()
-- using a snapshot of story board screen looks ideal
local curCvs=love.graphics.getCanvas()
love.graphics.setCanvas(ui)
love.graphics.clear(1.,1.,1.,1.)
renderProjectPreviewToCurrentCvs()
love.graphics.setCanvas()
local fromGpu=ui:newImageData()
fromGpu:encode(
"png",conf.prjfld.."preview1.png")
love.graphics.setCanvas(curCvs)
end
updateSaveScreen = function ()
--files are saved here one by one
if justSaved==maxframe then
saveTxtCodes()
saveBgRanges()
saveColorFrames()
saveBrushes()
saveRepetitions()
--clean extra frames on disk
cleanMaxFrameReached()
writeTemplateInfo()
--too slow on mobile, moved to switch select screen
--savePreviewPic()
--we need to regenerate tmp folder with pngs and wavs at current indices
--so that it works on next save
--TODO DELETE TMP FOLDER DOESNT SEEM TO WORK ON LINUX
removeOrCreateTmpDir()
--save frames and waves in tmp
for j=1,maxframe
do
--preemptively we clean
frames[j].soundLoadedFrom=nil
frames[j].dirty=false
frames[j].shifted=false --in case of shift of index, true
currentName=string.format("%03d",j)
currentPathAndName=conf.prjfld..currentName..".png"
print("attempting load "..currentPathAndName)
cur=love.filesystem.getInfo(currentPathAndName)
local tmp = love.filesystem.newFileData(currentPathAndName)
love.filesystem.write( tmpProjFld..currentName..".png",tmp)
frames[j].loadedFrom=currentName --useful to move frame on insert or remove frames
--this is a save flag ( we save only modified )
--if file preexists load sound
local wName=string.format("%03d",currentName)..".wav"
local potsound=conf.prjfld..wName
print('looking up pot sound '..potsound)
local si=love.filesystem.getInfo(potsound)
if si~=nil then
-- frameTable.sound=love.audio.newSource(potsound,'static')
local tmp = love.filesystem.newFileData(potsound)
love.filesystem.write( tmpProjFld..wName,tmp)
frames[j].soundLoadedFrom=wName
print('metadata updated, f '..j..' sound loaded from now '..frames[j].soundLoadedFrom)
--this data will be used to move the file properly on save
print(' tmpwav written ')
end
if f.sound~=nil and f.soundLoadedFrom==nil then
print ('ERROR metadata missing for sound in memory '..j)
end
end
--we save a time stamp, so that if you work on multiple machines its easier to see
-- which project is more recent
tstamp=os.date()
love.filesystem.write(conf.prjfld..'lastsave.txt',tstamp)
addMsg('after save')
-- toPaintMode()
local savepath=love.filesystem.getSaveDirectory()..'/'..conf.prjfld
setHoverMsg('save folder in clipboard '..savepath)
love.system.setClipboardText(savepath)
callback()
-- for critical save that calls function directly
return 'finished'
end
--if so far we still have a frame to save
local curSaveIdx=justSaved+1
f=frames[curSaveIdx]
name=string.format("%03d",curSaveIdx)
if f.dirty ==true then
f.data:encode("png",conf.prjfld..name..".png")
print(' frame '..curSaveIdx..' dirty saved ')
elseif f.shifted==true then
print( ' frame '..curSaveIdx .. ' is a shift from '..f.loadedFrom )
saveFrameFromTmpForFrame(name,f.loadedFrom)
end
--if a sound is attached, we need to delete previous wav and rewrite it at correct index
--we don t need to clean as we regenerate whole tmp dir
saveSoundFromTmpForFrame(f,name,conf.prjfld,true)
-- if f.sound~=nil then
-- --cleaning loaded file
-- --todo debug
-- local toclean =conf.prjfld .. f.soundloadedfrom
-- print('about to clean '..toclean )
-- love.filesystem.remove(toclean)
-- --saving tmp file to new location
-- local tmp = love.filesystem.newfiledata(tmpwavfld..f.soundloadedfrom)
-- local newname = name..'.wav'
-- local tgtpath=conf.prjfld..newname
-- print('writing sound '..tgtpath)
-- love.filesystem.write(tgtpath,tmp)
-- end
--else
-- print('frame '..i..' untouched' )
--end
justSaved=curSaveIdx
end
initSaveScreen = function(cb)
addMsg('before save')
setHoverMsg('saving project')
callback=cb
print(' target save directory : '..love.filesystem.getSaveDirectory())
if dirtycvs==true then
--we need to copy current frame from rtex cvs
saveCanvasToFrame(currentIdx)
end
--we need to check if save folder structure exist ( if new project loaded from read only template )
folders=mysplit(conf.prjfld,"/")
local prefix=""
for i,fld in ipairs(folders )
do
print(fld)
print("checking existence of "..prefix..fld)
info=love.filesystem.getInfo(prefix..fld)
print(info)
if info == nil then
love.filesystem.createDirectory(prefix..fld)
else
print ('folder exists')
end
prefix=prefix..fld.."/" -- done here so that first exec doesn't prepend /
addMsg(prefix)
end
justSaved=0
keyFunc=nil
drawFunc=drawSaveScreen
updateFunc=updateSaveScreen
end
initSaveScreenFromPaintMode =function ()
initSaveScreen(toPaintMode)
end
toSwitchProjectThroughSave=function()
initSaveScreen(toSwitchProject)
end