-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
88 lines (78 loc) · 1.53 KB
/
Copy pathsettings.php
File metadata and controls
88 lines (78 loc) · 1.53 KB
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
<?php
/**
* Array of car types indexed by IDs.
*/
$cartypes = array(
0 => 'McLaren F1',
1 => 'Ferrari F50',
2 => 'Ferrari 355 F1',
3 => 'Ford GT90',
4 => 'Ford Indigo',
5 => 'Ford Mach III',
6 => 'Jaguar XJ220',
7 => 'Lotus GT1',
8 => 'Lotus Esprit V8',
9 => 'ItalDesign Nazca C2',
10 => 'ItalDesign Cala',
11 => 'Isdera 112i',
12 => 'Bomber BFS',
13 => 'Tombstone',
14 => 'FZR 2000',
);
/**
* Array of car types indexed by IDs.
*/
$skill_levels = array(
0 => 'sim',
1 => 'wild',
2 => 'arc',
);
/**
* Array of track names indexed by Filenames.
*/
$tracks = array(
'oval.stf'=>'Proving Grounds',
'oz.stf'=>'Outback',
'last.stf'=>'Last Resort',
'nort.stf'=>'North Country',
'pac.stf'=>'Pacific Spirit',
'med.stf'=>'Mediterraneo',
'myst.stf'=>'Mystic Peaks',
'mono.stf'=>'Monolithic Studios',
);
/**
* Array of track names indexed by IDs.
*/
$track_ids = array(
0=>'Proving Grounds',
2=>'Outback',
4=>'Last Resort',
5=>'North Country',
3=>'Pacific Spirit',
6=>'Mediterraneo',
7=>'Mystic Peaks',
8=>'Monolithic Studios',
);
/**
* Array of lap counts names indexed by lap count.
*/
$lap_counts = array(
2=>'2_laps',
4=>'4_laps',
8=>'8_laps',
);
/**
* Array of track direction indexed by IDs.
*/
$lap_directions = array(
0=>'forward',
1=>'backwards',
);
/**
* Array of track direction (mirrored or not) indexed by IDs.
*/
$lap_directions2 = array(
0=>'no',
1=>'yes',
);
?>