home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 43 / af043a.adf / BULL6.LHA / gameover.s < prev    next >
Text File  |  1992-12-15  |  1KB  |  61 lines

  1. ********************************************************************************
  2. *                   oo                              oo                           *
  3. *                 \(  )/      Bullfrog Demo      \(  )/                           *
  4. *                 ^ ^^ ^        Game Over        ^ ^^ ^                           *
  5. ********************************************************************************
  6.  
  7. _end_game
  8.     move.w    score,d0
  9.     move.w    high_score,d1
  10.  
  11.     cmp.w    d0,d1
  12.     bge.s    .not_new_high
  13.         move.w    score,high_score
  14. .not_new_high
  15.     lea        mess_8,a0
  16.     moveq.l    #0,d0
  17.     move.w    high_score,d0
  18.     moveq.w    #5,d1
  19.     jsr        _to_alpha
  20.  
  21. .repeat
  22.     jsr        _wait_vbi                ; wait for a vertical blank
  23.     lea        _background,a0
  24.     jsr        _q_redraw
  25.  
  26.  
  27.     move.w    #14,d0
  28.     move.w    logo_y,d1
  29.     bge.s    .still_pos
  30.         neg.w    d1
  31. .still_pos
  32.  
  33.     lsr.w    #2,d1
  34.     lea        .mess,a2
  35.     jsr        _draw_font
  36.  
  37.     moveq.w    #12,d0
  38.     move.w    #180,d1
  39.     lea        mess_7,a2
  40.     jsr        _draw_font
  41.  
  42.  
  43.     moveq.w    #16,d0
  44.     move.w    #192,d1
  45.     lea        mess_8,a2
  46.     jsr        _draw_font
  47.  
  48.     jsr        _draw_logo
  49.  
  50.     jsr        _swap_screens            ; display the screen
  51.  
  52.     tst.w    _fire
  53.     beq        .repeat                    ; no then loop around
  54.  
  55. .to_here
  56.     rts
  57. .mess    dc.b    'GAME OVER',0
  58.     even
  59. ********************************************************************************
  60. ********************************************************************************
  61.