CODE |
ec1Repeat 0 getKey->K If K=0:End If K=25 or K=34 [A]((Y/8)+T+(K=25)+(3(K=34)),(X/8)+S+1)->L If K=24 or K=26 [A]((Y/8)+T+2,(X/8)+S+2(K=26)->L If fpart(L)=.1 Then X->Z:Y->:theta: If K=24 or K=26 Then If X/8+S+(K=26)<=5 or X/8+S-(K=24)>=(W-7) (X+8(K=26)-8(K=24))->X End If K=25 or K=34 Then If (Y/8+T+(K=34)<=3 or (Y/8+T-(K=25)>=(H-5) (Y/8(K=34)-8(K=25))->Y End If X=Z S+(K=26)-(K=24)->S If Y=:theta: T+(K=34)-(K=25)->T If K=24 or K=25 or K=26 or K=34:Then real(2,0,S,T,W,H,0,12,0,8,0,0,0 real(1,X,Y,1,8,2,1,0,0,0,1 End End Endc2 |
QUOTE ("BASIC Code") |
:AxesOff :FnOff :StorePic 3 :StorePic 4 :1→X:1→Y :0→S:0→T :16→W:16→H :prgmMAP1 :1→[A](S+Y+1,T+X+1 :0→C:0→D :1→I :While 1 :If I=1:Then:2→I:Else:1→I:End :real(2,0,T,S,W,H,0,12,0,8,I,0,1 :getKey→K :If K=45:Goto E :(K=34)-(K=25→C :(K=26)-(K=24→D :0→[A](Y+S+1,X+T+1 :If not([A](Y+S+C+1,X+T+D+1:Then:X+D→X:Y+C→Y:End :1→[A](Y+S+1,X+T+1 :If T≠4 and X>6:Then:6→X:T+1→T:End:If T≠0 and X<5:Then:5→X:T-1→T:End :If S≠8 and Y>4:Then:4→Y:S+1→S:End:If S≠0 and Y<3:Then:3→Y:S-1→S:End :End :Lbl E :real(0 :End Generated by http://www.cemetech.net/projects/basicelite/sourcecoder.php, Post by: tenniskid493 on December 17, 2005, 02:16:00 pm :gotosuck: ![]() Also, although the "If K=0:End" is unnecessary, it makes your key presses run faster and gives a better response time so that it doesnt go through the whole loop everytime, only that very short loop. In my mind, its worth the extra 5-10 bytes to make it run that much faster. Post by: dragon__lance on December 17, 2005, 04:28:00 pm Post by: dysfunction on December 19, 2005, 09:15:00 am Post by: DJ Omnimaga on December 19, 2005, 09:23:00 am Post by: tenniskid493 on December 20, 2005, 02:01:00 am Post by: DJ Omnimaga on December 20, 2005, 02:33:00 am Post by: dysfunction on December 20, 2005, 07:43:00 am Post by: tenniskid493 on December 20, 2005, 10:54:00 am |