This commit is contained in:
mattn 2014-07-09 22:39:26 +09:00
parent 2e8e670974
commit 7b8441b783

View File

@ -57,7 +57,7 @@ function! s:loop()
" clear whole screen " clear whole screen
let ww = winwidth('.') " window width let ww = winwidth('.') " window width
let wh = winheight('.') " window height let wh = winheight('.') " window height
let sh = 20 let sh = 20 " stage height
" fill screen " fill screen
for i in range(1, wh) for i in range(1, wh)
@ -69,19 +69,19 @@ function! s:loop()
let state = s:STATE_LOOP let state = s:STATE_LOOP
let rate = 100 let rate = 100
let jx = 20 let jx = 20 " x offset
let jy = 1600 let jy = 1600 " y offset
let ry = jy / rate let ry = jy / rate " real y
let dy = 40 let dy = 40 " diff y
let sl = 0 let sl = 0 " stage level
let sc = 0 let sc = 0 " score
let st = 100 let st = 100 " stage timer
let cf = get(g:, 'flappyvird_face', '(; @_@)') let cf = get(g:, 'flappyvird_face', '(; @_@)') " character face
let cw = len(cf) let cw = len(cf) " character width
let cb = getline(ry)[jx :jx+cw-1] let cb = getline(ry)[jx :jx+cw-1] " character background
let ss = 20 let ss = 20 " sleep! sleep!
let rt = reltime() let rt = reltime()
call s:srand(localtime()) call s:srand(localtime())