The best QBasic game ever?
pcworld.com
The best QBasic game ever?
1–10 of 102 posts
Re: The best QBasic game ever?
#2Re: The best QBasic game ever?
#3Re: The best QBasic game ever?
#4I can't find anything definitive but I suspect it would be less confusing to say "created by Microsoft" than "created by IBM". It seems Microsoft developed it but IBM somehow wound up with the copyright. en.wikipedia.org/wiki/Gorillas_(video_game)
Also, I seem to recall reading (or seeing a video interview) where Bill Gates said QBASIC was his last ever coding job.
Re: The best QBasic game ever?
#5Re: The best QBasic game ever?
#6It's written in QB64, a slightly more modern variant of QBasic. http://www.qb64.net/
Re: The best QBasic game ever?
#7Re: The best QBasic game ever?
#8Re: The best QBasic game ever?
#9How would it perform on a state of the art personal computer in 1991, when Gorillas was released?
>Black Annex requires at least a 2.6GHz processor due to the scope of the project and the unoptimized multi-dimensional arrays.
Re: The best QBasic game ever?
#10I happen to have an old QBASIC book (pub 1993) next to me, and was skimming through it shortly before coming across this article.
Random file I/O :
OPEN filename$ FOR RANDOM AS [#]filenumber LEN=recordlength
The book then goes on to provide helpful ways to guesstimate at the record length of a file on disk.Drawing 2-D "staircases" diagonally in both directions across the screen :
PSET (0,0)
FOR p = 1 TO 25
LINE -STEP(25,0)
LINE -STEP(0,15)
NEXT p
PSET (639, 0)
FOR p = 1 TO 25
LINE -STEP(-25,0)
LINE -STEP(0,15)
NEXT p
END
Nostalgia, indeed :P