-
Notifications
You must be signed in to change notification settings - Fork 11
/
iss_tim.pas
275 lines (244 loc) · 8.55 KB
/
iss_tim.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
{ þ Inquisition's Timer Services Unit þ }
{ þ This file is part of the Inquisition Sound Server for the Free þ }
{ þ Pascal Compiler (http://www.freepascal.org) but also can be þ }
{ þ be distributed separately. The source code is FREE FOR ANY NON þ }
{ þ COMMERCIAL USAGE. þ }
{ þ You can modify this file, but you musn't distribute the þ }
{ þ modified file, only the original version. Instead, send your þ }
{ þ modification to us, so we can add it to the official version. þ }
{ þ Please note, that we can't quarantee the compatibility with þ }
{ þ previous versions. þ }
{ þ If we'll stop the development of this unit in the future, þ }
{ þ the source code will be freely available for any use. þ }
{ þ You can always download the newest version from our website, þ }
{ þ http://scenergy.dfmk.hu/inqcoders/ þ }
{ þ About Inquisition itself, see þ }
{ þ http://scenergy.dfmk.hu/inquisition/ þ }
{ þ Comments, notes, suggestions, bug reports are welcome. þ }
{ þ Send your mails to charlie@scenergy.dfmk.hu þ }
{ þ Please prefer hungarian or english languages. þ }
{ þ ISS_TIM - Timer Unit (GO32V2 Only!) þ }
{ þ Coding Starts : 10. October. 1998. þ }
{ þ Last Modification : 01. March. 2001. þ }
{ þ Note: req. FPC version 1.0.0+ for GO32V2 to compile þ }
{$ASMMODE INTEL}
{$MODE FPC}
Unit ISS_Tim;
Interface
Uses GO32;
Const ISS_TimerSpeed : DWord = 1193180;
ISS_MaxTimers = $8; { þ Maximum Number of Timers þ }
TimerIRQ = $8; { þ HW IRQ Number þ }
ISS_TENoFree = $01; { þ Can't add new timer. All timers locked. þ }
ISS_TENotFound = $02; { þ Can't find specified Timer, to stop. þ }
Type TTimerStruc = Record
TSpeed : DWord;
TCount : DWord; { þ Tick Counter þ }
TPrevCount : DWord; { þ Tick Counter state at prev. activity þ }
TProc : Pointer; { þ Procedure To Call Offset þ }
TActive : Boolean; { þ 1 If The Timer Is On þ }
End;
Var ISS_TimersData : Array[1..ISS_MaxTimers] Of TTimerStruc;
ISS_TimerError : DWord; { þ Contains the last timer error code. þ }
Function ISS_StartTimer(Var NewTProc : Pointer; NewTSpeed : DWord) : Boolean;
Function ISS_StopTimer(Var TimerProc : Pointer) : Boolean;
Function ISS_GetTimerNumber(TimerProc : Pointer) : DWord;
Implementation
Var TimerSpeed : DWord;
OldTimer : TSegInfo;
OldTimerCnt : DWord;
NewIRQActive : Boolean;
NewTimerHandler : TSegInfo;
BackupDS : Word; External Name '___v2prt0_ds_alias';
Procedure UpdateUserTimers;
Type Proc = Procedure;
Var Counter : Word;
Begin
For Counter:=1 To ISS_MaxTimers Do Begin
With ISS_TimersData[Counter] Do Begin
If TActive Then Begin
Inc(TCount,TimerSpeed);
If (TCount>TSpeed) Then Begin
Dec(TCount,TSpeed);
TPrevCount:=TCount;
Proc(TProc); { þ Calling the specified routine þ }
End;
End;
End;
End;
End;
Procedure UpdateUserTimers_Dummy; Begin End;
Procedure SysTimerIRQ; Assembler;
Asm
CLI
PUSH DS
PUSH ES
PUSH FS
PUSH GS
PUSHAD
MOV AX,CS:[BackupDS]
MOV DS,AX
MOV ES,AX
MOV AX,DosMemSelector
MOV FS,AX
CALL UpdateUserTimers
MOV EAX,TimerSpeed
ADD OldTimerCnt,EAX
CMP OldTimerCnt,$10000
JB @NotUpdateClock
SUB OldTimerCnt,$10000
INC WORD PTR FS:[1132]
JNZ @Timer_2
INC WORD PTR FS:[1134]
@Timer_2:
MOV AX,$018
CMP FS:[1134],AX
JNZ @Timer_3
MOV AX,$0B0
CMP FS:[1132],AX
JNZ @Timer_3
MOV WORD PTR FS:[1134],$0
MOV WORD PTR FS:[1132],$0
MOV BYTE PTR FS:[1136],$1
@Timer_3:
@NotUpdateClock:
MOV DX,$20 { þ Interrupt request acknowledge þ }
MOV AL,$20
OUT DX,AL
POPAD
POP GS
POP FS
POP ES
POP DS
IRET
End;
Procedure SysTimerIRQ_Dummy; Begin End;
Procedure SetTimerSpeed(NewTimerSpeed : DWord);
Begin
If NewTimerSpeed<>TimerSpeed Then Begin
Asm
PUSH EAX
CLI
MOV AL,00110110B
OUT 43H,AL
MOV EAX,NEWTIMERSPEED
OUT 40H,AL
MOV AL,AH
OUT 40H,AL
STI
POP EAX
End;
TimerSpeed:=NewTimerSpeed;
End;
End;
Function GetTimerSpeed : DWord;
Var Counter : DWord;
TFastest : DWord;
Begin
TFastest:=$10000;
For Counter:=1 To ISS_MaxTimers Do Begin
If ISS_TimersData[Counter].TActive And
(ISS_TimersData[Counter].TSpeed < TFastest) Then
TFastest:=ISS_TimersData[Counter].TSpeed;
End;
GetTimerSpeed:=TFastest;
End;
Function ISS_StartTimer(Var NewTProc : Pointer; NewTSpeed : DWord) : Boolean;
Var Counter : Word;
TNumber : Word;
Begin
Counter:=0; TNumber:=0;
Repeat
Inc(Counter);
If Not ISS_TimersData[Counter].TActive Then TNumber:=Counter;
Until (TNumber<>0) Or (Counter=ISS_MaxTimers);
If TNumber=0 Then Begin
ISS_TimerError:=ISS_TENoFree;
ISS_StartTimer:=False;
Exit;
End;
If Not NewIRQActive Then Begin
Lock_Data(ISS_TimersData,SizeOf(ISS_TimersData));
Lock_Data(DosMemSelector,SizeOf(DosMemSelector));
Lock_Code(@SysTimerIRQ,DWord(@SysTimerIRQ_Dummy)-DWord(@SysTimerIRQ));
Lock_Code(@UpdateUserTimers,DWord(@UpdateUserTimers_Dummy)-DWord(@UpdateUserTimers));
NewTimerHandler.Offset:=@SysTimerIRQ;
NewTimerHandler.Segment:=Get_CS;
Get_PM_Interrupt(TimerIRQ,OldTimer);
Set_PM_Interrupt(TimerIRQ,NewTimerHandler);
End;
ISS_TimersData[TNumber].TSpeed:=NewTSpeed;
ISS_TimersData[TNumber].TCount:=0;
ISS_TimersData[TNumber].TProc:=NewTProc;
ISS_TimersData[TNumber].TActive:=True;
SetTimerSpeed(GetTimerSpeed);
ISS_StartTimer:=True;
End;
Function ISS_StopTimer(Var TimerProc : Pointer) : Boolean;
Var TNumber : Word;
Counter : Word;
LastTimer : Boolean;
Begin
Disable;
TNumber:=0;
For Counter:=1 To ISS_MaxTimers Do Begin
With ISS_TimersData[Counter] Do Begin
If TActive And (TProc=TimerProc) Then TNumber:=Counter;
End;
End;
If TNumber=0 Then Begin
ISS_TimerError:=ISS_TENotFound;
ISS_StopTimer:=False;
Enable;
End Else Begin
ISS_TimersData[TNumber].TActive:=False;
LastTimer:=True;
For Counter:=1 To ISS_MaxTimers Do Begin
If ISS_TimersData[Counter].TActive=True Then LastTimer:=False;
End;
If LastTimer Then Begin
TimerSpeed:=0;
SetTimerSpeed($10000);
Set_PM_Interrupt(TimerIRQ,OldTimer);
Unlock_Data(DosMemSelector,SizeOf(DosMemSelector));
Unlock_Data(ISS_TimersData,SizeOf(ISS_TimersData));
UnLock_Code(@SysTimerIRQ,DWord(@SysTimerIRQ_Dummy)-DWord(@SysTimerIRQ));
UnLock_Code(@UpdateUserTimers,DWord(@UpdateUserTimers_Dummy)-DWord(@UpdateUserTimers));
End;
ISS_StopTimer:=True;
Enable;
End;
End;
Function ISS_GetTimerNumber(TimerProc : Pointer) : DWord;
Var Counter : DWord;
Begin
For Counter:=1 To ISS_MaxTimers Do Begin
With ISS_TimersData[Counter] Do Begin
If TActive And (TProc=TimerProc) Then Begin
ISS_GetTimerNumber:=Counter;
Exit;
End;
End;
End;
End;
Begin
FillChar(ISS_TimersData,SizeOf(ISS_TimersData),#0);
NewIRQActive:=False;
TimerSpeed:=0;
End.
{ þ ISS_TIM.PAS - (C) 1998-2001 Charlie/Inquisition þ }
{ þ Changelog : þ }
{ þ 1.1.1 - Some code cleanup for less compiler hacking... þ }
{ þ - Webpage and email addresses fixed in the header comment. þ }
{ þ [01.march.2001] þ }
{ þ 1.1.0 - Major update, a new IRQ routine which contains less compiler þ }
{ þ hacking. Based on the docs of FPC 1.0.2. Not tested with þ }
{ þ versions below 1.0.0. GNU AS no longer required to compile. þ }
{ þ [03.december.2000] þ }
{ þ 1.0.2 - Header comment fixed. þ }
{ þ [18.apr.2000] þ }
{ þ 1.0.1 - Removed a limitation which made smartlinking impossible. þ }
{ þ (Reported by Surgi/Terror Opera) þ }
{ þ [13.apr.2000] þ }
{ þ 1.0.0 - First Public Version þ }
{ þ [08.jan.2000] þ }