I’m not in support of it, nor will I ever be. I like the freedom and creativity the Internet lets me have. Without that, I may as well go back to the “dark ages” of computing when nobody had even a 300 BPS Hayes modem.
SOPA/PIPA
RetroChallenge Day 3: Switching screens and a trapezoid

(alternate image link: http://goput.it/m6r.png )
Here’s a screenshot of the keyboard reference screen. There will be more things added to this screen when MusLolz can actually play music. The most important thing today is that now you can switch between this boring text screen and the fancy visuals screen.

(alternate image link: http://goput.it/sb5.png )
In other news, our friend the Trapezoid has now been added to the visuals mode.
Octagon

CLS
SCREEN 12
‘ draw the octagon outline in white
DRAW “c15″
DRAW “e50 r50 f50 d50 g50 l50 h50 u50″
DRAW “br30″
DRAW “p4,15″ ‘fill the octagon outline in red
‘draw the sign post
DRAW “c7″
DRAW “b m388,341″ ‘move our virtual pen under the octagon without drawing any lines onscreen
DRAW “r15 d150 l15 u150″
DRAW “br3 bd3″
DRAW “p7,7″
COLOR 15
LOCATE 17, 49: PRINT “STOP”
LOCATE 1, 1: PRINT “Jack Black has been looking all over for one of these…”
Yellow Trapezoid
Trapezoid
RetroChallenge Day 2: CLS

(alternate image link: http://goput.it/l4f.png )
This is a clear screen effect that you’ll see when in visuals mode. Visually, it is a triangle sweeping over the screen, leaving a blank background ready to fill again. In code, this effect is produced by two nested FOR loops. Like the main visuals, this appears to be scrolling which creates that triangular sweep effect.
RetroChallenge Day 1: Creating the visuals

(alternate image link: clicky)
Nothing too special here. It’s running in screen mode 13, or 256-color VGA. Each block is a random color from the 256-color palette which is then placed on the screen in a random location using LOCATE. This has the unintended effect of scrolling, which looks cool I guess. I had intended on having one static screen getting filled up with randomly placed color




