-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.pas
More file actions
577 lines (496 loc) · 12.1 KB
/
main.pas
File metadata and controls
577 lines (496 loc) · 12.1 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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
unit main;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls,
IniFiles;
type
TForm2 = class(TForm)
Memo1: TMemo;
Memo2: TMemo;
Panel1: TPanel;
Button1: TButton;
Edit1: TEdit;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Edit1Change(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
function ConvertFunction(const S: string): string;
function ClearText(Text: string): string;
function SkipSpace(const S: string; var Index: Integer): Boolean;
function GetTextSize(const S: string; Index, Size: Integer): string;
function FindCharNotBackSlash(const S: string; Index: Integer;
C: Char): Integer;
function GetWords(const S: string): TStrings;
function GetCName(const S: string; var Index: Integer): string;
function GetCNum(const S: string; var Index: Integer): string;
function GetLine(var Source: TStrings): TStringList;
function ConvertVariable(VarC: TStrings; out IsConst: Boolean): string;
function CType2Pas(const S: string; out IsReplace: Boolean): string;
function ConvertVariables(Words: TStrings): string;
function GetVariable(var Source: TStrings): TStrings;
{ Private declarations }
public
FIni: TIniFile;
end;
var
Form2: TForm2;
implementation
{$R *.dfm}
procedure TForm2.Button1Click(Sender: TObject);
begin
Memo2.Lines.Text := ConvertFunction(Memo1.Lines.Text);
end;
function TForm2.SkipSpace(const S: string; var Index: Integer): Boolean;
var
c, i: Integer;
begin
if Index < 1 then Index := 1;
c := Length(s);
for i := Index to c do
begin
if CharInSet(S[i], [' ', #9, #13]) then
begin
Index := i;
end
else
begin
Index := i;
Result := True;
Exit;
end;
end;
Index := c + 1;
Result := False;
end;
function TForm2.GetTextSize(const S: string; Index, Size: Integer): string;
begin
Result := Copy(S, Index, Size);
while Length(Result) <> Size do
Result := Result + ' ';
end;
function TForm2.FindCharNotBackSlash(const S: string; Index: Integer;
C: Char): Integer;
var
i, j: Integer;
begin
Result := 0;
repeat
i := Pos('\' + C, S, Index);
j := Pos(C, S, Index);
if (i = 0) then i := j + 1;
if (j = 0) then Exit;
until j < i;
Result := j;
end;
procedure TForm2.FormCreate(Sender: TObject);
begin
FIni := TIniFile.Create(ExtractFilePath(ParamStr(0)) + 'Settings.ini');
Edit1.Text := FIni.ReadString('main', 'ext', '');
end;
procedure TForm2.Button2Click(Sender: TObject);
begin
Memo1.Clear;
Memo1.PasteFromClipboard;
Button1.Click;
Memo2.SelectAll;
Memo2.CopyToClipboard;
end;
function TForm2.ClearText(Text: string): string;
var
S, Tag: string;
Index, i: Integer;
begin
S := Trim(StringReplace(Text, #13#10, #13, [rfReplaceAll]));
Result := '';
Index := 1;
while Index <= Length(S) do
begin
Tag := GetTextSize(S, Index, 2);
if (Tag[1] = '/') and (Tag[2] = '/') then
begin
i := Pos(#13, S, Index);
// Êîììåíòàðèé çàêàí÷èâàåò ýòîò ôàéë
if i = 0 then Break;
Index := i;
end
else if (Tag[1] = '/') and (Tag[2] = '*') then
begin
i := Pos('*/', S, Index);
if i = 0 then Break;
Index := i + 2;
end
else if (Tag[1] = '(') and (Tag[2] = '*') then
begin
i := Pos('*)', S, Index);
if i = 0 then Break;
Index := i + 2;
end
else if Tag[1] = '"' then
begin
i := FindCharNotBackSlash(S, Index, '"');
if i = 0 then Break;
Result := Copy(S, Index, i - Index + 1);
Index := i + 1;
end
else if Tag[1] = '''' then
begin
i := FindCharNotBackSlash(S, Index, '''');
if i = 0 then Break;
Result := Result + Copy(S, Index, i - Index + 1);
Index := i + 1;
end
else
begin
if (S[Index] = #13) or (S[Index] = #9) then
S[Index] := ' ';
if S[Index] = ' ' then
begin
if (Result <> '') and (Result[Length(Result)] <> ' ') then
Result := Result + S[Index];
end
else
begin
if CharInSet(S[Index], ['(', ')', '*', ';', '[', ']', ',']) then
begin
Result := TrimRight(Result);
end;
Result := Result + S[Index];
end;
Index := Index + 1;
end;
end;
end;
function TForm2.GetCName(const S: string; var Index: Integer): string;
var
i, c: Integer;
begin
Result := '';
c := Length(S);
for i := Index to c do
begin
if CharInSet(S[i], ['a'..'z', 'A'..'Z', '_', '0'..'9']) then
begin
Result := Result + S[i];
Index := i + 1;
end
else
begin
Index := i;
Break;
end;
end;
end;
function TForm2.GetCNum(const S: string; var Index: Integer): string;
var
i, c: Integer;
begin
c := Length(S);
for i := Index to c do
begin
if CharInSet(S[i], ['0'..'9']) or ((Result = '0') and (S[i] = 'x')) then
begin
Result := Result + S[i];
Index := i + 1;
end
else
begin
Index := i;
Break;
end;
end;
end;
function TForm2.GetWords(const S: string): TStrings;
var
Index, i: Integer;
C: Char;
begin
Result := TStringList.Create;
Index := 1;
while Index <= Length(S) do
begin
C := S[Index];
case C of
'"', '''':
begin
i := FindCharNotBackSlash(S, Index, C);
if i = 0 then Break;
Result.Add(Copy(S, Index, i - Index + 1));
Index := i + 1;
end;
'a'..'z', 'A'..'Z', '_':
begin
Result.Add(GetCName(S, Index));
end;
'0'..'9':
Result.Add(GetCNum(S, Index));
' ':
begin
Inc(Index);
end
else
Result.Add(S[Index]);
Inc(Index);
end;
end;
end;
function TForm2.GetLine(var Source: TStrings): TStringList;
var
S: string;
begin
Result := TStringList.Create;
while Source.Count > 0 do
begin
S := Source[0];
Result.Add(S);
Source.Delete(0);
if S = ';' then
Break;
end;
end;
function TForm2.CType2Pas(const S: string; out IsReplace: Boolean): string;
const
CType: array of string = [
'char',
'signed char',
'unsigned char',
'short', 'short int', 'signed short', 'signed short int',
'unsigned short', 'unsigned short int',
'int', 'signed', 'signed int',
'unsigned', 'unsigned int',
'long', 'long int', 'signed long', 'signed long int',
'unsigned long', 'unsigned long int', 'uint32_t',
'long long', 'long long int', 'signed long long', 'signed long long int', 'int64_t',
'unsigned long long', 'unsigned long long int', 'uint64_t',
'float', 'double', 'long double',
'size_t', 'uint8_t',
'void',
'int8_t'
];
PasType: array of string = [
'AnsiChar',
'AnsiChar',
'AnsiChar',
'SmallInt', 'SmallInt', 'SmallInt', 'SmallInt',
'Word', 'Word',
'Integer', 'Integer', 'Integer',
'Cardinal', 'Cardinal',
'Integer', 'Integer', 'Integer', 'Integer',
'Cardinal', 'Cardinal', 'UInt32',
'Int64', 'Int64', 'Int64', 'Int64', 'Int64',
'UInt64', 'UInt64', 'UInt64',
'Float', 'Double', 'External',
'NativeUInt', 'UInt8',
'Pointer',
'SmallInt'
];
var
i, c: Integer;
begin
Result := S;
IsReplace := False;
c := Length(CType);
for i := 0 to c - 1 do
begin
if S = CType[i] then
begin
IsReplace := True;
Result := PasType[i];
Break;
end;
end;
end;
procedure TForm2.Edit1Change(Sender: TObject);
begin
FIni.WriteString('main', 'ext', Edit1.Text);
end;
function TForm2.ConvertVariable(VarC: TStrings; out IsConst: Boolean): string;
var
Str: TStrings;
VarType, PasType: string;
IsReplace: Boolean;
StarCount, i: Integer;
begin
Result := '';
IsConst := False;
if VarC.Count = 0 then Exit;
Str := TStringList.Create;
Str.Assign(VarC);
try
if Str[0] = 'const' then
begin
IsConst := True;
Str.Delete(0);
end
else if Str[0] = 'enum' then
begin
Str.Delete(0);
end;
VarType := '';
while Str.Count > 0 do
begin
if Str[0] <> '*' then
begin
VarType := VarType + ' ' + Str[0];
Str.Delete(0);
end
else
Break;
end;
PasType := CType2Pas(Trim(VarType), IsReplace);
StarCount := 0;
while Str.Count > 0 do
begin
if Str[0] = 'const' then
begin
Str.Delete(0);
IsConst := True;
end
else if Str[0] = '*' then
begin
Inc(StarCount);
Str.Delete(0);
end
else
Str.Delete(0);
end;
if StarCount > 0 then
begin
if PasType = 'UInt8' then
PasType := 'Byte';
if PasType = 'Pointer' then
Dec(StarCount);
for i := 0 to StarCount - 1 do
PasType := 'P' + PasType;
end
else
begin
if not IsReplace or (PasType = 'Pointer') then
PasType := 'T' + PasType;
end;
Result := PasType;
finally
Str.Free;
end;
end;
function TForm2.GetVariable(var Source: TStrings): TStrings;
begin
Result := TStringList.Create;
while Source.Count > 0 do
begin
if Source[0] = ',' then
begin
Source.Delete(0);
Break;
end
else
begin
Result.Add(Source[0]);
Source.Delete(0);
end;
end;
end;
function TForm2.ConvertVariables(Words: TStrings): string;
var
VarList: TStrings;
VarName, VarType: string;
IsConst: Boolean;
begin
Result := '';
if Words.Count < 2 then
Exit;
while Words.Count > 0 do
begin
VarList := GetVariable(Words);
try
if VarList.Count < 2 then
raise Exception.Create(Words.Text);
VarName := VarList[VarList.Count - 1];
VarList.Delete(VarList.Count - 1);
VarType := ConvertVariable(VarList, IsConst);
Result := Result + '; ';
if IsConst then
Result := Result + 'const ';
if VarName = 'type' then
VarName := 'type_';
Result := Result + VarName + ': ' + VarType;
finally
VarList.Free;
end;
end;
if Length(Result) > 2 then
Delete(Result, 1, 2);
end;
function TForm2.ConvertFunction(const S: string): string;
var
W, RetList, Words, VarList: TStrings;
Line, FuncName, RetType, FuncLine: string;
i, FunctionParamStart, FunctionParamEnd: Integer;
IsConst: Boolean;
begin
Result := ClearText(S);
W := GetWords(Result);
Result := '';
try
while W.Count > 0 do
begin
Words := GetLine(W);
RetList := TStringList.Create;
VarList := TStringList.Create;
try
FunctionParamStart := Words.IndexOf('(');
FunctionParamEnd := -1;
for i := Words.Count - 1 downto 0 do
if Words[i] = ')' then
begin
FunctionParamEnd := i;
Break;
end;
for i := FunctionParamStart + 1 to FunctionParamEnd - 1 do
VarList.Add(Words[i]);
if (FunctionParamStart = -1) or (FunctionParamEnd = -1) then
begin
Result := 'Íå íàéäåíû ïàðàìåòðû ôóíêöèè';
Exit;
end;
for i := 0 to FunctionParamStart - 2 do
RetList.Add(Words[i]);
if FunctionParamStart <= 1 then
begin
Result := 'ParseError 1';
Exit;
end;
RetType := ConvertVariable(RetList, IsConst);
FuncName := Words[FunctionParamStart - 1];
if RetType = 'TPointer' then
FuncLine := 'procedure '
else
FuncLine := 'function ';
FuncLine := FuncLine + FuncName;
if True {Param exist} then
begin
FuncLine := FuncLine + '(' + ConvertVariables(VarList) + ')';
end;
if RetType <> 'TPointer' then
FuncLine := FuncLine + ': ' + RetType;
FuncLine := FuncLine + ';';
while Length(FuncLine) < 79 do
begin
FuncLine := FuncLine + ' ';
end;
FuncLine := FuncLine + ' ' + Edit1.Text;
Result := Result + FuncLine + #13#10;
finally
VarList.Free;
RetList.Free;
Words.Free;
end;
end;
// Result := W.Text;
finally
W.Free;
end;
end;
end.