The old Oak had escaped from the shadow to bring you some refreshing codes.
I've learn some new fonctions and add them to some other mathematicals stuff, chow them back and forth and...
Here's what we can get with PSET and some colors loop.
DIM ADR$(0 TO 319, 0 TO 11)
CLS : SCREEN 12
GOSUB COULEUR
PRINT "WORD"
REM /// PEEK PIXEL FROM THE WORD AND DRAWING IT 2*SIZE ///
FOR Y = 0 TO 11
Y2 = Y * 3
A = A + 1
FOR X = 0 TO 319
Z = POINT(X, 12 - Y)
IF Z <> 0 THEN
X2 = X * 3
PSET (255 + X2, 199 - Y2), A
DRAW "U1L1D2R2U2"
END IF
NEXT X
NEXT Y
REM /// STORING PIXELS COORDINATES TO ADR$ ///
FOR Y = 0 TO 11
FOR X = 0 TO 319
Z = POINT(X, Y)
IF Z <> 0 THEN
ADR$(X, Y) = "1"
END IF
NEXT X
NEXT Y
C = 11
XX = 3.9
XXX = 237
YY = 232
REM /// DRAWING THE REFLECTED WORD ///
FOR Y = 1 TO 11
FOR X = 0 TO 319
IF ADR$(X, Y) = "1" THEN
PSET ((X * XX) + XXX, YY), C
DRAW "U1L2D2R3U2L1D1L2"
END IF
NEXT X
C = C - 1
XX = XX - .1
XXX = XXX + 2
YY = YY - 3
NEXT Y
LOCATE 1, 1: PRINT " "
A$ = INPUT$(1)
END
REM /// FADING THE BLUE COLOR ///
COULEUR:
DD = 0
FOR D = 1 TO 15
DD = DD + 4
DDD = DD * 255
PALETTE D, DD * 65536
NEXT D
RETURN
He,He. Here again, simples codes and greats results.This is not perfect but I only wanted to expose you the main idea.
Hope that it have lighted a bulb!
[sig][/sig]
I've learn some new fonctions and add them to some other mathematicals stuff, chow them back and forth and...
Here's what we can get with PSET and some colors loop.
DIM ADR$(0 TO 319, 0 TO 11)
CLS : SCREEN 12
GOSUB COULEUR
PRINT "WORD"
REM /// PEEK PIXEL FROM THE WORD AND DRAWING IT 2*SIZE ///
FOR Y = 0 TO 11
Y2 = Y * 3
A = A + 1
FOR X = 0 TO 319
Z = POINT(X, 12 - Y)
IF Z <> 0 THEN
X2 = X * 3
PSET (255 + X2, 199 - Y2), A
DRAW "U1L1D2R2U2"
END IF
NEXT X
NEXT Y
REM /// STORING PIXELS COORDINATES TO ADR$ ///
FOR Y = 0 TO 11
FOR X = 0 TO 319
Z = POINT(X, Y)
IF Z <> 0 THEN
ADR$(X, Y) = "1"
END IF
NEXT X
NEXT Y
C = 11
XX = 3.9
XXX = 237
YY = 232
REM /// DRAWING THE REFLECTED WORD ///
FOR Y = 1 TO 11
FOR X = 0 TO 319
IF ADR$(X, Y) = "1" THEN
PSET ((X * XX) + XXX, YY), C
DRAW "U1L2D2R3U2L1D1L2"
END IF
NEXT X
C = C - 1
XX = XX - .1
XXX = XXX + 2
YY = YY - 3
NEXT Y
LOCATE 1, 1: PRINT " "
A$ = INPUT$(1)
END
REM /// FADING THE BLUE COLOR ///
COULEUR:
DD = 0
FOR D = 1 TO 15
DD = DD + 4
DDD = DD * 255
PALETTE D, DD * 65536
NEXT D
RETURN
He,He. Here again, simples codes and greats results.This is not perfect but I only wanted to expose you the main idea.
Hope that it have lighted a bulb!
[sig][/sig]