-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSERVICE.PAS
executable file
·320 lines (313 loc) · 9.44 KB
/
SERVICE.PAS
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
(****************************************************************************
* Œ®¤ã«ì ®á®¢ëå á¨á⥬ëå ã⨫¨â v1.00 beta 2 *
****************************************************************************
* *
* Since: --------- *
* (c) NiKe'Soft UnLtd. Last UpDate: 31/07/Y2k *
****************************************************************************)
{$X+,G+,D-,L-,S-,R-,V-}
Unit Service;
INTERFACE
type
DateTime = record
Year,Month,Day,Hour,Min,Sec: Word;
end;
const On = True;
Off = False;
MonthSt : array[1..12] of string[8] =
(('Ÿ¢ àì' ),('”¥¢à «ì'),('Œ àâ' ),('€¯à¥«ì' ),('Œ ©' ),('ˆîì' ),
('ˆî«ì' ),('€¢£ãáâ' ),('‘¥âï¡àì'),('Žªâï¡àì'),('®ï¡àì'),('„¥ª ¡àì'));
LeftAlign = 0;
RightAlign = 1;
CenterAlign = 2;
var BIOSTimer : LongInt absolute $40:$6c;
function StrEq(Var a,b; Count : Word) : Boolean;
function LoCase(s : string) : string;
function UpCaseStr(S : String): String;
function UpCaseCh(ch : char) : char;
function fStr(l : longint; maxsz : byte; digch, fillch : char; Align : byte): string;
function StrF(l : longint; d : byte): string;
Function Min(X,Y : Integer) : Integer; {assembler}
function Max(X,Y : Integer) : Integer; {assembler}
function MultiTaskPresent : Boolean; {assembler}
procedure StartTimer;
function ReadTimer : Word;
function ReadKey: char; {assembler}
function keyPressed: boolean; {assembler}
procedure SetCursorSpeed(spd: byte); {assembler}
procedure UnpackTime(P: Longint; var T: DateTime);
procedure PackTime(var T: DateTime; var P: Longint);
function RTrim(s : string) : string;
function LTrim(s : string) : string;
function TimeDateStr(td : DateTime) : string;
function GetTimeSt(tm : longint) : string;
function LZ(s : string; zn : byte; ch : char): string;
function Size_Str(sz : real) : string;
function Size_Str_kb(sz : real) : string;
function Trim(s : string) : string;
IMPLEMENTATION
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
{$L PTIM.OBJ} { Time pack and unpack routines }
procedure UnpackTime(P: Longint; var T: DateTime); external {PTIM};
procedure PackTime(var T: DateTime; var P: Longint); external {PTIM};
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function Trim(s : string) : string;
var i : integer;
begin
while length(s) > 0 do if s[1] in [' '] then delete(s,1,1) else break;
i := length(s);
while i > 0 do if not (s[i] in [' ']) then break else dec(i);
s[0] := chr(i);
Trim := s;
end;
function TimeDateStr;
var s1,s2:string;
begin
s1:='';
with td do
begin
if (day<0) or (day>31) then day:=0;
str(day,s2); if length(s2)=1 then s2:='0'+s2; s1:=s1+s2+'.';
if (month<0) or (month>12) then month:=0;
str(month,s2); if length(s2)=1 then s2:='0'+s2; s1:=s1+s2+'.';
if year>=2100 then year:=0 else
if year>=2000 then dec(year,2000) else
if year<1976 then year:=76 else dec(year,1900);
str(year,s2);
if length(s2)=1 then s2:='0'+s2;
s1:=s1+s2+' ';
if (hour<0) or (hour>99) then hour:=0;
str(hour,s2); if length(s2)=1 then s2:='0'+s2; s1:=s1+s2+':';
if (min<0) or (min>59) then min:=0;
str(min,s2); if length(s2)=1 then s2:='0'+s2; s1:=s1+s2;
end;
TimeDateStr:=s1;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function LZ;
begin
while length(s)<zn do s:=ch+s;
LZ:=s;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function GetTimeSt;
var s : string;
begin
s:=lz(strf(tm div (60*60),1),2,'0');
tm:=tm mod (60*60);
s:=s+':'+lz(strf(tm div 60,1),2,'0')+':'+lz(strf(tm mod 60,1),2,'0');
GetTimeSt:=s;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function LTrim;
begin
while (s>'') and (s[1] in [#0..#32,#255]) do delete(s,1,1);
LTrim:=s;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function RTrim;
begin
while (s > '') and (s[length(s)] in [#0..#32,#255]) do dec(byte(s[0]));
RTrim:=s;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function UpCaseCh;
begin
if (ch>='a')and(ch<='z') then UpCaseCh:=char(ord(ch)+ord('A')-ord('a')) else
if (ch>=' ')and(ch<='¯') then UpCaseCh:=char(ord(ch)+ord('€')-ord(' ')) else
if (ch>='à')and(ch<='ï') then UpCaseCh:=char(ord(ch)+ord('')-ord('à')) else
if (ch>='ð')and(ch<='ö') then UpCaseCh:=char(ord(ch)+1)
else UpCaseCh:=ch;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function UpCaseStr;
var i,j : Byte; S1 : String;
begin
for i := 1 to Length(S) do S1[i] := UpCaseCh(S[i]);
S1[0] := S[0];
UpCaseStr := S1;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function StrEq;
var f : Boolean;
begin
asm
push ds
les si,a
lds di,b
xor dx,dx
mov cx,Count
@Loop:
mov al,es:[si]
cmp al,ds:[di]
jnz @Ex
inc di
inc si
loop @Loop
inc dl
@Ex:
pop ds
mov f,dl
end;
StrEq:=f;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function LoCase(s : string) : string;
var i : byte;
begin
for i:=1 to length(s) do case s[i] of
'A'..'Z':inc(byte(s[i]),32);
'€'..'':inc(byte(s[i]),32);
''..'Ÿ':inc(byte(s[i]),80);
end;
LoCase:=s;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
Function Min(X,Y : Integer) : Integer; Assembler;
Asm
Mov Ax,X
Cmp Ax,Y
Jle @@1
Mov Ax,Y
@@1:
End;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
Function Max(X,Y : Integer) : Integer; Assembler;
Asm
Mov Ax,X
Cmp Ax,Y
Jge @@1
Mov Ax,Y
@@1:
End;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function MultiTaskPresent : Boolean; assembler;
asm
mov ax,1687h
int 2fh
or ax,ax
jz @1 {multitask}
mov ax,1600h
int 2fh
cmp al,1
je @1
mov ax,160Ah
int 2fh
or ax,ax
jz @1
mov ax,4680h
int 2fh
or ax,ax
jz @1
mov al,0
jmp @2
@1:
mov al,1
@2:
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
procedure StartTimer; assembler;
asm
in al,61h
and al,0FCh {Speaker - off}
out 61h,al
mov al,0B4h {10110110b - Channel 2, mode 2, both hi&lo bytes}
out 43h,al {Out to command register}
mov ax,0000h {Counter value - maximum: FFFFh}
out 42h,al {Out lo byte to channel 2}
mov al,ah
out 42h,al {Out hi byte to channel 2}
in al,61h
or al,01
out 61h,al
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function ReadTimer : Word; assembler;
{Stop timer and read value}
asm
in al,42h
mov bl,al
in al,42h
mov bh,al
neg bx
in al,61h
and al,0FDh
out 61h,al
mov ax,bx
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function readKey: char;assembler;
asm
mov ah,07h
int 21h
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function keyPressed: boolean;assembler;
asm
mov ah,0Bh
int 21h
and al,0FEh
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
procedure SetCursorSpeed(spd: byte); assembler;
asm
mov al,0f3h
out 60h,al
nop
nop
nop
mov al,Spd
out 60h,al
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function StrF(l : longint; d : byte): string;
var s : string;
begin
str(l:d,s);
strf:=s;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function fStr;
var b : byte; s,ts : string;
begin
str(l,s);
ts:=''; b:=0;
while (b<byte(s[0])) do
begin
ts:=s[byte(s[0])-b]+ts;
inc(b);
if (b<byte(s[0])) then if (b) mod 3 = 0 then ts:=digch+ts;
end;
if Align = LeftAlign then b:=0 else b:=1;
while (byte(ts[0])<maxsz) do
begin
if (b=0) then ts:=fillch+ts else ts:=ts+fillch;
if Align = CenterAlign then b:=1-b;
end;
fStr := ts;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function Size_Str;
begin
if (sz >= 0)and(sz < 10*1024*1024)
then Size_Str:=fstr(round(sz),0,',',' ',LeftAlign) else
if (sz >= 10*1024*1024)and(sz <= 1.0*1024*1024*1024)
then Size_Str:=fstr(round(sz/(1024*1024)),0,',',' ',LeftAlign)+' Mb' else
if (sz > 1.0*1024*1024*1024)and(sz <= 128.0*1024*1024*1024)
then Size_Str:=fstr(round(sz/(1024*1024*1024)),0,',',' ',LeftAlign)+' Gb'
else Size_Str:='<OFL>';
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function Size_Str_kb;
begin
if (sz >= 0)and(sz < 10*1024)
then Size_Str_kb:=fstr(round(sz),0,',',' ',LeftAlign)+' Kb' else
if (sz >= 10*1024)and(sz <= 1*1024*1024)
then Size_Str_kb:=fstr(round(sz/(1024)),0,',',' ',LeftAlign)+' Mb' else
if (sz > 1*1024*1024)and(sz <= 128*1024*1024)
then Size_Str_kb:=fstr(round(sz/(1024*1024)),0,',',' ',LeftAlign)+' Gb'
else Size_Str_kb:='<OFL>';
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
END.{So fucking what?! (c) MetallicA}
... and Justice 4 all. (c) MetallicA