forked from UnknownShadow200/RCTTechDepot-Archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrackQualifier.html
124 lines (123 loc) · 2.57 KB
/
trackQualifier.html
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
<HTML>
<HEAD><TITLE>Track Qualifier</TITLE></HEAD>
<BODY BGCOLOR="#ffffff" BACKGROUND="bkground.jpg">
<H1 ALIGN="Center">Track Qualifier Byte</H1>
<P>
The most significant bit of the qualifier byte will be referred to as bit 7.
<P>
bit 7 is set to indicate a chain lift <BR>
bit 6 is set to indicate an inverted track (for flying coasters)
<P>
<TABLE BORDER CELLPADDING="2">
<TR>
<TD>bit 5</TD>
<TD>bit 4</TD>
<TD><P ALIGN="Center">scheme</TD>
</TR>
<TR>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">0</TD>
<TD>track color scheme 0</TD>
</TR>
<TR>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">1</TD>
<TD>track color scheme 1</TD>
</TR>
<TR>
<TD><P ALIGN="Center">1</TD>
<TD><P ALIGN="Center">0</TD>
<TD>track color scheme 2</TD>
</TR>
<TR>
<TD><P ALIGN="Center">1</TD>
<TD><P ALIGN="Center">1</TD>
<TD>track color scheme 3</TD>
</TR>
</TABLE>
<P>
<P>
The following are two special conditions: Stations: <BR>
bit 3 is set at a terminal station (departure control applies here) <BR>
bits 2 reserved <BR>
bits 1 and 0 identify which station this is (00 = station 1, 01 = station
2, 10=station 3, 11=station 4)
<P>
bits 3, 2, 1 and 0 are a magnitude value (0..15) for brake and booster track
segments. The value obtained from these four bits is multiplied by 7.6 km/hr
= 4.5 mph. For RCT2 "Multi Diminsional Coaster", these four bits specify
the amount of rotation.
<P>
<TABLE BORDER CELLPADDING="2">
<TR>
<TD></TD>
<TD>Rotation</TD>
</TR>
<TR ALIGN="Right">
<TD>0000</TD>
<TD>-180</TD>
</TR>
<TR ALIGN="Right">
<TD>0001</TD>
<TD>-135</TD>
</TR>
<TR ALIGN="Right">
<TD>0010</TD>
<TD>-90</TD>
</TR>
<TR ALIGN="Right">
<TD>0011</TD>
<TD>-45</TD>
</TR>
<TR ALIGN="Right">
<TD>0100</TD>
<TD>0</TD>
</TR>
<TR ALIGN="Right">
<TD>0101</TD>
<TD>+45</TD>
</TR>
<TR ALIGN="Right">
<TD>0110</TD>
<TD>+90</TD>
</TR>
<TR ALIGN="Right">
<TD>0111</TD>
<TD>+135</TD>
</TR>
<TR ALIGN="Right">
<TD>1000</TD>
<TD>+180</TD>
</TR>
<TR ALIGN="Right">
<TD>1001</TD>
<TD>+225</TD>
</TR>
<TR ALIGN="Right">
<TD>1010</TD>
<TD>+270</TD>
</TR>
<TR ALIGN="Right">
<TD>1011</TD>
<TD>+315</TD>
</TR>
<TR ALIGN="Right">
<TD>1100</TD>
<TD>+360</TD>
</TR>
<TR ALIGN="Right">
<TD>1101</TD>
<TD>+405</TD>
</TR>
<TR ALIGN="Right">
<TD>1110</TD>
<TD>+450</TD>
</TR>
<TR ALIGN="Right">
<TD>1111</TD>
<TD>+495</TD>
</TR>
</TABLE>
<H2 ALIGN="Center">
</H2>
</BODY></HTML>