forked from KolibriOS/kolibrios
67 lines
1.4 KiB
PHP
67 lines
1.4 KiB
PHP
|
; level format
|
|||
|
; [fx|fy][blue xy][red xy]..[maze walls]
|
|||
|
|
|||
|
; internal format
|
|||
|
; [player]= blue
|
|||
|
; [finish]= red
|
|||
|
|
|||
|
|
|||
|
CSTEP_key:
|
|||
|
cmp eax,176
|
|||
|
jb .ex
|
|||
|
cmp eax,179
|
|||
|
ja .ex
|
|||
|
mov esi,area
|
|||
|
inc esi
|
|||
|
lea ebx,[eax-176]
|
|||
|
mov [jump],still
|
|||
|
mov eax,[player]
|
|||
|
call check_move
|
|||
|
jc .ex
|
|||
|
add eax,[dirs+ebx*4]
|
|||
|
mov edx,eax
|
|||
|
.nom1:
|
|||
|
mov eax,[finish]
|
|||
|
xor ebx,11b
|
|||
|
call check_move
|
|||
|
jc .ex
|
|||
|
add eax,[dirs+ebx*4]
|
|||
|
mov [finish],eax
|
|||
|
mov [player],edx
|
|||
|
mov [jump],drw
|
|||
|
cmp eax,edx
|
|||
|
jnz .ex
|
|||
|
mov [win_flag],1
|
|||
|
.ex:
|
|||
|
ret
|
|||
|
|
|||
|
CSTEP_drawm:
|
|||
|
mov eax,[player]
|
|||
|
call get_xy
|
|||
|
mcall 13,[lx],[ly],0xff0000
|
|||
|
mov eax,[finish]
|
|||
|
call get_xy
|
|||
|
mcall 13,[lx],[ly],0xff
|
|||
|
ret
|
|||
|
|
|||
|
CSTEP_level:
|
|||
|
file 'cstep.bin'
|
|||
|
|
|||
|
if lang eq ru
|
|||
|
CSTEP_help mstr \
|
|||
|
'<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> ᨭ<><E1A8AD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><>⥬ <20><>ࠢ<EFBFBD><E0A0A2><EFBFBD><EFBFBD><EFBFBD>',\
|
|||
|
'<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <><E1ABA5><EFBFBD><EFBFBD> <20><>',\
|
|||
|
'<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><>אַ <20><><EFBFBD>⨢<EFBFBD><E2A8A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>',\
|
|||
|
'<27><><EFBFBD>ࠢ<EFBFBD><E0A0A2><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD> ࠧ<><E0A0A7>襭 ⮫쪮 <20> <20><><EFBFBD>砥',\
|
|||
|
'<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⢨<EFBFBD> <20>९<EFBFBD><E0A5AF><EFBFBD>⢨<EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.','',\
|
|||
|
'http://www.clickmazes.com'
|
|||
|
else
|
|||
|
CSTEP_help mstr \
|
|||
|
'Unite the red and blue dots by moving just the',\
|
|||
|
'red dot. The blue dot follows the red dot, but',\
|
|||
|
'moves in exactly in the opposite direction. A',\
|
|||
|
'move is only permitted if the path is clear for',\
|
|||
|
'both dots.','',\
|
|||
|
'http://www.clickmazes.com'
|
|||
|
end if
|