Crunch more. FRE(0)=138 when game ends. (ymmv, of course)
catseye
12 years ago
0 | 0 | rem dungeons of ekileugor |
1 | ||
2 | rem i : temporary (loops) | |
1 | rem conceived august 2012, chris pressey, cat's eye technologies | |
2 | ||
3 | rem i,j : temporaries (loops) | |
3 | 4 | |
4 | 5 | rem x,y : temporary position (used by all) |
5 | 6 | rem dx,dy : delta for move (used by all) |
59 | 60 | |
60 | 61 | rem main loop |
61 | 62 | |
62 | 100 gosub1000:mu=0 | |
63 | 102 dx=0:dy=0 | |
63 | 100 gosub900:mu=0:dx=0:dy=0 | |
64 | 64 | 105 getk$:if k$=""then105 |
65 | 65 | 110 ifk$="i"thendy=-1:goto 500 |
66 | 66 | 120 ifk$="j"thendx=-1:goto 500 |
74 | 74 | 400 formn=0to7 |
75 | 75 | 405 ifm%(mn,2)<=0then490 |
76 | 76 | 410 x=m%(mn,0):y=m%(mn,1):dx=sgn(hx-x):dy=sgn(hy-y) |
77 | 420 gosub20 | |
78 | 430 ifc=81thengosub800:goto490 | |
79 | 435 ifc=32orc=86then460 | |
77 | 420 gosub20:ifc=81thengosub800:goto490 | |
78 | 430 ifc=32orc=86then460 | |
80 | 79 | 440 ifrnd(1)<.3thendx=0:goto420 |
81 | 80 | 450 ifrnd(1)<.3thendy=0:goto420 |
82 | 81 | 455 goto490 |
83 | 460 gosub30 | |
84 | 470 x=x+dx:y=y+dy:c=19:co=2:gosub40 | |
82 | 460 gosub30:x=x+dx:y=y+dy:c=19:co=2:gosub40 | |
85 | 83 | 480 m%(mn,0)=x:m%(mn,1)=y |
86 | 490 next | |
87 | ||
88 | 499 goto100 | |
84 | 490 next:goto100 | |
89 | 85 | |
90 | 86 | rem hero can (and does) move |
91 | 87 | |
122 | 118 | 750 mv=-1:m$="you killed snake":gosub4000 |
123 | 119 | 760 x=m%(mn,0):y=m%(mn,1):gosub30 |
124 | 120 | 765 m%(mn,0)=-1:m%(mn,1)=-1:m%(mn,2)=0 |
125 | 780 x=hx:y=hy | |
126 | 790 return | |
121 | 780 x=hx:y=hy:return | |
127 | 122 | |
128 | 123 | rem monster attack hero! |
129 | 124 | |
139 | 134 | |
140 | 135 | rem status |
141 | 136 | |
142 | 1000 ifmu<>0thenreturn | |
143 | 1010 print"{home}{blk}{rvs on}"hp"{left}/"mh"{left},"dl"{left},"au"{left} "; | |
137 | 900 ifmu<>0thenreturn | |
138 | 910 print"{home}{blk}{rvs on}"hp"{left}/"mh"{left},"dl"{left},"au"{left} "; | |
144 | 139 | |
145 | 140 | rem ... this is also an entry point |
146 | 141 | |
147 | 1020 fori=pos(0)to21:print" ";:next:return | |
142 | 920 fori=pos(0)to21:print" ";:next:return | |
148 | 143 | |
149 | 144 | rem display message |
150 | 145 | |
151 | 146 | 4000 ifmu<>0thengosub4100 |
152 | 147 | 4010 print"{home}{blk}{rvs on} "m$; |
153 | 148 | 4015 ifmv>0thenprintmv"{left} "; |
154 | 4020 gosub1020:mu=1:return | |
149 | 4020 gosub920:mu=1:return | |
155 | 150 | |
156 | 151 | rem wait for keypress |
157 | 152 |