forked from KolibriOS/kolibrios
7a91a704c5
git-svn-id: svn://kolibrios.org@1806 a494cfbc-eb01-0410-851d-a64ba20cac60
106 lines
2.2 KiB
PHP
106 lines
2.2 KiB
PHP
; level format
|
||
; [fx|fy][blue xy][red xy][blue point xy][red point xy]..[maze walls]
|
||
|
||
; internal format
|
||
; points db=[stepptr]
|
||
; [player]= blue
|
||
; [finish]= red
|
||
; area: ..[1-red,0-black xy].. ( -1 if empty)
|
||
|
||
TILT2_levelp:
|
||
call get_xy_sf
|
||
mov [stepptr],esi
|
||
add esi,2
|
||
call unpack_level
|
||
mov [pause_time],10
|
||
ret
|
||
|
||
TILT2_key:
|
||
cmp eax,176
|
||
jb .ex
|
||
cmp eax,179
|
||
ja .ex
|
||
mov esi,area
|
||
inc esi
|
||
lea ebx,[eax-176]
|
||
.lp:
|
||
xor edx,edx
|
||
mov eax,[player]
|
||
call check_move
|
||
jc .nom1
|
||
inc edx
|
||
add eax,[dirs+ebx*4]
|
||
mov [player],eax
|
||
.nom1:
|
||
mov eax,[finish]
|
||
call check_move
|
||
jc .nom2
|
||
inc edx
|
||
add eax,[dirs+ebx*4]
|
||
mov [finish],eax
|
||
.nom2:
|
||
test edx,edx
|
||
jz .ex1
|
||
call delay
|
||
call drwfld
|
||
jmp .lp
|
||
.ex1:
|
||
mov eax,[finish]
|
||
cmp eax,[player]
|
||
jnz .ex2
|
||
mov [win_flag],2
|
||
jmp TILT2_drawm.skip
|
||
.ex2:
|
||
mov esi,[stepptr]
|
||
cmp al,[esi+1]
|
||
jne .ex
|
||
mov eax,[player]
|
||
cmp al,[esi]
|
||
jne .ex
|
||
mov [win_flag],1
|
||
.ex:
|
||
ret
|
||
|
||
TILT2_drawm:
|
||
cmp [win_flag],2
|
||
je .skip
|
||
; mov [sq_size],3
|
||
mov eax,[player]
|
||
call get_xy
|
||
mcall 13,[lx],[ly],0xff
|
||
mov eax,[finish]
|
||
call get_xy
|
||
mcall 13,[lx],[ly],0xff0000
|
||
.skip:
|
||
shl [sq_size],1
|
||
mov esi,[stepptr]
|
||
lodsb
|
||
call get_xy
|
||
mcall 13,[lx],[ly],0xff
|
||
lodsb
|
||
call get_xy
|
||
shr [sq_size],1
|
||
mcall 13,[lx],[ly],0xff0000
|
||
ret
|
||
|
||
TILT2_level:
|
||
file 'tilt2.bin'
|
||
|
||
if lang eq ru
|
||
TILT2_help mstr \
|
||
'Šà áë© ¨ ᨨ© ¡«®ª¨ ¤®«¦ë ¤®áâ¨çì ª«¥â®ª',\
|
||
'ᮮ⢥âáâ¢ãî饣® 梥â . ‚¨¬ ¨¥! <20>«®ª¨ ᤥ« ë',\
|
||
'¨§ £à¥áᨢ®£® ¬ â¥à¨ « , ¨ ¯à¨ á⮫ª®¢¥¨¨',\
|
||
'¬£®¢¥® ¨á¯ àïîâáï. ‚ í⮬ á«ãç ¥ ‚ ¬ ¯à¨¤¥âáï',\
|
||
' ç âì ã஢¥ì á ç « .','',\
|
||
'http://www.clickmazes.com'
|
||
else
|
||
TILT2_help mstr \
|
||
'The red block must reach the red target and the',\
|
||
'blue block the blue target. Beware! The two',\
|
||
'blocks are made of highly reactive material and,',\
|
||
'if they collide, will instantly evaporate. At',\
|
||
'this point you must start all over again.','',\
|
||
'http://www.clickmazes.com'
|
||
end if
|