Vorticon, on Sun Aug 28, 2011 7:40 PM, said:
I just played the game in Classic 99 and it seems to be quite faithful to the Atari VCS classic (and just as frustrating). Well done! Would you mind if I posted it on the tigameshelf.net site? Also can you give me some more information about the MLC compiler? I am only familiar with Harry Wilhelm's one.
i agree, the atari paddle interface is not really interesting, but i'm interested in developping it. this interface will also accept USB mouse & joypad, so i suppose some people could find interest in it.
of course you can post it on tigameshelf.net, with great pleasure
MLC compiler is really special. It's not a basic compiler. It's a special language, very near to assembler ( in the structure ). The advantage is you can use in it directly your XB basic program, and it's really fast.
Ex :
To change the background color from 1 to 15 :
in basic :
For I=1 to 15
call screen(i)
next i
in MLC :
=I1 Step I= 1
La Label A
&SI Call screen I
II I=I+1
CI5 !>a IF NOT I>15 GOTO Label A
But there are more interesting functions :
ex : to test limit of X for a sprite
Basic :
X=X+1
IF X<1 THEN X=1
IF X>256 THEN X=256
MLC :
(X1.256
Edited by rocky007, Mon Aug 29, 2011 5:51 AM.