-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathq_extra.pas
109 lines (92 loc) · 2.29 KB
/
q_extra.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
// ------------------------------------------------------------------------------
// DelphiQuake, Copyright (C) 2005-2011 by Jim Valavanis
// E-Mail: [email protected]
//
// Copyright (C) 1996-1997 Id Software, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// 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.
//
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// ------------------------------------------------------------------------------
{$I dquake.inc}
unit q_extra;
interface
procedure QEX_Init;
procedure QEX_Shutdown;
implementation
uses
q_delphi,
common,
gl_sky,
t_main,
w_pak;
procedure Ex_DetectCPU;
begin
try
// detect MMX and 3DNow! capable CPU (adapted from AMD's "3DNow! Porting Guide")
asm
pusha
mov eax, $80000000
cpuid
cmp eax, $80000000
jbe @@NoMMX3DNow
mov mmxMachine, 1
mov eax, $80000001
cpuid
test edx, $80000000
jz @@NoMMX3DNow
mov AMD3DNowMachine, 1
@@NoMMX3DNow:
popa
end;
except
// trap for old/exotics CPUs
mmxMachine := 0;
AMD3DNowMachine := 0;
end;
if mmxMachine <> 0 then
printf(' MMX extentions detected'#13#10);
if AMD3DNowMachine <> 0 then
printf(' AMD 3D Now! extentions detected'#13#10);
end;
procedure Ex_AddPAKFiles(parm: PChar);
var
p: integer;
begin
p := Com_CheckParm(parm);
if p <> 0 then
begin
inc(p);
while (p < com_argc) and boolval(com_argv[p]) and (com_argv[p]^ <> '-') do
begin
PAK_AddFile(com_argv[p]);
inc(p);
end;
end;
end;
procedure QEX_Init;
begin
Ex_DetectCPU;
T_Init;
PAK_InitFileSystem;
Ex_AddPAKFiles('-pakfile');
end;
procedure QEX_Shutdown;
begin
T_ShutDown;
PAK_ShutDown;
GL_ShutdownSky;
end;
end.