-
Notifications
You must be signed in to change notification settings - Fork 3
/
TUULI.PAS
142 lines (95 loc) · 2.39 KB
/
TUULI.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
Unit Tuuli;
Interface
procedure Init;
procedure Piirra;
procedure Hae;
procedure Alusta(place:byte);
procedure Siirra;
procedure Tuo(x,y:integer);
procedure AsetaPaikka(place:byte);
var voim,windy, value : integer;
Implementation
uses SJ3Graph, SJ3Help;
var tsuun : boolean; { kiinnostaako n„m„ kaikkia? }
traja1, traja2 : integer;
tkulma : single;
tuulix, tuuliy:integer;
tpaikka : byte;
procedure Tuo(x,y:integer);
begin
tuulix:=x;
tuuliy:=y;
case tpaikka of
11 : begin inc(tuulix,10); dec(tuuliy,20); end;
12 : begin inc(tuulix,15); dec(tuuliy,5); end;
13 : begin dec(tuulix,10); inc(tuuliy,12); end;
end;
end;
procedure AsetaPaikka(place:byte);
begin
tpaikka:=place;
tuulix:=10;
tuuliy:=180;
case tpaikka of
1 : begin end;
2 : tuuliy:=97;
3 : tuulix:=268;
4 : tuulix:=150;
5 : begin tuulix:=268; tuuliy:=97; end;
6 : begin tuulix:=268; tuuliy:=21; end;
7 : begin tuulix:=150; tuuliy:=21; end;
{ 8 : begin tuulix:=7; tuuliy:=33; end; }
8 : begin tuulix:=56; tuuliy:=33; end;
end;
end;
procedure Alusta(place:byte);
var temp1,temp2 : byte;
begin
temp1:=random(180); { Tuulen rajoja }
temp2:=random(120);
windy:=temp2; { ns. tuulisuusindeksi }
traja1:=temp1-temp2;
traja2:=temp1+temp2;
tkulma:=random(temp2*2)+traja1;
voim:=random(50);
if random(2)=0 then tsuun:=true else tsuun:=false;
AsetaPaikka(place);
end;
procedure Siirra;
begin
if (tsuun) and (tkulma>traja2) then tsuun:=false;
if (tsuun=false) and (tkulma<traja1) then tsuun:=true;
if (random(50)=0) then tsuun:=not tsuun;
if (tsuun) then tkulma:=tkulma+(random(4)/5) else tkulma:=tkulma-(random(4)/5);
end;
procedure Hae;
begin
Siirra;
value:=round(cos(pi*tkulma/180)*voim);
{ value:=-10; }
end;
procedure Piirra;
var s:string;
begin
{
tuulix:=10;
tuuliy:=180;
}
{ fillbox(tuulix,tuuliy,tuulix+42,tuuliy+12,10); }
fillbox(tuulix+4,tuuliy+1,tuulix+38,tuuliy+2,248);
fillbox(tuulix+21,tuuliy+1,tuulix+21,tuuliy+2,240);
PutPixel(tuulix+21,tuuliy+9,247); { piste; oli 252 }
if (value>0) then
fillbox(tuulix+22,tuuliy+1,tuulix+22+value div 3,tuuliy+2,236);
if (value<0) then
fillbox(tuulix+20+value div 3,tuuliy+1,tuulix+20,tuuliy+2,237);
s:=txtp(abs(value));
if (value<0) then writefont(tuulix+10,tuuliy+5,'-');
writefont(tuulix+15,tuuliy+5,s[1]);
writefont(tuulix+24,tuuliy+5,s[3]);
end;
procedure Init;
begin
Alusta(0);
end;
end.