Changeset 582 for abuse/trunk/data-abuse/lisp/sfx.lsp
- Timestamp:
- May 6, 2011, 12:47:14 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/data-abuse/lisp/sfx.lsp
r566 r582 47 47 (def_sound 'TICK_SND (sfxdir "timerfst.wav")) 48 48 49 (setq PLAYER_PAIN (make-array 4 :initial-contents 49 (setq PLAYER_PAIN (make-array 4 :initial-contents 50 50 (list (def_sound (sfxdir "plpain01.wav")) 51 51 (def_sound (sfxdir "plpain02.wav")) … … 58 58 (def_sound (sfxdir "pldeth05.wav")) 59 59 (def_sound (sfxdir "pldeth07.wav"))))) 60 60 61 61 62 62 ;; jugger stomp … … 80 80 81 81 ;; shotgun/laser taking from the lava sample 82 (def_sound 'ZAP_SND (sfxdir "zap2.wav")) 82 (def_sound 'ZAP_SND (sfxdir "zap2.wav")) 83 83 84 84 ;; rocket launch sound … … 93 93 94 94 ;; machine gun hitting the floor, sounds 1 & 2, played randomly 95 (def_sound 'MG_HIT_SND1 (sfxdir "mghit01.wav")) 95 (def_sound 'MG_HIT_SND1 (sfxdir "mghit01.wav")) 96 96 (def_sound 'MG_HIT_SND2 (sfxdir "mghit02.wav")) 97 97 … … 131 131 ;; electricity shooting up from the ground 132 132 (def_sound 'ELECTRIC_SND (sfxdir "elect02.wav")) 133 133 134 134 ;; rocket being fired 135 135 (def_sound 'ROCKET_SND (sfxdir "rocket02.wav")) … … 185 185 186 186 187 (setq AMB_SOUNDS (make-array 17 :initial-contents (list 187 (setq AMB_SOUNDS (make-array 17 :initial-contents (list 188 188 (def_sound (sfxdir "ambtech1.wav")) ;; 0 189 189 (def_sound (sfxdir "ambtech2.wav")) ;; 1 … … 224 224 T))) 225 225 226 227 (defun ambs_cons () 226 227 (defun ambs_cons () 228 228 (set_xvel 100) ;; delay time to 100 229 229 (set_yvel 127)) ;; set volume default to 127 230 230 231 (def_char AMBIENT_SOUND 231 (def_char AMBIENT_SOUND 232 232 (funs (ai_fun amb_sound_ai) 233 233 (draw_fun dev_draw) … … 236 236 (range 500 500) 237 237 (fields ("aitype" amb_num) 238 ("yvel" amb_vol) 238 ("yvel" amb_vol) 239 239 ("xvel" amb_rep) 240 240 ("xacel" amb_rand)) 241 241 (states "art/misc.spe" 242 242 (stopped "sfx_player"))) 243 243 244 244 (setq song_list '("music/abuse01.hmi" "music/abuse02.hmi")) 245 245 (setq current_song song_list) … … 251 251 (break) 252 252 (setq current_song (cdr current_song)) 253 (if (not current_song) 253 (if (not current_song) 254 254 (setq current_song song_list)) 255 255 (break) 256 256 ))) 257 257 258 258 259 259 (defun level_loaded (name) 260 260 (trace)
Note: See TracChangeset
for help on using the changeset viewer.