-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSJ3HELP.PAS
402 lines (283 loc) · 6.66 KB
/
SJ3HELP.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
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
Unit SJ3HELP; { SJ3:n apufunktioita, ei graafisia }
interface
var ch, ch2 : char; { n„ppisglobaalit }
procedure beep(beeptapa:byte);
function round(r:single):longint;
function nsqrt(x:single):single;
procedure putsaa;
procedure clearchs;
procedure waitforkey;
function waitforkey2:boolean;
procedure cwrite(col:byte;str1:string);
procedure cwriteln(col:byte;str1:string);
procedure dowindow(x1,y1,x2,y2,col:integer);
procedure Fileok(IORes:integer;filename:string);
function pcomp(score,sij:longint):longint;
function sh(str1:string;maxpituus:byte):string;
function nsh(str1:string;maxpituus:integer):string;
function paraletter(str1:string):char;
function txtp(jokuluku:longint):string;
function txt(jokuluku:longint):string;
function num(jokustr:string):longint;
function upstr(str1:string):string;
function nmstr(str1:string):string;
function toansi(str1:string):string;
implementation
uses maki, sj3unit, crt, dos, sj3graph, SDLPort;
procedure Wait(C : integer) ;
begin
SdlPort.Wait(C);
end {Wait} ;
function round(r:single):longint;
var l : longint;
begin
l := trunc(r);
if (frac(r) >= 0.5) then inc(l);
if (frac(r) <= -0.5) then dec(l);
round := l;
end;
procedure beep(beeptapa:byte);
begin
(*
sound(1000*beeptapa);
delay(15);
NoSound;
*)
(* ok - kotitekoinen
sound(1000*beeptapa);
GetTime(t1.Hour,t1.Minute,t1.Second,t1.Sec100);
t2:=t1;
repeat
GetTime(t1.Hour,t1.Minute,t1.Second,t1.Sec100);
until (t1.Sec100 <> t2.Sec100);
NoSound;
*)
sound(1000*beeptapa);
wait(2);
NoSound;
end;
function HexW(W: word): string; {Word}
const
HexChars: array [0..$F] of Char = '0123456789ABCDEF';
begin
HexW :=
HexChars[(W and $F000) shr 12] +
HexChars[(W and $0F00) shr 8] +
HexChars[(W and $00F0) shr 4] +
HexChars[(W and $000F)];
end;
function nsqrt(x:single):single;
var temp : single;
begin
temp:=sqrt(abs(x));
if (x<0) then temp:=-temp;
nsqrt:=temp;
end;
procedure putsaa;
{var ch : char; }
begin
while SDLPort.KeyPressed do SDLPort.WaitForKeyPress(ch,ch2);
end;
procedure clearchs;
begin
ch:=#1; ch2:=#1;
end;
procedure waitforkey;
{var ch : char; }
begin
putsaa;
SDLPort.WaitForKeyPress(ch,ch2);
end;
Function waitforkey2:boolean;
var tempboole : boolean;
{ ch2 : char; }
begin
putsaa;
tempboole:=false;
SDLPort.WaitForKeyPress(ch,ch2);
if (ch=#0) and (ch2=#68) then tempboole:=true;
waitforkey2:=tempboole;
end;
procedure cwrite(col:byte;str1:string);
begin
textcolor(col);
write(str1);
end;
procedure cwriteln(col:byte;str1:string);
begin
textcolor(col);
writeln(str1);
end;
procedure dowindow(x1,y1,x2,y2,col:integer);
begin
window(x1,y1,x2,y2);
textbackground(col);
clrscr;
end;
function pcomp(score,sij:longint):longint;
begin
pcomp:=(score*51)+50-sij;
{ pcomp:=score*51; }
end;
function plusstr(points:integer):integer;
begin
plusstr:=length(txtp(points))*6;
end;
Function sh(str1:string;maxpituus:byte):string;
var temp1,temp2 : byte;
var str2 : string;
begin
str2:='';
temp2 := length(str1);
if (temp2>maxpituus) then
begin
for temp1:=2 to temp2-1 do
if (str1[temp1]=' ') and (str1[temp1+1]<>' ') then
begin
str2:=str1[1]+'.'+copy(str1,temp1,temp2-temp1+1);
if (length(str2)<=maxpituus) then begin sh:=str2; exit; end;
end;
if str2='' then str2:=str1;
temp1:=length(str2);
if (temp1>maxpituus) then
str2:=copy(str2,1,maxpituus-1)+'.';
end else str2:=str1;
sh:=str2;
end;
function nsh(str1:string;maxpituus:integer):string;
var temp1,temp2, temp3 : integer;
var str2 : string;
begin
str2:='';
temp2 := fontlen(str1);
temp3 := length(str1);
if (temp2>maxpituus) then
begin
for temp1:=2 to temp3-1 do
if (str1[temp1]=' ') and (str1[temp1+1]<>' ') then
begin
str2:=str1[1]+'.'+copy(str1,temp1,temp3-temp1+1);
if (fontlen(str2) <= maxpituus) then begin nsh:=str2; exit; end;
end;
if (str2='') then str2:=str1;
temp1:=fontlen(str2);
temp3:=length(str2);
if (temp1>maxpituus) then
while (fontlen(str2) > maxpituus) do
begin
dec(temp3);
str2:=copy(str2,1,temp3)+'.';
end;
end else str2:=str1;
nsh:=str2;
end;
function paraletter(str1:string):char;
var tempch : char;
temp : integer;
begin
tempch:=#0;
temp:=1;
while (str1[temp]<>')') and (temp<length(str1)) do inc(temp);
if (temp>1) then tempch:=str1[temp-1];
paraletter:=tempch;
end;
Function txtp(jokuluku:longint):string;
var str1 : string;
begin
str(abs(jokuluku),str1);
insert('.',str1,length(str1));
if (length(str1)<3) then str1:='0'+str1;
if (jokuluku<0) then str1:='-'+str1;
if (jokuluku<>0) then txtp:=str1 else txtp:='0.0';
end;
Function txt(jokuluku:longint):string;
var str1 : string;
begin
str(jokuluku,str1);
if (jokuluku<>0) then txt:=str1 else txt:='0';
end;
Function num(jokustr:string):longint;
var temp : longint;
code : integer;
begin
val(jokustr,temp,code);
if (code>0) then temp:=-1;
num:=temp;
end;
procedure Fileok(IORes:integer;filename:string);
begin
if (IORes<>0) then
begin
AsetaMoodi($3);
Writeln('SJ3 error: Can''t find file ',filename,'. Where have you put it? ');
Readln;
Halt;
end;
end;
function upstr(str1:string):string;
var outstr : string;
index : integer;
begin
outstr:=str1;
for index:=1 to length(outstr) do
begin
outstr[index]:=upcase(outstr[index]);
case outstr[index] of
'†' : outstr[index]:='';
'„' : outstr[index]:='Ž';
'”' : outstr[index]:='™';
'' : outstr[index]:='š';
'›' : outstr[index]:='';
'‘' : outstr[index]:='’';
end;
end;
upstr:=outstr;
end;
function toansi(str1:string):string;
var outstr : string;
index : integer;
begin
outstr:=str1;
for index:=1 to length(outstr) do
begin
case outstr[index] of
'' : outstr[index]:='Â';
'Ž' : outstr[index]:='Ä';
'™' : outstr[index]:='Ö';
'š' : outstr[index]:='Ü';
'' : outstr[index]:='Ø';
'’' : outstr[index]:='Æ';
'†' : outstr[index]:='å';
'„' : outstr[index]:='ä';
'”' : outstr[index]:='ö';
'' : outstr[index]:='ü';
'›' : outstr[index]:='ø';
'‘' : outstr[index]:='æ';
'á' : outstr[index]:='ß'; { beta? }
end;
end;
toansi:=outstr;
end;
function nmstr(str1:string):string;
var outstr : string;
index : integer;
begin
outstr:=upstr(str1);
for index:=1 to length(outstr) do
begin
if (index>1) and (outstr[index-1]<>' ') then
begin
case outstr[index] of
'A'..'Z' : outstr[index]:=chr(ord(outstr[index])+32);
'' : outstr[index]:='†';
'Ž' : outstr[index]:='„';
'™' : outstr[index]:='”';
'š' : outstr[index]:='';
'' : outstr[index]:='›';
'’' : outstr[index]:='‘';
end;
end;
end;
nmstr:=outstr;
end;
end.