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
|
{Save/load options}
const
opt_group = 'Group';
opt_actions = 'Action';
opt_numacts = 'numactions';
opt_nummacro = 'numgroups';
opt_descr = 'descr';
opt_id = 'id';
opt_uid = 'uid';
opt_flags = 'flags';
//----- Save settings -----
procedure SaveActions(Macro:pMacroRecord;section:pAnsiChar);
var
p,p1:PAnsiChar;
i:integer;
begin
p:=StrEnd(section);
StrCopy(p,opt_numacts); DBWriteWord(0,DBBranch,section,Macro^.ActionCount);
// in: section = "Group#/"
p1:=StrCopyE(p,opt_actions); // "Group#/Action"
DBDeleteGroup(0,DBBranch,section);
for i:=0 to Macro^.ActionCount-1 do
begin
p:=StrEnd(IntToStr(p1,i));
p^:='/'; inc(p); // "Group#/Action#/"
//?? StrCopy(p,opt_uid); DBWriteDWord(0,DBBranch,section,Macro^.ActionList[i].uid);
p^:=#0;
Macro^.ActionList[i].Save(section,0);
end;
end;
procedure SaveMacros;
var
Macro:pMacroRecord;
NumMacro:integer;
i:integer;
section:array [0..127] of AnsiChar;
p,p1:PAnsiChar;
begin
// even if crap in settings, skip on read
// DBDeleteGroup(0,DBBranch,opt_group);
Macro:=MacroList[0];
i:=MacroList.Count;
NumMacro:=0;
p1:=StrCopyE(section,opt_group);
while i>0 do
begin
with Macro^ do
begin
if (flags and (ACF_ASSIGNED or ACF_VOLATILE))=ACF_ASSIGNED then
begin
p:=StrEnd(IntToStr(p1,NumMacro));
p^:='/'; inc(p);
StrCopy(p,opt_id ); DBWriteDWord(0,DBBranch,section,id);
StrCopy(p,opt_flags); DBWriteDWord(0,DBBranch,section,flags);
StrCopy(p,opt_descr); DBWriteUnicode (0,DBBranch,section,descr);
p^:=#0;
SaveActions(Macro,section);
inc(NumMacro);
end;
end;
inc(Macro);
dec(i);
end;
DBWriteWord(0,DBBranch,opt_nummacro,NumMacro);
end;
//----- Load settings -----
function LoadActions(Macro:pMacroRecord;section:pAnsiChar):integer;
var
p,p1:PAnsiChar;
i,num:integer;
actm:pActModule;
action:tBaseAction;
uid:dword;
tmp:pActionList;
begin
result:=0;
p:=StrEnd(section);
StrCopy(p,opt_numacts); Macro^.ActionCount:=DBReadWord(0,DBBranch,section);
if Macro^.ActionCount>0 then
begin
GetMem(Macro^.ActionList,SizeOf(tBaseAction)*Macro^.ActionCount);
p1:=StrCopyE(p,opt_actions); // "Group#/Action"
num:=0;
for i:=0 to Macro^.ActionCount-1 do
begin
p:=StrEnd(IntToStr(p1,i));
p^:='/'; inc(p); // "Group#/Action#/"
// get uid
StrCopy(p,opt_uid); uid:=DBReadDWord(0,DBBranch,section,0);
if uid<>0 then
begin
p^:=#0;
// call proper constructor
actm:=GetLink(uid);
if actm=nil then
continue;
action:=actm.Create;
// call proper loader
action.Load(section,0);
Macro^.ActionList^[num]:=action;
inc(num);
end;
end;
if Macro^.ActionCount<>num then
begin
GetMem(tmp,SizeOf(tBaseAction)*num);
move(Macro^.ActionList^,tmp^,SizeOf(tBaseAction)*num);
Macro^.ActionCount:=num;
FreeMem(Macro^.ActionList);
Macro^.ActionList:=tmp;
end;
end;
end;
procedure LoadMacros;
var
Macro:pMacroRecord;
i:cardinal;
p,p1:PAnsiChar;
section:array [0..127] of AnsiChar;
NumMacros:cardinal;
tmp:pWideChar;
begin
// Allocate macro list
NumMacros :=DBReadWord(0,DBBranch,opt_nummacro,0);
MacroList:=tMacroList.Create(NumMacros);
// read macro list settings
if NumMacros>0 then //?? really, not so necessary
begin
Macro:=MacroList[0];
i:=0;
p1:=StrCopyE(section,opt_group);
while i<NumMacros do
begin
p:=StrEnd(IntToStr(p1,i));
p^:='/'; inc(p);
StrCopy(p,opt_flags);
with Macro^ do
begin
flags:=DBReadDWord(0,DBBranch,section,0) and ACF_TOSAVE;
if (flags and ACF_ASSIGNED)<>0 then //?? not needed in normal cases
begin
StrCopy(p,opt_id ); id :=DBReadDWord (0,DBBranch,section);
StrCopy(p,opt_descr); tmp:=DBReadUnicode(0,DBBranch,section,NoDescription);
StrCopyW(descr,tmp,MacroNameLen-1);
mFreeMem(tmp);
p^:=#0;
LoadActions(Macro,section);
end;
end;
inc(Macro);
inc(i);
end;
end;
end;
|