-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathClass_Preset.xojo_code
More file actions
427 lines (301 loc) · 9.86 KB
/
Copy pathClass_Preset.xojo_code
File metadata and controls
427 lines (301 loc) · 9.86 KB
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
#tag Class
Protected Class Class_Preset
#tag Method, Flags = &h0
Sub Constructor(DatabaseID As Integer)
Self.Diffusion_Model = New Class_Model
If DatabaseID>0 Then
Self.DatabaseID=DatabaseID
Self.Load
End If
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function Delete() As Boolean
If Self.DatabaseID<1 Then Return False
Try
App.SDP_Database.ExecuteSQL("DELETE FROM preset WHERE id=?",Self.DatabaseID)
App.SDP_Database.ExecuteSQL("DELETE FROM preset_keyword WHERE id_preset=?", Self.DatabaseID)
Return True
Catch err As DatabaseException
System.Log(System.LogLevelError, CurrentMethodName + " - Error Code: " + err.ErrorNumber.ToString + EndOfLine + "Error Message: " + err.Message)
End Try
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub Keyword_Add(Keyword As Class_Keyword)
If Self.Keywords.Count>0 Then
For X As Integer = Self.Keywords.LastIndex DownTo 0
If Self.Keywords(X).DatabaseID=Keyword.DatabaseID Then
Self.Keywords(X).Weight = Keyword.Weight
Self.Keywords(X).Position = Keyword.Position
Return
End If
Next
End If
Self.Keywords.Add Keyword
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Keyword_Add(DatabaseID As Integer)
Var kw As New Class_Keyword(DatabaseID)
If Self.Keywords.Count>0 Then
For X As Integer = Self.Keywords.LastIndex DownTo 0
If Self.Keywords(X).DatabaseID=kw.DatabaseID Then
// Self.Keywords(X).Weight = kw.Weight
// Self.Keywords(X).Position = jw.Position
Return
End If
Next
End If
Self.Keywords.Add kw
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function Keyword_Position_Get(DatabaseID As Integer) As Integer
Var i As Integer = 999999
For Each k As Class_Keyword In Self.Keywords
If k.DatabaseID = DatabaseID Then
i = k.Position
Exit
End If
Next
Return i
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub Keyword_Remove(Keyword As Class_Keyword)
If Self.Keywords.Count>0 Then
For X As Integer = Self.Keywords.LastIndex DownTo 0
If Self.Keywords(X).DatabaseID=Keyword.DatabaseID Then
Self.Keywords.RemoveAt(X)
Return
End If
Next
End If
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Keyword_Remove(DatabaseID As Integer)
If Self.Keywords.Count>0 Then
For X As Integer = Self.Keywords.LastIndex DownTo 0
If Self.Keywords(X).DatabaseID=DatabaseID Then
Self.Keywords.RemoveAt(X)
Return
End If
Next
End If
End Sub
#tag EndMethod
#tag Method, Flags = &h21
Private Sub Load()
Try
Var RS As RowSet = App.SDP_Database.SelectSQL("SELECT * FROM preset WHERE id=?", Self.DatabaseID)
If RS<>Nil And Not RS.AfterLastRow Then
Self.Label = RS.Column("label").StringValue
Self.Diffusion_Model.Name = RS.Column("model").StringValue
Self.Diffusion_Model.Load
Self.Seed = RS.Column("seed").StringValue
Self.Steps = RS.Column("steps").IntegerValue
Self.Guidance_Scale = RS.Column("guidance_scale").DoubleValue
If RS.Column("image").PictureValue<>Nil Then
Self.Sample = RS.Column("image").PictureValue
End If
End If
Self.Keywords.RemoveAll
RS = App.SDP_Database.SelectSQL("SELECT * FROM preset_keyword WHERE id_preset=? ORDER BY position", Self.DatabaseID)
If RS <> Nil Then
While Not RS.AfterLastRow
Var KW As New Class_Keyword(RS.Column("id_keyword").IntegerValue,Self.DatabaseID)
If KW.DatabaseID>0 Then
Self.Keywords.Add KW
End If
RS.MoveToNextRow
Wend
End If
Catch err As DatabaseException
System.Log(System.LogLevelError, CurrentMethodName + " - Error Code: " + err.ErrorNumber.ToString + EndOfLine + "Error Message: " + err.Message)
End Try
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function Prompt_Generate() As String()
Var Prompt(1) As String
For Each KW As Class_Keyword In Self.Keywords
KW.Refresh
If KW.Negative Then
If KW.Weight <> 1 Then
Prompt(1) = Prompt(1) + "(" + KW.Keyword + ":" + KW.Weight.ToString + "), "
Else
Prompt(1) = Prompt(1) + KW.Keyword + ", "
End If
Else
If KW.Weight <> 1 Then
Prompt(0) = Prompt(0) + "(" + KW.Keyword + ":" + KW.Weight.ToString + "), "
Else
If KW.Keyword.Trim <> "" Then
Prompt(0) = Prompt(0) + KW.Keyword + ", "
End If
End If
End If
Next
Var s(1) As String
If Window_Main.Cont_Preset.ComboBox_PresetModel.SelectedRowIndex>-1 Then
s = Load_ModelPrompts(Window_Main.Cont_Preset.ComboBox_PresetModel.Text.Trim)
End If
Prompt(0) = Prompt(0).Left(Prompt(0).Length-2) + s(0)
Prompt(1) = Prompt(1).Left(Prompt(1).Length-2) + s(1)
Return Prompt
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function Save() As Boolean
If Self.Label.Trim.Length=0 Then Return False
Var MB As MemoryBlock
// Database Preset ID is always 1 and we do not want to save the current displayed image in it
If Self.Sample<>Nil And Self.DatabaseID <> 1 Then MB = Self.Sample.ToData(Picture.Formats.PNG)
Try
If Self.DatabaseID = 0 Then
App.SDP_Database.ExecuteSQL("INSERT INTO preset (label,image,model,seed,steps,guidance_scale) VALUES (?,?,?,?,?,?)", _
Self.Label,MB,Self.Diffusion_Model.Name,Self.Seed,Self.Steps,Self.Guidance_Scale)
Var RS As RowSet = App.SDP_Database.SelectSQL("SELECT id FROM preset WHERE label=?",Self.Label)
If RS <> Nil And Not RS.AfterLastRow Then
Self.DatabaseID = RS.Column("id").IntegerValue
Else
Return False
End If
Else
App.SDP_Database.ExecuteSQL("UPDATE preset SET image=?,model=?,seed=?,steps=?,guidance_scale=? WHERE id=?",MB,Self.Diffusion_Model.Name,Self.Seed,Self.Steps,Self.Guidance_Scale,Self.DatabaseID)
End If
If Self.DatabaseID<1 Then Return False
App.SDP_Database.ExecuteSQL("DELETE FROM preset_keyword WHERE id_preset=?", Self.DatabaseID)
For Each KW As Class_Keyword In Self.Keywords
App.SDP_Database.ExecuteSQL("INSERT INTO preset_keyword (id_keyword,id_preset,negative,weight,position) VALUES " + _
"(?,?,?,?,?)", _
KW.DatabaseID, _
Self.DatabaseID, _
KW.Negative, _
KW.Weight, _
KW.Position)
Next
Return True
Catch err As DatabaseException
System.Log(System.LogLevelError, CurrentMethodName + " - Error Code: " + err.ErrorNumber.ToString + EndOfLine + "Error Message: " + err.Message)
End Try
End Function
#tag EndMethod
#tag Property, Flags = &h0
DatabaseID As Integer = 0
#tag EndProperty
#tag Property, Flags = &h0
Diffusion_Model As Class_Model
#tag EndProperty
#tag Property, Flags = &h0
Guidance_Scale As Double = 7.00
#tag EndProperty
#tag Property, Flags = &h0
Keywords() As Class_Keyword
#tag EndProperty
#tag Property, Flags = &h0
Label As String
#tag EndProperty
#tag Property, Flags = &h0
Sample As Picture
#tag EndProperty
#tag Property, Flags = &h0
Seed As String
#tag EndProperty
#tag Property, Flags = &h0
Steps As Integer = 22
#tag EndProperty
#tag ViewBehavior
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Guidance_Scale"
Visible=false
Group="Behavior"
InitialValue="7.00"
Type="Double"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Label"
Visible=false
Group="Behavior"
InitialValue=""
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="Sample"
Visible=false
Group="Behavior"
InitialValue=""
Type="Picture"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Seed"
Visible=false
Group="Behavior"
InitialValue="-1"
Type="String"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="Steps"
Visible=false
Group="Behavior"
InitialValue="22"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="DatabaseID"
Visible=false
Group="Behavior"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass