This file is indexed.

/usr/share/games/trackballs/levels/help.scm is in trackballs-data 1.2.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
;; This level contains the scenes used in the help menu
(set-track-name "help")
(set-author "msto")
(add-flag 248 250 50 #t 0.1)
(fog 1)

;; Helper macros...
(define step 16.)
(define dx (lambda (s) (+ s (* xoff step))))
(define dy (lambda (s) (+ s (* yoff step))))

;; Exhibit A -- the Player

(define xoff 0)
(define yoff 0)

(set-start-position (dx 4) (dy 4))
(start-time 999999999)

;; Exhibit B -- the Mr Blacks

(define xoff 0)
(define yoff 1)

(define fenway (new-mr-black (dx 2.5) (dy 4.5)))
(define qualbert (new-mr-black (dx 3.5) (dy 3.5)))
(define justeaze (new-mr-black (dx 4.5) (dy 2.5)))
(set-primary-color fenway 0.0 0.0 0.6 1.0)
(set-primary-color qualbert 0. 0. 0. 1.0)
(set-primary-color justeaze 1. 0.8 0.8 1.0)
(set-modtime qualbert *mod-spike* -1.)
(set-modtime justeaze *mod-small* -1.)
(set-modtime justeaze *mod-nitro* -1.)

(define metchley (new-mr-black (dx 5) (dy 5)))
(set-modtime metchley *mod-large* -1.)
(set-primary-color metchley 0.0 0.8 0.0 1.0)
(set-texture metchley "track.png")


;; Exhibit C -- Speed modpill

(define xoff 1)
(define yoff 0)

(add-modpill (dx 4) (dy 4) *mod-speed* 3 2)


;; Exhibit D -- Spike modpill

(define xoff 1)
(define yoff 1)

(add-modpill (dx 4) (dy 4) *mod-spike* 3 2)

;; Exhibit E -- Freeze modpill

(define xoff 2)
(define yoff 0)

(add-modpill (dx 4) (dy 4) *mod-frozen* 3 2)


;; Exhibit F -- Glass modpill

(define xoff 2)
(define yoff 1)

(add-modpill (dx 4) (dy 4) *mod-glass* 3 2)

;; Exhibit G -- Nitro modpill

(define xoff 3)
(define yoff 0)

(add-modpill (dx 4) (dy 4) *mod-nitro* 3 2)


;; Exhibit H -- Switch

(define xoff 3)
(define yoff 1)

(define nop (lambda () #f))
(set-primary-color (set-onoff (switch (dx 4.5) (dy 3.5) nop nop) #t) 0.5 0.5 0.5 1.0)
(set-primary-color (set-onoff (switch (dx 3.5) (dy 4.5) nop nop) #f) 0.5 0.5 0.5 1.0)
(set-primary-color (set-onoff (switch (dx 3.5) (dy 3.5) nop nop) #f) 1.0 1.0 0.2 1.0)
(set-primary-color (set-onoff (switch (dx 4.5) (dy 4.5) nop nop) #t) 0.2 1.0 1.0 1.0)


;; Exhibit I -- Spike

(define xoff 4)
(define yoff 0)

(add-sidespike (dx 3) (dy 4) 0.3 0.5 2)
(add-sidespike (dx 4) (dy 3) 0.2 0.4 4)
(add-spike (dx 4) (dy 4) 0.1 0.3)




;; Exhibit J -- Flag

(define xoff 4)
(define yoff 1)

(set-primary-color (add-flag (dx 4) (dy 4) 50 #t 0.1) 0.0 1.0 0.0)
(set-primary-color (add-flag (dx 3) (dy 5) 50 #t 0.1) 0.0 0.0 1.0)
(set-primary-color (add-flag (dx 5) (dy 3) 50 #t 0.1) 1.0 0.0 0.0)



;; Exhibit N -- Goal

(define xoff 7)
(define yoff 0)

(add-goal (dx 3.2) (dy 4) #f "")
(add-goal (dx 4) (dy 3.2) #t "")


;; Exhibit O -- Force field

(define xoff 7)
(define yoff 1)

(define ff1 (forcefield (dx 3) (dy 3.5) 0 0.0 1.0 0.0 1.0 *ff-bounce*))
(set-primary-color ff1 0. 0. 1. 1.0)
(define ff2 (forcefield (dx 5) (dy 3.5) 0 0.0 1.0 0.0 1.0 *ff-bounce*))
(set-primary-color ff2 0. 1. 0. 1.0)


;; Exhibit P -- Cactus

(define xoff 8)
(define yoff 0)

(add-cactus (dx 3) (dy 5) 0.35)
(add-cactus (dx 4) (dy 4) 0.55)
(add-cactus (dx 5) (dy 3) 0.75)



;; Exhibit Q -- Bird

(define xoff 8)
(define yoff 1)

(add-bird (dx 3.3) (dy 4.5) (dx 4.5) (dy 2.7) 0.4 1.5)



;; Exhibit R -- Teleport

(define xoff 9)
(define yoff 0)

(add-teleport (dx 4) (dy 4) 224 252 0.3)


;; Exhibit S -- Tunnel/Pipe

(define xoff 9)
(define yoff 1)

(set-primary-color (pipe (dx 3) (dy 4.5) -6.1 (dx 4) (dy 5.0) -6.5 0.30) 1.0 1.0 1.0 1.0)
(set-primary-color (pipe (dx 2.3) (dy 3) -7.0 (dx 5.5) (dy 3) -7.0 0.45) 0.5 0.5 0.5 0.9)