The Museum of HP Calculators

HP Forum Archive 21

[ Return to Index | Top of Index ]

New HP39gII programs (snake, minesweeper, ...)
Message #1 Posted by Mic on 22 Feb 2013, 3:42 p.m.

Download these all new exclusive programs for HP39gII :

http://www.calc-bank.com/index.php?mod=news&ac=commentaires&id=1844

      
Re: New HP39gII programs (snake, minesweeper, ...)
Message #2 Posted by Walter B on 23 Feb 2013, 1:07 a.m.,
in response to message #1 by Mic

If you ever wanted to know why people need graphic calcs ...

d:-/

            
Re: New HP39gII programs (snake, minesweeper, ...)
Message #3 Posted by bluesun08 on 23 Feb 2013, 4:02 a.m.,
in response to message #2 by Walter B

A very snide comment!

                  
Re: New HP39gII programs (snake, minesweeper, ...)
Message #4 Posted by Eddie W. Shore on 23 Feb 2013, 8:12 p.m.,
in response to message #3 by bluesun08

I agree with you, bluesun08.

                        
Re: New HP39gII programs (snake, minesweeper, ...)
Message #5 Posted by bluesun08 on 24 Feb 2013, 1:11 p.m.,
in response to message #4 by Eddie W. Shore

Thanks.

                  
Re: New HP39gII programs (snake, minesweeper, ...)
Message #6 Posted by Reth on 25 Feb 2013, 6:38 a.m.,
in response to message #3 by bluesun08

I find it spot on.

      
Re: New HP39gII programs (snake, minesweeper, ...)
Message #7 Posted by Gilles Carpentier on 23 Feb 2013, 8:57 a.m.,
in response to message #1 by Mic

:D I wrote a new version of Snake with hi-score management. Mic, could you publish this version on your web site ?

My record is 2465 in "very easy" mode...

One interesting thing in this program is the way I use to get the same speed with the real calc and with the emulator.

The idea is to use the Ticks command :

  n:=Ticks;
   WHILE (Ticks-n)<(Vitesse-Niveau) DO
    // Gauche
    IF ISKEYDOWN(14)THEN dX:=-5; dY:=0; END;
    // Droite
    IF ISKEYDOWN(10)THEN dX:=5; dY:=0; END;
    // Haut
    IF ISKEYDOWN(9) THEN dX:=0; dY:=-5; END;
    // Bas
    IF ISKEYDOWN(15)THEN dX:=0; dY:=5;  END;
   END;

Unfortunatly I was unable to use the DIMGROB command which seems buggy. It's pity beacause all my "sprites" are ready ;)

Edited: 23 Feb 2013, 9:16 a.m.

            
Re: New HP39gII programs (snake, minesweeper, ...)
Message #8 Posted by Mic on 23 Feb 2013, 10:09 a.m.,
in response to message #7 by Gilles Carpentier

done

      
Re: New HP39gII programs (snake, minesweeper, ...)
Message #9 Posted by Eddie W. Shore on 23 Feb 2013, 8:13 p.m.,
in response to message #1 by Mic

Thanks mic!


[ Return to Index | Top of Index ]

Go back to the main exhibit hall