forked from jackokring/rub
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvideo.inc
303 lines (251 loc) · 7.08 KB
/
video.inc
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
{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2000 by the Free Pascal development team
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
Const
LockUpdateScreen : Integer = 0;
Procedure LockScreenUpdate;
begin
Inc(LockUpdateScreen);
end;
Procedure UnLockScreenUpdate;
begin
If LockUpdateScreen>0 then
Dec(LockUpdateScreen);
end;
Function GetLockScreenCount : integer;
begin
GetLockScreenCount:=LockUpdateScreen;
end;
Var
CurrentVideoDriver : TVideoDriver;
NextVideoMode : TVideoMode;
Const
VideoInitialized : Boolean = False;
DriverInitialized : Boolean = False;
NextVideoModeSet : Boolean = False;
Function SetVideoDriver (Const Driver : TVideoDriver) : Boolean;
{ Sets the videodriver to be used }
begin
If Not VideoInitialized then
Begin
CurrentVideoDriver:=Driver;
DriverInitialized:=true;
NextVideoModeSet:=false;
End;
SetVideoDriver:=Not VideoInitialized;
end;
Procedure GetVideoDriver (Var Driver : TVideoDriver);
{ Retrieves the current videodriver }
begin
Driver:=CurrentVideoDriver;
end;
{ ---------------------------------------------------------------------
External functions that use the video driver.
---------------------------------------------------------------------}
Procedure FreeVideoBuf;
begin
if (VideoBuf<>Nil) then
begin
FreeMem(VideoBuf);
FreeMem(OldVideoBuf);
VideoBuf:=Nil;
OldVideoBuf:=Nil;
VideoBufSize:=0;
end;
end;
(*
Procedure AssignVideoBuf (OldCols, OldRows : Word);
Var NewVideoBuf,NewOldVideoBuf : PVideoBuf;
I,C,R,NewVideoBufSize : longint;
s:word;
begin
S:=sizeOf(TVideoCell);
NewVideoBufSize:=ScreenWidth*ScreenHeight*s;
GetMem(NewVideoBuf,NewVideoBufSize);
GetMem(NewOldVideoBuf,NewVideoBufSize);
// Move contents of old videobuffers to new if there are any.
if (VideoBuf<>Nil) then
begin
If (ScreenWidth<OldCols) then
C:=ScreenWidth
else
C:=OldCols;
If (ScreenHeight<OldRows) then
R:=ScreenHeight
else
R:=OldRows;
For I:=0 to R-1 do
begin
Move(VideoBuf^[I*OldCols],NewVideoBuf^[I*ScreenWidth],S*C);
Move(OldVideoBuf^[I*OldCols],NewOldVideoBuf^[I*ScreenWidth],S*C);
end;
end;
FreeVideoBuf;
VideoBufSize:=NewVideoBufSize;
VideoBuf:=NewVideoBuf;
OldVideoBuf:=NewOldVideoBuf;
end;
*)
Procedure AssignVideoBuf (OldCols, OldRows : Word);
var NewVideoBuf,NewOldVideoBuf:PVideoBuf;
old_rowstart,new_rowstart:word;
NewVideoBufSize : longint;
begin
NewVideoBufSize:=ScreenWidth*ScreenHeight*sizeof(TVideoCell);
GetMem(NewVideoBuf,NewVideoBufSize);
GetMem(NewOldVideoBuf,NewVideoBufSize);
{Move contents of old videobuffers to new if there are any.}
if VideoBuf<>nil then
begin
if ScreenWidth<OldCols then
OldCols:=ScreenWidth;
if ScreenHeight<OldRows then
OldRows:=ScreenHeight;
old_rowstart:=0;
new_rowstart:=0;
while oldrows>0 do
begin
move(VideoBuf^[old_rowstart],NewVideoBuf^[new_rowstart],OldCols*sizeof(TVideoCell));
move(OldVideoBuf^[old_rowstart],NewOldVideoBuf^[new_rowstart],OldCols*sizeof(TVideoCell));
inc(old_rowstart,OldCols);
inc(new_rowstart,ScreenWidth);
dec(OldRows);
end;
end;
FreeVideoBuf;
{ FreeVideoBuf sets VideoBufSize to 0 }
VideoBufSize:=NewVideoBufSize;
VideoBuf:=NewVideoBuf;
OldVideoBuf:=NewOldVideoBuf;
end;
Procedure InitVideo;
begin
if not VideoInitialized then
begin
if Assigned(CurrentVideoDriver.InitDriver) then
CurrentVideoDriver.InitDriver;
if errorcode=viook then
begin
VideoInitialized:=true;
if NextVideoModeSet then
SetVideoMode(NextVideoMode)
else
AssignVideoBuf(0,0);
ClearScreen;
end;
end;
end;
Procedure DoneVideo;
begin
If VideoInitialized then
begin
If Assigned(CurrentVideoDriver.DoneDriver) then
CurrentVideoDriver.DoneDriver;
FreeVideoBuf;
VideoInitialized:=False;
end;
end;
Procedure UpdateScreen (Force : Boolean);
begin
If (LockUpdateScreen<=0) and
Assigned(CurrentVideoDriver.UpdateScreen) then
CurrentVideoDriver.UpdateScreen(Force);
end;
Procedure ClearScreen;
begin
// Should this not be the current color ?
FillWord(VideoBuf^,VideoBufSize shr 1,$0720);
If Assigned(CurrentVideoDriver.ClearScreen) then
CurrentVideoDriver.ClearScreen
else
UpdateScreen(True);
FillWord(OldVideoBuf^,VideoBufSize shr 1,$0720);
end;
Procedure SetCursorType (NewType : Word);
begin
if Assigned(CurrentVideoDriver.SetCursorType) then
CurrentVideoDriver.SetCursorType(NewType)
end;
Function GetCursorType : Word;
begin
if Assigned(CurrentVideoDriver.GetCursorType) then
GetCursorType:=CurrentVideoDriver.GetCursorType()
else
GetCursorType:=0;
end;
procedure SetCursorPos(NewCursorX, NewCursorY: Word);
begin
If Assigned(CurrentVideoDriver.SetCursorPos) then
CurrentVideoDriver.SetCursorPos(NewCursorX, NewCursorY)
end;
function GetCapabilities: Word;
begin
If Assigned(CurrentVideoDriver.GetCapabilities) then
GetCapabilities:=CurrentVideoDriver.GetCapabilities()
else
GetCapabilities:=0;
end;
{ ---------------------------------------------------------------------
General functions
---------------------------------------------------------------------}
procedure GetVideoMode(var Mode: TVideoMode);
begin
Mode.Col := ScreenWidth;
Mode.Row := ScreenHeight;
Mode.Color := ScreenColor;
end;
Function SetVideoMode(Const Mode: TVideoMode) : Boolean;
Var
OldR,OldC: Word;
begin
SetVideoMode:=DriverInitialized;
if not DriverInitialized then
exit;
If VideoInitialized then
begin
OldC:=ScreenWidth;
OldR:=ScreenHeight;
If Assigned(CurrentVideoDriver.SetVideoMode) then
SetVideoMode:=CurrentVideoDriver.SetVideoMode(Mode)
else
SetVideoMode:=False;
// Assign buffer
If SetVideoMode then
AssignVideoBuf(OldC,Oldr);
end
else
begin
NextVideoMode:=Mode;
NextVideoModeSet:=true;
end;
end;
Function GetVideoModeCount : Word;
begin
If Assigned(CurrentVideoDriver.GetVideoModeCount) then
GetVideoModeCount:=CurrentVideoDriver.GetVideoModeCount()
else
GetVideoModeCount:=1;
end;
Function GetVideoModeData(Index : Word; Var Data: TVideoMode) : Boolean;
begin
If Assigned(CurrentVideoDriver.GetVideoModeData) then
GetVideoModeData:=CurrentVideoDriver.GetVideoModeData(Index,Data)
else
begin
GetVideoModeData:=(Index=0);
If GetVideoModeData then
GetVideoMode(Data);
end
end;
function DefaultErrorHandler(AErrorCode: Longint; AErrorInfo: Pointer): TErrorHandlerReturnValue;
begin
ErrorCode := AErrorCode;
ErrorInfo := AErrorInfo;
DefaultErrorHandler := errAbort; { return error code }
end;