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
|
unit Unit1;
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
pegelUnit, fhUnit, lowLevelUnit;
type
{ TForm1 }
TForm1 = class(TForm)
Image1: TImage;
RegenSturmIco: TImage;
RegenIco: TImage;
SturmIco: TImage;
SonneIco: TImage;
WolkeIco: TImage;
TrayIcon1: TTrayIcon;
procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure TrayIcon1Click(Sender: TObject);
procedure TrayIcon1DblClick(Sender: TObject);
procedure TrayIcon1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X,Y: Integer);
private
{ private declarations }
datenZeitRaum: extended;
pegel: tPegelStaende;
wetter: tMessPunkte;
pegelDatei,wetterDatei: string;
lMB: tMouseButton;
public
{ public declarations }
procedure zeichnen;
end;
var
Form1: tForm1;
pidDatei: string;
fehler: boolean;
const
bufLengMin = 1024*1024;
(*
function separateValue(var S: String): string;
function Zeit2Datetime(Z: TZeit): extended;
function PegelstaendeVergleichen(P1,P2: Pointer): integer;
function PegelzeitVergleichen(P1,P2: TPegelzeit): integer;
function findePegelZeit(PS: TList; PZ: TPegelzeit): extended;
function strToPegelZeit(s: string): TPegelzeit;
function Pegelzeit2Datetime(Z: TPegelzeit): extended;
function letzterMonat(t: TDateTime): TPoint; // x=Monat, y=Jahr
function MyIntToStr(I,Ziff: longint): string;
*)
function wertZuX(w: extended; startZeit,stopZeit: extended; breite: longint): longint; inline;
function wertZuY(w: extended; miMa: tPoint; hoehe: longint): longint; inline; overload;
function wertZuY(w: extended; miMa: tExtPoint; hoehe: longint): longint; inline; overload;
function wertZuY(w: extended; mi,ma: extended; hoehe: longint): longint; inline; overload;
implementation
{$R *.lfm}
uses process, myStringListUnit, systemUnit, matheunit, math;
{ TForm1 }
procedure TForm1.FormCreate(Sender: TObject);
var
s,t: string;
f,o: tMyStringList;
fi: textfile;
args: array of string;
begin
fehler:=true;
__ausgabenMaske:=1;
lMB:=mbLeft;
pidDatei:='';
pegelDatei:='';
datenZeitRaum:=1;
s:=extractfilepath(application.exename)+'wetter.konf';
t:='';
if not fileexists(s) then
raise exception.create('Kann Konfigurationsdatei '''+s+''' nicht finden!');
pegel:=tPegelStaende.create(image1);
wetter:=tMessPunkte.create(image1);
f:=tMyStringList.create;
f.loadFromFile(s);
f.unfoldMacros;
while f.readln(s) do begin
if startetMit('pidDatei:',s) then begin
pidDatei:=s;
assignFile(fi,pidDatei);
if fileexists(pidDatei) then begin // pidDatei existiert schon
reset(fi);
readln(fi,s);
if strtoint(s)<>GetProcessID then begin // der eingetragene Prozess bin nicht ich
setlength(args,1);
args[0]:='aux';
runCommand('ps',args,t);
o:=tMyStringList.create;
o.text:=t;
o.grep('^\S+\s+'+s+'\s');
if o.count>0 then begin // der eingetragene Prozess läuft noch
closeFile(fi);
f.free;
o.free;
pegel.free;
raise exception.create('Programm läuft bereits ('+s+')!');
end;
o.free;
end;
closefile(fi);
end;
rewrite(fi);
writeln(fi,inttostr(GetProcessID));
closeFile(fi);
continue;
end;
if startetMit('pegelDatei:',s) then begin
pegelDatei:=s;
if pos('/',pegelDatei)=0 then
pegelDatei:=extractFilePath(application.exename)+pegelDatei;
pegel.laden(pegelDatei);
continue;
end;
if startetMit('wetterDatei:',s) then begin
wetterDatei:=s;
if pos('/',wetterDatei)=0 then
wetterDatei:=extractFilePath(application.exename)+wetterDatei;
wetter.laden(wetterDatei);
continue;
end;
if startetMit('datenZeitRaum:',s) then begin
datenZeitRaum:=exprtofloat(false,s,nil,nil);
continue;
end;
f.free;
pegel.free;
raise exception.create('Unbekannte Option '''+s+''' in Konfigdatei!');
end;
f.free;
fehler:=false;
zeichnen;
end;
procedure TForm1.FormClose(Sender: TObject; var CloseAction: TCloseAction);
begin
pegel.putBeenden;
wetter.mutBeenden;
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
if fileExists(pidDatei) then
deleteFile(pidDatei);
if not fehler then begin
if pegelDatei<>'' then
pegel.speichern(pegelDatei);
if wetterDatei<>'' then
wetter.speichern(wetterDatei);
end;
pegel.free;
wetter.free;
end;
procedure TForm1.FormShow(Sender: TObject);
begin
form1.top:= screen.monitors[0].top +screen.monitors[0].height-form1.height-24;
form1.left:=screen.monitors[0].left+screen.monitors[0].width -form1.width;
end;
procedure TForm1.TrayIcon1Click(Sender: TObject);
begin
form1.visible:=not form1.visible;
end;
procedure TForm1.TrayIcon1DblClick(Sender: TObject);
begin
if (lMB=mbRight) or
(messageDlg('Wetter wirklich beenden?',mtConfirmation,[mbYes,mbNo],0)=mrYes) then
form1.close;
end;
procedure TForm1.TrayIcon1MouseDown(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X,Y: Integer);
begin
lMB:=button;
end;
procedure TForm1.zeichnen;
var
tmp,startZeit,stopZeit: extended;
s: string;
begin
fehler:=true;
image1.canvas.brush.color:=$ffffff;
image1.canvas.rectangle(-10,-10,image1.width,image1.height);
stopZeit:=now;
startZeit:=stopZeit-datenZeitRaum;
pegel.achsenZeichnen([psRudolstadt,psRothenstein],startZeit,stopZeit);
wetter.achsenZeichnen([mgTemperatur],startZeit,stopZeit);
image1.canvas.pen.color:=$000000;
tmp:=floor(startZeit);
while wertZuX(tmp,startZeit,stopZeit,Image1.Width)<Image1.Width do begin
Image1.Canvas.MoveTo(wertZuX(tmp,startZeit,stopZeit,Image1.Width),1);
Image1.Canvas.LineTo(wertZuX(tmp,startZeit,stopZeit,Image1.Width),Image1.Height-1);
tmp:=tmp+1;
end;
pegel.graphenZeichnen([psRudolstadt,psRothenstein],now-datenZeitRaum,now);
wetter.graphenZeichnen([mgTemperatur,mgLuftfeuchte,mgNiederschlag,mgGlobalstrahlung,mgLuftdruck],now-datenZeitRaum,now);
case byte(wetter.sonnigkeit > 0.25) or
(byte(wetter.maxWind > 2.5)*2) or
(byte(wetter.gesRegen > 0)*4) of
$00: trayIcon1.Icon:=WolkeIco.Picture.Icon;
$01: trayIcon1.Icon:=SonneIco.Picture.Icon;
$02,$03: trayIcon1.Icon:=SturmIco.Picture.Icon;
$04,$05: trayIcon1.Icon:=RegenIco.Picture.Icon;
$06,$07: trayIcon1.Icon:=RegenSturmIco.Picture.Icon;
end{of Case};
s:=wetter.hintInfo+' '+pegel.hintInfo;
image1.canvas.font.color:=$000000;
image1.canvas.textOut((image1.width-image1.canvas.textWidth(s)) div 2,1,s);
s[pos(',',s)-3]:=#13;
s[pos('%',s)+1]:=#13;
s:=s+wetter.mehrInfos([mgTemperatur,mgLuftfeuchte,mgWindgeschwindigkeit,//mgWindrichtung,
mgNiederschlag,//mgGlobalstrahlung,
mgLuftdruck]);
trayIcon1.hint:=s;
trayIcon1.visible:=true;
fehler:=false;
end;
// allgemeine Funktionen *******************************************************
function wertZuX(w: extended; startZeit,stopZeit: extended; breite: longint): longint;
const
xScale = 3.132265450540420106833422460869303332478; // xScale / (e^xScale - 1) = 1/7
var
tmp: extended;
begin
tmp:=(w-startZeit)/(stopZeit-startZeit);
result:=1+round(-(breite-2)*ln(1+tmp*(exp(-xScale)-1))/xScale);
end;
function wertZuY(w: extended; miMa: tPoint; hoehe: longint): longint;
begin
result:=wertZuY(w,miMa.x,miMa.y,hoehe);
end;
function wertZuY(w: extended; miMa: tExtPoint; hoehe: longint): longint;
begin
result:=wertZuY(w,miMa['x'],miMa['y'],hoehe);
end;
function wertZuY(w: extended; mi,ma: extended; hoehe: longint): longint;
begin
result:=hoehe-1-round((w-mi)/(ma-mi)*(hoehe-2));
end;
end.
|