Free Hero Mesh

Check-in [c144d8069c]
Login
This is a mirror of the main repository for Free Hero Mesh. New tickets and changes will not be accepted at this mirror.
Overview
Comment:Begin to implement sounds; it is currently unused and is not fully implemented, nor tested yet.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c144d8069ceb2e46154ace59fc81131f65fb7a08
User & Date: user on 2021-04-02 07:08:41.127
Other Links: manifest | tags
Context
2021-04-02
19:32
Implement diagonal shoving. check-in: 57d6d9a4f7 user: user tags: trunk
07:08
Begin to implement sounds; it is currently unused and is not fully implemented, nor tested yet. check-in: c144d8069c user: user tags: trunk
2021-04-01
19:07
Mention that contributions of documentation in languages other than English are not required to use the PC haracter set, and may use whatever character set is appropriate. check-in: 63c71e1a57 user: user tags: trunk
Changes
Modified quarks from [070f56c8ad] to [89b36181b9].
22
23
24
25
26
27
28
29
30
31
32
33
34

35
36
37
38
39
40
41
!  'n' = NOFRAME
!  'p' = HWPALETTE
!  'r' = RESIZABLE
!  'y' = ASYNCBLIT
!  'z' = NOPARACHUTE

! Audio
sfxVolume
audioBuffer
audioRate
audioFormat
musicVolume
musicFile


! Keyboard
keyRepeat
editKey
gameKey

! Key codes







<
|
|
|
|
|
>







22
23
24
25
26
27
28

29
30
31
32
33
34
35
36
37
38
39
40
41
!  'n' = NOFRAME
!  'p' = HWPALETTE
!  'r' = RESIZABLE
!  'y' = ASYNCBLIT
!  'z' = NOPARACHUTE

! Audio

audio
rate
buffer
mmlVolume
waveVolume
standardSounds

! Keyboard
keyRepeat
editKey
gameKey

! Key codes
Modified quarks.h from [37ad5affad] to [b213ef7a95].
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#define Q_screenWidth 2
#define Q_screenHeight 3
#define Q_margin 4
#define Q_palette 5
#define Q_popupColors 6
#define Q_imageSize 7
#define Q_altImage 8
#define Q_editTitle 9
#define Q_gameTitle 10
#define Q_gamma 11
#define Q_screenFlags 12
#define Q_sfxVolume 13
#define Q_audioBuffer 14
#define Q_audioRate 15
#define Q_audioFormat 16
#define Q_musicVolume 17
#define Q_musicFile 18
#define Q_keyRepeat 19
#define Q_editKey 20
#define Q_gameKey 21
#define Q_backspace 22
#define Q_tab 23
#define Q_clear 24
#define Q_return 25











|
|
|
|
|
|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#define Q_screenWidth 2
#define Q_screenHeight 3
#define Q_margin 4
#define Q_palette 5
#define Q_popupColors 6
#define Q_imageSize 7
#define Q_altImage 8
#define Q_editTitle 9
#define Q_gameTitle 10
#define Q_gamma 11
#define Q_screenFlags 12
#define Q_audio 13
#define Q_rate 14
#define Q_buffer 15
#define Q_mmlVolume 16
#define Q_waveVolume 17
#define Q_standardSounds 18
#define Q_keyRepeat 19
#define Q_editKey 20
#define Q_gameKey 21
#define Q_backspace 22
#define Q_tab 23
#define Q_clear 24
#define Q_return 25
192
193
194
195
196
197
198
199
200
201
202

203
204

205
206
207
208
209
210
211
  "popupColors",
  "imageSize",
  "altImage",
  "editTitle",
  "gameTitle",
  "gamma",
  "screenFlags",
  "sfxVolume",
  "audioBuffer",
  "audioRate",
  "audioFormat",

  "musicVolume",
  "musicFile",

  "keyRepeat",
  "editKey",
  "gameKey",
  "backspace",
  "tab",
  "clear",
  "return",







<
|
|
<
>
|
|
>







192
193
194
195
196
197
198

199
200

201
202
203
204
205
206
207
208
209
210
211
  "popupColors",
  "imageSize",
  "altImage",
  "editTitle",
  "gameTitle",
  "gamma",
  "screenFlags",

  "audio",
  "rate",

  "buffer",
  "mmlVolume",
  "waveVolume",
  "standardSounds",
  "keyRepeat",
  "editKey",
  "gameKey",
  "backspace",
  "tab",
  "clear",
  "return",
Added sound.c version [588b432299].