chiark / gitweb /
b2985ef5e03f7971b9bc89cf5c117876517d74c5
[trains.git] / layout / parts.i4
1 define(`def_thing_l_r',`
2 dnl OBJNAME-EXCLUDING-L
3  defpart $1r
4   abs c 200 200 0
5   objflip $1l c c =
6  enddef
7 ')
8
9 # Conventionally, points' toes are c, the straight through is a
10 # and the curve is b.  Segments run from c towards a and b.
11 #
12 # Crossings (including slips) run `vertically' and have
13 # tl, tr, bl, br.  Segments run from b* to t*.
14
15 define(`def_point_ord',`
16 dnl OBJNAME-EXCLUDING-PT-L ANGLE STRAIGHT-L CURVE-LONGER CURVE-DIVERGE-Y MIN-R
17  defpart pt_$1l
18   abs c 200 200 0
19   segment /P0
20   extend c a len $3
21   rel a b $4 -$5 $2
22   segment /P1
23   join c b $6
24  enddef
25  def_thing_l_r(`pt_$1')
26 ')
27
28 define(`def_point_curve',`
29 dnl OBJNAME-EXCLUDING-PT-L TIGHT-ANG TIGHT-RECT TIGHT-DIVERGE-Y SHALLOW.. MIN-R
30  defpart pt_$1l
31   abs c 200 200 0
32   rel c a $6 -$7 $5
33   rel c b $3 -$4 $2
34   segment /P0
35   join c a $8
36   segment /P1
37   join c b $8
38  enddef
39  def_thing_l_r(`pt_$1')
40 ')
41
42 define(`def_point_y',`
43 dnl OBJNAME-EXCLUDING-PT HALF-ANG RECT HALF-DIVERGE-Y MIN-R
44  defpart pt_$1
45   abs c 200 200 0
46   rel c l $3 -$4  $2
47   rel c r $3  $4 -$2
48   segment /P0
49   join c l $5
50   segment /P1
51   join c r $5
52  enddef
53 ')
54
55 define(`def_crossing',`
56 dnl OBJNAME-EXCLUDING-CROSS HALF-ANG HALF-LENGTH
57  defpart cross_$1
58   abs m 200 200 0
59   rel m ml 0 0 $2
60   rel m mr 0 0 -$2
61   segment F
62   extend mr tr len $3
63   extend mr bl len -$3
64   segment B
65   extend ml tl len $3
66   extend ml br len -$3
67  enddef
68 ')
69
70 def_point_ord(`peco_s', 22.5, 87,  -0.5, 17,    200) # not minr 230 ?
71 def_point_ord(`peco_m', 14,  126.5,-1.55,13.21, 315) # not minr 457 ?
72 def_point_ord(`peco_l',  8,  160,  -0.4, 13.21, 914)
73  # catalogue says 123.7 for STRAIGHT-L ?!
74
75 def_point_curve(`peco_c',  10, 154.4, 13.8,  3, 156.0, 0.8, 457)
76  dnl 163.2-  } dist to markings on paper cribsheet from c
77  dnl 32.8-   }
78
79 def_point_y(`peco_y', 4, 127, 8.4, 800) # not minr 762 ?
80
81 #def_crossing(`mythical',7,   80)
82 def_crossing(`peco_l',  4,   93.75)
83 def_crossing(`peco_s', 12.5, 46)
84 def_crossing(`pecof_s', 10,  51.85)
85
86
87 def_crossing(`atlas_15',   7.5, 64)
88 def_crossing(`atlas_15m',  7.5, 61)
89 def_crossing(`atlas_90',  45,   62.4)
90 def_crossing(`atlas_90m', 45,    8.5)
91 def_crossing(`atlas_30',  15,   32.9)
92 def_crossing(`atlas_30m', 15,   30.9)
93 def_crossing(`atlas_60',  30,   48.5)
94 def_crossing(`atlas_60m', 30,   14.5)
95 def_crossing(`atlas_20',  10,   63.5)
96 def_crossing(`atlas_20m', 10,   46.0)
97 def_crossing(`atlas_45',  22.5, 50.9)
98 def_crossing(`atlas_45m', 22.5, 19.5)
99
100 define(`def_point_shino',`
101 dnl OBJNAME-EXCLUDING-PT-L($1) A($2) B($3) Q($4)
102 dnl not R($5)
103  defpart pt_$1l
104   abs c 200 200 0
105   layer s
106   rel c strintersect $3 0 $4
107   rel strintersect strbackanal -$3
108   layer =
109   rel strbackanal b $2
110   segment /P1
111   join c b 240 arcline
112   segment /P0
113   extend c a len $2
114  enddef
115  def_thing_l_r(`pt_$1')
116 ')
117
118 def_point_shino(`shino_4', 136, 45, 14.25)
119 def_point_shino(`shino_6', 177, 49,  9.50)
120 def_point_y(`shino_y', 7.125, 140, 10.9, 750) # not minr 500 ?
121
122 defpart pt_shino_x3
123   abs c 200 200 0
124   layer s
125   rel c strintersectc  74 0   9.5
126   rel c strintersectb 103 0 -12
127   layer =
128   rel strintersectc l 141
129   rel strintersectb r 112
130   segment /P1
131   extend c m len 215
132   segment /P0
133   join c l 315 arcline
134   segment /P2
135   join c r 315 arcline
136 enddef
137
138 define(`def_slip2',`
139 dnl OBJNAME-EXCLUDING-SLIP2 HALF-LEN HALF-ANG
140  defpart slip2_$1
141   # configurations:  bl-tl 0  bl-tr 1  br-tl 2  br-tr 3
142   abs m 200 200 0
143   rel m ml 0 0  $3
144   rel m mr 0 0 -$3
145   segment /S2
146   extend ml tl len $2
147   segment -/S2
148   extend ml br len -$2
149   segment /S1
150   extend mr tr len $2
151   segment -/S1
152   extend mr bl len -$2
153   segment /S0
154   join bl tl 500
155   segment /S3
156   join br tr 500
157  enddef
158 ')
159
160 def_slip2(`shino', 114, 4.75)
161 def_slip2(`pecof',  77, 5.00)
162
163 define(`def_scis',`
164 dnl OBJNAME-EXCLUDING-SCIS HALF-LENGTH HALF-SPACING HALF-ANG MIN-R
165  defpart scis_$1
166   abs bl 200 200 0
167   rel bl m $2 $3
168   rel m br -$2 $3
169   extend bl ml len $2
170   extend ml tl len $2
171   extend br mr len $2
172   extend mr tr len $2
173   layer s
174   rel m mxl 0 0 $4
175   rel m mxr 0 0 -$4
176   layer =
177   join bl mxr $5
178   join mxr tr $5
179   join br mxl $5
180   join mxl tl $5
181  enddef
182 ')
183
184 def_scis(`pecof', 135.42, 13.5,  10, 315)
185 def_scis(`shino', 154,    13.5, 9.5, 315)
186
187 define(`tt_do_circle',`
188  layer s
189  rel mid forcirc0$2 0 $1 0
190  rel mid forcirc1$2 0 -$1 180
191  layer l
192  join forcirc0$2 forcirc1$2 0
193  join forcirc1$2 forcirc0$2 0
194  layer =
195 ')
196
197 defpart tt_peco
198  layer =
199  abs mid 200 200 0
200  extend mid out len 80
201  extend -mid -in len 80
202
203  tt_do_circle(80, `')
204 enddef
205
206 define(`tt_atlas_out',`
207  layer s
208  rel mid mid$1 0 0 $1
209  layer =
210  rel mid$1 out$1 109 0
211 ')
212
213 defpart tt_atlas
214  layer =
215  abs mid 200 200 0
216  extend mid out len 109
217  extend -mid -in len 109
218
219  tt_atlas_out(`0')
220  tt_atlas_out(`15')
221  tt_atlas_out(`30')
222  tt_atlas_out(`45')
223  tt_atlas_out(`60')
224  tt_atlas_out(`75')
225  tt_atlas_out(`90')
226  tt_atlas_out(`105')
227  tt_atlas_out(`120')
228  tt_atlas_out(`135')
229  tt_atlas_out(`150')
230  tt_atlas_out(`165')
231  tt_atlas_out(`180')
232  tt_atlas_out(`195')
233  tt_atlas_out(`210')
234  tt_atlas_out(`225')
235  tt_atlas_out(`240')
236  tt_atlas_out(`255')
237  tt_atlas_out(`270')
238  tt_atlas_out(`285')
239  tt_atlas_out(`300')
240  tt_atlas_out(`315')
241  tt_atlas_out(`330')
242  tt_atlas_out(`345')
243
244  tt_do_circle(95.25, i)
245  tt_do_circle(109, `')
246 enddef
247
248 defpart tt_atlas_motor
249  abs cout 200 200 0
250  layer p
251  rel cout bl -40 -40
252  rel cout br -40  40
253  extend bl tl len 89
254  extend br tr len 89
255  join tl -tr 0.1
256 enddef