Omnimaga
Calculator Community => TI Calculators => General Calculator Help => Topic started by: JosJuice on December 18, 2010, 02:13:20 pm
-
Can anyone post the WFRNG (original version for the TI-86 (http://www.ticalc.org/pub/86/basic/games/generate.zip)) source code? I'm very interested in reading it, but I don't have a TI-86 or TI-86 emulator. Alternatively, if someone knows how I can open the code myself using a PC program, that would also be good.
This may or may not be related to my secret project ;)
-
Are you porting WFRNG to another calc?? ??? You should probably check on ticalc for which platform it's already available on before working on such port, so we don't end up with like two or three versions for the same calc. :P
-
No, I'm not porting it. This is something completely different.
-
Ah ok. Why do you need WFRNG source in particular, though, instead of any other 86 program? ???
-
The secret project is going to be very related to WFRNG, but it's not just a port. (I have actually written a port of it already, but that's irrelevant...)
-
Ah I see. I can't wait to see what is it. ;D
-
you can download TIEmu for emulating the 86, (you can download an OS upgrade from TI for making ROM)
-
The ticalc.org file description for TiEmu says that it only supports 89 (Titanium), 92(+) and Voyage 200. Are you sure it supports 86?
-
x.x wrong one x.x i hope you can download another one
VTI emulates the 86, just download a ROM somewhere
-
The secret project is going to be very related to WFRNG, but it's not just a port. (I have actually written a port of it already, but that's irrelevant...)
Are we going to lose The Game when it's announced?
EDIT: I lost <_<
-
The secret project is going to be very related to WFRNG, but it's not just a port. (I have actually written a port of it already, but that's irrelevant...)
Are we going to lose The Game when it's announced?
EDIT: I lost <_<
No... Unless you strongly associate WFRNG with The Game and lose whenever you think of WFRNG.x.x wrong one x.x i hope you can download another one
VTI emulates the 86, just download a ROM somewhere
Thank you! I've managed to set up emulation now. However, I'll have to change a few things in my project due to what the source code really is like. Running the original version of WFRNG was quite different from the versions I was used to, and I'm going to study the inner workings of WFRNG more. Nick decided to overuse Goto when writing it, so it might take longer than I expected...
In case anyone else wants it, here's the source code.:Lbl A
:ClLCD
:Disp "Nick Disabato's","/<-3R33+ Number","Guessing Program","","Choose a number","from 1-30"
:Lbl P
:Prompt A
:Lbl B
:If A>30 or A<1
:Then
:Disp "Out of range!"
:Goto P
:Else
:Goto C
:End
:Lbl C
:ClLCD
:randInt(1,30)→B
:ClLCD
:Lbl D
:If A≠B
:Then
:Disp "No, that's not it!"
:Prompt A
:If A>30 or A<1
:Then
:Disp "Out of range!"
:Goto D
:Else
:Goto D
:End
:Else
:Disp "YES!","Nick's ticalc.org","password is","**********"
:Pause
:ClLCD
:End
:Stop
-
Lol this sounds interesting, im curious to see what it will turn out to be O.O
-
Hmm on a very off-topic note, wasn't there somebody who was working on a TI-83+ to 86 BASIC code converter at one point?