This file is indexed.

/usr/share/games/adanaxisgpl/mushruby/MushGame.rb is in adanaxisgpl-data 1.2.5.dfsg.1-6.

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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#%Header {
##############################################################################
#
# File data-adanaxis/mushruby/MushGame.rb
#
# Author Andy Southgate 2006-2007
#
# This file contains original work by Andy Southgate.  The author and his
# employer (Mushware Limited) irrevocably waive all of their copyright rights
# vested in this particular version of this file to the furthest extent
# permitted.  The author and Mushware Limited also irrevocably waive any and
# all of their intellectual property rights arising from said file and its
# creation that would otherwise restrict the rights of any party to use and/or
# distribute the use of, the techniques and methods used herein.  A written
# waiver can be obtained via http://www.mushware.com/.
#
# This software carries NO WARRANTY of any kind.
#
##############################################################################
#%Header } xMtGbQ1HBg2jLSq/6crVeg
# $Id: MushGame.rb,v 1.8 2007/04/16 18:50:57 southa Exp $
# $Log: MushGame.rb,v $
# Revision 1.8  2007/04/16 18:50:57  southa
# Voice work
#
# Revision 1.7  2007/03/13 21:45:02  southa
# Release process
#
# Revision 1.6  2007/03/09 11:29:11  southa
# Game end actions
#
# Revision 1.5  2006/11/08 18:30:53  southa
# Key and axis configuration
#
# Revision 1.4  2006/08/01 17:21:12  southa
# River demo
#
# Revision 1.3  2006/08/01 13:41:07  southa
# Pre-release updates
#

class MushGame < MushObject
  GAMERESULT_INVALID=0
  GAMERESULT_NONE=1
  GAMERESULT_DEAD=2
  GAMERESULT_LOST=3
  GAMERESULT_WON=4

# Class: MushGame
#
# Description:
#
# This object supplies a number of utility functions used to control the underlying
# game.
#
# Method: cKeySymbolsToName
#
# Provide the name string corresponding to a key value or values.  
#
# Parameters:
#
# key value - Key value - one or an array of the key values from MushKeys.
#
# Returns:
#
# String containing a name for the key.
#
# Method: cGameModeEnter
#
# Exits menu mode and enters game mode.  Used to resume the game after using the menu.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cNewGameEnter
#
# Exits menu mode and enters game mode, discarding the current game and creating a new one.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cQuit
#
# Quits the application.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cAxisKeySymbol
#
# Parameters:
#
# axis number - Axis key number.
#
# Returns:
#
# Key symbol value (a MushKeys constant) configured for that axis.
#
# Method: cAxisKeySet
#
# Sets the configured key for an axis.
#
# Parameters:
#
# key value - Key symbol value.
# axis number - Axis key number.
#
# Returns:
#
# None.
#
# Method: cAxisSymbol
#
# Returns the configured control axis (e.g. joystick x) for a player axis (e.g. left/right).
#
# Parameters:
#
# axis number - Axis number.
#
# Returns:
#
# Axis symbol value configured for the supplied axis number.
#
# Method: cAxisSet
#
# Sets the configured axis for an axis number.
#
# Parameters:
#
# axis symbol - Axis symbol value.
# axis number - Axis number.
#
# Returns:
#
# None.
#
# Method: cAxisName
#
# Returns the name for an axis symbol.
#
# Parameters:
#
# axis symbol - Axis symbol value.
#
# Returns:
#
# Name string for that axis.
#
# Method: cKeySymbol
#
# Returns the configured key value for a control key.
#
# Parameters:
#
# key number - Key number.
#
# Returns:
#
# Key symbol value configured for the supplied key number.
#
# Method: cKeySet
#
# Sets the configured key for a key control.
#
# Parameters:
#
# key symbol - Key symbol value.
# key number - Key number.
#
# Returns:
#
# None.
#
# Method: cNumJoysticks
#
# Returns the number of joysticks connected to the system.
#
# Parameters:
#
# None.
#
# Returns:
#
# Number of joysticks.
#
# Method: cControlsToDefaultSet
#
# Reloads the default control configuration.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cDisplayModeString
#
# Returns a string describing the the current display mode.
#
# Parameters:
#
# None.
#
# Returns:
#
# A string usable to display the mode details, e.g. '640x480 window'.
#
# Method: cPreviousDisplayMode
#
# Change to the previous display mode number.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cNextDisplayMode
#
# Change to the next display mode number.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cDisplayReset
#
# Resets the display, using a newly configured mode if necessary.
#
# Parameters:
#
# None.
#
# Returns:
#
# None.
#
# Method: cAudioVolume
#
# Reader for the configured audio volume.
#
# Parameters:
#
# None.
#
# Returns:
#
# Volume, range 0..100.
#
# Method: cAudioVolumeSet
#
# Writer for the configured audio volume.
#
# Parameters:
#
# volume - New volume, range 0..100.
#
# Returns:
#
# None.
#
# Method: cMusicVolume
#
# Reader for the configured music volume.
#
# Parameters:
#
# None.
#
# Returns:
#
# Volume, range 0..100.
#
# Method: cMusicVolumeSet
#
# Writer for the configured music volume.
#
# Parameters:
#
# volume - New volume, range 0..100.
#
# Returns:
#
# None.
#
# Method: cVoiceVolume
#
# Reader for the configured voice volume.
#
# Parameters:
#
# None.
#
# Returns:
#
# Volume, range 0..100.
#
# Method: cVoiceVolumeSet
#
# Writer for the configured voice volume.
#
# Parameters:
#
# volume - New volume, range 0..100.
#
# Returns:
#
# None.
#
# Method: cTextureDetail
#
# Reader for the configured texture detail.
#
# Parameters:
#
# None.
#
# Returns:
#
# Texture detail, range 0..4.
#
# Method: cTextureDetailSet
#
# Writer for the configured texture detail.
#
# Parameters:
#
# detail - New texture detail, range 0..4
#
# Returns:
#
# None.
#
# Method: cMouseSensitivity
#
# Reader for the configured mouse sensitivity.
#
# Parameters:
#
# None.
#
# Returns:
#
# Configured mouse sensitivity., range -10.0 .. 10.0.
#
# Method: cMouseSensitivitySet
#
# Writer for the configured mouse sensitivity.
#
# Parameters:
#
# sensitivity - New texture detail, range -10.0 .. 10.0
#
# Returns:
#
# None.
#
# Method: cBrightness
#
# Reader for the configured brightness.
#
# Parameters:
#
# None.
#
# Returns:
#
# Configured brightness, range 0..2.0.
#
# Method: cBrightnessSet
#
# Writer for the configured brightness.
#
# Parameters:
#
# brightness - New brightness, range 0..2.0
#
# Returns:
#
# None.
#
# Method: cGameDialoguesLoad
#
# Loads a game dialogues file from the specified filename.
#
# Parameters:
#
# filename - full filename of game dialogues file
#
# Returns:
#
# None.
#
# Method: cNamedDialoguesAdd
#
# Adds named dialogues to thse currently showing.
#
# Parameters:
#
# names - regular expression used to select dialogues by name
#
# Returns:
#
# None.
#
# Method: cSoundDefine
#
# Associates a sound name with a filename.
#
# Parameters:
#
# name - name of sound
# filename - full filename of sound file (e.g. WAV)
#
# Returns:
#
# None.
#
# Method: cSoundStreamDefine
#
# Associates a sound stream name with a filename.
#
# Parameters:
#
# name - name of sound stream
# filename - full filename of streamable sound file (e.g. OGG)
#
# Returns:
#
# None.
#
# Method: cPackageID
#
# Returns the ID string of the package.
#
# Parameters:
#
# None.
#
# Returns:
#
# Package ID string.
#
# Group: Links
#- Wrapper file:doxygen/class_mush_game_ruby.html
end